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 C35D7159C9C for ; Sun, 11 Aug 2024 10:34:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1BB47E2B43; Sun, 11 Aug 2024 10:34:02 +0000 (UTC) Received: from smtp.gentoo.org (mail.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 055DAE2B43 for ; Sun, 11 Aug 2024 10:34:02 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 14D6D3430F5 for ; Sun, 11 Aug 2024 10:34:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A57531ED0 for ; Sun, 11 Aug 2024 10:33:59 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1723372359.76f10f547f002195b01bf3774050909acec767e1.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/dash/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-shells/dash/dash-0.5.12.ebuild app-shells/dash/dash-9999.ebuild X-VCS-Directories: app-shells/dash/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 76f10f547f002195b01bf3774050909acec767e1 X-VCS-Branch: master Date: Sun, 11 Aug 2024 10:33:59 +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: d8403898-f060-44f3-bdda-33991093b8a7 X-Archives-Hash: d267973d59ae2f7bcdad170c6b709f25 commit: 76f10f547f002195b01bf3774050909acec767e1 Author: Sam James gentoo org> AuthorDate: Sun Aug 11 10:32:39 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sun Aug 11 10:32:39 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76f10f54 app-shells/dash: add 9999 dash releases are infrequent. Further, there's various POSIX.1-2024 changes in git which may be useful to test. Signed-off-by: Sam James gentoo.org> app-shells/dash/dash-0.5.12.ebuild | 13 ++++++++++--- app-shells/dash/{dash-0.5.12.ebuild => dash-9999.ebuild} | 13 ++++++++++--- 2 files changed, 20 insertions(+), 6 deletions(-) diff --git a/app-shells/dash/dash-0.5.12.ebuild b/app-shells/dash/dash-0.5.12.ebuild index 7659ef8d0f3b..951b11271623 100644 --- a/app-shells/dash/dash-0.5.12.ebuild +++ b/app-shells/dash/dash-0.5.12.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -7,11 +7,16 @@ inherit flag-o-matic toolchain-funcs DESCRIPTION="Debian Almquist Shell" HOMEPAGE="http://gondor.apana.org.au/~herbert/dash/" -SRC_URI="http://gondor.apana.org.au/~herbert/dash/files/${P}.tar.gz" +if [[ ${PV} == 9999 ]] ; then + EGIT_REPO_URI="https://git.kernel.org/pub/scm/utils/dash/dash.git" + inherit autotools git-r3 +else + SRC_URI="http://gondor.apana.org.au/~herbert/dash/files/${P}.tar.gz" + KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" +fi LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" IUSE="libedit static" BDEPEND="virtual/pkgconfig" @@ -27,6 +32,8 @@ src_prepare() { # Fix the invalid sort sed -i -e 's/LC_COLLATE=C/LC_ALL=C/g' src/mkbuiltins || die + [[ ${PV} == 9999 ]] && eautoreconf + # Use pkg-config for libedit linkage sed -i \ -e "/LIBS/s:-ledit:\`$(tc-getPKG_CONFIG) --libs libedit $(usex static --static '')\`:" \ diff --git a/app-shells/dash/dash-0.5.12.ebuild b/app-shells/dash/dash-9999.ebuild similarity index 74% copy from app-shells/dash/dash-0.5.12.ebuild copy to app-shells/dash/dash-9999.ebuild index 7659ef8d0f3b..0c10e51d5343 100644 --- a/app-shells/dash/dash-0.5.12.ebuild +++ b/app-shells/dash/dash-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -7,11 +7,16 @@ inherit flag-o-matic toolchain-funcs DESCRIPTION="Debian Almquist Shell" HOMEPAGE="http://gondor.apana.org.au/~herbert/dash/" -SRC_URI="http://gondor.apana.org.au/~herbert/dash/files/${P}.tar.gz" +if [[ ${PV} == 9999 ]] ; then + EGIT_REPO_URI="https://git.kernel.org/pub/scm/utils/dash/dash.git" + inherit autotools git-r3 +else + SRC_URI="http://gondor.apana.org.au/~herbert/dash/files/${P}.tar.gz" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" +fi LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" IUSE="libedit static" BDEPEND="virtual/pkgconfig" @@ -27,6 +32,8 @@ src_prepare() { # Fix the invalid sort sed -i -e 's/LC_COLLATE=C/LC_ALL=C/g' src/mkbuiltins || die + [[ ${PV} == 9999 ]] && eautoreconf + # Use pkg-config for libedit linkage sed -i \ -e "/LIBS/s:-ledit:\`$(tc-getPKG_CONFIG) --libs libedit $(usex static --static '')\`:" \