From: "Alfredo Tupone" <tupone@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-tcltk/thread/
Date: Fri, 8 Nov 2024 22:19:06 +0000 (UTC) [thread overview]
Message-ID: <1731104320.01d47a55493ef4cb0ce9b1b73fb45578a041cb0a.tupone@gentoo> (raw)
commit: 01d47a55493ef4cb0ce9b1b73fb45578a041cb0a
Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 8 22:18:07 2024 +0000
Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Fri Nov 8 22:18:40 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01d47a55
dev-tcltk/thread: add 2.8.10
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
dev-tcltk/thread/Manifest | 1 +
dev-tcltk/thread/thread-2.8.10.ebuild | 48 +++++++++++++++++++++++++++++++++++
2 files changed, 49 insertions(+)
diff --git a/dev-tcltk/thread/Manifest b/dev-tcltk/thread/Manifest
index 54a772c8f25f..93bfd944c569 100644
--- a/dev-tcltk/thread/Manifest
+++ b/dev-tcltk/thread/Manifest
@@ -1,4 +1,5 @@
DIST tclconfig-2023.12.11.tar.gz 49691 BLAKE2B 53bb91d125fd080b79ac83af1053d8bb981a8e917b7c8e4db71da89c43263d75a9604623a85d560bcbf3d686f61ccf21bffd794d333aa6cb35c959ab3042991d SHA512 c4eaa31ca1ec585536cd6d31a548b347dae3167197433674d2f3912ce85bad00dda55b0c60eebf26cb5f9d651c8437688e1829f7d3996a22bba2d93e4538946c
+DIST thread-2-8-10.tar.gz 322254 BLAKE2B d74587718aa15844dfbb0c6346605e4bf141cf74b6291ea178d6e98976c5afd7bf413dadad04fdbe2513196b5c7c40d3f28fa8eeac28b9a29737a93584622843 SHA512 ec262dfa1ad85182babed0aa1b08462b6d6523a3a4fd5535cf8cbc5a4591bd86be5087355c68862e854c29d5bde85754915fb578caaad3e50c3385d57262e0f2
DIST thread-2-8-9.tar.gz 322166 BLAKE2B d7b1f61048ff7ef2276ab0ed2e72054267f75cf32cc705b2de6e27fd80ffde08e55a7386976d1c6159c5085686f1b534434c9a7cae504feedb91a9bc8bcff69f SHA512 b3f781b2b522a1c184e071c003a2b20ef0615668c56ffd2f6680890f36b106ded051d411547cb6b1afd7e9389e09b5cc67e68bfd79cc95ea06a0e2ee71c2e433
DIST thread2.8.5.tar.gz 338776 BLAKE2B b6500ba59f87150d3d4479cae9a55b591a41768c6a74520933157d8fe2ec5374a79cf258fad1f08c775b190c17667dc529605f21a4fdd562320778be94b294a2 SHA512 b1cd049605f44ea5e85a121ff864d9e531491b24579654159dd5f3850b0aa4192ea79844324be3e9c6b395b14e6f765474c792bfd3271c7100b49f0ff22832d0
DIST thread2.8.8.tar.gz 343099 BLAKE2B 3551bdbc4cab78c6ea0ea7eac43c53a65a1f55f9eae302ddd7030c33b40b76317ecc651d731411396cf4f51f11c852bab0c60642d36a312f23e22f96019df427 SHA512 249ddf689ee20536280e3b3d220c0faa3a8a2821bcd31a3f6188ef838d31e5cacefa7fd737b8e29b73a6b30e0a946d2eeb0805dd851c9f8aefc5c5bc5f50de0e
diff --git a/dev-tcltk/thread/thread-2.8.10.ebuild b/dev-tcltk/thread/thread-2.8.10.ebuild
new file mode 100644
index 000000000000..4bb72d11dec4
--- /dev/null
+++ b/dev-tcltk/thread/thread-2.8.10.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+MY_P="${PN}-$(ver_rs 0- '-')"
+TCLCONFIGId=4a924db4fb37fa0c7cc2ae987b294dbaa97bc713
+
+DESCRIPTION="Tcl Thread extension"
+HOMEPAGE="http://www.tcl.tk/"
+SRC_URI="
+ https://github.com/tcltk/${PN}/archive/refs/tags/${MY_P}.tar.gz
+ https://github.com/tcltk/tclconfig/archive/${TCLCONFIGId}.tar.gz
+ -> tclconfig-2023.12.11.tar.gz
+"
+
+S="${WORKDIR}"/${PN}-${MY_P}
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+
+DEPEND="dev-lang/tcl:0=[threads]"
+RDEPEND="${DEPEND}"
+
+QA_CONFIG_IMPL_DECL_SKIP=(
+ opendir64 readdir64 rewinddir64 closedir64 stat64 # used to test for Large File Support on AIX
+)
+
+PATCHES=( "${FILESDIR}"/${PN}-2.8.5-musl.patch )
+
+src_prepare() {
+ ln -s ../tclconfig-${TCLCONFIGId} tclconfig || die
+ echo "unknown" > manifest.uuid || die
+ default
+
+ # Search for libs in libdir not just exec_prefix/lib
+ sed -i -e 's:${exec_prefix}/lib:${libdir}:' \
+ aclocal.m4 || die "sed failed"
+
+ eautoreconf
+}
+
+src_configure() {
+ econf --with-tclinclude="${EPREFIX}/usr/include" \
+ --with-tcl="${EPREFIX}/usr/$(get_libdir)"
+}
next reply other threads:[~2024-11-08 22:19 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-08 22:19 Alfredo Tupone [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-11-03 6:42 [gentoo-commits] repo/gentoo:master commit in: dev-tcltk/thread/ Sam James
2024-11-03 4:40 Sam James
2024-04-20 18:58 Alfredo Tupone
2024-03-11 11:22 Alfredo Tupone
2024-03-11 10:18 Alfredo Tupone
2024-03-10 15:32 Alfredo Tupone
2024-03-07 21:44 Alfredo Tupone
2024-02-27 7:18 Alfredo Tupone
2024-02-17 12:26 Jakov Smolić
2024-02-16 21:40 Sam James
2023-08-26 16:34 Andreas Sturmlechner
2023-03-17 19:21 Alfredo Tupone
2022-11-23 1:56 Sam James
2022-11-23 1:56 Sam James
2022-11-23 1:53 Sam James
2022-11-23 1:53 Sam James
2022-11-23 1:53 Sam James
2021-11-02 19:24 Alfredo Tupone
2021-09-18 16:51 Alfredo Tupone
2019-12-26 11:02 Alfredo Tupone
2019-12-25 20:50 Sergei Trofimovich
2019-12-25 20:39 Sergei Trofimovich
2019-12-25 20:24 Sergei Trofimovich
2019-12-24 14:43 Mikle Kolyada
2019-12-24 8:08 Agostino Sarubbo
2019-12-23 14:03 Agostino Sarubbo
2018-11-02 16:51 Alfredo Tupone
2018-09-26 18:00 Alfredo Tupone
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1731104320.01d47a55493ef4cb0ce9b1b73fb45578a041cb0a.tupone@gentoo \
--to=tupone@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox