* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2022-11-22 21:19 Sam James
0 siblings, 0 replies; 44+ messages in thread
From: Sam James @ 2022-11-22 21:19 UTC (permalink / raw
To: gentoo-commits
commit: 5600bb505ec90dd55c045ffd807dc3a818b0353c
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 22 21:11:28 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Nov 22 21:18:52 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5600bb50
sys-devel/autoconf-wrapper: add 99999999
Signed-off-by: Sam James <sam <AT> gentoo.org>
.../autoconf-wrapper-20221118.ebuild | 20 ++++++++-----
.../autoconf-wrapper-99999999.ebuild | 35 ++++++++++++++++++++++
2 files changed, 48 insertions(+), 7 deletions(-)
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-20221118.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-20221118.ebuild
index b3df473d9d51..936757448f5b 100644
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-20221118.ebuild
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-20221118.ebuild
@@ -1,20 +1,26 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI="7"
+EAPI=8
MY_P="autotools-wrappers-at-${PV}"
-DESCRIPTION="wrapper for autoconf to manage multiple autoconf versions"
+DESCRIPTION="Wrapper for autoconf to manage multiple autoconf versions"
HOMEPAGE="https://gitweb.gentoo.org/proj/autotools-wrappers.git"
-SRC_URI="https://gitweb.gentoo.org/proj/autotools-wrappers.git/snapshot/${MY_P}.tar.gz"
-#SRC_URI="https://dev.gentoo.org/~vapier/dist/${MY_P}.tar.gz"
+
+if [[ ${PV} == *9999 ]] ; then
+ EGIT_REPO_URI=" https://anongit.gentoo.org/git/proj/autotools-wrappers.git"
+ inherit git-r3
+else
+ SRC_URI="https://gitweb.gentoo.org/proj/autotools-wrappers.git/snapshot/${MY_P}.tar.gz"
+ #SRC_URI="https://dev.gentoo.org/~vapier/dist/${MY_P}.tar.gz"
+ S="${WORKDIR}/${MY_P}"
+
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+fi
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-
-S="${WORKDIR}/${MY_P}"
src_install() {
exeinto /usr/$(get_libdir)/misc
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-99999999.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-99999999.ebuild
new file mode 100644
index 000000000000..9c6f006f4f4a
--- /dev/null
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-99999999.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_P="autotools-wrappers-at-${PV}"
+
+DESCRIPTION="Wrapper for autoconf to manage multiple autoconf versions"
+HOMEPAGE="https://gitweb.gentoo.org/proj/autotools-wrappers.git"
+
+if [[ ${PV} == *9999 ]] ; then
+ EGIT_REPO_URI=" https://anongit.gentoo.org/git/proj/autotools-wrappers.git"
+ inherit git-r3
+else
+ SRC_URI="https://gitweb.gentoo.org/proj/autotools-wrappers.git/snapshot/${MY_P}.tar.gz"
+ #SRC_URI="https://dev.gentoo.org/~vapier/dist/${MY_P}.tar.gz"
+ S="${WORKDIR}/${MY_P}"
+
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+
+src_install() {
+ exeinto /usr/$(get_libdir)/misc
+ doexe ac-wrapper.sh
+
+ dodir /usr/bin
+
+ local x=
+ for x in auto{conf,header,m4te,reconf,scan,update} ifnames ; do
+ dosym -r /usr/$(get_libdir)/misc/ac-wrapper.sh /usr/bin/${x}
+ done
+}
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2023-12-28 3:53 Sam James
0 siblings, 0 replies; 44+ messages in thread
From: Sam James @ 2023-12-28 3:53 UTC (permalink / raw
To: gentoo-commits
commit: 642bcc94e0e2e9b99598aca423486753deefdf77
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 28 03:44:51 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Dec 28 03:44:51 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=642bcc94
sys-devel/autoconf-wrapper: drop 20221207
Signed-off-by: Sam James <sam <AT> gentoo.org>
.../autoconf-wrapper-20221207.ebuild | 36 ----------------------
1 file changed, 36 deletions(-)
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild
deleted file mode 100644
index b5b2431a9ce7..000000000000
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-MY_P="autotools-wrappers-at-${PV}"
-
-DESCRIPTION="Wrapper for autoconf to manage multiple autoconf versions"
-HOMEPAGE="https://gitweb.gentoo.org/proj/autotools-wrappers.git"
-
-if [[ ${PV} == *9999 ]] ; then
- EGIT_REPO_URI="
- https://anongit.gentoo.org/git/proj/autotools-wrappers.git
- https://github.com/gentoo/autotools-wrappers
- "
- inherit git-r3
-else
- SRC_URI="https://gitweb.gentoo.org/proj/autotools-wrappers.git/snapshot/${MY_P}.tar.gz"
- S="${WORKDIR}/${MY_P}"
-
- KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-
-src_install() {
- exeinto /usr/$(get_libdir)/misc
- newexe ac-wrapper.sh ac-wrapper.sh
-
- dodir /usr/bin
- local x=
- for x in auto{conf,header,m4te,reconf,scan,update} ifnames ; do
- dosym ../$(get_libdir)/misc/ac-wrapper.sh /usr/bin/${x}
- done
-}
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2023-12-24 1:07 Sam James
0 siblings, 0 replies; 44+ messages in thread
From: Sam James @ 2023-12-24 1:07 UTC (permalink / raw
To: gentoo-commits
commit: c909ff488170e6c544c432cd45480e0654dcccf5
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 24 01:05:50 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Dec 24 01:05:50 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c909ff48
sys-devel/autoconf-wrapper: sync live
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-devel/autoconf-wrapper/autoconf-wrapper-99999999.ebuild | 2 ++
1 file changed, 2 insertions(+)
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-99999999.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-99999999.ebuild
index 91dc59284670..e7b7f3753112 100644
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-99999999.ebuild
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-99999999.ebuild
@@ -5,6 +5,8 @@ EAPI=8
MY_P="autotools-wrappers-at-${PV}"
+# Remember to modify LAST_KNOWN_VER 'upstream' on new autoconf releases!
+
DESCRIPTION="Wrapper for autoconf to manage multiple autoconf versions"
HOMEPAGE="https://gitweb.gentoo.org/proj/autotools-wrappers.git"
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2023-06-17 5:57 Sam James
0 siblings, 0 replies; 44+ messages in thread
From: Sam James @ 2023-06-17 5:57 UTC (permalink / raw
To: gentoo-commits
commit: f3d17898d857e1a39b49e9088e78d1cbb1eb9a00
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 17 05:56:17 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jun 17 05:56:17 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3d17898
sys-devel/autoconf-wrapper: Stabilize 20221207-r1 ALLARCHES, #908639
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-devel/autoconf-wrapper/autoconf-wrapper-20221207-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207-r1.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207-r1.ebuild
index 91dc59284670..893b84bce967 100644
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207-r1.ebuild
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207-r1.ebuild
@@ -18,7 +18,7 @@ else
SRC_URI="https://gitweb.gentoo.org/proj/autotools-wrappers.git/snapshot/${MY_P}.tar.gz"
S="${WORKDIR}/${MY_P}"
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
+ KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
fi
LICENSE="GPL-2"
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2023-03-26 4:07 Sam James
0 siblings, 0 replies; 44+ messages in thread
From: Sam James @ 2023-03-26 4:07 UTC (permalink / raw
To: gentoo-commits
commit: 63674f6d7a1342109ef33a54201e2e9b469e6b1d
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 26 04:02:57 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Mar 26 04:02:57 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63674f6d
sys-devel/autoconf-wrapper: drop 20220130
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-devel/autoconf-wrapper/Manifest | 1 -
.../autoconf-wrapper-20220130.ebuild | 28 ----------------------
2 files changed, 29 deletions(-)
diff --git a/sys-devel/autoconf-wrapper/Manifest b/sys-devel/autoconf-wrapper/Manifest
index 1f689e9a86bc..5a292895ab23 100644
--- a/sys-devel/autoconf-wrapper/Manifest
+++ b/sys-devel/autoconf-wrapper/Manifest
@@ -1,2 +1 @@
-DIST autotools-wrappers-at-20220130.tar.gz 3625 BLAKE2B c587d778a0c3331d14498308ae720dabdbcf27349ef0a3a2d5db56bb0ef597a5b1ab43388f1456e7888b40f043d68b0d89b420ac7404008f9a813ef78ae7e96f SHA512 700204b6024636dc808339aac15fb19bb645b654d4777ba8bf0febded5eb6af98659d04ed23819a8a638b6ee905e62292995bf2f838c30dedacb1a6bc0d04f1a
DIST autotools-wrappers-at-20221207.tar.gz 3646 BLAKE2B 82bec40e03ae5ec133252fd3c05c3fed537bb415e800918df9c9d783d48a9d76cbe60c53dd7daf6d94653d79fc52be8c089183dda996e8a72dd03ffa83098613 SHA512 12ea99721e6fc60a3ed7351d6c228aaf6e4eef0bd0444eda8cd742f74fa91150ef07bb52f6bcad4a350269e8032f5d4e204d2f2108b0d9c441ddd7f9755862b7
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild
deleted file mode 100644
index 7b58c31e8bd1..000000000000
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-MY_P="autotools-wrappers-at-${PV}"
-
-DESCRIPTION="wrapper for autoconf to manage multiple autoconf versions"
-HOMEPAGE="https://gitweb.gentoo.org/proj/autotools-wrappers.git"
-#SRC_URI="https://gitweb.gentoo.org/proj/autotools-wrappers.git/snapshot/${MY_P}.tar.gz"
-SRC_URI="https://dev.gentoo.org/~vapier/dist/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-
-S="${WORKDIR}/${MY_P}"
-
-src_install() {
- exeinto /usr/$(get_libdir)/misc
- newexe ac-wrapper.sh ac-wrapper.sh
-
- dodir /usr/bin
- local x=
- for x in auto{conf,header,m4te,reconf,scan,update} ifnames ; do
- dosym ../$(get_libdir)/misc/ac-wrapper.sh /usr/bin/${x}
- done
-}
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2023-02-05 18:50 Sam James
0 siblings, 0 replies; 44+ messages in thread
From: Sam James @ 2023-02-05 18:50 UTC (permalink / raw
To: gentoo-commits
commit: d08bd3ca926b604cd45496db04aab7cfa44dcf15
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 5 18:49:10 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Feb 5 18:50:33 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d08bd3ca
sys-devel/autoconf-wrapper: fix prefix sed
Closes: https://bugs.gentoo.org/893312
Signed-off-by: Sam James <sam <AT> gentoo.org>
...er-99999999.ebuild => autoconf-wrapper-20221207-r1.ebuild} | 11 +++++++++--
sys-devel/autoconf-wrapper/autoconf-wrapper-99999999.ebuild | 11 +++++++++--
2 files changed, 18 insertions(+), 4 deletions(-)
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-99999999.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207-r1.ebuild
similarity index 85%
copy from sys-devel/autoconf-wrapper/autoconf-wrapper-99999999.ebuild
copy to sys-devel/autoconf-wrapper/autoconf-wrapper-20221207-r1.ebuild
index 6fe1847e6d0a..0de54de36dba 100644
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-99999999.ebuild
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207-r1.ebuild
@@ -16,7 +16,6 @@ if [[ ${PV} == *9999 ]] ; then
inherit git-r3
else
SRC_URI="https://gitweb.gentoo.org/proj/autotools-wrappers.git/snapshot/${MY_P}.tar.gz"
- #SRC_URI="https://dev.gentoo.org/~vapier/dist/${MY_P}.tar.gz"
S="${WORKDIR}/${MY_P}"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
@@ -25,12 +24,20 @@ fi
LICENSE="GPL-2"
SLOT="0"
+src_prepare() {
+ default
+
+ # usr/bin/aclocal: bad substitution -> /bin/sh != POSIX shell
+ if use prefix ; then
+ sed -i -e '1c\#!'"${EPREFIX}"'/bin/sh' ac-wrapper.sh || die
+ fi
+}
+
src_install() {
exeinto /usr/$(get_libdir)/misc
doexe ac-wrapper.sh
dodir /usr/bin
-
local x=
for x in auto{conf,header,m4te,reconf,scan,update} ifnames ; do
dosym -r /usr/$(get_libdir)/misc/ac-wrapper.sh /usr/bin/${x}
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-99999999.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-99999999.ebuild
index 6fe1847e6d0a..0de54de36dba 100644
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-99999999.ebuild
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-99999999.ebuild
@@ -16,7 +16,6 @@ if [[ ${PV} == *9999 ]] ; then
inherit git-r3
else
SRC_URI="https://gitweb.gentoo.org/proj/autotools-wrappers.git/snapshot/${MY_P}.tar.gz"
- #SRC_URI="https://dev.gentoo.org/~vapier/dist/${MY_P}.tar.gz"
S="${WORKDIR}/${MY_P}"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
@@ -25,12 +24,20 @@ fi
LICENSE="GPL-2"
SLOT="0"
+src_prepare() {
+ default
+
+ # usr/bin/aclocal: bad substitution -> /bin/sh != POSIX shell
+ if use prefix ; then
+ sed -i -e '1c\#!'"${EPREFIX}"'/bin/sh' ac-wrapper.sh || die
+ fi
+}
+
src_install() {
exeinto /usr/$(get_libdir)/misc
doexe ac-wrapper.sh
dodir /usr/bin
-
local x=
for x in auto{conf,header,m4te,reconf,scan,update} ifnames ; do
dosym -r /usr/$(get_libdir)/misc/ac-wrapper.sh /usr/bin/${x}
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2023-02-03 5:59 Sam James
0 siblings, 0 replies; 44+ messages in thread
From: Sam James @ 2023-02-03 5:59 UTC (permalink / raw
To: gentoo-commits
commit: 9467877b1dfacadd0df76ec20acc22c272031504
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 3 05:57:44 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Feb 3 05:57:44 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9467877b
sys-devel/autoconf-wrapper: update EGIT_REPO_URI
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild | 6 ++++--
sys-devel/autoconf-wrapper/autoconf-wrapper-99999999.ebuild | 7 +++++--
2 files changed, 9 insertions(+), 4 deletions(-)
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild
index 9788b3e841eb..3b2a7a8ff475 100644
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild
@@ -9,11 +9,13 @@ DESCRIPTION="Wrapper for autoconf to manage multiple autoconf versions"
HOMEPAGE="https://gitweb.gentoo.org/proj/autotools-wrappers.git"
if [[ ${PV} == *9999 ]] ; then
- EGIT_REPO_URI=" https://anongit.gentoo.org/git/proj/autotools-wrappers.git"
+ EGIT_REPO_URI="
+ https://anongit.gentoo.org/git/proj/autotools-wrappers.git
+ https://github.com/gentoo/autotools-wrappers
+ "
inherit git-r3
else
SRC_URI="https://gitweb.gentoo.org/proj/autotools-wrappers.git/snapshot/${MY_P}.tar.gz"
- #SRC_URI="https://dev.gentoo.org/~vapier/dist/${MY_P}.tar.gz"
S="${WORKDIR}/${MY_P}"
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-99999999.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-99999999.ebuild
index 00ae3761530d..6fe1847e6d0a 100644
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-99999999.ebuild
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-99999999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -9,7 +9,10 @@ DESCRIPTION="Wrapper for autoconf to manage multiple autoconf versions"
HOMEPAGE="https://gitweb.gentoo.org/proj/autotools-wrappers.git"
if [[ ${PV} == *9999 ]] ; then
- EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/autotools-wrappers.git"
+ EGIT_REPO_URI="
+ https://anongit.gentoo.org/git/proj/autotools-wrappers.git
+ https://github.com/gentoo/autotools-wrappers
+ "
inherit git-r3
else
SRC_URI="https://gitweb.gentoo.org/proj/autotools-wrappers.git/snapshot/${MY_P}.tar.gz"
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2023-01-16 1:05 Sam James
0 siblings, 0 replies; 44+ messages in thread
From: Sam James @ 2023-01-16 1:05 UTC (permalink / raw
To: gentoo-commits
commit: 812f4a2195b2ca93530a7eb95b9bbf8d3f975658
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 16 01:03:51 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jan 16 01:03:51 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=812f4a21
sys-devel/autoconf-wrapper: mark ALLARCHES
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-devel/autoconf-wrapper/metadata.xml | 1 +
1 file changed, 1 insertion(+)
diff --git a/sys-devel/autoconf-wrapper/metadata.xml b/sys-devel/autoconf-wrapper/metadata.xml
index 1f8aa323a0f8..bc3f0d9090d5 100644
--- a/sys-devel/autoconf-wrapper/metadata.xml
+++ b/sys-devel/autoconf-wrapper/metadata.xml
@@ -5,6 +5,7 @@
<email>base-system@gentoo.org</email>
<name>Gentoo Base System</name>
</maintainer>
+ <stabilize-allarches/>
<upstream>
<remote-id type="gentoo">proj/autotools-wrappers</remote-id>
</upstream>
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2023-01-16 1:05 Sam James
0 siblings, 0 replies; 44+ messages in thread
From: Sam James @ 2023-01-16 1:05 UTC (permalink / raw
To: gentoo-commits
commit: 1e4003179ec1b93f403570d29b9a35a448ce2290
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 16 01:04:12 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jan 16 01:04:12 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e400317
sys-devel/autoconf-wrapper: add github upstream metadata
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-devel/autoconf-wrapper/metadata.xml | 1 +
1 file changed, 1 insertion(+)
diff --git a/sys-devel/autoconf-wrapper/metadata.xml b/sys-devel/autoconf-wrapper/metadata.xml
index bc3f0d9090d5..2847c0b0420f 100644
--- a/sys-devel/autoconf-wrapper/metadata.xml
+++ b/sys-devel/autoconf-wrapper/metadata.xml
@@ -8,5 +8,6 @@
<stabilize-allarches/>
<upstream>
<remote-id type="gentoo">proj/autotools-wrappers</remote-id>
+ <remote-id type="github">gentoo/autotools-wrappers</remote-id>
</upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2023-01-16 0:37 Sam James
0 siblings, 0 replies; 44+ messages in thread
From: Sam James @ 2023-01-16 0:37 UTC (permalink / raw
To: gentoo-commits
commit: 1d8ecefeadc72dfb850b016b65e5d138a00b491c
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 16 00:37:30 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jan 16 00:37:30 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d8ecefe
sys-devel/autoconf-wrapper: Stabilize 20221207 arm, #891005
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild
index 26e908786c47..9788b3e841eb 100644
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild
@@ -16,7 +16,7 @@ else
#SRC_URI="https://dev.gentoo.org/~vapier/dist/${MY_P}.tar.gz"
S="${WORKDIR}/${MY_P}"
- KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
fi
LICENSE="GPL-2"
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2023-01-16 0:36 Sam James
0 siblings, 0 replies; 44+ messages in thread
From: Sam James @ 2023-01-16 0:36 UTC (permalink / raw
To: gentoo-commits
commit: e6818db966577efb764da9533853a0631988ae14
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 16 00:36:07 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jan 16 00:36:07 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6818db9
sys-devel/autoconf-wrapper: Stabilize 20221207 sparc, #891005
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild
index d4ef98d46de7..26e908786c47 100644
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild
@@ -16,7 +16,7 @@ else
#SRC_URI="https://dev.gentoo.org/~vapier/dist/${MY_P}.tar.gz"
S="${WORKDIR}/${MY_P}"
- KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
fi
LICENSE="GPL-2"
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2023-01-16 0:36 Sam James
0 siblings, 0 replies; 44+ messages in thread
From: Sam James @ 2023-01-16 0:36 UTC (permalink / raw
To: gentoo-commits
commit: 615e560d347d944c1a5cb7aa82cce31717419cbd
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 16 00:36:04 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jan 16 00:36:04 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=615e560d
sys-devel/autoconf-wrapper: Stabilize 20221207 arm64, #891005
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild
index a5727ebba0ab..d1dadfb4fa4a 100644
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild
@@ -16,7 +16,7 @@ else
#SRC_URI="https://dev.gentoo.org/~vapier/dist/${MY_P}.tar.gz"
S="${WORKDIR}/${MY_P}"
- KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
fi
LICENSE="GPL-2"
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2023-01-16 0:36 Sam James
0 siblings, 0 replies; 44+ messages in thread
From: Sam James @ 2023-01-16 0:36 UTC (permalink / raw
To: gentoo-commits
commit: afd31624ba24f1c77566c22f6033e901bc3a2071
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 16 00:36:05 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jan 16 00:36:05 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afd31624
sys-devel/autoconf-wrapper: Stabilize 20221207 x86, #891005
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild
index d1dadfb4fa4a..62f85d15afab 100644
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild
@@ -16,7 +16,7 @@ else
#SRC_URI="https://dev.gentoo.org/~vapier/dist/${MY_P}.tar.gz"
S="${WORKDIR}/${MY_P}"
- KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
fi
LICENSE="GPL-2"
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2023-01-16 0:36 Sam James
0 siblings, 0 replies; 44+ messages in thread
From: Sam James @ 2023-01-16 0:36 UTC (permalink / raw
To: gentoo-commits
commit: dba35876e85c2e92b1e4d21bbc32998e12cdbe74
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 16 00:36:06 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jan 16 00:36:06 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dba35876
sys-devel/autoconf-wrapper: Stabilize 20221207 hppa, #891005
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild
index 62f85d15afab..d4ef98d46de7 100644
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild
@@ -16,7 +16,7 @@ else
#SRC_URI="https://dev.gentoo.org/~vapier/dist/${MY_P}.tar.gz"
S="${WORKDIR}/${MY_P}"
- KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
fi
LICENSE="GPL-2"
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2023-01-16 0:30 Sam James
0 siblings, 0 replies; 44+ messages in thread
From: Sam James @ 2023-01-16 0:30 UTC (permalink / raw
To: gentoo-commits
commit: 8d38b8822fe7bbece5d5f8068daeeea780e110df
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 16 00:30:13 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jan 16 00:30:13 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d38b882
sys-devel/autoconf-wrapper: Stabilize 20221207 ppc, #891005
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild
index 6fb830389b80..5793ba5fb51f 100644
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild
@@ -16,7 +16,7 @@ else
#SRC_URI="https://dev.gentoo.org/~vapier/dist/${MY_P}.tar.gz"
S="${WORKDIR}/${MY_P}"
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
fi
LICENSE="GPL-2"
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2023-01-16 0:30 Sam James
0 siblings, 0 replies; 44+ messages in thread
From: Sam James @ 2023-01-16 0:30 UTC (permalink / raw
To: gentoo-commits
commit: 61cad6b6fad37316681de14cbe9d38ffb71da599
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 16 00:30:14 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jan 16 00:30:14 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61cad6b6
sys-devel/autoconf-wrapper: Stabilize 20221207 amd64, #891005
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild
index 5793ba5fb51f..a5727ebba0ab 100644
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild
@@ -16,7 +16,7 @@ else
#SRC_URI="https://dev.gentoo.org/~vapier/dist/${MY_P}.tar.gz"
S="${WORKDIR}/${MY_P}"
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
fi
LICENSE="GPL-2"
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2023-01-16 0:30 Sam James
0 siblings, 0 replies; 44+ messages in thread
From: Sam James @ 2023-01-16 0:30 UTC (permalink / raw
To: gentoo-commits
commit: e3a52335e36ccc01cb100403cc18f8dcbb2bcaeb
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 16 00:30:12 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jan 16 00:30:12 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3a52335
sys-devel/autoconf-wrapper: Stabilize 20221207 ppc64, #891005
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild
index 936757448f5b..6fb830389b80 100644
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -16,7 +16,7 @@ else
#SRC_URI="https://dev.gentoo.org/~vapier/dist/${MY_P}.tar.gz"
S="${WORKDIR}/${MY_P}"
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
fi
LICENSE="GPL-2"
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2022-12-25 19:39 Sam James
0 siblings, 0 replies; 44+ messages in thread
From: Sam James @ 2022-12-25 19:39 UTC (permalink / raw
To: gentoo-commits
commit: df8b29f1d0ea2904a48e7f5664bfd88e7df9cf53
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 25 19:38:29 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Dec 25 19:38:29 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df8b29f1
sys-devel/autoconf-wrapper: drop 20221118
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-devel/autoconf-wrapper/Manifest | 1 -
.../autoconf-wrapper-20221118.ebuild | 34 ----------------------
2 files changed, 35 deletions(-)
diff --git a/sys-devel/autoconf-wrapper/Manifest b/sys-devel/autoconf-wrapper/Manifest
index 4c4633a50539..1f689e9a86bc 100644
--- a/sys-devel/autoconf-wrapper/Manifest
+++ b/sys-devel/autoconf-wrapper/Manifest
@@ -1,3 +1,2 @@
DIST autotools-wrappers-at-20220130.tar.gz 3625 BLAKE2B c587d778a0c3331d14498308ae720dabdbcf27349ef0a3a2d5db56bb0ef597a5b1ab43388f1456e7888b40f043d68b0d89b420ac7404008f9a813ef78ae7e96f SHA512 700204b6024636dc808339aac15fb19bb645b654d4777ba8bf0febded5eb6af98659d04ed23819a8a638b6ee905e62292995bf2f838c30dedacb1a6bc0d04f1a
-DIST autotools-wrappers-at-20221118.tar.gz 3625 BLAKE2B 713e4b581baf6b5c0756f8bd026566e113eb6e8f54a594f132aa952277f68c7a9da28c93a191b8ad4279952ebcfcf7a5d679d4bb7a831b14af208ff2172ee15c SHA512 1409c890fa3450195868536bb8c1bdcfb52c11f412ab0b99652e39b7ea4eeec1807611e4fa89c8289c162c7de8ff5c2864a86d6637ea24088b3125f8db895663
DIST autotools-wrappers-at-20221207.tar.gz 3646 BLAKE2B 82bec40e03ae5ec133252fd3c05c3fed537bb415e800918df9c9d783d48a9d76cbe60c53dd7daf6d94653d79fc52be8c089183dda996e8a72dd03ffa83098613 SHA512 12ea99721e6fc60a3ed7351d6c228aaf6e4eef0bd0444eda8cd742f74fa91150ef07bb52f6bcad4a350269e8032f5d4e204d2f2108b0d9c441ddd7f9755862b7
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-20221118.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-20221118.ebuild
deleted file mode 100644
index 936757448f5b..000000000000
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-20221118.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-MY_P="autotools-wrappers-at-${PV}"
-
-DESCRIPTION="Wrapper for autoconf to manage multiple autoconf versions"
-HOMEPAGE="https://gitweb.gentoo.org/proj/autotools-wrappers.git"
-
-if [[ ${PV} == *9999 ]] ; then
- EGIT_REPO_URI=" https://anongit.gentoo.org/git/proj/autotools-wrappers.git"
- inherit git-r3
-else
- SRC_URI="https://gitweb.gentoo.org/proj/autotools-wrappers.git/snapshot/${MY_P}.tar.gz"
- #SRC_URI="https://dev.gentoo.org/~vapier/dist/${MY_P}.tar.gz"
- S="${WORKDIR}/${MY_P}"
-
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-
-src_install() {
- exeinto /usr/$(get_libdir)/misc
- newexe ac-wrapper.sh ac-wrapper.sh
-
- dodir /usr/bin
- local x=
- for x in auto{conf,header,m4te,reconf,scan,update} ifnames ; do
- dosym ../$(get_libdir)/misc/ac-wrapper.sh /usr/bin/${x}
- done
-}
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2022-12-07 20:47 Sam James
0 siblings, 0 replies; 44+ messages in thread
From: Sam James @ 2022-12-07 20:47 UTC (permalink / raw
To: gentoo-commits
commit: 17cd20efce18f133cfb0977703bd1a5027c6a607
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 7 20:47:11 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Dec 7 20:47:19 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17cd20ef
sys-devel/autoconf-wrapper: add 20221207
Closes: https://bugs.gentoo.org/870169
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-devel/autoconf-wrapper/Manifest | 1 +
.../autoconf-wrapper-20221207.ebuild | 34 ++++++++++++++++++++++
2 files changed, 35 insertions(+)
diff --git a/sys-devel/autoconf-wrapper/Manifest b/sys-devel/autoconf-wrapper/Manifest
index 92ba4e2d8daa..4c4633a50539 100644
--- a/sys-devel/autoconf-wrapper/Manifest
+++ b/sys-devel/autoconf-wrapper/Manifest
@@ -1,2 +1,3 @@
DIST autotools-wrappers-at-20220130.tar.gz 3625 BLAKE2B c587d778a0c3331d14498308ae720dabdbcf27349ef0a3a2d5db56bb0ef597a5b1ab43388f1456e7888b40f043d68b0d89b420ac7404008f9a813ef78ae7e96f SHA512 700204b6024636dc808339aac15fb19bb645b654d4777ba8bf0febded5eb6af98659d04ed23819a8a638b6ee905e62292995bf2f838c30dedacb1a6bc0d04f1a
DIST autotools-wrappers-at-20221118.tar.gz 3625 BLAKE2B 713e4b581baf6b5c0756f8bd026566e113eb6e8f54a594f132aa952277f68c7a9da28c93a191b8ad4279952ebcfcf7a5d679d4bb7a831b14af208ff2172ee15c SHA512 1409c890fa3450195868536bb8c1bdcfb52c11f412ab0b99652e39b7ea4eeec1807611e4fa89c8289c162c7de8ff5c2864a86d6637ea24088b3125f8db895663
+DIST autotools-wrappers-at-20221207.tar.gz 3646 BLAKE2B 82bec40e03ae5ec133252fd3c05c3fed537bb415e800918df9c9d783d48a9d76cbe60c53dd7daf6d94653d79fc52be8c089183dda996e8a72dd03ffa83098613 SHA512 12ea99721e6fc60a3ed7351d6c228aaf6e4eef0bd0444eda8cd742f74fa91150ef07bb52f6bcad4a350269e8032f5d4e204d2f2108b0d9c441ddd7f9755862b7
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild
new file mode 100644
index 000000000000..936757448f5b
--- /dev/null
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_P="autotools-wrappers-at-${PV}"
+
+DESCRIPTION="Wrapper for autoconf to manage multiple autoconf versions"
+HOMEPAGE="https://gitweb.gentoo.org/proj/autotools-wrappers.git"
+
+if [[ ${PV} == *9999 ]] ; then
+ EGIT_REPO_URI=" https://anongit.gentoo.org/git/proj/autotools-wrappers.git"
+ inherit git-r3
+else
+ SRC_URI="https://gitweb.gentoo.org/proj/autotools-wrappers.git/snapshot/${MY_P}.tar.gz"
+ #SRC_URI="https://dev.gentoo.org/~vapier/dist/${MY_P}.tar.gz"
+ S="${WORKDIR}/${MY_P}"
+
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+
+src_install() {
+ exeinto /usr/$(get_libdir)/misc
+ newexe ac-wrapper.sh ac-wrapper.sh
+
+ dodir /usr/bin
+ local x=
+ for x in auto{conf,header,m4te,reconf,scan,update} ifnames ; do
+ dosym ../$(get_libdir)/misc/ac-wrapper.sh /usr/bin/${x}
+ done
+}
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2022-11-23 0:50 Sam James
0 siblings, 0 replies; 44+ messages in thread
From: Sam James @ 2022-11-23 0:50 UTC (permalink / raw
To: gentoo-commits
commit: 19a2a580469777a228a33f9cef13813fe428519f
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 23 00:50:29 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Nov 23 00:50:29 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19a2a580
sys-devel/autoconf-wrapper: fix repo URL typo
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-devel/autoconf-wrapper/autoconf-wrapper-99999999.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-99999999.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-99999999.ebuild
index 9c6f006f4f4a..00ae3761530d 100644
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-99999999.ebuild
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-99999999.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="Wrapper for autoconf to manage multiple autoconf versions"
HOMEPAGE="https://gitweb.gentoo.org/proj/autotools-wrappers.git"
if [[ ${PV} == *9999 ]] ; then
- EGIT_REPO_URI=" https://anongit.gentoo.org/git/proj/autotools-wrappers.git"
+ EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/autotools-wrappers.git"
inherit git-r3
else
SRC_URI="https://gitweb.gentoo.org/proj/autotools-wrappers.git/snapshot/${MY_P}.tar.gz"
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2022-11-22 21:19 Sam James
0 siblings, 0 replies; 44+ messages in thread
From: Sam James @ 2022-11-22 21:19 UTC (permalink / raw
To: gentoo-commits
commit: cd71057f50315f09f4081c70befba57d20551ee5
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 22 21:17:38 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Nov 22 21:18:53 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd71057f
sys-devel/autoconf-wrapper: add gentoo upstream metadata
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-devel/autoconf-wrapper/metadata.xml | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/sys-devel/autoconf-wrapper/metadata.xml b/sys-devel/autoconf-wrapper/metadata.xml
index 73dda144f9ac..1f8aa323a0f8 100644
--- a/sys-devel/autoconf-wrapper/metadata.xml
+++ b/sys-devel/autoconf-wrapper/metadata.xml
@@ -1,8 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<maintainer type="project">
- <email>base-system@gentoo.org</email>
- <name>Gentoo Base System</name>
-</maintainer>
+ <maintainer type="project">
+ <email>base-system@gentoo.org</email>
+ <name>Gentoo Base System</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="gentoo">proj/autotools-wrappers</remote-id>
+ </upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2022-11-18 3:37 Sam James
0 siblings, 0 replies; 44+ messages in thread
From: Sam James @ 2022-11-18 3:37 UTC (permalink / raw
To: gentoo-commits
commit: f49bcd6145161142a76f91a38ddccbdce8039902
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 18 03:36:58 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Nov 18 03:36:58 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f49bcd61
sys-devel/autoconf-wrapper: add 20221118
Bug: https://bugs.gentoo.org/870169
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-devel/autoconf-wrapper/Manifest | 1 +
.../autoconf-wrapper-20221118.ebuild | 28 ++++++++++++++++++++++
2 files changed, 29 insertions(+)
diff --git a/sys-devel/autoconf-wrapper/Manifest b/sys-devel/autoconf-wrapper/Manifest
index 72082a2b2d48..92ba4e2d8daa 100644
--- a/sys-devel/autoconf-wrapper/Manifest
+++ b/sys-devel/autoconf-wrapper/Manifest
@@ -1 +1,2 @@
DIST autotools-wrappers-at-20220130.tar.gz 3625 BLAKE2B c587d778a0c3331d14498308ae720dabdbcf27349ef0a3a2d5db56bb0ef597a5b1ab43388f1456e7888b40f043d68b0d89b420ac7404008f9a813ef78ae7e96f SHA512 700204b6024636dc808339aac15fb19bb645b654d4777ba8bf0febded5eb6af98659d04ed23819a8a638b6ee905e62292995bf2f838c30dedacb1a6bc0d04f1a
+DIST autotools-wrappers-at-20221118.tar.gz 3625 BLAKE2B 713e4b581baf6b5c0756f8bd026566e113eb6e8f54a594f132aa952277f68c7a9da28c93a191b8ad4279952ebcfcf7a5d679d4bb7a831b14af208ff2172ee15c SHA512 1409c890fa3450195868536bb8c1bdcfb52c11f412ab0b99652e39b7ea4eeec1807611e4fa89c8289c162c7de8ff5c2864a86d6637ea24088b3125f8db895663
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-20221118.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-20221118.ebuild
new file mode 100644
index 000000000000..b3df473d9d51
--- /dev/null
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-20221118.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+MY_P="autotools-wrappers-at-${PV}"
+
+DESCRIPTION="wrapper for autoconf to manage multiple autoconf versions"
+HOMEPAGE="https://gitweb.gentoo.org/proj/autotools-wrappers.git"
+SRC_URI="https://gitweb.gentoo.org/proj/autotools-wrappers.git/snapshot/${MY_P}.tar.gz"
+#SRC_URI="https://dev.gentoo.org/~vapier/dist/${MY_P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+S="${WORKDIR}/${MY_P}"
+
+src_install() {
+ exeinto /usr/$(get_libdir)/misc
+ newexe ac-wrapper.sh ac-wrapper.sh
+
+ dodir /usr/bin
+ local x=
+ for x in auto{conf,header,m4te,reconf,scan,update} ifnames ; do
+ dosym ../$(get_libdir)/misc/ac-wrapper.sh /usr/bin/${x}
+ done
+}
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2022-05-22 11:27 Jakov Smolić
0 siblings, 0 replies; 44+ messages in thread
From: Jakov Smolić @ 2022-05-22 11:27 UTC (permalink / raw
To: gentoo-commits
commit: ed4d6f86082d83bb1598ad3495ead4d6c52575fe
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sun May 22 11:27:13 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sun May 22 11:27:13 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed4d6f86
sys-devel/autoconf-wrapper: Stabilize 20220130 hppa, #846845
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild
index e5d49d62a356..7b58c31e8bd1 100644
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://dev.gentoo.org/~vapier/dist/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
S="${WORKDIR}/${MY_P}"
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2022-05-22 6:22 Agostino Sarubbo
0 siblings, 0 replies; 44+ messages in thread
From: Agostino Sarubbo @ 2022-05-22 6:22 UTC (permalink / raw
To: gentoo-commits
commit: ae4861e0cc75837202b2471ef1bb22be60138417
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sun May 22 06:21:50 2022 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sun May 22 06:21:50 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae4861e0
sys-devel/autoconf-wrapper: sparc stable wrt bug #846845
Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild
index e43a849befe0..e5d49d62a356 100644
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://dev.gentoo.org/~vapier/dist/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
S="${WORKDIR}/${MY_P}"
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2022-05-22 6:19 Agostino Sarubbo
0 siblings, 0 replies; 44+ messages in thread
From: Agostino Sarubbo @ 2022-05-22 6:19 UTC (permalink / raw
To: gentoo-commits
commit: d2332d5f9de01192e30e544c60acb0fc79ac3cff
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sun May 22 06:19:41 2022 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sun May 22 06:19:41 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2332d5f
sys-devel/autoconf-wrapper: arm64 stable wrt bug #846845
Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --include-arches="arm64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild
index 4d18a1a3c384..e43a849befe0 100644
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://dev.gentoo.org/~vapier/dist/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
S="${WORKDIR}/${MY_P}"
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2022-05-22 6:17 Agostino Sarubbo
0 siblings, 0 replies; 44+ messages in thread
From: Agostino Sarubbo @ 2022-05-22 6:17 UTC (permalink / raw
To: gentoo-commits
commit: 9773256b2e875b3c8ebaa5ab841c0a1ef7a184ce
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sun May 22 06:17:39 2022 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sun May 22 06:17:39 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9773256b
sys-devel/autoconf-wrapper: arm stable wrt bug #846845
Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --include-arches="arm"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild
index 64a56ec5eeeb..4d18a1a3c384 100644
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://dev.gentoo.org/~vapier/dist/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
S="${WORKDIR}/${MY_P}"
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2022-05-22 3:21 Sam James
0 siblings, 0 replies; 44+ messages in thread
From: Sam James @ 2022-05-22 3:21 UTC (permalink / raw
To: gentoo-commits
commit: 2a39a531b5d8a5da5a5a319c7ab2b9472135ec94
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun May 22 03:20:55 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun May 22 03:20:55 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a39a531
sys-devel/autoconf-wrapper: Stabilize 20220130 x86, #846845
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild
index c8ee48d65412..64a56ec5eeeb 100644
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://dev.gentoo.org/~vapier/dist/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
S="${WORKDIR}/${MY_P}"
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2022-05-22 3:20 Sam James
0 siblings, 0 replies; 44+ messages in thread
From: Sam James @ 2022-05-22 3:20 UTC (permalink / raw
To: gentoo-commits
commit: f14573f0906080c8bcb690c25a5020401adee997
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun May 22 03:19:21 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun May 22 03:19:21 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f14573f0
sys-devel/autoconf-wrapper: Stabilize 20220130 amd64, #846845
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild
index cbef3ceb5358..c8ee48d65412 100644
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://dev.gentoo.org/~vapier/dist/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
S="${WORKDIR}/${MY_P}"
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2022-05-22 3:18 Sam James
0 siblings, 0 replies; 44+ messages in thread
From: Sam James @ 2022-05-22 3:18 UTC (permalink / raw
To: gentoo-commits
commit: d8d94dc38cd6399c656715e91fd9f09b570c4086
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun May 22 03:17:24 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun May 22 03:17:24 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8d94dc3
sys-devel/autoconf-wrapper: Stabilize 20220130 ppc64, #846845
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild
index c95f53ee2e44..cbef3ceb5358 100644
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://dev.gentoo.org/~vapier/dist/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
S="${WORKDIR}/${MY_P}"
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2022-05-22 3:18 Sam James
0 siblings, 0 replies; 44+ messages in thread
From: Sam James @ 2022-05-22 3:18 UTC (permalink / raw
To: gentoo-commits
commit: b2978d2f97f2f78bf85fdfedb0d4578531d4bd7f
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun May 22 03:16:39 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun May 22 03:16:39 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2978d2f
sys-devel/autoconf-wrapper: Stabilize 20220130 ppc, #846845
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild
index 35ec63b6c91d..c95f53ee2e44 100644
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://dev.gentoo.org/~vapier/dist/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
S="${WORKDIR}/${MY_P}"
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2022-01-30 9:28 Mike Frysinger
0 siblings, 0 replies; 44+ messages in thread
From: Mike Frysinger @ 2022-01-30 9:28 UTC (permalink / raw
To: gentoo-commits
commit: 77c1aa98ebfc7ce7217679da1bbd8602164bb25c
Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 30 09:28:10 2022 +0000
Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Sun Jan 30 09:28:37 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77c1aa98
sys-devel/autoconf-wrapper: version bump for WANT_AUTOCONF=latest support
Signed-off-by: Mike Frysinger <vapier <AT> gentoo.org>
sys-devel/autoconf-wrapper/Manifest | 1 +
.../autoconf-wrapper-20220130.ebuild | 28 ++++++++++++++++++++++
2 files changed, 29 insertions(+)
diff --git a/sys-devel/autoconf-wrapper/Manifest b/sys-devel/autoconf-wrapper/Manifest
new file mode 100644
index 000000000000..72082a2b2d48
--- /dev/null
+++ b/sys-devel/autoconf-wrapper/Manifest
@@ -0,0 +1 @@
+DIST autotools-wrappers-at-20220130.tar.gz 3625 BLAKE2B c587d778a0c3331d14498308ae720dabdbcf27349ef0a3a2d5db56bb0ef597a5b1ab43388f1456e7888b40f043d68b0d89b420ac7404008f9a813ef78ae7e96f SHA512 700204b6024636dc808339aac15fb19bb645b654d4777ba8bf0febded5eb6af98659d04ed23819a8a638b6ee905e62292995bf2f838c30dedacb1a6bc0d04f1a
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild
new file mode 100644
index 000000000000..5c33d67f0864
--- /dev/null
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-20220130.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+MY_P="autotools-wrappers-at-${PV}"
+
+DESCRIPTION="wrapper for autoconf to manage multiple autoconf versions"
+HOMEPAGE="https://gitweb.gentoo.org/proj/autotools-wrappers.git"
+#SRC_URI="https://gitweb.gentoo.org/proj/autotools-wrappers.git/snapshot/${MY_P}.tar.gz"
+SRC_URI="https://dev.gentoo.org/~vapier/dist/${MY_P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+S="${WORKDIR}/${MY_P}"
+
+src_install() {
+ exeinto /usr/$(get_libdir)/misc
+ newexe ac-wrapper.sh ac-wrapper.sh
+
+ dodir /usr/bin
+ local x=
+ for x in auto{conf,header,m4te,reconf,scan,update} ifnames ; do
+ dosym ../$(get_libdir)/misc/ac-wrapper.sh /usr/bin/${x}
+ done
+}
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2021-08-13 21:54 Sam James
0 siblings, 0 replies; 44+ messages in thread
From: Sam James @ 2021-08-13 21:54 UTC (permalink / raw
To: gentoo-commits
commit: 87de8d83fefd8a058b02de97c37540df1aefb65b
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 13 21:54:07 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Aug 13 21:54:07 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87de8d83
sys-devel/autoconf-wrapper: Stabilize 15 arm64, #807514
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-devel/autoconf-wrapper/autoconf-wrapper-15.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-15.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-15.ebuild
index e9f56d3a27c..d960af4fa66 100644
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-15.ebuild
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-15.ebuild
@@ -9,7 +9,7 @@ HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
LICENSE="GPL-2"
SLOT="0"
[[ "${PV}" == *_pre* ]] || \
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
S="${WORKDIR}"
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2021-08-11 20:14 Sam James
0 siblings, 0 replies; 44+ messages in thread
From: Sam James @ 2021-08-11 20:14 UTC (permalink / raw
To: gentoo-commits
commit: 45e205a15d6853f795d45ece3a152dce5d5a4cb2
Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Wed Aug 11 05:36:58 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Aug 11 20:13:39 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45e205a1
sys-devel/autoconf-wrapper: stable 15 for hppa, bug #807514
Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-devel/autoconf-wrapper/autoconf-wrapper-15.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-15.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-15.ebuild
index 5d5188d885c..e9f56d3a27c 100644
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-15.ebuild
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-15.ebuild
@@ -9,7 +9,7 @@ HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
LICENSE="GPL-2"
SLOT="0"
[[ "${PV}" == *_pre* ]] || \
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
S="${WORKDIR}"
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2021-08-11 0:20 Sam James
0 siblings, 0 replies; 44+ messages in thread
From: Sam James @ 2021-08-11 0:20 UTC (permalink / raw
To: gentoo-commits
commit: 54e8020fa2e4659a611b7fc607d342f47e51bff4
Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Tue Aug 10 16:59:20 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Aug 11 00:20:21 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54e8020f
sys-devel/autoconf-wrapper: stable 15 for sparc, bug #807514
Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-devel/autoconf-wrapper/autoconf-wrapper-15.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-15.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-15.ebuild
index b4d5eb0aca5..c83f62a7fc1 100644
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-15.ebuild
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-15.ebuild
@@ -9,7 +9,7 @@ HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
LICENSE="GPL-2"
SLOT="0"
[[ "${PV}" == *_pre* ]] || \
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
S="${WORKDIR}"
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2021-08-11 0:12 Sam James
0 siblings, 0 replies; 44+ messages in thread
From: Sam James @ 2021-08-11 0:12 UTC (permalink / raw
To: gentoo-commits
commit: 2f52de00efdc1139973e66bd057e36c8c6dff0b9
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 11 00:09:59 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Aug 11 00:09:59 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f52de00
sys-devel/autoconf-wrapper: Stabilize 15 ppc64, #807514
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-devel/autoconf-wrapper/autoconf-wrapper-15.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-15.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-15.ebuild
index d80203e5c88..b4d5eb0aca5 100644
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-15.ebuild
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-15.ebuild
@@ -9,7 +9,7 @@ HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
LICENSE="GPL-2"
SLOT="0"
[[ "${PV}" == *_pre* ]] || \
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
S="${WORKDIR}"
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2021-08-11 0:02 Sam James
0 siblings, 0 replies; 44+ messages in thread
From: Sam James @ 2021-08-11 0:02 UTC (permalink / raw
To: gentoo-commits
commit: 475dd96bf15c165781fbc5de5e34cc716a7b9da1
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 11 00:00:16 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Aug 11 00:02:26 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=475dd96b
sys-devel/autoconf-wrapper: Stabilize 15 x86, #807514
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-devel/autoconf-wrapper/autoconf-wrapper-15.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-15.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-15.ebuild
index 34c52294135..54a653e6325 100644
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-15.ebuild
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-15.ebuild
@@ -9,7 +9,7 @@ HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
LICENSE="GPL-2"
SLOT="0"
[[ "${PV}" == *_pre* ]] || \
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
S="${WORKDIR}"
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2021-08-10 15:36 Agostino Sarubbo
0 siblings, 0 replies; 44+ messages in thread
From: Agostino Sarubbo @ 2021-08-10 15:36 UTC (permalink / raw
To: gentoo-commits
commit: 998d4eadf4cd657ce13fa6cefea5ce7df6794e20
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 10 15:35:00 2021 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Tue Aug 10 15:35:00 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=998d4ead
sys-devel/autoconf-wrapper: amd64 stable wrt bug #807514
Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
sys-devel/autoconf-wrapper/autoconf-wrapper-15.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-15.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-15.ebuild
index 256108a64ba..34c52294135 100644
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-15.ebuild
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-15.ebuild
@@ -9,7 +9,7 @@ HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
LICENSE="GPL-2"
SLOT="0"
[[ "${PV}" == *_pre* ]] || \
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
S="${WORKDIR}"
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2021-05-13 13:55 David Seifert
0 siblings, 0 replies; 44+ messages in thread
From: David Seifert @ 2021-05-13 13:55 UTC (permalink / raw
To: gentoo-commits
commit: eaeaec5cadfd1a057720069dd52d589186d23723
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu May 13 13:54:31 2021 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Thu May 13 13:54:31 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eaeaec5c
sys-devel/autoconf-wrapper: drop unused multilib inherit
Signed-off-by: David Seifert <soap <AT> gentoo.org>
sys-devel/autoconf-wrapper/autoconf-wrapper-13-r1.ebuild | 4 ----
sys-devel/autoconf-wrapper/autoconf-wrapper-15.ebuild | 4 ----
2 files changed, 8 deletions(-)
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-13-r1.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-13-r1.ebuild
index 5ebc1a0be29..a8d5e9b781a 100644
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-13-r1.ebuild
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-13-r1.ebuild
@@ -3,16 +3,12 @@
EAPI=6
-inherit multilib
-
DESCRIPTION="wrapper for autoconf to manage multiple autoconf versions"
HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
-SRC_URI=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE=""
S="${WORKDIR}"
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-15.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-15.ebuild
index 68d956726bb..256108a64ba 100644
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-15.ebuild
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-15.ebuild
@@ -3,17 +3,13 @@
EAPI=7
-inherit multilib
-
DESCRIPTION="wrapper for autoconf to manage multiple autoconf versions"
HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
-SRC_URI=""
LICENSE="GPL-2"
SLOT="0"
[[ "${PV}" == *_pre* ]] || \
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE=""
S="${WORKDIR}"
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2021-03-09 15:52 Lars Wendler
0 siblings, 0 replies; 44+ messages in thread
From: Lars Wendler @ 2021-03-09 15:52 UTC (permalink / raw
To: gentoo-commits
commit: 499ece2186f6977dbcb32b3bf87c01ba67a51433
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 9 15:51:51 2021 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Tue Mar 9 15:52:32 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=499ece21
sys-devel/autoconf-wrapper: Removed old
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
.../autoconf-wrapper/autoconf-wrapper-14.ebuild | 29 ----------------------
1 file changed, 29 deletions(-)
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-14.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-14.ebuild
deleted file mode 100644
index 68d956726bb..00000000000
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-14.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit multilib
-
-DESCRIPTION="wrapper for autoconf to manage multiple autoconf versions"
-HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
-SRC_URI=""
-
-LICENSE="GPL-2"
-SLOT="0"
-[[ "${PV}" == *_pre* ]] || \
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE=""
-
-S="${WORKDIR}"
-
-src_install() {
- exeinto /usr/$(get_libdir)/misc
- newexe "${FILESDIR}"/ac-wrapper-${PV}.sh ac-wrapper.sh
-
- dodir /usr/bin
- local x=
- for x in auto{conf,header,m4te,reconf,scan,update} ifnames ; do
- dosym ../$(get_libdir)/misc/ac-wrapper.sh /usr/bin/${x}
- done
-}
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2021-01-06 15:32 Fabian Groffen
0 siblings, 0 replies; 44+ messages in thread
From: Fabian Groffen @ 2021-01-06 15:32 UTC (permalink / raw
To: gentoo-commits
commit: 698a020edd42ee766a1cc6081dc830559d7c47bd
Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 6 15:27:38 2021 +0000
Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Wed Jan 6 15:27:38 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=698a020e
sys-devel/autoconf-wrapper: drop x86-macos
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
sys-devel/autoconf-wrapper/autoconf-wrapper-13-r1.ebuild | 4 ++--
sys-devel/autoconf-wrapper/autoconf-wrapper-14.ebuild | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-13-r1.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-13-r1.ebuild
index bde33cebf58..56b9b6aa674 100644
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-13-r1.ebuild
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-13-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -11,7 +11,7 @@ SRC_URI=""
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE=""
S="${WORKDIR}"
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-14.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-14.ebuild
index d630e5eb99b..68d956726bb 100644
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-14.ebuild
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-14.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -12,7 +12,7 @@ SRC_URI=""
LICENSE="GPL-2"
SLOT="0"
[[ "${PV}" == *_pre* ]] || \
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE=""
S="${WORKDIR}"
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2020-12-27 18:18 Fabian Groffen
0 siblings, 0 replies; 44+ messages in thread
From: Fabian Groffen @ 2020-12-27 18:18 UTC (permalink / raw
To: gentoo-commits
commit: 40ac8bddbe345bc5e015c74b350f09c0c2258996
Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 27 18:14:50 2020 +0000
Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Sun Dec 27 18:14:50 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40ac8bdd
sys-devel/autoconf-wrapper: drop ppc-aix m68k-mint
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
sys-devel/autoconf-wrapper/autoconf-wrapper-13-r1.ebuild | 2 +-
sys-devel/autoconf-wrapper/autoconf-wrapper-14.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-13-r1.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-13-r1.ebuild
index ab9bc2e3bc8..bde33cebf58 100644
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-13-r1.ebuild
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-13-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI=""
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE=""
S="${WORKDIR}"
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-14.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-14.ebuild
index f2ed66df32c..d630e5eb99b 100644
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-14.ebuild
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-14.ebuild
@@ -12,7 +12,7 @@ SRC_URI=""
LICENSE="GPL-2"
SLOT="0"
[[ "${PV}" == *_pre* ]] || \
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE=""
S="${WORKDIR}"
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2020-02-08 14:18 David Seifert
0 siblings, 0 replies; 44+ messages in thread
From: David Seifert @ 2020-02-08 14:18 UTC (permalink / raw
To: gentoo-commits
commit: 73ad431ce21f13b718747d4e1587a777d07a1151
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 8 14:18:05 2020 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Feb 8 14:18:05 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73ad431c
sys-devel/autoconf-wrapper: [QA] Fix BadHomepage
Signed-off-by: David Seifert <soap <AT> gentoo.org>
sys-devel/autoconf-wrapper/autoconf-wrapper-13-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-13-r1.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-13-r1.ebuild
index ce00bbc6649..69583181ec2 100644
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-13-r1.ebuild
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-13-r1.ebuild
@@ -6,7 +6,7 @@ EAPI=6
inherit multilib
DESCRIPTION="wrapper for autoconf to manage multiple autoconf versions"
-HOMEPAGE="https://www.gentoo.org/"
+HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
SRC_URI=""
LICENSE="GPL-2"
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2019-05-04 17:29 Mikle Kolyada
0 siblings, 0 replies; 44+ messages in thread
From: Mikle Kolyada @ 2019-05-04 17:29 UTC (permalink / raw
To: gentoo-commits
commit: 76ff7bffcc418f44ef323f01dd6c598ba5c576d2
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sat May 4 17:29:39 2019 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sat May 4 17:29:39 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76ff7bff
sys-devel/autoconf-wrapper: Add ~riscv keyword
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
sys-devel/autoconf-wrapper/autoconf-wrapper-13-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-13-r1.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-13-r1.ebuild
index 3a0963af478..b826052405e 100644
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-13-r1.ebuild
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-13-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -11,7 +11,7 @@ SRC_URI=""
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 ~riscv s390 sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE=""
S="${WORKDIR}"
^ permalink raw reply related [flat|nested] 44+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/
@ 2017-02-20 14:11 Michael Haubenwallner
0 siblings, 0 replies; 44+ messages in thread
From: Michael Haubenwallner @ 2017-02-20 14:11 UTC (permalink / raw
To: gentoo-commits
commit: 2bbc2a378717435917cc43a24519fd93a2b58f46
Author: Michael Haubenwallner <haubi <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 20 12:53:46 2017 +0000
Commit: Michael Haubenwallner <haubi <AT> gentoo <DOT> org>
CommitDate: Mon Feb 20 14:10:25 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bbc2a37
sys-devel/autoconf-wrapper: keyword ~x64-cygwin
Package-Manager: portage-2.3.3
sys-devel/autoconf-wrapper/autoconf-wrapper-13.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-13.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-13.ebuild
index 0c0e04f340..06d2a23ad9 100644
--- a/sys-devel/autoconf-wrapper/autoconf-wrapper-13.ebuild
+++ b/sys-devel/autoconf-wrapper/autoconf-wrapper-13.ebuild
@@ -10,7 +10,7 @@ SRC_URI=""
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE=""
S=${WORKDIR}
^ permalink raw reply related [flat|nested] 44+ messages in thread
end of thread, other threads:[~2023-12-28 3:54 UTC | newest]
Thread overview: 44+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-22 21:19 [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2023-12-28 3:53 Sam James
2023-12-24 1:07 Sam James
2023-06-17 5:57 Sam James
2023-03-26 4:07 Sam James
2023-02-05 18:50 Sam James
2023-02-03 5:59 Sam James
2023-01-16 1:05 Sam James
2023-01-16 1:05 Sam James
2023-01-16 0:37 Sam James
2023-01-16 0:36 Sam James
2023-01-16 0:36 Sam James
2023-01-16 0:36 Sam James
2023-01-16 0:36 Sam James
2023-01-16 0:30 Sam James
2023-01-16 0:30 Sam James
2023-01-16 0:30 Sam James
2022-12-25 19:39 Sam James
2022-12-07 20:47 Sam James
2022-11-23 0:50 Sam James
2022-11-22 21:19 Sam James
2022-11-18 3:37 Sam James
2022-05-22 11:27 Jakov Smolić
2022-05-22 6:22 Agostino Sarubbo
2022-05-22 6:19 Agostino Sarubbo
2022-05-22 6:17 Agostino Sarubbo
2022-05-22 3:21 Sam James
2022-05-22 3:20 Sam James
2022-05-22 3:18 Sam James
2022-05-22 3:18 Sam James
2022-01-30 9:28 Mike Frysinger
2021-08-13 21:54 Sam James
2021-08-11 20:14 Sam James
2021-08-11 0:20 Sam James
2021-08-11 0:12 Sam James
2021-08-11 0:02 Sam James
2021-08-10 15:36 Agostino Sarubbo
2021-05-13 13:55 David Seifert
2021-03-09 15:52 Lars Wendler
2021-01-06 15:32 Fabian Groffen
2020-12-27 18:18 Fabian Groffen
2020-02-08 14:18 David Seifert
2019-05-04 17:29 Mikle Kolyada
2017-02-20 14:11 Michael Haubenwallner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox