From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 63F18158043 for ; Sat, 20 Apr 2024 18:58:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A99E8E29CF; Sat, 20 Apr 2024 18:58:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8878FE29CF for ; Sat, 20 Apr 2024 18:58:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A812A3433EA for ; Sat, 20 Apr 2024 18:58:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0FDC21747 for ; Sat, 20 Apr 2024 18:58:09 +0000 (UTC) From: "Alfredo Tupone" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alfredo Tupone" Message-ID: <1713639469.9ca4779faa8365c5c51a278e6d84d29bb6ab6c01.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-tcltk/thread/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-tcltk/thread/thread-2.8.5.ebuild dev-tcltk/thread/thread-2.8.8.ebuild dev-tcltk/thread/thread-2.8.9.ebuild X-VCS-Directories: dev-tcltk/thread/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: 9ca4779faa8365c5c51a278e6d84d29bb6ab6c01 X-VCS-Branch: master Date: Sat, 20 Apr 2024 18:58:09 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0baac53a-9e9f-4825-b3c2-955ecee20544 X-Archives-Hash: 1aa2b5cfca88e97929ac23b26e810d21 commit: 9ca4779faa8365c5c51a278e6d84d29bb6ab6c01 Author: Alfredo Tupone gentoo org> AuthorDate: Sat Apr 20 18:55:47 2024 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Sat Apr 20 18:57:49 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ca4779f dev-tcltk/thread: implicit function declarations Closes: https://bugs.gentoo.org/928059 Signed-off-by: Alfredo Tupone gentoo.org> dev-tcltk/thread/thread-2.8.5.ebuild | 4 ++-- dev-tcltk/thread/thread-2.8.8.ebuild | 4 ++-- dev-tcltk/thread/thread-2.8.9.ebuild | 5 ++--- 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/dev-tcltk/thread/thread-2.8.5.ebuild b/dev-tcltk/thread/thread-2.8.5.ebuild index 299354e5ba6b..046cf4206808 100644 --- a/dev-tcltk/thread/thread-2.8.5.ebuild +++ b/dev-tcltk/thread/thread-2.8.5.ebuild @@ -11,6 +11,8 @@ DESCRIPTION="Tcl Thread extension" HOMEPAGE="http://www.tcl.tk/" SRC_URI="mirror://sourceforge/project/tcl/Thread%20Extension/${PV}/${MY_P}.tar.gz" +S="${WORKDIR}"/${MY_P} + LICENSE="BSD" SLOT="0" KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86" @@ -22,8 +24,6 @@ QA_CONFIG_IMPL_DECL_SKIP=( stat64 # used to test for Large File Support ) -S="${WORKDIR}"/${MY_P} - PATCHES=( "${FILESDIR}"/${P}-musl.patch ) src_prepare() { diff --git a/dev-tcltk/thread/thread-2.8.8.ebuild b/dev-tcltk/thread/thread-2.8.8.ebuild index 202ceb1c6cc9..94ce8fc07a35 100644 --- a/dev-tcltk/thread/thread-2.8.8.ebuild +++ b/dev-tcltk/thread/thread-2.8.8.ebuild @@ -11,6 +11,8 @@ DESCRIPTION="Tcl Thread extension" HOMEPAGE="http://www.tcl.tk/" SRC_URI="mirror://sourceforge/project/tcl/Thread%20Extension/${PV}/${MY_P}.tar.gz" +S="${WORKDIR}"/${MY_P} + LICENSE="BSD" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" @@ -22,8 +24,6 @@ QA_CONFIG_IMPL_DECL_SKIP=( opendir64 rewinddir64 closedir64 stat64 # used to test for Large File Support on AIX ) -S="${WORKDIR}"/${MY_P} - PATCHES=( "${FILESDIR}"/${PN}-2.8.5-musl.patch ) src_prepare() { diff --git a/dev-tcltk/thread/thread-2.8.9.ebuild b/dev-tcltk/thread/thread-2.8.9.ebuild index ab64d0048cc7..280b7de7c6c5 100644 --- a/dev-tcltk/thread/thread-2.8.9.ebuild +++ b/dev-tcltk/thread/thread-2.8.9.ebuild @@ -16,6 +16,7 @@ SRC_URI=" -> tclconfig-2023.12.11.tar.gz " +S="${WORKDIR}"/${PN}-${MY_P} LICENSE="BSD" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" @@ -24,11 +25,9 @@ DEPEND="dev-lang/tcl:0=[threads]" RDEPEND="${DEPEND}" QA_CONFIG_IMPL_DECL_SKIP=( - opendir64 rewinddir64 closedir64 stat64 # used to test for Large File Support on AIX + opendir64 readdir64 rewinddir64 closedir64 stat64 # used to test for Large File Support on AIX ) -S="${WORKDIR}"/${PN}-${MY_P} - PATCHES=( "${FILESDIR}"/${PN}-2.8.5-musl.patch ) src_prepare() {