[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: 0f0dfc155b0fac0fd2bb3ad607f609063714eb67 Author: Sam James gentoo org> AuthorDate: Fri Nov 29 22:54:24 2024 + Commit: Sam James gentoo org> CommitDate: Fri Nov 29 22:54:24 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f0dfc15 app-portage/getuto: add 1.14 Sam James (1): test-getuto: binpkgs are compressed with xz now Zen (6): getuto: fix 404 in tests by using 23.0 instead of 17.1 getuto: extend the quiet arg to remove permission warnings getuto: remove no-permission-warning from the gpg.conf getuto: add missing QUIET_ARGS getuto: Update LASTRUNFILE on init getuto: Fix gpg cleanup by running separate kill commands Signed-off-by: Sam James gentoo.org> app-portage/getuto/Manifest | 1 + app-portage/getuto/getuto-1.14.ebuild | 50 +++ 2 files changed, 51 insertions(+) diff --git a/app-portage/getuto/Manifest b/app-portage/getuto/Manifest index c4e5918dff2a..442b16691ee5 100644 --- a/app-portage/getuto/Manifest +++ b/app-portage/getuto/Manifest @@ -1,3 +1,4 @@ DIST getuto-1.13.tar.gz 10758 BLAKE2B cf7412e6253f883c29a3d89048073d14f982e4bc708ebe11541e4273c69cdc3f1131b6b62484b3b4f1131a11dc541776368f4bfe4500f0ec01e24de9e925a69d SHA512 111c60595dce79b3286afaa8d8485cb852d4d8a4ea5f0659ccde538a9ee8ccdb4d7d7251cce713b30e4f8a769891539bf6fdb52978b5f25df6536afb16dc8f2a +DIST getuto-1.14.tar.gz 10801 BLAKE2B cbcbbdfa42a4dc1d1d0e6a0fe573c14a5937e5573c9332e7adae35931885964ef7e0e3c6c7229a1f27995b22feeb5d49bd80b56db73a242e210f726e35235224 SHA512 a796db7212df9cc723c05e93f9938697f2b593ce694668028c617a48bdf69a358db6687e34ff6a69fb379156b03cc4f06e1f5f7a743102f6ebe219fa468b5c09 DIST getuto-23.0-libc-1-r1-1.gpkg.tar 20480 BLAKE2B a6f9284131690c39ff63a6046b19478a9f460d4115b1bd306d2996b631026fe9c4c4b2e3be23f30d2668794302d2a1686680738dd052a53e2d4c3ecb2a513070 SHA512 a692817ea63fb69c7cbb5e32fcba21e78bd87dd4e670d4c1ac9105e390ef63ea0f3660464e573adb28320b0a9cb0a78c52fe895ecdfd62a24986b1d79d2c692e DIST libc-1-r1-1.gpkg.tar 20480 BLAKE2B b2c184e20c1a29ff66240e992f9f81219285f525eb63cea081372685cf03a2e231a2edb528259617e74c655fbe61b6e0d8fc0bbdbd8452b6098de58432f019d7 SHA512 ce52f398ea8979ec16161381803740d49a4294c77303880f54090c379ba5eb8e545a3d3550f229cacc18c7763dc3adf7936561ba1c64b43c87692ec66084e4e6 diff --git a/app-portage/getuto/getuto-1.14.ebuild b/app-portage/getuto/getuto-1.14.ebuild new file mode 100644 index ..288ed5ed1b96 --- /dev/null +++ b/app-portage/getuto/getuto-1.14.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Standalone Gentoo gpg trust anchor generation tool for binpkgs" +HOMEPAGE="https://github.com/projg2/getuto"; + +if [[ ${PV} == ]] ; then + EGIT_REPO_URI="https://github.com/projg2/getuto"; + inherit git-r3 +else + SRC_URI=" + https://github.com/projg2/getuto/archive/refs/tags/${P}.tar.gz + " + S=${WORKDIR}/${PN}-${P} + + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" +fi + +SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/23.0/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar -> ${PN}-23.0-libc-1-r1-1.gpkg.tar )" + +LICENSE="GPL-2" +SLOT="0" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + app-crypt/gnupg + dev-libs/openssl + sec-keys/openpgp-keys-gentoo-release + sys-apps/gentoo-functions +" + +src_unpack() { + if [[ ${PV} == ]] ; then + git-r3_src_unpack + else + # Don't mangle test data + unpack ${P}.tar.gz + fi + + if use test ; then + cp "${DISTDIR}"/${PN}-23.0-libc-1-r1-1.gpkg.tar "${S}/libc-1-r1-1.gpkg.tar" || die + fi +} + +src_install() { + dobin getuto +}
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: 29d8d34672ff640b6abb3fa6efb25ee81b558508 Author: Sam James gentoo org> AuthorDate: Tue Oct 29 16:47:31 2024 + Commit: Sam James gentoo org> CommitDate: Tue Oct 29 16:47:31 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29d8d346 app-portage/getuto: fix test filename for live Oops. Fixes: cc504dce1323299d4b54c54064b232f66f0b1967 Signed-off-by: Sam James gentoo.org> app-portage/getuto/Manifest | 1 + app-portage/getuto/getuto-.ebuild | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/app-portage/getuto/Manifest b/app-portage/getuto/Manifest index 54f0ab4fe6d2..c4e5918dff2a 100644 --- a/app-portage/getuto/Manifest +++ b/app-portage/getuto/Manifest @@ -1,2 +1,3 @@ DIST getuto-1.13.tar.gz 10758 BLAKE2B cf7412e6253f883c29a3d89048073d14f982e4bc708ebe11541e4273c69cdc3f1131b6b62484b3b4f1131a11dc541776368f4bfe4500f0ec01e24de9e925a69d SHA512 111c60595dce79b3286afaa8d8485cb852d4d8a4ea5f0659ccde538a9ee8ccdb4d7d7251cce713b30e4f8a769891539bf6fdb52978b5f25df6536afb16dc8f2a +DIST getuto-23.0-libc-1-r1-1.gpkg.tar 20480 BLAKE2B a6f9284131690c39ff63a6046b19478a9f460d4115b1bd306d2996b631026fe9c4c4b2e3be23f30d2668794302d2a1686680738dd052a53e2d4c3ecb2a513070 SHA512 a692817ea63fb69c7cbb5e32fcba21e78bd87dd4e670d4c1ac9105e390ef63ea0f3660464e573adb28320b0a9cb0a78c52fe895ecdfd62a24986b1d79d2c692e DIST libc-1-r1-1.gpkg.tar 20480 BLAKE2B b2c184e20c1a29ff66240e992f9f81219285f525eb63cea081372685cf03a2e231a2edb528259617e74c655fbe61b6e0d8fc0bbdbd8452b6098de58432f019d7 SHA512 ce52f398ea8979ec16161381803740d49a4294c77303880f54090c379ba5eb8e545a3d3550f229cacc18c7763dc3adf7936561ba1c64b43c87692ec66084e4e6 diff --git a/app-portage/getuto/getuto-.ebuild b/app-portage/getuto/getuto-.ebuild index a2cfb27700d0..288ed5ed1b96 100644 --- a/app-portage/getuto/getuto-.ebuild +++ b/app-portage/getuto/getuto-.ebuild @@ -18,7 +18,7 @@ else KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" fi -SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/23.0/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )" +SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/23.0/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar -> ${PN}-23.0-libc-1-r1-1.gpkg.tar )" LICENSE="GPL-2" SLOT="0" @@ -41,7 +41,7 @@ src_unpack() { fi if use test ; then - cp "${DISTDIR}"/libc-1-r1-1.gpkg.tar "${S}" || die + cp "${DISTDIR}"/${PN}-23.0-libc-1-r1-1.gpkg.tar "${S}/libc-1-r1-1.gpkg.tar" || die fi }
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: cc504dce1323299d4b54c54064b232f66f0b1967 Author: Sam James gentoo org> AuthorDate: Tue Oct 29 16:43:05 2024 + Commit: Sam James gentoo org> CommitDate: Tue Oct 29 16:44:34 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc504dce app-portage/getuto: update SRC_URI for tests in This fixes tests, reflecting ad394eed7cc45a1444d87d176962af4b7db35e0b in getuto.git. Signed-off-by: Sam James gentoo.org> app-portage/getuto/getuto-.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-portage/getuto/getuto-.ebuild b/app-portage/getuto/getuto-.ebuild index 1bb91c1211a5..a2cfb27700d0 100644 --- a/app-portage/getuto/getuto-.ebuild +++ b/app-portage/getuto/getuto-.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 @@ -18,7 +18,7 @@ else KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" fi -SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )" +SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/23.0/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )" LICENSE="GPL-2" SLOT="0"
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: 193c5c669c895c168e430f8461cf7e1de94cf930 Author: Sam James gentoo org> AuthorDate: Tue Oct 8 18:34:42 2024 + Commit: Sam James gentoo org> CommitDate: Tue Oct 8 18:36:06 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=193c5c66 app-portage/getuto: drop 1.9.1, 1.10.2, 1.11, 1.12 Signed-off-by: Sam James gentoo.org> app-portage/getuto/Manifest | 4 --- app-portage/getuto/getuto-1.10.2.ebuild | 50 - app-portage/getuto/getuto-1.11.ebuild | 50 - app-portage/getuto/getuto-1.12.ebuild | 50 - app-portage/getuto/getuto-1.9.1.ebuild | 50 - 5 files changed, 204 deletions(-) diff --git a/app-portage/getuto/Manifest b/app-portage/getuto/Manifest index 2fb8a34a9c64..54f0ab4fe6d2 100644 --- a/app-portage/getuto/Manifest +++ b/app-portage/getuto/Manifest @@ -1,6 +1,2 @@ -DIST getuto-1.10.2.tar.gz 10561 BLAKE2B 93093e9027b6fc1f8e2dac5fbcdab847c95742fe2e5b4fa142591039f639570a589b28f954cb7290d22b06cd18d189d2176d937bbd256a2cd91270c5c762c3b9 SHA512 9e559551a0b85d1fd41202d6cc6d328021320647789d374c6ccacd5a7d29beb63959385499b84bc3b3bea18b17c50d54a78526150d39b4103719753930f1fff3 -DIST getuto-1.11.tar.gz 10686 BLAKE2B c92121dc9b02e6af5101dcd27a64e59828270fd54a42a9b333d844d0f75d93206f91f130699f7dbf6d825cbc2c2a341ced9f1f0247ed1ee39ef5226a51f59c0e SHA512 f73b81134b8cf306b19fdc49bd797278ea08b5c64695dd4da9c4000701e627c9b8b7a8909bff4fd4a72b801df6bcbf6d1638b126556dd9b11628989e8602b6be -DIST getuto-1.12.tar.gz 10708 BLAKE2B 5c6e1fbb614043268667b60460298b4acba3f2379465a7e8a0043b537940c1e98749bf4580fde4ce30fac46bf0826d8c1a2ddc5602281fcdb942871f4457b7ad SHA512 0be8d0b78c0be5878986f5b55bff952d2ccd3b73c8a3f47d40a692ee084b77473422ec66aced9eb1ee6be8e5e5409c77d7bac76ca94f1da065c527ed6e2d2076 DIST getuto-1.13.tar.gz 10758 BLAKE2B cf7412e6253f883c29a3d89048073d14f982e4bc708ebe11541e4273c69cdc3f1131b6b62484b3b4f1131a11dc541776368f4bfe4500f0ec01e24de9e925a69d SHA512 111c60595dce79b3286afaa8d8485cb852d4d8a4ea5f0659ccde538a9ee8ccdb4d7d7251cce713b30e4f8a769891539bf6fdb52978b5f25df6536afb16dc8f2a -DIST getuto-1.9.1.tar.gz 10220 BLAKE2B 4c756f36e9d1272ab194c65e75b6c4d47c248190029ce2b5fe6edb1253998aaa311dd1ae59f893200d1588a52d1bcb53376a32f279c841ae6b5cf5e5b0eeb163 SHA512 3f8e5359940fa5582bea8dc11f2a0846c3f6bdc555974f2f049d5c6ff282029b6393a8c6ae221d327376b4df05de492f44720de90f76f5e3deb436171507f0cb DIST libc-1-r1-1.gpkg.tar 20480 BLAKE2B b2c184e20c1a29ff66240e992f9f81219285f525eb63cea081372685cf03a2e231a2edb528259617e74c655fbe61b6e0d8fc0bbdbd8452b6098de58432f019d7 SHA512 ce52f398ea8979ec16161381803740d49a4294c77303880f54090c379ba5eb8e545a3d3550f229cacc18c7763dc3adf7936561ba1c64b43c87692ec66084e4e6 diff --git a/app-portage/getuto/getuto-1.10.2.ebuild b/app-portage/getuto/getuto-1.10.2.ebuild deleted file mode 100644 index ac54ee71394d.. --- a/app-portage/getuto/getuto-1.10.2.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DESCRIPTION="Standalone Gentoo gpg trust anchor generation tool for binpkgs" -HOMEPAGE="https://github.com/projg2/getuto"; - -if [[ ${PV} == ]] ; then - EGIT_REPO_URI="https://github.com/projg2/getuto"; - inherit git-r3 -else - SRC_URI=" - https://github.com/projg2/getuto/archive/refs/tags/${P}.tar.gz - " - S=${WORKDIR}/${PN}-${P} - - KEYWORDS="~alpha amd64 arm arm64 hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux" -fi - -SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )" - -LICENSE="GPL-2" -SLOT="0" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - app-crypt/gnupg - dev-libs/openssl - sec-keys/openpgp-keys-gentoo-release - sys-apps/gentoo-functions -" - -src_unpack() { - if [[ ${PV} == ]] ; then - git-r3_src_unpack - else - # Don't mangle test data - unpack ${P}.tar.gz - fi - - if use test ; then - cp "${DISTDIR}"/libc-1-r1-1.gpkg.tar "${S}" || die - fi -} - -src_install() { - dobin getuto -} diff --git a/app-portage/getuto/getuto-1.11.ebuild b/app-portage/getuto/getuto-1.11.ebuild deleted file mode 100644 index ac54ee71394d.. --- a/app-portage/getuto/getuto-1.11.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DESCRIPTION="Standalone Gentoo gpg trust anchor generation tool for binpkgs" -HOMEPAGE="https://github.com/projg2/getuto"; - -if [[ ${PV} == ]] ; then - EGIT_REPO_URI="https://github.com/projg2/getuto"; - inherit git-r3 -else - SRC_URI=" -
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: 4201a60991c0620ca2cf6452df4b7d86dc0f5681 Author: Sam James gentoo org> AuthorDate: Sat Jun 22 20:23:10 2024 + Commit: Sam James gentoo org> CommitDate: Sat Jun 22 20:23:10 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4201a609 app-portage/getuto: Stabilize 1.13 ALLARCHES, #934742 Signed-off-by: Sam James gentoo.org> app-portage/getuto/getuto-1.13.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-portage/getuto/getuto-1.13.ebuild b/app-portage/getuto/getuto-1.13.ebuild index 7be78a7129e1..2a7563e23c9e 100644 --- a/app-portage/getuto/getuto-1.13.ebuild +++ b/app-portage/getuto/getuto-1.13.ebuild @@ -15,7 +15,7 @@ else " S=${WORKDIR}/${PN}-${P} - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" + KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux" fi SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )"
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: 71ac7d4c4ce003a9497da1212e319ef7b19c4e63 Author: Sam James gentoo org> AuthorDate: Fri Jun 21 16:30:56 2024 + Commit: Sam James gentoo org> CommitDate: Fri Jun 21 16:31:21 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71ac7d4c app-portage/getuto: add 1.13 Sam James (5): getuto: create initial gpg.conf getuto: set default timeouts for dirmngr getuto: cleanup --no-permission-warning for first-run case getuto: 'fall back' -> 'fallback' getuto: enable debug mode with PORTAGE_DEBUG=1 Signed-off-by: Sam James gentoo.org> app-portage/getuto/Manifest | 1 + app-portage/getuto/getuto-1.13.ebuild | 50 +++ 2 files changed, 51 insertions(+) diff --git a/app-portage/getuto/Manifest b/app-portage/getuto/Manifest index 2e211937c266..2fb8a34a9c64 100644 --- a/app-portage/getuto/Manifest +++ b/app-portage/getuto/Manifest @@ -1,5 +1,6 @@ DIST getuto-1.10.2.tar.gz 10561 BLAKE2B 93093e9027b6fc1f8e2dac5fbcdab847c95742fe2e5b4fa142591039f639570a589b28f954cb7290d22b06cd18d189d2176d937bbd256a2cd91270c5c762c3b9 SHA512 9e559551a0b85d1fd41202d6cc6d328021320647789d374c6ccacd5a7d29beb63959385499b84bc3b3bea18b17c50d54a78526150d39b4103719753930f1fff3 DIST getuto-1.11.tar.gz 10686 BLAKE2B c92121dc9b02e6af5101dcd27a64e59828270fd54a42a9b333d844d0f75d93206f91f130699f7dbf6d825cbc2c2a341ced9f1f0247ed1ee39ef5226a51f59c0e SHA512 f73b81134b8cf306b19fdc49bd797278ea08b5c64695dd4da9c4000701e627c9b8b7a8909bff4fd4a72b801df6bcbf6d1638b126556dd9b11628989e8602b6be DIST getuto-1.12.tar.gz 10708 BLAKE2B 5c6e1fbb614043268667b60460298b4acba3f2379465a7e8a0043b537940c1e98749bf4580fde4ce30fac46bf0826d8c1a2ddc5602281fcdb942871f4457b7ad SHA512 0be8d0b78c0be5878986f5b55bff952d2ccd3b73c8a3f47d40a692ee084b77473422ec66aced9eb1ee6be8e5e5409c77d7bac76ca94f1da065c527ed6e2d2076 +DIST getuto-1.13.tar.gz 10758 BLAKE2B cf7412e6253f883c29a3d89048073d14f982e4bc708ebe11541e4273c69cdc3f1131b6b62484b3b4f1131a11dc541776368f4bfe4500f0ec01e24de9e925a69d SHA512 111c60595dce79b3286afaa8d8485cb852d4d8a4ea5f0659ccde538a9ee8ccdb4d7d7251cce713b30e4f8a769891539bf6fdb52978b5f25df6536afb16dc8f2a DIST getuto-1.9.1.tar.gz 10220 BLAKE2B 4c756f36e9d1272ab194c65e75b6c4d47c248190029ce2b5fe6edb1253998aaa311dd1ae59f893200d1588a52d1bcb53376a32f279c841ae6b5cf5e5b0eeb163 SHA512 3f8e5359940fa5582bea8dc11f2a0846c3f6bdc555974f2f049d5c6ff282029b6393a8c6ae221d327376b4df05de492f44720de90f76f5e3deb436171507f0cb DIST libc-1-r1-1.gpkg.tar 20480 BLAKE2B b2c184e20c1a29ff66240e992f9f81219285f525eb63cea081372685cf03a2e231a2edb528259617e74c655fbe61b6e0d8fc0bbdbd8452b6098de58432f019d7 SHA512 ce52f398ea8979ec16161381803740d49a4294c77303880f54090c379ba5eb8e545a3d3550f229cacc18c7763dc3adf7936561ba1c64b43c87692ec66084e4e6 diff --git a/app-portage/getuto/getuto-1.13.ebuild b/app-portage/getuto/getuto-1.13.ebuild new file mode 100644 index ..7be78a7129e1 --- /dev/null +++ b/app-portage/getuto/getuto-1.13.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Standalone Gentoo gpg trust anchor generation tool for binpkgs" +HOMEPAGE="https://github.com/projg2/getuto"; + +if [[ ${PV} == ]] ; then + EGIT_REPO_URI="https://github.com/projg2/getuto"; + inherit git-r3 +else + SRC_URI=" + https://github.com/projg2/getuto/archive/refs/tags/${P}.tar.gz + " + S=${WORKDIR}/${PN}-${P} + + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" +fi + +SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )" + +LICENSE="GPL-2" +SLOT="0" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + app-crypt/gnupg + dev-libs/openssl + sec-keys/openpgp-keys-gentoo-release + sys-apps/gentoo-functions +" + +src_unpack() { + if [[ ${PV} == ]] ; then + git-r3_src_unpack + else + # Don't mangle test data + unpack ${P}.tar.gz + fi + + if use test ; then + cp "${DISTDIR}"/libc-1-r1-1.gpkg.tar "${S}" || die + fi +} + +src_install() { + dobin getuto +}
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: 6793c4c9554f2117fa458eac4edaf9153260544e Author: Sam James gentoo org> AuthorDate: Wed Jun 12 23:05:24 2024 + Commit: Sam James gentoo org> CommitDate: Wed Jun 12 23:05:34 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6793c4c9 app-portage/getuto: add 1.12 Sam James (2): getuto: further tiny style tweaks getuto: disable Tor use in dirmngr Signed-off-by: Sam James gentoo.org> app-portage/getuto/Manifest | 1 + app-portage/getuto/getuto-1.12.ebuild | 50 +++ 2 files changed, 51 insertions(+) diff --git a/app-portage/getuto/Manifest b/app-portage/getuto/Manifest index 452b03450438..2e211937c266 100644 --- a/app-portage/getuto/Manifest +++ b/app-portage/getuto/Manifest @@ -1,4 +1,5 @@ DIST getuto-1.10.2.tar.gz 10561 BLAKE2B 93093e9027b6fc1f8e2dac5fbcdab847c95742fe2e5b4fa142591039f639570a589b28f954cb7290d22b06cd18d189d2176d937bbd256a2cd91270c5c762c3b9 SHA512 9e559551a0b85d1fd41202d6cc6d328021320647789d374c6ccacd5a7d29beb63959385499b84bc3b3bea18b17c50d54a78526150d39b4103719753930f1fff3 DIST getuto-1.11.tar.gz 10686 BLAKE2B c92121dc9b02e6af5101dcd27a64e59828270fd54a42a9b333d844d0f75d93206f91f130699f7dbf6d825cbc2c2a341ced9f1f0247ed1ee39ef5226a51f59c0e SHA512 f73b81134b8cf306b19fdc49bd797278ea08b5c64695dd4da9c4000701e627c9b8b7a8909bff4fd4a72b801df6bcbf6d1638b126556dd9b11628989e8602b6be +DIST getuto-1.12.tar.gz 10708 BLAKE2B 5c6e1fbb614043268667b60460298b4acba3f2379465a7e8a0043b537940c1e98749bf4580fde4ce30fac46bf0826d8c1a2ddc5602281fcdb942871f4457b7ad SHA512 0be8d0b78c0be5878986f5b55bff952d2ccd3b73c8a3f47d40a692ee084b77473422ec66aced9eb1ee6be8e5e5409c77d7bac76ca94f1da065c527ed6e2d2076 DIST getuto-1.9.1.tar.gz 10220 BLAKE2B 4c756f36e9d1272ab194c65e75b6c4d47c248190029ce2b5fe6edb1253998aaa311dd1ae59f893200d1588a52d1bcb53376a32f279c841ae6b5cf5e5b0eeb163 SHA512 3f8e5359940fa5582bea8dc11f2a0846c3f6bdc555974f2f049d5c6ff282029b6393a8c6ae221d327376b4df05de492f44720de90f76f5e3deb436171507f0cb DIST libc-1-r1-1.gpkg.tar 20480 BLAKE2B b2c184e20c1a29ff66240e992f9f81219285f525eb63cea081372685cf03a2e231a2edb528259617e74c655fbe61b6e0d8fc0bbdbd8452b6098de58432f019d7 SHA512 ce52f398ea8979ec16161381803740d49a4294c77303880f54090c379ba5eb8e545a3d3550f229cacc18c7763dc3adf7936561ba1c64b43c87692ec66084e4e6 diff --git a/app-portage/getuto/getuto-1.12.ebuild b/app-portage/getuto/getuto-1.12.ebuild new file mode 100644 index ..7be78a7129e1 --- /dev/null +++ b/app-portage/getuto/getuto-1.12.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Standalone Gentoo gpg trust anchor generation tool for binpkgs" +HOMEPAGE="https://github.com/projg2/getuto"; + +if [[ ${PV} == ]] ; then + EGIT_REPO_URI="https://github.com/projg2/getuto"; + inherit git-r3 +else + SRC_URI=" + https://github.com/projg2/getuto/archive/refs/tags/${P}.tar.gz + " + S=${WORKDIR}/${PN}-${P} + + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" +fi + +SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )" + +LICENSE="GPL-2" +SLOT="0" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + app-crypt/gnupg + dev-libs/openssl + sec-keys/openpgp-keys-gentoo-release + sys-apps/gentoo-functions +" + +src_unpack() { + if [[ ${PV} == ]] ; then + git-r3_src_unpack + else + # Don't mangle test data + unpack ${P}.tar.gz + fi + + if use test ; then + cp "${DISTDIR}"/libc-1-r1-1.gpkg.tar "${S}" || die + fi +} + +src_install() { + dobin getuto +}
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: bc6a8de112ee2ce852ba05f3bc1b2b2113252099 Author: Arthur Zamarin gentoo org> AuthorDate: Thu May 16 04:17:12 2024 + Commit: Arthur Zamarin gentoo org> CommitDate: Thu May 16 04:17:12 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc6a8de1 app-portage/getuto: Stabilize 1.11 ALLARCHES, #931979 Signed-off-by: Arthur Zamarin gentoo.org> app-portage/getuto/getuto-1.11.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-portage/getuto/getuto-1.11.ebuild b/app-portage/getuto/getuto-1.11.ebuild index 7be78a7129e1..2a7563e23c9e 100644 --- a/app-portage/getuto/getuto-1.11.ebuild +++ b/app-portage/getuto/getuto-1.11.ebuild @@ -15,7 +15,7 @@ else " S=${WORKDIR}/${PN}-${P} - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" + KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux" fi SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )"
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: 085ceaf8db792c4f5ef11fd81541c8bc7120ccef Author: Sam James gentoo org> AuthorDate: Fri Mar 15 23:52:46 2024 + Commit: Sam James gentoo org> CommitDate: Fri Mar 15 23:52:46 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=085ceaf8 app-portage/getuto: drop 1.10 Signed-off-by: Sam James gentoo.org> app-portage/getuto/Manifest | 1 - app-portage/getuto/getuto-1.10.ebuild | 50 --- 2 files changed, 51 deletions(-) diff --git a/app-portage/getuto/Manifest b/app-portage/getuto/Manifest index 464b29158cb8..452b03450438 100644 --- a/app-portage/getuto/Manifest +++ b/app-portage/getuto/Manifest @@ -1,5 +1,4 @@ DIST getuto-1.10.2.tar.gz 10561 BLAKE2B 93093e9027b6fc1f8e2dac5fbcdab847c95742fe2e5b4fa142591039f639570a589b28f954cb7290d22b06cd18d189d2176d937bbd256a2cd91270c5c762c3b9 SHA512 9e559551a0b85d1fd41202d6cc6d328021320647789d374c6ccacd5a7d29beb63959385499b84bc3b3bea18b17c50d54a78526150d39b4103719753930f1fff3 -DIST getuto-1.10.tar.gz 10544 BLAKE2B b4f5d2d591eb9f41e9fd528122b07bd90d69bcffe1abd721ea747f2d773a6295263bb120437d09b091f95fa0249ce764a2a262a049c74777b7adea765bf88c9a SHA512 2b016fbe7fa046349af7d2a4e8ff26c5ae7328a4af7f1186cd19b3ff5ed6b639d0a6eb7db2f345c71169c0d30c7aea6d5a3a289000878328e776111d025eddb4 DIST getuto-1.11.tar.gz 10686 BLAKE2B c92121dc9b02e6af5101dcd27a64e59828270fd54a42a9b333d844d0f75d93206f91f130699f7dbf6d825cbc2c2a341ced9f1f0247ed1ee39ef5226a51f59c0e SHA512 f73b81134b8cf306b19fdc49bd797278ea08b5c64695dd4da9c4000701e627c9b8b7a8909bff4fd4a72b801df6bcbf6d1638b126556dd9b11628989e8602b6be DIST getuto-1.9.1.tar.gz 10220 BLAKE2B 4c756f36e9d1272ab194c65e75b6c4d47c248190029ce2b5fe6edb1253998aaa311dd1ae59f893200d1588a52d1bcb53376a32f279c841ae6b5cf5e5b0eeb163 SHA512 3f8e5359940fa5582bea8dc11f2a0846c3f6bdc555974f2f049d5c6ff282029b6393a8c6ae221d327376b4df05de492f44720de90f76f5e3deb436171507f0cb DIST libc-1-r1-1.gpkg.tar 20480 BLAKE2B b2c184e20c1a29ff66240e992f9f81219285f525eb63cea081372685cf03a2e231a2edb528259617e74c655fbe61b6e0d8fc0bbdbd8452b6098de58432f019d7 SHA512 ce52f398ea8979ec16161381803740d49a4294c77303880f54090c379ba5eb8e545a3d3550f229cacc18c7763dc3adf7936561ba1c64b43c87692ec66084e4e6 diff --git a/app-portage/getuto/getuto-1.10.ebuild b/app-portage/getuto/getuto-1.10.ebuild deleted file mode 100644 index 7be78a7129e1.. --- a/app-portage/getuto/getuto-1.10.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DESCRIPTION="Standalone Gentoo gpg trust anchor generation tool for binpkgs" -HOMEPAGE="https://github.com/projg2/getuto"; - -if [[ ${PV} == ]] ; then - EGIT_REPO_URI="https://github.com/projg2/getuto"; - inherit git-r3 -else - SRC_URI=" - https://github.com/projg2/getuto/archive/refs/tags/${P}.tar.gz - " - S=${WORKDIR}/${PN}-${P} - - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" -fi - -SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )" - -LICENSE="GPL-2" -SLOT="0" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - app-crypt/gnupg - dev-libs/openssl - sec-keys/openpgp-keys-gentoo-release - sys-apps/gentoo-functions -" - -src_unpack() { - if [[ ${PV} == ]] ; then - git-r3_src_unpack - else - # Don't mangle test data - unpack ${P}.tar.gz - fi - - if use test ; then - cp "${DISTDIR}"/libc-1-r1-1.gpkg.tar "${S}" || die - fi -} - -src_install() { - dobin getuto -}
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: e6eeda444dda30d313d5188bd38c36b525ee0fdb Author: Sam James gentoo org> AuthorDate: Fri Mar 15 23:51:50 2024 + Commit: Sam James gentoo org> CommitDate: Fri Mar 15 23:52:34 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6eeda44 app-portage/getuto: add 1.11 Sam James (6): getuto: don't try to speak to smartcards (disable scdaemon) getuto: try to use WKD too getuto: consolidate WKD searches getuto: respect --quiet in more places getuto: style tweaks getuto: consistently use --no-permission-warning Signed-off-by: Sam James gentoo.org> app-portage/getuto/Manifest | 1 + app-portage/getuto/getuto-1.11.ebuild | 50 +++ 2 files changed, 51 insertions(+) diff --git a/app-portage/getuto/Manifest b/app-portage/getuto/Manifest index f4fcf22fd8ab..464b29158cb8 100644 --- a/app-portage/getuto/Manifest +++ b/app-portage/getuto/Manifest @@ -1,4 +1,5 @@ DIST getuto-1.10.2.tar.gz 10561 BLAKE2B 93093e9027b6fc1f8e2dac5fbcdab847c95742fe2e5b4fa142591039f639570a589b28f954cb7290d22b06cd18d189d2176d937bbd256a2cd91270c5c762c3b9 SHA512 9e559551a0b85d1fd41202d6cc6d328021320647789d374c6ccacd5a7d29beb63959385499b84bc3b3bea18b17c50d54a78526150d39b4103719753930f1fff3 DIST getuto-1.10.tar.gz 10544 BLAKE2B b4f5d2d591eb9f41e9fd528122b07bd90d69bcffe1abd721ea747f2d773a6295263bb120437d09b091f95fa0249ce764a2a262a049c74777b7adea765bf88c9a SHA512 2b016fbe7fa046349af7d2a4e8ff26c5ae7328a4af7f1186cd19b3ff5ed6b639d0a6eb7db2f345c71169c0d30c7aea6d5a3a289000878328e776111d025eddb4 +DIST getuto-1.11.tar.gz 10686 BLAKE2B c92121dc9b02e6af5101dcd27a64e59828270fd54a42a9b333d844d0f75d93206f91f130699f7dbf6d825cbc2c2a341ced9f1f0247ed1ee39ef5226a51f59c0e SHA512 f73b81134b8cf306b19fdc49bd797278ea08b5c64695dd4da9c4000701e627c9b8b7a8909bff4fd4a72b801df6bcbf6d1638b126556dd9b11628989e8602b6be DIST getuto-1.9.1.tar.gz 10220 BLAKE2B 4c756f36e9d1272ab194c65e75b6c4d47c248190029ce2b5fe6edb1253998aaa311dd1ae59f893200d1588a52d1bcb53376a32f279c841ae6b5cf5e5b0eeb163 SHA512 3f8e5359940fa5582bea8dc11f2a0846c3f6bdc555974f2f049d5c6ff282029b6393a8c6ae221d327376b4df05de492f44720de90f76f5e3deb436171507f0cb DIST libc-1-r1-1.gpkg.tar 20480 BLAKE2B b2c184e20c1a29ff66240e992f9f81219285f525eb63cea081372685cf03a2e231a2edb528259617e74c655fbe61b6e0d8fc0bbdbd8452b6098de58432f019d7 SHA512 ce52f398ea8979ec16161381803740d49a4294c77303880f54090c379ba5eb8e545a3d3550f229cacc18c7763dc3adf7936561ba1c64b43c87692ec66084e4e6 diff --git a/app-portage/getuto/getuto-1.11.ebuild b/app-portage/getuto/getuto-1.11.ebuild new file mode 100644 index ..7be78a7129e1 --- /dev/null +++ b/app-portage/getuto/getuto-1.11.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Standalone Gentoo gpg trust anchor generation tool for binpkgs" +HOMEPAGE="https://github.com/projg2/getuto"; + +if [[ ${PV} == ]] ; then + EGIT_REPO_URI="https://github.com/projg2/getuto"; + inherit git-r3 +else + SRC_URI=" + https://github.com/projg2/getuto/archive/refs/tags/${P}.tar.gz + " + S=${WORKDIR}/${PN}-${P} + + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" +fi + +SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )" + +LICENSE="GPL-2" +SLOT="0" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + app-crypt/gnupg + dev-libs/openssl + sec-keys/openpgp-keys-gentoo-release + sys-apps/gentoo-functions +" + +src_unpack() { + if [[ ${PV} == ]] ; then + git-r3_src_unpack + else + # Don't mangle test data + unpack ${P}.tar.gz + fi + + if use test ; then + cp "${DISTDIR}"/libc-1-r1-1.gpkg.tar "${S}" || die + fi +} + +src_install() { + dobin getuto +}
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: 03e9c0cae8b08c746bdced8a934993262dfde37d Author: Sam James gentoo org> AuthorDate: Fri Mar 15 22:10:11 2024 + Commit: Sam James gentoo org> CommitDate: Fri Mar 15 22:10:33 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03e9c0ca app-portage/getuto: add 1.10.2, drop 1.10.1 Fix typo in dirmngr options. Signed-off-by: Sam James gentoo.org> app-portage/getuto/Manifest | 2 +- app-portage/getuto/{getuto-1.10.1.ebuild => getuto-1.10.2.ebuild} | 0 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/app-portage/getuto/Manifest b/app-portage/getuto/Manifest index ca055e29b976..f4fcf22fd8ab 100644 --- a/app-portage/getuto/Manifest +++ b/app-portage/getuto/Manifest @@ -1,4 +1,4 @@ -DIST getuto-1.10.1.tar.gz 10546 BLAKE2B c5e4a1b3425b1289bd7486bb973032b297c07d587ca57fe6ddf3c598acafdaee5cf3188cd21671e4e848a364f3f40d76ddea93b1270bd6c995b67bfcc584ef51 SHA512 0481780ffe5a5ddfbde72f408cff118de61fecc58143ecde226d7a2200c47a25d7fc92ea94ac31dc94b144dc7e04ba30b838e041fd3f5d4c7cee58e34bfd52c2 +DIST getuto-1.10.2.tar.gz 10561 BLAKE2B 93093e9027b6fc1f8e2dac5fbcdab847c95742fe2e5b4fa142591039f639570a589b28f954cb7290d22b06cd18d189d2176d937bbd256a2cd91270c5c762c3b9 SHA512 9e559551a0b85d1fd41202d6cc6d328021320647789d374c6ccacd5a7d29beb63959385499b84bc3b3bea18b17c50d54a78526150d39b4103719753930f1fff3 DIST getuto-1.10.tar.gz 10544 BLAKE2B b4f5d2d591eb9f41e9fd528122b07bd90d69bcffe1abd721ea747f2d773a6295263bb120437d09b091f95fa0249ce764a2a262a049c74777b7adea765bf88c9a SHA512 2b016fbe7fa046349af7d2a4e8ff26c5ae7328a4af7f1186cd19b3ff5ed6b639d0a6eb7db2f345c71169c0d30c7aea6d5a3a289000878328e776111d025eddb4 DIST getuto-1.9.1.tar.gz 10220 BLAKE2B 4c756f36e9d1272ab194c65e75b6c4d47c248190029ce2b5fe6edb1253998aaa311dd1ae59f893200d1588a52d1bcb53376a32f279c841ae6b5cf5e5b0eeb163 SHA512 3f8e5359940fa5582bea8dc11f2a0846c3f6bdc555974f2f049d5c6ff282029b6393a8c6ae221d327376b4df05de492f44720de90f76f5e3deb436171507f0cb DIST libc-1-r1-1.gpkg.tar 20480 BLAKE2B b2c184e20c1a29ff66240e992f9f81219285f525eb63cea081372685cf03a2e231a2edb528259617e74c655fbe61b6e0d8fc0bbdbd8452b6098de58432f019d7 SHA512 ce52f398ea8979ec16161381803740d49a4294c77303880f54090c379ba5eb8e545a3d3550f229cacc18c7763dc3adf7936561ba1c64b43c87692ec66084e4e6 diff --git a/app-portage/getuto/getuto-1.10.1.ebuild b/app-portage/getuto/getuto-1.10.2.ebuild similarity index 100% rename from app-portage/getuto/getuto-1.10.1.ebuild rename to app-portage/getuto/getuto-1.10.2.ebuild
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: 19e0c4256f6d9b27753d403895c822e040cf493d Author: Arthur Zamarin gentoo org> AuthorDate: Fri Mar 15 21:13:58 2024 + Commit: Arthur Zamarin gentoo org> CommitDate: Fri Mar 15 21:13:58 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19e0c425 app-portage/getuto: Stabilize 1.10.1 ALLARCHES, #927095 Signed-off-by: Arthur Zamarin gentoo.org> app-portage/getuto/getuto-1.10.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-portage/getuto/getuto-1.10.1.ebuild b/app-portage/getuto/getuto-1.10.1.ebuild index 7be78a7129e1..2a7563e23c9e 100644 --- a/app-portage/getuto/getuto-1.10.1.ebuild +++ b/app-portage/getuto/getuto-1.10.1.ebuild @@ -15,7 +15,7 @@ else " S=${WORKDIR}/${PN}-${P} - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" + KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux" fi SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )"
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: 0f756e3d2e27f8a2a61256f4a6c10b48656d2b34 Author: Sam James gentoo org> AuthorDate: Fri Feb 9 07:20:39 2024 + Commit: Sam James gentoo org> CommitDate: Fri Feb 9 07:20:39 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f756e3d app-portage/getuto: add 1.10.1 Sam James (1): getuto: move set -e to after sourcing gentoo-functions Signed-off-by: Sam James gentoo.org> app-portage/getuto/Manifest | 1 + app-portage/getuto/getuto-1.10.1.ebuild | 50 + 2 files changed, 51 insertions(+) diff --git a/app-portage/getuto/Manifest b/app-portage/getuto/Manifest index a2a8257d732e..ca055e29b976 100644 --- a/app-portage/getuto/Manifest +++ b/app-portage/getuto/Manifest @@ -1,3 +1,4 @@ +DIST getuto-1.10.1.tar.gz 10546 BLAKE2B c5e4a1b3425b1289bd7486bb973032b297c07d587ca57fe6ddf3c598acafdaee5cf3188cd21671e4e848a364f3f40d76ddea93b1270bd6c995b67bfcc584ef51 SHA512 0481780ffe5a5ddfbde72f408cff118de61fecc58143ecde226d7a2200c47a25d7fc92ea94ac31dc94b144dc7e04ba30b838e041fd3f5d4c7cee58e34bfd52c2 DIST getuto-1.10.tar.gz 10544 BLAKE2B b4f5d2d591eb9f41e9fd528122b07bd90d69bcffe1abd721ea747f2d773a6295263bb120437d09b091f95fa0249ce764a2a262a049c74777b7adea765bf88c9a SHA512 2b016fbe7fa046349af7d2a4e8ff26c5ae7328a4af7f1186cd19b3ff5ed6b639d0a6eb7db2f345c71169c0d30c7aea6d5a3a289000878328e776111d025eddb4 DIST getuto-1.9.1.tar.gz 10220 BLAKE2B 4c756f36e9d1272ab194c65e75b6c4d47c248190029ce2b5fe6edb1253998aaa311dd1ae59f893200d1588a52d1bcb53376a32f279c841ae6b5cf5e5b0eeb163 SHA512 3f8e5359940fa5582bea8dc11f2a0846c3f6bdc555974f2f049d5c6ff282029b6393a8c6ae221d327376b4df05de492f44720de90f76f5e3deb436171507f0cb DIST libc-1-r1-1.gpkg.tar 20480 BLAKE2B b2c184e20c1a29ff66240e992f9f81219285f525eb63cea081372685cf03a2e231a2edb528259617e74c655fbe61b6e0d8fc0bbdbd8452b6098de58432f019d7 SHA512 ce52f398ea8979ec16161381803740d49a4294c77303880f54090c379ba5eb8e545a3d3550f229cacc18c7763dc3adf7936561ba1c64b43c87692ec66084e4e6 diff --git a/app-portage/getuto/getuto-1.10.1.ebuild b/app-portage/getuto/getuto-1.10.1.ebuild new file mode 100644 index ..7be78a7129e1 --- /dev/null +++ b/app-portage/getuto/getuto-1.10.1.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Standalone Gentoo gpg trust anchor generation tool for binpkgs" +HOMEPAGE="https://github.com/projg2/getuto"; + +if [[ ${PV} == ]] ; then + EGIT_REPO_URI="https://github.com/projg2/getuto"; + inherit git-r3 +else + SRC_URI=" + https://github.com/projg2/getuto/archive/refs/tags/${P}.tar.gz + " + S=${WORKDIR}/${PN}-${P} + + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" +fi + +SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )" + +LICENSE="GPL-2" +SLOT="0" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + app-crypt/gnupg + dev-libs/openssl + sec-keys/openpgp-keys-gentoo-release + sys-apps/gentoo-functions +" + +src_unpack() { + if [[ ${PV} == ]] ; then + git-r3_src_unpack + else + # Don't mangle test data + unpack ${P}.tar.gz + fi + + if use test ; then + cp "${DISTDIR}"/libc-1-r1-1.gpkg.tar "${S}" || die + fi +} + +src_install() { + dobin getuto +}
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: 20981f20c77a5d7ac2eca13287a14b9d44905bd7 Author: Sam James gentoo org> AuthorDate: Thu Feb 8 01:35:23 2024 + Commit: Sam James gentoo org> CommitDate: Thu Feb 8 01:35:23 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20981f20 app-portage/getuto: add 1.10 Sam James (5): README.md: add README.md: small tweaks getuto: cleanup dirmngr too ci: update for sys-devel/make -> dev-build/make pkgmove getuto: honour http_proxy (pass --honor-http-proxy to gpg's dirmngr) Signed-off-by: Sam James gentoo.org> app-portage/getuto/Manifest | 1 + app-portage/getuto/getuto-1.10.ebuild | 50 +++ 2 files changed, 51 insertions(+) diff --git a/app-portage/getuto/Manifest b/app-portage/getuto/Manifest index 149ef3ac4016..a2a8257d732e 100644 --- a/app-portage/getuto/Manifest +++ b/app-portage/getuto/Manifest @@ -1,2 +1,3 @@ +DIST getuto-1.10.tar.gz 10544 BLAKE2B b4f5d2d591eb9f41e9fd528122b07bd90d69bcffe1abd721ea747f2d773a6295263bb120437d09b091f95fa0249ce764a2a262a049c74777b7adea765bf88c9a SHA512 2b016fbe7fa046349af7d2a4e8ff26c5ae7328a4af7f1186cd19b3ff5ed6b639d0a6eb7db2f345c71169c0d30c7aea6d5a3a289000878328e776111d025eddb4 DIST getuto-1.9.1.tar.gz 10220 BLAKE2B 4c756f36e9d1272ab194c65e75b6c4d47c248190029ce2b5fe6edb1253998aaa311dd1ae59f893200d1588a52d1bcb53376a32f279c841ae6b5cf5e5b0eeb163 SHA512 3f8e5359940fa5582bea8dc11f2a0846c3f6bdc555974f2f049d5c6ff282029b6393a8c6ae221d327376b4df05de492f44720de90f76f5e3deb436171507f0cb DIST libc-1-r1-1.gpkg.tar 20480 BLAKE2B b2c184e20c1a29ff66240e992f9f81219285f525eb63cea081372685cf03a2e231a2edb528259617e74c655fbe61b6e0d8fc0bbdbd8452b6098de58432f019d7 SHA512 ce52f398ea8979ec16161381803740d49a4294c77303880f54090c379ba5eb8e545a3d3550f229cacc18c7763dc3adf7936561ba1c64b43c87692ec66084e4e6 diff --git a/app-portage/getuto/getuto-1.10.ebuild b/app-portage/getuto/getuto-1.10.ebuild new file mode 100644 index ..7be78a7129e1 --- /dev/null +++ b/app-portage/getuto/getuto-1.10.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Standalone Gentoo gpg trust anchor generation tool for binpkgs" +HOMEPAGE="https://github.com/projg2/getuto"; + +if [[ ${PV} == ]] ; then + EGIT_REPO_URI="https://github.com/projg2/getuto"; + inherit git-r3 +else + SRC_URI=" + https://github.com/projg2/getuto/archive/refs/tags/${P}.tar.gz + " + S=${WORKDIR}/${PN}-${P} + + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" +fi + +SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )" + +LICENSE="GPL-2" +SLOT="0" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + app-crypt/gnupg + dev-libs/openssl + sec-keys/openpgp-keys-gentoo-release + sys-apps/gentoo-functions +" + +src_unpack() { + if [[ ${PV} == ]] ; then + git-r3_src_unpack + else + # Don't mangle test data + unpack ${P}.tar.gz + fi + + if use test ; then + cp "${DISTDIR}"/libc-1-r1-1.gpkg.tar "${S}" || die + fi +} + +src_install() { + dobin getuto +}
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: 137a0aa58fbdd6dd75dda457748715578192d8f0 Author: Sam James gentoo org> AuthorDate: Fri Jan 5 10:55:18 2024 + Commit: Sam James gentoo org> CommitDate: Fri Jan 5 10:56:03 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=137a0aa5 app-portage/getuto: drop 1.9 Signed-off-by: Sam James gentoo.org> app-portage/getuto/Manifest | 1 - app-portage/getuto/getuto-1.9.ebuild | 50 2 files changed, 51 deletions(-) diff --git a/app-portage/getuto/Manifest b/app-portage/getuto/Manifest index 53b7c9b2bea1..149ef3ac4016 100644 --- a/app-portage/getuto/Manifest +++ b/app-portage/getuto/Manifest @@ -1,3 +1,2 @@ DIST getuto-1.9.1.tar.gz 10220 BLAKE2B 4c756f36e9d1272ab194c65e75b6c4d47c248190029ce2b5fe6edb1253998aaa311dd1ae59f893200d1588a52d1bcb53376a32f279c841ae6b5cf5e5b0eeb163 SHA512 3f8e5359940fa5582bea8dc11f2a0846c3f6bdc555974f2f049d5c6ff282029b6393a8c6ae221d327376b4df05de492f44720de90f76f5e3deb436171507f0cb -DIST getuto-1.9.tar.gz 10222 BLAKE2B a2a2ad64097166c86a299e32242edef88c8213b479d8a83399eece29c5f204f3362c48d29638347dde624913ceea4a3ec2bb7bf0936e3065c715ad13dd85caf9 SHA512 fc0e74f90d52dbf637e55d79f70397a71d20ece9f23d11989c152d140d2d08135eee9268bc726bf6504a6a45cf8572803471deb5d192378e6cb76d8f8c00499b DIST libc-1-r1-1.gpkg.tar 20480 BLAKE2B b2c184e20c1a29ff66240e992f9f81219285f525eb63cea081372685cf03a2e231a2edb528259617e74c655fbe61b6e0d8fc0bbdbd8452b6098de58432f019d7 SHA512 ce52f398ea8979ec16161381803740d49a4294c77303880f54090c379ba5eb8e545a3d3550f229cacc18c7763dc3adf7936561ba1c64b43c87692ec66084e4e6 diff --git a/app-portage/getuto/getuto-1.9.ebuild b/app-portage/getuto/getuto-1.9.ebuild deleted file mode 100644 index 35240625153e.. --- a/app-portage/getuto/getuto-1.9.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DESCRIPTION="Stand-alone gentoo install trust anchor generation tool" -HOMEPAGE="https://github.com/projg2/getuto"; - -if [[ ${PV} == ]] ; then - EGIT_REPO_URI="https://github.com/projg2/getuto"; - inherit git-r3 -else - SRC_URI=" - https://github.com/projg2/getuto/archive/refs/tags/${P}.tar.gz - " - S=${WORKDIR}/${PN}-${P} - - KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux" -fi - -SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )" - -LICENSE="GPL-2" -SLOT="0" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - app-crypt/gnupg - dev-libs/openssl - sec-keys/openpgp-keys-gentoo-release - sys-apps/gentoo-functions -" - -src_unpack() { - if [[ ${PV} == ]] ; then - git-r3_src_unpack - else - # Don't mangle test data - unpack ${P}.tar.gz - fi - - if use test ; then - cp "${DISTDIR}"/libc-1-r1-1.gpkg.tar "${S}" || die - fi -} - -src_install() { - dobin getuto -}
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: d3369589ad4adbbf8e0b7628c0ee47e626d75fe6 Author: Sam James gentoo org> AuthorDate: Sun Dec 3 08:31:35 2023 + Commit: Sam James gentoo org> CommitDate: Sun Dec 3 08:31:35 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3369589 app-portage/getuto: Stabilize 1.9.1 ALLARCHES, #919103 Signed-off-by: Sam James gentoo.org> app-portage/getuto/getuto-1.9.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-portage/getuto/getuto-1.9.1.ebuild b/app-portage/getuto/getuto-1.9.1.ebuild index c5a496c6edd2..9f47de19cdd1 100644 --- a/app-portage/getuto/getuto-1.9.1.ebuild +++ b/app-portage/getuto/getuto-1.9.1.ebuild @@ -15,7 +15,7 @@ else " S=${WORKDIR}/${PN}-${P} - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" + KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux" fi SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )"
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: 2d0cc8ca5fe3107e84b97db6b5f1ba2de423d454 Author: Sam James gentoo org> AuthorDate: Sun Dec 3 08:28:55 2023 + Commit: Sam James gentoo org> CommitDate: Sun Dec 3 08:28:55 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d0cc8ca app-portage/getuto: tweak DESCRIPTION Signed-off-by: Sam James gentoo.org> app-portage/getuto/getuto-1.9.1.ebuild | 2 +- app-portage/getuto/getuto-.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app-portage/getuto/getuto-1.9.1.ebuild b/app-portage/getuto/getuto-1.9.1.ebuild index 4778eb372c02..c5a496c6edd2 100644 --- a/app-portage/getuto/getuto-1.9.1.ebuild +++ b/app-portage/getuto/getuto-1.9.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -DESCRIPTION="Stand-alone gentoo install trust anchor generation tool" +DESCRIPTION="Standalone Gentoo gpg trust anchor generation tool for binpkgs" HOMEPAGE="https://github.com/projg2/getuto"; if [[ ${PV} == ]] ; then diff --git a/app-portage/getuto/getuto-.ebuild b/app-portage/getuto/getuto-.ebuild index 4778eb372c02..c5a496c6edd2 100644 --- a/app-portage/getuto/getuto-.ebuild +++ b/app-portage/getuto/getuto-.ebuild @@ -3,7 +3,7 @@ EAPI=8 -DESCRIPTION="Stand-alone gentoo install trust anchor generation tool" +DESCRIPTION="Standalone Gentoo gpg trust anchor generation tool for binpkgs" HOMEPAGE="https://github.com/projg2/getuto"; if [[ ${PV} == ]] ; then
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: 10f34293f36e5d75454bd95c1bc212586f2b6462 Author: Andreas K. Hüttel gentoo org> AuthorDate: Wed Oct 11 09:30:09 2023 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Wed Oct 11 09:30:56 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10f34293 app-portage/getuto: add 1.9.1 Signed-off-by: Andreas K. Hüttel gentoo.org> app-portage/getuto/Manifest| 1 + app-portage/getuto/getuto-1.9.1.ebuild | 50 ++ 2 files changed, 51 insertions(+) diff --git a/app-portage/getuto/Manifest b/app-portage/getuto/Manifest index af633683be99..7420245333db 100644 --- a/app-portage/getuto/Manifest +++ b/app-portage/getuto/Manifest @@ -1,3 +1,4 @@ DIST getuto-1.8.tar.gz 10196 BLAKE2B 0733057de68c3fc76869984557f84b703be4d1c996080191fe12fe8f4171bbb595c206dfc0c45174a07f0c49b532cb9a30faf3746f9f8e1cecd9fbb4768b5897 SHA512 70e31394ff95e14b4d892e546be1fa4bf3805994056c406bd94a1089fefb2df10d919689f711b5de2517ce03ecdc821826d5640dae87fd1d78baf79b4b55780d +DIST getuto-1.9.1.tar.gz 10220 BLAKE2B 4c756f36e9d1272ab194c65e75b6c4d47c248190029ce2b5fe6edb1253998aaa311dd1ae59f893200d1588a52d1bcb53376a32f279c841ae6b5cf5e5b0eeb163 SHA512 3f8e5359940fa5582bea8dc11f2a0846c3f6bdc555974f2f049d5c6ff282029b6393a8c6ae221d327376b4df05de492f44720de90f76f5e3deb436171507f0cb DIST getuto-1.9.tar.gz 10222 BLAKE2B a2a2ad64097166c86a299e32242edef88c8213b479d8a83399eece29c5f204f3362c48d29638347dde624913ceea4a3ec2bb7bf0936e3065c715ad13dd85caf9 SHA512 fc0e74f90d52dbf637e55d79f70397a71d20ece9f23d11989c152d140d2d08135eee9268bc726bf6504a6a45cf8572803471deb5d192378e6cb76d8f8c00499b DIST libc-1-r1-1.gpkg.tar 20480 BLAKE2B b2c184e20c1a29ff66240e992f9f81219285f525eb63cea081372685cf03a2e231a2edb528259617e74c655fbe61b6e0d8fc0bbdbd8452b6098de58432f019d7 SHA512 ce52f398ea8979ec16161381803740d49a4294c77303880f54090c379ba5eb8e545a3d3550f229cacc18c7763dc3adf7936561ba1c64b43c87692ec66084e4e6 diff --git a/app-portage/getuto/getuto-1.9.1.ebuild b/app-portage/getuto/getuto-1.9.1.ebuild new file mode 100644 index ..4778eb372c02 --- /dev/null +++ b/app-portage/getuto/getuto-1.9.1.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Stand-alone gentoo install trust anchor generation tool" +HOMEPAGE="https://github.com/projg2/getuto"; + +if [[ ${PV} == ]] ; then + EGIT_REPO_URI="https://github.com/projg2/getuto"; + inherit git-r3 +else + SRC_URI=" + https://github.com/projg2/getuto/archive/refs/tags/${P}.tar.gz + " + S=${WORKDIR}/${PN}-${P} + + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" +fi + +SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )" + +LICENSE="GPL-2" +SLOT="0" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + app-crypt/gnupg + dev-libs/openssl + sec-keys/openpgp-keys-gentoo-release + sys-apps/gentoo-functions +" + +src_unpack() { + if [[ ${PV} == ]] ; then + git-r3_src_unpack + else + # Don't mangle test data + unpack ${P}.tar.gz + fi + + if use test ; then + cp "${DISTDIR}"/libc-1-r1-1.gpkg.tar "${S}" || die + fi +} + +src_install() { + dobin getuto +}
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: 789c5e95c056eca30726d284a1c85add4efe3c53 Author: Andreas K. Hüttel gentoo org> AuthorDate: Wed Oct 11 09:30:26 2023 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Wed Oct 11 09:30:59 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=789c5e95 app-portage/getuto: drop 1.8 Signed-off-by: Andreas K. Hüttel gentoo.org> app-portage/getuto/Manifest | 1 - app-portage/getuto/getuto-1.8.ebuild | 50 2 files changed, 51 deletions(-) diff --git a/app-portage/getuto/Manifest b/app-portage/getuto/Manifest index 7420245333db..53b7c9b2bea1 100644 --- a/app-portage/getuto/Manifest +++ b/app-portage/getuto/Manifest @@ -1,4 +1,3 @@ -DIST getuto-1.8.tar.gz 10196 BLAKE2B 0733057de68c3fc76869984557f84b703be4d1c996080191fe12fe8f4171bbb595c206dfc0c45174a07f0c49b532cb9a30faf3746f9f8e1cecd9fbb4768b5897 SHA512 70e31394ff95e14b4d892e546be1fa4bf3805994056c406bd94a1089fefb2df10d919689f711b5de2517ce03ecdc821826d5640dae87fd1d78baf79b4b55780d DIST getuto-1.9.1.tar.gz 10220 BLAKE2B 4c756f36e9d1272ab194c65e75b6c4d47c248190029ce2b5fe6edb1253998aaa311dd1ae59f893200d1588a52d1bcb53376a32f279c841ae6b5cf5e5b0eeb163 SHA512 3f8e5359940fa5582bea8dc11f2a0846c3f6bdc555974f2f049d5c6ff282029b6393a8c6ae221d327376b4df05de492f44720de90f76f5e3deb436171507f0cb DIST getuto-1.9.tar.gz 10222 BLAKE2B a2a2ad64097166c86a299e32242edef88c8213b479d8a83399eece29c5f204f3362c48d29638347dde624913ceea4a3ec2bb7bf0936e3065c715ad13dd85caf9 SHA512 fc0e74f90d52dbf637e55d79f70397a71d20ece9f23d11989c152d140d2d08135eee9268bc726bf6504a6a45cf8572803471deb5d192378e6cb76d8f8c00499b DIST libc-1-r1-1.gpkg.tar 20480 BLAKE2B b2c184e20c1a29ff66240e992f9f81219285f525eb63cea081372685cf03a2e231a2edb528259617e74c655fbe61b6e0d8fc0bbdbd8452b6098de58432f019d7 SHA512 ce52f398ea8979ec16161381803740d49a4294c77303880f54090c379ba5eb8e545a3d3550f229cacc18c7763dc3adf7936561ba1c64b43c87692ec66084e4e6 diff --git a/app-portage/getuto/getuto-1.8.ebuild b/app-portage/getuto/getuto-1.8.ebuild deleted file mode 100644 index 35bf5df5276f.. --- a/app-portage/getuto/getuto-1.8.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DESCRIPTION="Stand-alone gentoo install trust anchor generation tool" -HOMEPAGE="https://github.com/projg2/getuto"; - -if [[ ${PV} == ]] ; then - EGIT_REPO_URI="https://github.com/projg2/getuto"; - inherit git-r3 -else - SRC_URI=" - https://github.com/projg2/getuto/archive/refs/tags/${P}.tar.gz - " - S=${WORKDIR}/${PN}-${P} - - KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" -fi - -SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )" - -LICENSE="GPL-2" -SLOT="0" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - app-crypt/gnupg - dev-libs/openssl - sec-keys/openpgp-keys-gentoo-release - sys-apps/gentoo-functions -" - -src_unpack() { - if [[ ${PV} == ]] ; then - git-r3_src_unpack - else - # Don't mangle test data - unpack ${P}.tar.gz - fi - - if use test ; then - cp "${DISTDIR}"/libc-1-r1-1.gpkg.tar "${S}" || die - fi -} - -src_install() { - dobin getuto -}
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: 184b1944d4a40d0b814208fb7bee2a76bda2d980 Author: Arthur Zamarin gentoo org> AuthorDate: Tue Oct 3 15:46:25 2023 + Commit: Arthur Zamarin gentoo org> CommitDate: Tue Oct 3 15:46:25 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=184b1944 app-portage/getuto: Stabilize 1.9 x86, #915093 Signed-off-by: Arthur Zamarin gentoo.org> app-portage/getuto/getuto-1.9.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-portage/getuto/getuto-1.9.ebuild b/app-portage/getuto/getuto-1.9.ebuild index 48e1d7187ba0..35240625153e 100644 --- a/app-portage/getuto/getuto-1.9.ebuild +++ b/app-portage/getuto/getuto-1.9.ebuild @@ -15,7 +15,7 @@ else " S=${WORKDIR}/${PN}-${P} - KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux" + KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux" fi SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )"
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: f5aeac249b14eda4b65a051397da9c0a67a2affe Author: Arthur Zamarin gentoo org> AuthorDate: Tue Oct 3 15:40:59 2023 + Commit: Arthur Zamarin gentoo org> CommitDate: Tue Oct 3 15:40:59 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5aeac24 app-portage/getuto: Stabilize 1.9 sparc, #915093 Signed-off-by: Arthur Zamarin gentoo.org> app-portage/getuto/getuto-1.9.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-portage/getuto/getuto-1.9.ebuild b/app-portage/getuto/getuto-1.9.ebuild index 59be0bb3baef..48e1d7187ba0 100644 --- a/app-portage/getuto/getuto-1.9.ebuild +++ b/app-portage/getuto/getuto-1.9.ebuild @@ -15,7 +15,7 @@ else " S=${WORKDIR}/${PN}-${P} - KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" + KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux" fi SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )"
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: c3a99a182e979c15d7a7eaa110d17288666f5cfd Author: Arthur Zamarin gentoo org> AuthorDate: Tue Oct 3 15:40:10 2023 + Commit: Arthur Zamarin gentoo org> CommitDate: Tue Oct 3 15:40:10 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3a99a18 app-portage/getuto: Stabilize 1.9 amd64, #915093 Signed-off-by: Arthur Zamarin gentoo.org> app-portage/getuto/getuto-1.9.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-portage/getuto/getuto-1.9.ebuild b/app-portage/getuto/getuto-1.9.ebuild index 35bf5df5276f..019fd3426bb5 100644 --- a/app-portage/getuto/getuto-1.9.ebuild +++ b/app-portage/getuto/getuto-1.9.ebuild @@ -15,7 +15,7 @@ else " S=${WORKDIR}/${PN}-${P} - KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" + KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" fi SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )"
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: 7b557095b42c476b02f5aeda42bdf1c98c3c75b2 Author: Arthur Zamarin gentoo org> AuthorDate: Tue Oct 3 15:40:37 2023 + Commit: Arthur Zamarin gentoo org> CommitDate: Tue Oct 3 15:40:37 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b557095 app-portage/getuto: Stabilize 1.9 ppc, #915093 Signed-off-by: Arthur Zamarin gentoo.org> app-portage/getuto/getuto-1.9.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-portage/getuto/getuto-1.9.ebuild b/app-portage/getuto/getuto-1.9.ebuild index 8ed5f696f7e8..59be0bb3baef 100644 --- a/app-portage/getuto/getuto-1.9.ebuild +++ b/app-portage/getuto/getuto-1.9.ebuild @@ -15,7 +15,7 @@ else " S=${WORKDIR}/${PN}-${P} - KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" + KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" fi SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )"
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: ffd527792eedf825f764340185c1fcc9194c71e2 Author: Arthur Zamarin gentoo org> AuthorDate: Tue Oct 3 15:40:20 2023 + Commit: Arthur Zamarin gentoo org> CommitDate: Tue Oct 3 15:40:20 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffd52779 app-portage/getuto: Stabilize 1.9 arm64, #915093 Signed-off-by: Arthur Zamarin gentoo.org> app-portage/getuto/getuto-1.9.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-portage/getuto/getuto-1.9.ebuild b/app-portage/getuto/getuto-1.9.ebuild index 019fd3426bb5..5a8e15e49e3a 100644 --- a/app-portage/getuto/getuto-1.9.ebuild +++ b/app-portage/getuto/getuto-1.9.ebuild @@ -15,7 +15,7 @@ else " S=${WORKDIR}/${PN}-${P} - KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" + KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" fi SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )"
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: d288c334f6144e41e717f0fd02de56cd5767a341 Author: Arthur Zamarin gentoo org> AuthorDate: Tue Oct 3 15:40:33 2023 + Commit: Arthur Zamarin gentoo org> CommitDate: Tue Oct 3 15:40:33 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d288c334 app-portage/getuto: Stabilize 1.9 hppa, #915093 Signed-off-by: Arthur Zamarin gentoo.org> app-portage/getuto/getuto-1.9.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-portage/getuto/getuto-1.9.ebuild b/app-portage/getuto/getuto-1.9.ebuild index 5a8e15e49e3a..8ed5f696f7e8 100644 --- a/app-portage/getuto/getuto-1.9.ebuild +++ b/app-portage/getuto/getuto-1.9.ebuild @@ -15,7 +15,7 @@ else " S=${WORKDIR}/${PN}-${P} - KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" + KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" fi SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )"
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: 063f3d3de46d4aab66d30246e7605f0a68235688 Author: Andreas K. Hüttel gentoo org> AuthorDate: Tue Oct 3 13:57:24 2023 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Tue Oct 3 13:57:24 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=063f3d3d app-portage/getuto: stabilize 1.9 for arm, ppc64 Signed-off-by: Andreas K. Hüttel gentoo.org> app-portage/getuto/getuto-1.9.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-portage/getuto/getuto-1.9.ebuild b/app-portage/getuto/getuto-1.9.ebuild index 4778eb372c02..35bf5df5276f 100644 --- a/app-portage/getuto/getuto-1.9.ebuild +++ b/app-portage/getuto/getuto-1.9.ebuild @@ -15,7 +15,7 @@ else " S=${WORKDIR}/${PN}-${P} - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" + KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" fi SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )"
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: cc1dc8c57247b242fca2733e854fd45c52bc126a Author: Andreas K. Hüttel gentoo org> AuthorDate: Tue Oct 3 13:53:09 2023 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Tue Oct 3 13:53:48 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc1dc8c5 app-portage/getuto: add 1.9 Closes: https://bugs.gentoo.org/915097 Signed-off-by: Andreas K. Hüttel gentoo.org> app-portage/getuto/Manifest | 1 + app-portage/getuto/getuto-1.9.ebuild | 50 2 files changed, 51 insertions(+) diff --git a/app-portage/getuto/Manifest b/app-portage/getuto/Manifest index 86fbb2ee502d..73476cb8c676 100644 --- a/app-portage/getuto/Manifest +++ b/app-portage/getuto/Manifest @@ -1,4 +1,5 @@ DIST getuto-1.6.tar.gz 9956 BLAKE2B 30ccbbe39993473a30bc6267c221ce23c78efa2b112ee1f2e65836f8b72f4e23f223a17c129293a2d3b5e1ca0c993960ef53905ca2af030e381a77c9e30fff5e SHA512 56277b0a64d31ff7e1637ec2288733c0a1c72045700b32c2d261e2d5ad854c1ae17c0f8e70f6080a008bb09fd0e8dcf8256aeb99615e446f4e6a441b9a1a088b DIST getuto-1.7.tar.gz 10096 BLAKE2B 952d5a8dca09dcecfc78e055c96b70c997c459767966631142f24ff8c0ce003b5520084aa0938971e61124fad2747c8457a79dadddf76858869fc1de8da9ecab SHA512 43ba49df85c32aaade2b08ca0bc2bdac9edfd4b363a85a84833a17a84fb87dcdb987625bd61862371025ad2b4c364a1fa8d93138bafd7abe4a99fdb2791b3e7b DIST getuto-1.8.tar.gz 10196 BLAKE2B 0733057de68c3fc76869984557f84b703be4d1c996080191fe12fe8f4171bbb595c206dfc0c45174a07f0c49b532cb9a30faf3746f9f8e1cecd9fbb4768b5897 SHA512 70e31394ff95e14b4d892e546be1fa4bf3805994056c406bd94a1089fefb2df10d919689f711b5de2517ce03ecdc821826d5640dae87fd1d78baf79b4b55780d +DIST getuto-1.9.tar.gz 10222 BLAKE2B a2a2ad64097166c86a299e32242edef88c8213b479d8a83399eece29c5f204f3362c48d29638347dde624913ceea4a3ec2bb7bf0936e3065c715ad13dd85caf9 SHA512 fc0e74f90d52dbf637e55d79f70397a71d20ece9f23d11989c152d140d2d08135eee9268bc726bf6504a6a45cf8572803471deb5d192378e6cb76d8f8c00499b DIST libc-1-r1-1.gpkg.tar 20480 BLAKE2B b2c184e20c1a29ff66240e992f9f81219285f525eb63cea081372685cf03a2e231a2edb528259617e74c655fbe61b6e0d8fc0bbdbd8452b6098de58432f019d7 SHA512 ce52f398ea8979ec16161381803740d49a4294c77303880f54090c379ba5eb8e545a3d3550f229cacc18c7763dc3adf7936561ba1c64b43c87692ec66084e4e6 diff --git a/app-portage/getuto/getuto-1.9.ebuild b/app-portage/getuto/getuto-1.9.ebuild new file mode 100644 index ..4778eb372c02 --- /dev/null +++ b/app-portage/getuto/getuto-1.9.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Stand-alone gentoo install trust anchor generation tool" +HOMEPAGE="https://github.com/projg2/getuto"; + +if [[ ${PV} == ]] ; then + EGIT_REPO_URI="https://github.com/projg2/getuto"; + inherit git-r3 +else + SRC_URI=" + https://github.com/projg2/getuto/archive/refs/tags/${P}.tar.gz + " + S=${WORKDIR}/${PN}-${P} + + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" +fi + +SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )" + +LICENSE="GPL-2" +SLOT="0" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + app-crypt/gnupg + dev-libs/openssl + sec-keys/openpgp-keys-gentoo-release + sys-apps/gentoo-functions +" + +src_unpack() { + if [[ ${PV} == ]] ; then + git-r3_src_unpack + else + # Don't mangle test data + unpack ${P}.tar.gz + fi + + if use test ; then + cp "${DISTDIR}"/libc-1-r1-1.gpkg.tar "${S}" || die + fi +} + +src_install() { + dobin getuto +}
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: 89384561bdab75c3719d1cd1794d2e244451cb34 Author: Andreas K. Hüttel gentoo org> AuthorDate: Tue Oct 3 13:53:28 2023 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Tue Oct 3 13:53:51 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89384561 app-portage/getuto: drop 1.6, 1.7 Closes: https://bugs.gentoo.org/915097 Signed-off-by: Andreas K. Hüttel gentoo.org> app-portage/getuto/Manifest | 2 -- app-portage/getuto/getuto-1.6.ebuild | 50 app-portage/getuto/getuto-1.7.ebuild | 50 3 files changed, 102 deletions(-) diff --git a/app-portage/getuto/Manifest b/app-portage/getuto/Manifest index 73476cb8c676..af633683be99 100644 --- a/app-portage/getuto/Manifest +++ b/app-portage/getuto/Manifest @@ -1,5 +1,3 @@ -DIST getuto-1.6.tar.gz 9956 BLAKE2B 30ccbbe39993473a30bc6267c221ce23c78efa2b112ee1f2e65836f8b72f4e23f223a17c129293a2d3b5e1ca0c993960ef53905ca2af030e381a77c9e30fff5e SHA512 56277b0a64d31ff7e1637ec2288733c0a1c72045700b32c2d261e2d5ad854c1ae17c0f8e70f6080a008bb09fd0e8dcf8256aeb99615e446f4e6a441b9a1a088b -DIST getuto-1.7.tar.gz 10096 BLAKE2B 952d5a8dca09dcecfc78e055c96b70c997c459767966631142f24ff8c0ce003b5520084aa0938971e61124fad2747c8457a79dadddf76858869fc1de8da9ecab SHA512 43ba49df85c32aaade2b08ca0bc2bdac9edfd4b363a85a84833a17a84fb87dcdb987625bd61862371025ad2b4c364a1fa8d93138bafd7abe4a99fdb2791b3e7b DIST getuto-1.8.tar.gz 10196 BLAKE2B 0733057de68c3fc76869984557f84b703be4d1c996080191fe12fe8f4171bbb595c206dfc0c45174a07f0c49b532cb9a30faf3746f9f8e1cecd9fbb4768b5897 SHA512 70e31394ff95e14b4d892e546be1fa4bf3805994056c406bd94a1089fefb2df10d919689f711b5de2517ce03ecdc821826d5640dae87fd1d78baf79b4b55780d DIST getuto-1.9.tar.gz 10222 BLAKE2B a2a2ad64097166c86a299e32242edef88c8213b479d8a83399eece29c5f204f3362c48d29638347dde624913ceea4a3ec2bb7bf0936e3065c715ad13dd85caf9 SHA512 fc0e74f90d52dbf637e55d79f70397a71d20ece9f23d11989c152d140d2d08135eee9268bc726bf6504a6a45cf8572803471deb5d192378e6cb76d8f8c00499b DIST libc-1-r1-1.gpkg.tar 20480 BLAKE2B b2c184e20c1a29ff66240e992f9f81219285f525eb63cea081372685cf03a2e231a2edb528259617e74c655fbe61b6e0d8fc0bbdbd8452b6098de58432f019d7 SHA512 ce52f398ea8979ec16161381803740d49a4294c77303880f54090c379ba5eb8e545a3d3550f229cacc18c7763dc3adf7936561ba1c64b43c87692ec66084e4e6 diff --git a/app-portage/getuto/getuto-1.6.ebuild b/app-portage/getuto/getuto-1.6.ebuild deleted file mode 100644 index 4778eb372c02.. --- a/app-portage/getuto/getuto-1.6.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DESCRIPTION="Stand-alone gentoo install trust anchor generation tool" -HOMEPAGE="https://github.com/projg2/getuto"; - -if [[ ${PV} == ]] ; then - EGIT_REPO_URI="https://github.com/projg2/getuto"; - inherit git-r3 -else - SRC_URI=" - https://github.com/projg2/getuto/archive/refs/tags/${P}.tar.gz - " - S=${WORKDIR}/${PN}-${P} - - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" -fi - -SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )" - -LICENSE="GPL-2" -SLOT="0" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - app-crypt/gnupg - dev-libs/openssl - sec-keys/openpgp-keys-gentoo-release - sys-apps/gentoo-functions -" - -src_unpack() { - if [[ ${PV} == ]] ; then - git-r3_src_unpack - else - # Don't mangle test data - unpack ${P}.tar.gz - fi - - if use test ; then - cp "${DISTDIR}"/libc-1-r1-1.gpkg.tar "${S}" || die - fi -} - -src_install() { - dobin getuto -} diff --git a/app-portage/getuto/getuto-1.7.ebuild b/app-portage/getuto/getuto-1.7.ebuild deleted file mode 100644 index 4778eb372c02.. --- a/app-portage/getuto/getuto-1.7.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DESCRIPTION="Stand-alone gentoo install trust anchor generation tool" -HOMEPAGE="https://github.com/projg2/getuto"; - -if [[ ${PV} == ]] ; then - EGIT_REPO_URI="https://github.com/projg2/getuto"; - inherit git-r3 -else - SRC_URI=" - https://github.com/projg2/getuto/archive/refs/tags/${P}.tar.gz - " - S=${WORKDIR}/${PN}-${P} - - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" -fi - -SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )" - -LICENSE="GPL-2" -SLOT="0" -IUSE="test" -RESTRICT="!
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: 666d690a579088f599c7d0201f70bad02cf1cb7a Author: Sam James gentoo org> AuthorDate: Tue Oct 3 05:12:20 2023 + Commit: Sam James gentoo org> CommitDate: Tue Oct 3 05:12:20 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=666d690a app-portage/getuto: Stabilize 1.8 ppc64, #915093 Signed-off-by: Sam James gentoo.org> app-portage/getuto/getuto-1.8.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-portage/getuto/getuto-1.8.ebuild b/app-portage/getuto/getuto-1.8.ebuild index 8c0544640b24..35bf5df5276f 100644 --- a/app-portage/getuto/getuto-1.8.ebuild +++ b/app-portage/getuto/getuto-1.8.ebuild @@ -15,7 +15,7 @@ else " S=${WORKDIR}/${PN}-${P} - KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" + KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" fi SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )"
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: ef162c645c1fba1ceb5b624c604e6c58a9bae334 Author: Sam James gentoo org> AuthorDate: Tue Oct 3 04:51:43 2023 + Commit: Sam James gentoo org> CommitDate: Tue Oct 3 04:51:43 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef162c64 app-portage/getuto: Stabilize 1.8 arm, #915093 Signed-off-by: Sam James gentoo.org> app-portage/getuto/getuto-1.8.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-portage/getuto/getuto-1.8.ebuild b/app-portage/getuto/getuto-1.8.ebuild index 4778eb372c02..8c0544640b24 100644 --- a/app-portage/getuto/getuto-1.8.ebuild +++ b/app-portage/getuto/getuto-1.8.ebuild @@ -15,7 +15,7 @@ else " S=${WORKDIR}/${PN}-${P} - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" + KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" fi SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )"
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: 17bb4a8165c897c1ba167511467a9b1d3ddcc393 Author: Sam James gentoo org> AuthorDate: Sat Sep 9 00:59:50 2023 + Commit: Sam James gentoo org> CommitDate: Sat Sep 9 00:59:50 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17bb4a81 app-portage/getuto: drop 1.5 Signed-off-by: Sam James gentoo.org> app-portage/getuto/Manifest | 1 - app-portage/getuto/getuto-1.5.ebuild | 49 2 files changed, 50 deletions(-) diff --git a/app-portage/getuto/Manifest b/app-portage/getuto/Manifest index 5ab94c3977c4..86fbb2ee502d 100644 --- a/app-portage/getuto/Manifest +++ b/app-portage/getuto/Manifest @@ -1,4 +1,3 @@ -DIST getuto-1.5.tar.gz 9706 BLAKE2B cc31775c89d9beadd1ac32fa5596833e71d8e9aa2ea3229d7bdea4caf23de2e79c76bb74975e13953b6226f806fd547c76b38de71f1b4084dce1a92ce2c217bb SHA512 78da4ca097b87c05980895d3491722e739505e1ce0614fd39242255712e705c3e7455636b67e328980bbc15fe85e6826d6d4a1b1804670f219675a67f404 DIST getuto-1.6.tar.gz 9956 BLAKE2B 30ccbbe39993473a30bc6267c221ce23c78efa2b112ee1f2e65836f8b72f4e23f223a17c129293a2d3b5e1ca0c993960ef53905ca2af030e381a77c9e30fff5e SHA512 56277b0a64d31ff7e1637ec2288733c0a1c72045700b32c2d261e2d5ad854c1ae17c0f8e70f6080a008bb09fd0e8dcf8256aeb99615e446f4e6a441b9a1a088b DIST getuto-1.7.tar.gz 10096 BLAKE2B 952d5a8dca09dcecfc78e055c96b70c997c459767966631142f24ff8c0ce003b5520084aa0938971e61124fad2747c8457a79dadddf76858869fc1de8da9ecab SHA512 43ba49df85c32aaade2b08ca0bc2bdac9edfd4b363a85a84833a17a84fb87dcdb987625bd61862371025ad2b4c364a1fa8d93138bafd7abe4a99fdb2791b3e7b DIST getuto-1.8.tar.gz 10196 BLAKE2B 0733057de68c3fc76869984557f84b703be4d1c996080191fe12fe8f4171bbb595c206dfc0c45174a07f0c49b532cb9a30faf3746f9f8e1cecd9fbb4768b5897 SHA512 70e31394ff95e14b4d892e546be1fa4bf3805994056c406bd94a1089fefb2df10d919689f711b5de2517ce03ecdc821826d5640dae87fd1d78baf79b4b55780d diff --git a/app-portage/getuto/getuto-1.5.ebuild b/app-portage/getuto/getuto-1.5.ebuild deleted file mode 100644 index 860cc3595dd0.. --- a/app-portage/getuto/getuto-1.5.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DESCRIPTION="Stand-alone gentoo install trust anchor generation tool" -HOMEPAGE="https://github.com/projg2/getuto"; - -if [[ ${PV} == ]] ; then - EGIT_REPO_URI="https://github.com/projg2/getuto"; - inherit git-r3 -else - SRC_URI=" - https://github.com/projg2/getuto/archive/refs/tags/${P}.tar.gz - " - S=${WORKDIR}/${PN}-${P} - - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" -fi - -SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )" - -LICENSE="GPL-2" -SLOT="0" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - app-crypt/gnupg - dev-libs/openssl - sec-keys/openpgp-keys-gentoo-release -" - -src_unpack() { - if [[ ${PV} == ]] ; then - git-r3_src_unpack - else - # Don't mangle test data - unpack ${P}.tar.gz - fi - - if use test ; then - cp "${DISTDIR}"/libc-1-r1-1.gpkg.tar "${S}" || die - fi -} - -src_install() { - dobin getuto -}
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: 0f2879f01bce2381188083283392fce8ec36e2a7 Author: Sam James gentoo org> AuthorDate: Sat Sep 9 00:59:15 2023 + Commit: Sam James gentoo org> CommitDate: Sat Sep 9 00:59:21 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f2879f0 app-portage/getuto: add 1.8 Signed-off-by: Sam James gentoo.org> app-portage/getuto/Manifest | 1 + app-portage/getuto/getuto-1.8.ebuild | 50 2 files changed, 51 insertions(+) diff --git a/app-portage/getuto/Manifest b/app-portage/getuto/Manifest index ea70fc17661c..5ab94c3977c4 100644 --- a/app-portage/getuto/Manifest +++ b/app-portage/getuto/Manifest @@ -1,4 +1,5 @@ DIST getuto-1.5.tar.gz 9706 BLAKE2B cc31775c89d9beadd1ac32fa5596833e71d8e9aa2ea3229d7bdea4caf23de2e79c76bb74975e13953b6226f806fd547c76b38de71f1b4084dce1a92ce2c217bb SHA512 78da4ca097b87c05980895d3491722e739505e1ce0614fd39242255712e705c3e7455636b67e328980bbc15fe85e6826d6d4a1b1804670f219675a67f404 DIST getuto-1.6.tar.gz 9956 BLAKE2B 30ccbbe39993473a30bc6267c221ce23c78efa2b112ee1f2e65836f8b72f4e23f223a17c129293a2d3b5e1ca0c993960ef53905ca2af030e381a77c9e30fff5e SHA512 56277b0a64d31ff7e1637ec2288733c0a1c72045700b32c2d261e2d5ad854c1ae17c0f8e70f6080a008bb09fd0e8dcf8256aeb99615e446f4e6a441b9a1a088b DIST getuto-1.7.tar.gz 10096 BLAKE2B 952d5a8dca09dcecfc78e055c96b70c997c459767966631142f24ff8c0ce003b5520084aa0938971e61124fad2747c8457a79dadddf76858869fc1de8da9ecab SHA512 43ba49df85c32aaade2b08ca0bc2bdac9edfd4b363a85a84833a17a84fb87dcdb987625bd61862371025ad2b4c364a1fa8d93138bafd7abe4a99fdb2791b3e7b +DIST getuto-1.8.tar.gz 10196 BLAKE2B 0733057de68c3fc76869984557f84b703be4d1c996080191fe12fe8f4171bbb595c206dfc0c45174a07f0c49b532cb9a30faf3746f9f8e1cecd9fbb4768b5897 SHA512 70e31394ff95e14b4d892e546be1fa4bf3805994056c406bd94a1089fefb2df10d919689f711b5de2517ce03ecdc821826d5640dae87fd1d78baf79b4b55780d DIST libc-1-r1-1.gpkg.tar 20480 BLAKE2B b2c184e20c1a29ff66240e992f9f81219285f525eb63cea081372685cf03a2e231a2edb528259617e74c655fbe61b6e0d8fc0bbdbd8452b6098de58432f019d7 SHA512 ce52f398ea8979ec16161381803740d49a4294c77303880f54090c379ba5eb8e545a3d3550f229cacc18c7763dc3adf7936561ba1c64b43c87692ec66084e4e6 diff --git a/app-portage/getuto/getuto-1.8.ebuild b/app-portage/getuto/getuto-1.8.ebuild new file mode 100644 index ..4778eb372c02 --- /dev/null +++ b/app-portage/getuto/getuto-1.8.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Stand-alone gentoo install trust anchor generation tool" +HOMEPAGE="https://github.com/projg2/getuto"; + +if [[ ${PV} == ]] ; then + EGIT_REPO_URI="https://github.com/projg2/getuto"; + inherit git-r3 +else + SRC_URI=" + https://github.com/projg2/getuto/archive/refs/tags/${P}.tar.gz + " + S=${WORKDIR}/${PN}-${P} + + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" +fi + +SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )" + +LICENSE="GPL-2" +SLOT="0" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + app-crypt/gnupg + dev-libs/openssl + sec-keys/openpgp-keys-gentoo-release + sys-apps/gentoo-functions +" + +src_unpack() { + if [[ ${PV} == ]] ; then + git-r3_src_unpack + else + # Don't mangle test data + unpack ${P}.tar.gz + fi + + if use test ; then + cp "${DISTDIR}"/libc-1-r1-1.gpkg.tar "${S}" || die + fi +} + +src_install() { + dobin getuto +}
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: b85d25f26fac797aff9d06b792e622b9fa31ca53 Author: Andreas K. Hüttel gentoo org> AuthorDate: Fri Sep 8 19:44:49 2023 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Fri Sep 8 19:45:39 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b85d25f2 app-portage/getuto: add 1.7 Signed-off-by: Andreas K. Hüttel gentoo.org> app-portage/getuto/Manifest | 1 + app-portage/getuto/getuto-1.7.ebuild | 50 2 files changed, 51 insertions(+) diff --git a/app-portage/getuto/Manifest b/app-portage/getuto/Manifest index 69c516e7de3b..ea70fc17661c 100644 --- a/app-portage/getuto/Manifest +++ b/app-portage/getuto/Manifest @@ -1,3 +1,4 @@ DIST getuto-1.5.tar.gz 9706 BLAKE2B cc31775c89d9beadd1ac32fa5596833e71d8e9aa2ea3229d7bdea4caf23de2e79c76bb74975e13953b6226f806fd547c76b38de71f1b4084dce1a92ce2c217bb SHA512 78da4ca097b87c05980895d3491722e739505e1ce0614fd39242255712e705c3e7455636b67e328980bbc15fe85e6826d6d4a1b1804670f219675a67f404 DIST getuto-1.6.tar.gz 9956 BLAKE2B 30ccbbe39993473a30bc6267c221ce23c78efa2b112ee1f2e65836f8b72f4e23f223a17c129293a2d3b5e1ca0c993960ef53905ca2af030e381a77c9e30fff5e SHA512 56277b0a64d31ff7e1637ec2288733c0a1c72045700b32c2d261e2d5ad854c1ae17c0f8e70f6080a008bb09fd0e8dcf8256aeb99615e446f4e6a441b9a1a088b +DIST getuto-1.7.tar.gz 10096 BLAKE2B 952d5a8dca09dcecfc78e055c96b70c997c459767966631142f24ff8c0ce003b5520084aa0938971e61124fad2747c8457a79dadddf76858869fc1de8da9ecab SHA512 43ba49df85c32aaade2b08ca0bc2bdac9edfd4b363a85a84833a17a84fb87dcdb987625bd61862371025ad2b4c364a1fa8d93138bafd7abe4a99fdb2791b3e7b DIST libc-1-r1-1.gpkg.tar 20480 BLAKE2B b2c184e20c1a29ff66240e992f9f81219285f525eb63cea081372685cf03a2e231a2edb528259617e74c655fbe61b6e0d8fc0bbdbd8452b6098de58432f019d7 SHA512 ce52f398ea8979ec16161381803740d49a4294c77303880f54090c379ba5eb8e545a3d3550f229cacc18c7763dc3adf7936561ba1c64b43c87692ec66084e4e6 diff --git a/app-portage/getuto/getuto-1.7.ebuild b/app-portage/getuto/getuto-1.7.ebuild new file mode 100644 index ..4778eb372c02 --- /dev/null +++ b/app-portage/getuto/getuto-1.7.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Stand-alone gentoo install trust anchor generation tool" +HOMEPAGE="https://github.com/projg2/getuto"; + +if [[ ${PV} == ]] ; then + EGIT_REPO_URI="https://github.com/projg2/getuto"; + inherit git-r3 +else + SRC_URI=" + https://github.com/projg2/getuto/archive/refs/tags/${P}.tar.gz + " + S=${WORKDIR}/${PN}-${P} + + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" +fi + +SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )" + +LICENSE="GPL-2" +SLOT="0" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + app-crypt/gnupg + dev-libs/openssl + sec-keys/openpgp-keys-gentoo-release + sys-apps/gentoo-functions +" + +src_unpack() { + if [[ ${PV} == ]] ; then + git-r3_src_unpack + else + # Don't mangle test data + unpack ${P}.tar.gz + fi + + if use test ; then + cp "${DISTDIR}"/libc-1-r1-1.gpkg.tar "${S}" || die + fi +} + +src_install() { + dobin getuto +}
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: b955913e5e5ebdaa332b8919e1f3da68daa30195 Author: Andreas K. Hüttel gentoo org> AuthorDate: Mon Sep 4 00:21:46 2023 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Mon Sep 4 00:23:09 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b955913e app-portage/getuto: Bump Signed-off-by: Andreas K. Hüttel gentoo.org> app-portage/getuto/Manifest | 1 + app-portage/getuto/{getuto-.ebuild => getuto-1.6.ebuild} | 1 + app-portage/getuto/getuto-.ebuild| 1 + 3 files changed, 3 insertions(+) diff --git a/app-portage/getuto/Manifest b/app-portage/getuto/Manifest index b682ffbeedd8..acc7c0f69ec1 100644 --- a/app-portage/getuto/Manifest +++ b/app-portage/getuto/Manifest @@ -1,4 +1,5 @@ DIST getuto-1.3.tar.gz 9589 BLAKE2B 79f95e263d3a18e58122bb418a3f7e4fe2f28b9e1c0e1cdd21c02df6cb1d0daec233c496ad0191ee4808ccad751b0e76212168454202da03d35bb74a100b24c4 SHA512 c7be7c992da2d3817240e20e47ee195a88eeb63a9a8a886e3b526b7a464fa6b2fe932b056aa0140960a9f104c34a6d4bafe483d10bf02da3c8ce9b7e3e4c3b26 DIST getuto-1.4.tar.gz 9702 BLAKE2B a81f474cc9202cdeffa90280c4dd3fa0710dafcad7c70f5887d61f10cd3f2f0a4bf0dda60b4e2eaa7299677b33bb73191066968ca0775d887ceb64ab1c1926d4 SHA512 c4f8089986b65056250404242eb31acd8db03a2cf5215d26167d8396befdd96a3d625b3b88958f397dff03b5f5d78c9b1437ff9be58b3502ba9446753473252e DIST getuto-1.5.tar.gz 9706 BLAKE2B cc31775c89d9beadd1ac32fa5596833e71d8e9aa2ea3229d7bdea4caf23de2e79c76bb74975e13953b6226f806fd547c76b38de71f1b4084dce1a92ce2c217bb SHA512 78da4ca097b87c05980895d3491722e739505e1ce0614fd39242255712e705c3e7455636b67e328980bbc15fe85e6826d6d4a1b1804670f219675a67f404 +DIST getuto-1.6.tar.gz 9956 BLAKE2B 30ccbbe39993473a30bc6267c221ce23c78efa2b112ee1f2e65836f8b72f4e23f223a17c129293a2d3b5e1ca0c993960ef53905ca2af030e381a77c9e30fff5e SHA512 56277b0a64d31ff7e1637ec2288733c0a1c72045700b32c2d261e2d5ad854c1ae17c0f8e70f6080a008bb09fd0e8dcf8256aeb99615e446f4e6a441b9a1a088b DIST libc-1-r1-1.gpkg.tar 20480 BLAKE2B b2c184e20c1a29ff66240e992f9f81219285f525eb63cea081372685cf03a2e231a2edb528259617e74c655fbe61b6e0d8fc0bbdbd8452b6098de58432f019d7 SHA512 ce52f398ea8979ec16161381803740d49a4294c77303880f54090c379ba5eb8e545a3d3550f229cacc18c7763dc3adf7936561ba1c64b43c87692ec66084e4e6 diff --git a/app-portage/getuto/getuto-.ebuild b/app-portage/getuto/getuto-1.6.ebuild similarity index 97% copy from app-portage/getuto/getuto-.ebuild copy to app-portage/getuto/getuto-1.6.ebuild index 860cc3595dd0..4778eb372c02 100644 --- a/app-portage/getuto/getuto-.ebuild +++ b/app-portage/getuto/getuto-1.6.ebuild @@ -29,6 +29,7 @@ RDEPEND=" app-crypt/gnupg dev-libs/openssl sec-keys/openpgp-keys-gentoo-release + sys-apps/gentoo-functions " src_unpack() { diff --git a/app-portage/getuto/getuto-.ebuild b/app-portage/getuto/getuto-.ebuild index 860cc3595dd0..4778eb372c02 100644 --- a/app-portage/getuto/getuto-.ebuild +++ b/app-portage/getuto/getuto-.ebuild @@ -29,6 +29,7 @@ RDEPEND=" app-crypt/gnupg dev-libs/openssl sec-keys/openpgp-keys-gentoo-release + sys-apps/gentoo-functions " src_unpack() {
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: 6194b3ec586f5efe50617d61f9da0f7195a4927c Author: Andreas K. Hüttel gentoo org> AuthorDate: Mon Sep 4 00:22:50 2023 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Mon Sep 4 00:23:12 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6194b3ec app-portage/getuto: drop 1.3, 1.4 Signed-off-by: Andreas K. Hüttel gentoo.org> app-portage/getuto/Manifest | 2 -- app-portage/getuto/getuto-1.3.ebuild | 49 app-portage/getuto/getuto-1.4.ebuild | 49 3 files changed, 100 deletions(-) diff --git a/app-portage/getuto/Manifest b/app-portage/getuto/Manifest index acc7c0f69ec1..69c516e7de3b 100644 --- a/app-portage/getuto/Manifest +++ b/app-portage/getuto/Manifest @@ -1,5 +1,3 @@ -DIST getuto-1.3.tar.gz 9589 BLAKE2B 79f95e263d3a18e58122bb418a3f7e4fe2f28b9e1c0e1cdd21c02df6cb1d0daec233c496ad0191ee4808ccad751b0e76212168454202da03d35bb74a100b24c4 SHA512 c7be7c992da2d3817240e20e47ee195a88eeb63a9a8a886e3b526b7a464fa6b2fe932b056aa0140960a9f104c34a6d4bafe483d10bf02da3c8ce9b7e3e4c3b26 -DIST getuto-1.4.tar.gz 9702 BLAKE2B a81f474cc9202cdeffa90280c4dd3fa0710dafcad7c70f5887d61f10cd3f2f0a4bf0dda60b4e2eaa7299677b33bb73191066968ca0775d887ceb64ab1c1926d4 SHA512 c4f8089986b65056250404242eb31acd8db03a2cf5215d26167d8396befdd96a3d625b3b88958f397dff03b5f5d78c9b1437ff9be58b3502ba9446753473252e DIST getuto-1.5.tar.gz 9706 BLAKE2B cc31775c89d9beadd1ac32fa5596833e71d8e9aa2ea3229d7bdea4caf23de2e79c76bb74975e13953b6226f806fd547c76b38de71f1b4084dce1a92ce2c217bb SHA512 78da4ca097b87c05980895d3491722e739505e1ce0614fd39242255712e705c3e7455636b67e328980bbc15fe85e6826d6d4a1b1804670f219675a67f404 DIST getuto-1.6.tar.gz 9956 BLAKE2B 30ccbbe39993473a30bc6267c221ce23c78efa2b112ee1f2e65836f8b72f4e23f223a17c129293a2d3b5e1ca0c993960ef53905ca2af030e381a77c9e30fff5e SHA512 56277b0a64d31ff7e1637ec2288733c0a1c72045700b32c2d261e2d5ad854c1ae17c0f8e70f6080a008bb09fd0e8dcf8256aeb99615e446f4e6a441b9a1a088b DIST libc-1-r1-1.gpkg.tar 20480 BLAKE2B b2c184e20c1a29ff66240e992f9f81219285f525eb63cea081372685cf03a2e231a2edb528259617e74c655fbe61b6e0d8fc0bbdbd8452b6098de58432f019d7 SHA512 ce52f398ea8979ec16161381803740d49a4294c77303880f54090c379ba5eb8e545a3d3550f229cacc18c7763dc3adf7936561ba1c64b43c87692ec66084e4e6 diff --git a/app-portage/getuto/getuto-1.3.ebuild b/app-portage/getuto/getuto-1.3.ebuild deleted file mode 100644 index 860cc3595dd0.. --- a/app-portage/getuto/getuto-1.3.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DESCRIPTION="Stand-alone gentoo install trust anchor generation tool" -HOMEPAGE="https://github.com/projg2/getuto"; - -if [[ ${PV} == ]] ; then - EGIT_REPO_URI="https://github.com/projg2/getuto"; - inherit git-r3 -else - SRC_URI=" - https://github.com/projg2/getuto/archive/refs/tags/${P}.tar.gz - " - S=${WORKDIR}/${PN}-${P} - - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" -fi - -SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )" - -LICENSE="GPL-2" -SLOT="0" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - app-crypt/gnupg - dev-libs/openssl - sec-keys/openpgp-keys-gentoo-release -" - -src_unpack() { - if [[ ${PV} == ]] ; then - git-r3_src_unpack - else - # Don't mangle test data - unpack ${P}.tar.gz - fi - - if use test ; then - cp "${DISTDIR}"/libc-1-r1-1.gpkg.tar "${S}" || die - fi -} - -src_install() { - dobin getuto -} diff --git a/app-portage/getuto/getuto-1.4.ebuild b/app-portage/getuto/getuto-1.4.ebuild deleted file mode 100644 index 860cc3595dd0.. --- a/app-portage/getuto/getuto-1.4.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DESCRIPTION="Stand-alone gentoo install trust anchor generation tool" -HOMEPAGE="https://github.com/projg2/getuto"; - -if [[ ${PV} == ]] ; then - EGIT_REPO_URI="https://github.com/projg2/getuto"; - inherit git-r3 -else - SRC_URI=" - https://github.com/projg2/getuto/archive/refs/tags/${P}.tar.gz - " - S=${WORKDIR}/${PN}-${P} - - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" -fi - -SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )" - -LICENSE="GPL-2" -SLOT="0" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - app-crypt/gnupg - dev-libs/openss
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: fc020aad1d952778afed47318cfb6993679cfc5a Author: Andreas K. Hüttel gentoo org> AuthorDate: Sun Sep 3 13:09:04 2023 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Sun Sep 3 13:09:29 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc020aad app-portage/getuto: add 1.5 Signed-off-by: Andreas K. Hüttel gentoo.org> app-portage/getuto/Manifest | 1 + app-portage/getuto/getuto-1.5.ebuild | 49 2 files changed, 50 insertions(+) diff --git a/app-portage/getuto/Manifest b/app-portage/getuto/Manifest index 080a51a77efb..b682ffbeedd8 100644 --- a/app-portage/getuto/Manifest +++ b/app-portage/getuto/Manifest @@ -1,3 +1,4 @@ DIST getuto-1.3.tar.gz 9589 BLAKE2B 79f95e263d3a18e58122bb418a3f7e4fe2f28b9e1c0e1cdd21c02df6cb1d0daec233c496ad0191ee4808ccad751b0e76212168454202da03d35bb74a100b24c4 SHA512 c7be7c992da2d3817240e20e47ee195a88eeb63a9a8a886e3b526b7a464fa6b2fe932b056aa0140960a9f104c34a6d4bafe483d10bf02da3c8ce9b7e3e4c3b26 DIST getuto-1.4.tar.gz 9702 BLAKE2B a81f474cc9202cdeffa90280c4dd3fa0710dafcad7c70f5887d61f10cd3f2f0a4bf0dda60b4e2eaa7299677b33bb73191066968ca0775d887ceb64ab1c1926d4 SHA512 c4f8089986b65056250404242eb31acd8db03a2cf5215d26167d8396befdd96a3d625b3b88958f397dff03b5f5d78c9b1437ff9be58b3502ba9446753473252e +DIST getuto-1.5.tar.gz 9706 BLAKE2B cc31775c89d9beadd1ac32fa5596833e71d8e9aa2ea3229d7bdea4caf23de2e79c76bb74975e13953b6226f806fd547c76b38de71f1b4084dce1a92ce2c217bb SHA512 78da4ca097b87c05980895d3491722e739505e1ce0614fd39242255712e705c3e7455636b67e328980bbc15fe85e6826d6d4a1b1804670f219675a67f404 DIST libc-1-r1-1.gpkg.tar 20480 BLAKE2B b2c184e20c1a29ff66240e992f9f81219285f525eb63cea081372685cf03a2e231a2edb528259617e74c655fbe61b6e0d8fc0bbdbd8452b6098de58432f019d7 SHA512 ce52f398ea8979ec16161381803740d49a4294c77303880f54090c379ba5eb8e545a3d3550f229cacc18c7763dc3adf7936561ba1c64b43c87692ec66084e4e6 diff --git a/app-portage/getuto/getuto-1.5.ebuild b/app-portage/getuto/getuto-1.5.ebuild new file mode 100644 index ..860cc3595dd0 --- /dev/null +++ b/app-portage/getuto/getuto-1.5.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Stand-alone gentoo install trust anchor generation tool" +HOMEPAGE="https://github.com/projg2/getuto"; + +if [[ ${PV} == ]] ; then + EGIT_REPO_URI="https://github.com/projg2/getuto"; + inherit git-r3 +else + SRC_URI=" + https://github.com/projg2/getuto/archive/refs/tags/${P}.tar.gz + " + S=${WORKDIR}/${PN}-${P} + + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" +fi + +SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )" + +LICENSE="GPL-2" +SLOT="0" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + app-crypt/gnupg + dev-libs/openssl + sec-keys/openpgp-keys-gentoo-release +" + +src_unpack() { + if [[ ${PV} == ]] ; then + git-r3_src_unpack + else + # Don't mangle test data + unpack ${P}.tar.gz + fi + + if use test ; then + cp "${DISTDIR}"/libc-1-r1-1.gpkg.tar "${S}" || die + fi +} + +src_install() { + dobin getuto +}
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: c2bddd7d78045a47ddd037b745dae465d8a4f2f3 Author: Andreas K. Hüttel gentoo org> AuthorDate: Thu Aug 31 19:53:19 2023 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Thu Aug 31 19:54:19 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2bddd7d app-portage/getuto: add 1.4 Signed-off-by: Andreas K. Hüttel gentoo.org> app-portage/getuto/Manifest | 1 + app-portage/getuto/getuto-1.4.ebuild | 49 2 files changed, 50 insertions(+) diff --git a/app-portage/getuto/Manifest b/app-portage/getuto/Manifest index e67f0f025728..0ad94d2e40cd 100644 --- a/app-portage/getuto/Manifest +++ b/app-portage/getuto/Manifest @@ -1,4 +1,5 @@ DIST getuto-1.1.tar.gz 9394 BLAKE2B 50a129826a98d1a43e1bee68f4d12707334de6e7dd0408685e4e5b727affe86560199745a65bc810d857afc972ef0e2aab6b712c67061e1379add1b48494c4b5 SHA512 94f88b6562d763aa2b5cea407409e617d9c1bc89db5779fe12cebabf3db22873d60f36e98ca90ce8bbbc4a1f06bb734a1ee059b5735f54cdba24db9f041cc13c DIST getuto-1.2.tar.gz 9412 BLAKE2B 0d207ecb83ca0739640a0c7587579b6c4d0437db5b84725dd14a31adee2f10ef1294dac9c159b8757dde42dd2693f82231aed720b7d1db63fa043bd20a5436bc SHA512 2d6ee97461fef1000f3616627c6e9899f5a348f6421e801ded37e96874340260ebb25a6e20138dda073278b8465ed8cebce8537da0e91fa4fc7e661c11f623d9 DIST getuto-1.3.tar.gz 9589 BLAKE2B 79f95e263d3a18e58122bb418a3f7e4fe2f28b9e1c0e1cdd21c02df6cb1d0daec233c496ad0191ee4808ccad751b0e76212168454202da03d35bb74a100b24c4 SHA512 c7be7c992da2d3817240e20e47ee195a88eeb63a9a8a886e3b526b7a464fa6b2fe932b056aa0140960a9f104c34a6d4bafe483d10bf02da3c8ce9b7e3e4c3b26 +DIST getuto-1.4.tar.gz 9702 BLAKE2B a81f474cc9202cdeffa90280c4dd3fa0710dafcad7c70f5887d61f10cd3f2f0a4bf0dda60b4e2eaa7299677b33bb73191066968ca0775d887ceb64ab1c1926d4 SHA512 c4f8089986b65056250404242eb31acd8db03a2cf5215d26167d8396befdd96a3d625b3b88958f397dff03b5f5d78c9b1437ff9be58b3502ba9446753473252e DIST libc-1-r1-1.gpkg.tar 20480 BLAKE2B b2c184e20c1a29ff66240e992f9f81219285f525eb63cea081372685cf03a2e231a2edb528259617e74c655fbe61b6e0d8fc0bbdbd8452b6098de58432f019d7 SHA512 ce52f398ea8979ec16161381803740d49a4294c77303880f54090c379ba5eb8e545a3d3550f229cacc18c7763dc3adf7936561ba1c64b43c87692ec66084e4e6 diff --git a/app-portage/getuto/getuto-1.4.ebuild b/app-portage/getuto/getuto-1.4.ebuild new file mode 100644 index ..860cc3595dd0 --- /dev/null +++ b/app-portage/getuto/getuto-1.4.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Stand-alone gentoo install trust anchor generation tool" +HOMEPAGE="https://github.com/projg2/getuto"; + +if [[ ${PV} == ]] ; then + EGIT_REPO_URI="https://github.com/projg2/getuto"; + inherit git-r3 +else + SRC_URI=" + https://github.com/projg2/getuto/archive/refs/tags/${P}.tar.gz + " + S=${WORKDIR}/${PN}-${P} + + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" +fi + +SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )" + +LICENSE="GPL-2" +SLOT="0" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + app-crypt/gnupg + dev-libs/openssl + sec-keys/openpgp-keys-gentoo-release +" + +src_unpack() { + if [[ ${PV} == ]] ; then + git-r3_src_unpack + else + # Don't mangle test data + unpack ${P}.tar.gz + fi + + if use test ; then + cp "${DISTDIR}"/libc-1-r1-1.gpkg.tar "${S}" || die + fi +} + +src_install() { + dobin getuto +}
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: cb36f846362bfadafbd23e976229e9ae9294ec5c Author: Andreas K. Hüttel gentoo org> AuthorDate: Thu Aug 31 19:53:41 2023 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Thu Aug 31 19:54:22 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb36f846 app-portage/getuto: drop 1.1, 1.2 Signed-off-by: Andreas K. Hüttel gentoo.org> app-portage/getuto/Manifest | 2 -- app-portage/getuto/getuto-1.1.ebuild | 49 app-portage/getuto/getuto-1.2.ebuild | 49 3 files changed, 100 deletions(-) diff --git a/app-portage/getuto/Manifest b/app-portage/getuto/Manifest index 0ad94d2e40cd..080a51a77efb 100644 --- a/app-portage/getuto/Manifest +++ b/app-portage/getuto/Manifest @@ -1,5 +1,3 @@ -DIST getuto-1.1.tar.gz 9394 BLAKE2B 50a129826a98d1a43e1bee68f4d12707334de6e7dd0408685e4e5b727affe86560199745a65bc810d857afc972ef0e2aab6b712c67061e1379add1b48494c4b5 SHA512 94f88b6562d763aa2b5cea407409e617d9c1bc89db5779fe12cebabf3db22873d60f36e98ca90ce8bbbc4a1f06bb734a1ee059b5735f54cdba24db9f041cc13c -DIST getuto-1.2.tar.gz 9412 BLAKE2B 0d207ecb83ca0739640a0c7587579b6c4d0437db5b84725dd14a31adee2f10ef1294dac9c159b8757dde42dd2693f82231aed720b7d1db63fa043bd20a5436bc SHA512 2d6ee97461fef1000f3616627c6e9899f5a348f6421e801ded37e96874340260ebb25a6e20138dda073278b8465ed8cebce8537da0e91fa4fc7e661c11f623d9 DIST getuto-1.3.tar.gz 9589 BLAKE2B 79f95e263d3a18e58122bb418a3f7e4fe2f28b9e1c0e1cdd21c02df6cb1d0daec233c496ad0191ee4808ccad751b0e76212168454202da03d35bb74a100b24c4 SHA512 c7be7c992da2d3817240e20e47ee195a88eeb63a9a8a886e3b526b7a464fa6b2fe932b056aa0140960a9f104c34a6d4bafe483d10bf02da3c8ce9b7e3e4c3b26 DIST getuto-1.4.tar.gz 9702 BLAKE2B a81f474cc9202cdeffa90280c4dd3fa0710dafcad7c70f5887d61f10cd3f2f0a4bf0dda60b4e2eaa7299677b33bb73191066968ca0775d887ceb64ab1c1926d4 SHA512 c4f8089986b65056250404242eb31acd8db03a2cf5215d26167d8396befdd96a3d625b3b88958f397dff03b5f5d78c9b1437ff9be58b3502ba9446753473252e DIST libc-1-r1-1.gpkg.tar 20480 BLAKE2B b2c184e20c1a29ff66240e992f9f81219285f525eb63cea081372685cf03a2e231a2edb528259617e74c655fbe61b6e0d8fc0bbdbd8452b6098de58432f019d7 SHA512 ce52f398ea8979ec16161381803740d49a4294c77303880f54090c379ba5eb8e545a3d3550f229cacc18c7763dc3adf7936561ba1c64b43c87692ec66084e4e6 diff --git a/app-portage/getuto/getuto-1.1.ebuild b/app-portage/getuto/getuto-1.1.ebuild deleted file mode 100644 index 860cc3595dd0.. --- a/app-portage/getuto/getuto-1.1.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DESCRIPTION="Stand-alone gentoo install trust anchor generation tool" -HOMEPAGE="https://github.com/projg2/getuto"; - -if [[ ${PV} == ]] ; then - EGIT_REPO_URI="https://github.com/projg2/getuto"; - inherit git-r3 -else - SRC_URI=" - https://github.com/projg2/getuto/archive/refs/tags/${P}.tar.gz - " - S=${WORKDIR}/${PN}-${P} - - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" -fi - -SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )" - -LICENSE="GPL-2" -SLOT="0" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - app-crypt/gnupg - dev-libs/openssl - sec-keys/openpgp-keys-gentoo-release -" - -src_unpack() { - if [[ ${PV} == ]] ; then - git-r3_src_unpack - else - # Don't mangle test data - unpack ${P}.tar.gz - fi - - if use test ; then - cp "${DISTDIR}"/libc-1-r1-1.gpkg.tar "${S}" || die - fi -} - -src_install() { - dobin getuto -} diff --git a/app-portage/getuto/getuto-1.2.ebuild b/app-portage/getuto/getuto-1.2.ebuild deleted file mode 100644 index 860cc3595dd0.. --- a/app-portage/getuto/getuto-1.2.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DESCRIPTION="Stand-alone gentoo install trust anchor generation tool" -HOMEPAGE="https://github.com/projg2/getuto"; - -if [[ ${PV} == ]] ; then - EGIT_REPO_URI="https://github.com/projg2/getuto"; - inherit git-r3 -else - SRC_URI=" - https://github.com/projg2/getuto/archive/refs/tags/${P}.tar.gz - " - S=${WORKDIR}/${PN}-${P} - - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" -fi - -SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )" - -LICENSE="GPL-2" -SLOT="0" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - app-crypt/gnupg - dev-libs/openss
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: 3f679f5a280ed747c1bc4af312db9e495cad5165 Author: Sam James gentoo org> AuthorDate: Sat Aug 26 21:49:05 2023 + Commit: Sam James gentoo org> CommitDate: Sat Aug 26 21:49:05 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f679f5a app-portage/getuto: add 1.3 Signed-off-by: Sam James gentoo.org> app-portage/getuto/Manifest | 1 + app-portage/getuto/getuto-1.3.ebuild | 49 2 files changed, 50 insertions(+) diff --git a/app-portage/getuto/Manifest b/app-portage/getuto/Manifest index d4feefeb21b3..e67f0f025728 100644 --- a/app-portage/getuto/Manifest +++ b/app-portage/getuto/Manifest @@ -1,3 +1,4 @@ DIST getuto-1.1.tar.gz 9394 BLAKE2B 50a129826a98d1a43e1bee68f4d12707334de6e7dd0408685e4e5b727affe86560199745a65bc810d857afc972ef0e2aab6b712c67061e1379add1b48494c4b5 SHA512 94f88b6562d763aa2b5cea407409e617d9c1bc89db5779fe12cebabf3db22873d60f36e98ca90ce8bbbc4a1f06bb734a1ee059b5735f54cdba24db9f041cc13c DIST getuto-1.2.tar.gz 9412 BLAKE2B 0d207ecb83ca0739640a0c7587579b6c4d0437db5b84725dd14a31adee2f10ef1294dac9c159b8757dde42dd2693f82231aed720b7d1db63fa043bd20a5436bc SHA512 2d6ee97461fef1000f3616627c6e9899f5a348f6421e801ded37e96874340260ebb25a6e20138dda073278b8465ed8cebce8537da0e91fa4fc7e661c11f623d9 +DIST getuto-1.3.tar.gz 9589 BLAKE2B 79f95e263d3a18e58122bb418a3f7e4fe2f28b9e1c0e1cdd21c02df6cb1d0daec233c496ad0191ee4808ccad751b0e76212168454202da03d35bb74a100b24c4 SHA512 c7be7c992da2d3817240e20e47ee195a88eeb63a9a8a886e3b526b7a464fa6b2fe932b056aa0140960a9f104c34a6d4bafe483d10bf02da3c8ce9b7e3e4c3b26 DIST libc-1-r1-1.gpkg.tar 20480 BLAKE2B b2c184e20c1a29ff66240e992f9f81219285f525eb63cea081372685cf03a2e231a2edb528259617e74c655fbe61b6e0d8fc0bbdbd8452b6098de58432f019d7 SHA512 ce52f398ea8979ec16161381803740d49a4294c77303880f54090c379ba5eb8e545a3d3550f229cacc18c7763dc3adf7936561ba1c64b43c87692ec66084e4e6 diff --git a/app-portage/getuto/getuto-1.3.ebuild b/app-portage/getuto/getuto-1.3.ebuild new file mode 100644 index ..860cc3595dd0 --- /dev/null +++ b/app-portage/getuto/getuto-1.3.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Stand-alone gentoo install trust anchor generation tool" +HOMEPAGE="https://github.com/projg2/getuto"; + +if [[ ${PV} == ]] ; then + EGIT_REPO_URI="https://github.com/projg2/getuto"; + inherit git-r3 +else + SRC_URI=" + https://github.com/projg2/getuto/archive/refs/tags/${P}.tar.gz + " + S=${WORKDIR}/${PN}-${P} + + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" +fi + +SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )" + +LICENSE="GPL-2" +SLOT="0" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + app-crypt/gnupg + dev-libs/openssl + sec-keys/openpgp-keys-gentoo-release +" + +src_unpack() { + if [[ ${PV} == ]] ; then + git-r3_src_unpack + else + # Don't mangle test data + unpack ${P}.tar.gz + fi + + if use test ; then + cp "${DISTDIR}"/libc-1-r1-1.gpkg.tar "${S}" || die + fi +} + +src_install() { + dobin getuto +}
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: b7626f0563d0234745c7ba9027336389aea3ea4b Author: Andreas K. Hüttel gentoo org> AuthorDate: Sat Aug 19 19:22:49 2023 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Sat Aug 19 19:22:49 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7626f05 app-portage/getuto: drop 1.0 Signed-off-by: Andreas K. Hüttel gentoo.org> app-portage/getuto/Manifest | 1 - app-portage/getuto/getuto-1.0.ebuild | 26 -- 2 files changed, 27 deletions(-) diff --git a/app-portage/getuto/Manifest b/app-portage/getuto/Manifest index bf27dbb478d9..346ac0da 100644 --- a/app-portage/getuto/Manifest +++ b/app-portage/getuto/Manifest @@ -1,3 +1,2 @@ -DIST getuto-1.0.tar.gz 8218 BLAKE2B 9579bce48cb746db6aabe13b1e809ec73ddd1ea6ed859bbe5b6b860659a2e3747dc8f408c67531854ba6b7f4aa6fc31ac788122eb30d2100213176777d2ca4b3 SHA512 b6de03eef95802d678504321f37093a491a17673ae31b03834bc29a85815aab593fd7e2fe396ac21b83e804939932557c99e69d94d0599e2dbbfb410e1708e2e DIST getuto-1.1.tar.gz 9394 BLAKE2B 50a129826a98d1a43e1bee68f4d12707334de6e7dd0408685e4e5b727affe86560199745a65bc810d857afc972ef0e2aab6b712c67061e1379add1b48494c4b5 SHA512 94f88b6562d763aa2b5cea407409e617d9c1bc89db5779fe12cebabf3db22873d60f36e98ca90ce8bbbc4a1f06bb734a1ee059b5735f54cdba24db9f041cc13c DIST libc-1-r1-1.gpkg.tar 20480 BLAKE2B b2c184e20c1a29ff66240e992f9f81219285f525eb63cea081372685cf03a2e231a2edb528259617e74c655fbe61b6e0d8fc0bbdbd8452b6098de58432f019d7 SHA512 ce52f398ea8979ec16161381803740d49a4294c77303880f54090c379ba5eb8e545a3d3550f229cacc18c7763dc3adf7936561ba1c64b43c87692ec66084e4e6 diff --git a/app-portage/getuto/getuto-1.0.ebuild b/app-portage/getuto/getuto-1.0.ebuild deleted file mode 100644 index 21beb1eae2ed.. --- a/app-portage/getuto/getuto-1.0.ebuild +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -SRC_URI="https://github.com/akhuettel/${PN}/archive/refs/tags/${P}.tar.gz"; -DESCRIPTION="Stand-alone gentoo install trust anchor generation tool" -HOMEPAGE=" - https://github.com/akhuettel/getuto/ -" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" - -RDEPEND=" - app-crypt/gnupg - dev-libs/openssl - sec-keys/openpgp-keys-gentoo-release -" - -S=${WORKDIR}/${PN}-${P} - -src_install() { - dobin getuto -}
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: b12c1c00a459a0d940eb884664b28efe8cced966 Author: Andreas K. Hüttel gentoo org> AuthorDate: Sat Aug 19 19:24:11 2023 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Sat Aug 19 19:24:11 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b12c1c00 app-portage/getuto: add 1.2 Closes: https://bugs.gentoo.org/912591 Signed-off-by: Andreas K. Hüttel gentoo.org> app-portage/getuto/Manifest | 1 + app-portage/getuto/getuto-1.2.ebuild | 49 2 files changed, 50 insertions(+) diff --git a/app-portage/getuto/Manifest b/app-portage/getuto/Manifest index 346ac0da..d4feefeb21b3 100644 --- a/app-portage/getuto/Manifest +++ b/app-portage/getuto/Manifest @@ -1,2 +1,3 @@ DIST getuto-1.1.tar.gz 9394 BLAKE2B 50a129826a98d1a43e1bee68f4d12707334de6e7dd0408685e4e5b727affe86560199745a65bc810d857afc972ef0e2aab6b712c67061e1379add1b48494c4b5 SHA512 94f88b6562d763aa2b5cea407409e617d9c1bc89db5779fe12cebabf3db22873d60f36e98ca90ce8bbbc4a1f06bb734a1ee059b5735f54cdba24db9f041cc13c +DIST getuto-1.2.tar.gz 9412 BLAKE2B 0d207ecb83ca0739640a0c7587579b6c4d0437db5b84725dd14a31adee2f10ef1294dac9c159b8757dde42dd2693f82231aed720b7d1db63fa043bd20a5436bc SHA512 2d6ee97461fef1000f3616627c6e9899f5a348f6421e801ded37e96874340260ebb25a6e20138dda073278b8465ed8cebce8537da0e91fa4fc7e661c11f623d9 DIST libc-1-r1-1.gpkg.tar 20480 BLAKE2B b2c184e20c1a29ff66240e992f9f81219285f525eb63cea081372685cf03a2e231a2edb528259617e74c655fbe61b6e0d8fc0bbdbd8452b6098de58432f019d7 SHA512 ce52f398ea8979ec16161381803740d49a4294c77303880f54090c379ba5eb8e545a3d3550f229cacc18c7763dc3adf7936561ba1c64b43c87692ec66084e4e6 diff --git a/app-portage/getuto/getuto-1.2.ebuild b/app-portage/getuto/getuto-1.2.ebuild new file mode 100644 index ..860cc3595dd0 --- /dev/null +++ b/app-portage/getuto/getuto-1.2.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Stand-alone gentoo install trust anchor generation tool" +HOMEPAGE="https://github.com/projg2/getuto"; + +if [[ ${PV} == ]] ; then + EGIT_REPO_URI="https://github.com/projg2/getuto"; + inherit git-r3 +else + SRC_URI=" + https://github.com/projg2/getuto/archive/refs/tags/${P}.tar.gz + " + S=${WORKDIR}/${PN}-${P} + + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" +fi + +SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )" + +LICENSE="GPL-2" +SLOT="0" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + app-crypt/gnupg + dev-libs/openssl + sec-keys/openpgp-keys-gentoo-release +" + +src_unpack() { + if [[ ${PV} == ]] ; then + git-r3_src_unpack + else + # Don't mangle test data + unpack ${P}.tar.gz + fi + + if use test ; then + cp "${DISTDIR}"/libc-1-r1-1.gpkg.tar "${S}" || die + fi +} + +src_install() { + dobin getuto +}
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: 7824cefa9f0352fbba3775e4c11db0b0a5e074c6 Author: Andreas K. Hüttel gentoo org> AuthorDate: Sat Aug 19 13:46:16 2023 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Sat Aug 19 13:46:35 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7824cefa app-portage/getuto: add 1.1 Signed-off-by: Andreas K. Hüttel gentoo.org> app-portage/getuto/Manifest | 1 + app-portage/getuto/getuto-1.1.ebuild | 49 2 files changed, 50 insertions(+) diff --git a/app-portage/getuto/Manifest b/app-portage/getuto/Manifest index a50e57772012..bf27dbb478d9 100644 --- a/app-portage/getuto/Manifest +++ b/app-portage/getuto/Manifest @@ -1,2 +1,3 @@ DIST getuto-1.0.tar.gz 8218 BLAKE2B 9579bce48cb746db6aabe13b1e809ec73ddd1ea6ed859bbe5b6b860659a2e3747dc8f408c67531854ba6b7f4aa6fc31ac788122eb30d2100213176777d2ca4b3 SHA512 b6de03eef95802d678504321f37093a491a17673ae31b03834bc29a85815aab593fd7e2fe396ac21b83e804939932557c99e69d94d0599e2dbbfb410e1708e2e +DIST getuto-1.1.tar.gz 9394 BLAKE2B 50a129826a98d1a43e1bee68f4d12707334de6e7dd0408685e4e5b727affe86560199745a65bc810d857afc972ef0e2aab6b712c67061e1379add1b48494c4b5 SHA512 94f88b6562d763aa2b5cea407409e617d9c1bc89db5779fe12cebabf3db22873d60f36e98ca90ce8bbbc4a1f06bb734a1ee059b5735f54cdba24db9f041cc13c DIST libc-1-r1-1.gpkg.tar 20480 BLAKE2B b2c184e20c1a29ff66240e992f9f81219285f525eb63cea081372685cf03a2e231a2edb528259617e74c655fbe61b6e0d8fc0bbdbd8452b6098de58432f019d7 SHA512 ce52f398ea8979ec16161381803740d49a4294c77303880f54090c379ba5eb8e545a3d3550f229cacc18c7763dc3adf7936561ba1c64b43c87692ec66084e4e6 diff --git a/app-portage/getuto/getuto-1.1.ebuild b/app-portage/getuto/getuto-1.1.ebuild new file mode 100644 index ..860cc3595dd0 --- /dev/null +++ b/app-portage/getuto/getuto-1.1.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Stand-alone gentoo install trust anchor generation tool" +HOMEPAGE="https://github.com/projg2/getuto"; + +if [[ ${PV} == ]] ; then + EGIT_REPO_URI="https://github.com/projg2/getuto"; + inherit git-r3 +else + SRC_URI=" + https://github.com/projg2/getuto/archive/refs/tags/${P}.tar.gz + " + S=${WORKDIR}/${PN}-${P} + + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" +fi + +SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )" + +LICENSE="GPL-2" +SLOT="0" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + app-crypt/gnupg + dev-libs/openssl + sec-keys/openpgp-keys-gentoo-release +" + +src_unpack() { + if [[ ${PV} == ]] ; then + git-r3_src_unpack + else + # Don't mangle test data + unpack ${P}.tar.gz + fi + + if use test ; then + cp "${DISTDIR}"/libc-1-r1-1.gpkg.tar "${S}" || die + fi +} + +src_install() { + dobin getuto +}
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: 277dc7912e384d4223374bebdc7c0013f4008672 Author: Sam James gentoo org> AuthorDate: Sat Aug 19 11:41:47 2023 + Commit: Sam James gentoo org> CommitDate: Sat Aug 19 11:41:51 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=277dc791 app-portage/getuto: fix test SRC_URI I didn't mean to commit that bit as was just testing. Fixes: 0087a6ddb25033d62df89895a7851e2189657ed2 Signed-off-by: Sam James gentoo.org> app-portage/getuto/getuto-.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-portage/getuto/getuto-.ebuild b/app-portage/getuto/getuto-.ebuild index cdcec3d9c92d..860cc3595dd0 100644 --- a/app-portage/getuto/getuto-.ebuild +++ b/app-portage/getuto/getuto-.ebuild @@ -18,7 +18,7 @@ else KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" fi -SRC_URI+=" test? ( mirror://gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )" +SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )" LICENSE="GPL-2" SLOT="0"
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: 0087a6ddb25033d62df89895a7851e2189657ed2 Author: Sam James gentoo org> AuthorDate: Sat Aug 19 11:39:48 2023 + Commit: Sam James gentoo org> CommitDate: Sat Aug 19 11:39:48 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0087a6dd app-portage/getuto: needs openssl too Used for passphrase generation. Signed-off-by: Sam James gentoo.org> app-portage/getuto/getuto-1.0.ebuild | 1 + app-portage/getuto/getuto-.ebuild | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/app-portage/getuto/getuto-1.0.ebuild b/app-portage/getuto/getuto-1.0.ebuild index 0859ddebd571..21beb1eae2ed 100644 --- a/app-portage/getuto/getuto-1.0.ebuild +++ b/app-portage/getuto/getuto-1.0.ebuild @@ -15,6 +15,7 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~ RDEPEND=" app-crypt/gnupg + dev-libs/openssl sec-keys/openpgp-keys-gentoo-release " diff --git a/app-portage/getuto/getuto-.ebuild b/app-portage/getuto/getuto-.ebuild index e73fa00ef161..cdcec3d9c92d 100644 --- a/app-portage/getuto/getuto-.ebuild +++ b/app-portage/getuto/getuto-.ebuild @@ -18,7 +18,7 @@ else KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" fi -SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )" +SRC_URI+=" test? ( mirror://gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )" LICENSE="GPL-2" SLOT="0" @@ -27,6 +27,7 @@ RESTRICT="!test? ( test )" RDEPEND=" app-crypt/gnupg + dev-libs/openssl sec-keys/openpgp-keys-gentoo-release "
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: ff1085b8ec6020328539d5b21964a36a9dd85d65 Author: Sam James gentoo org> AuthorDate: Sat Aug 19 11:36:42 2023 + Commit: Sam James gentoo org> CommitDate: Sat Aug 19 11:36:49 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff1085b8 app-portage/getuto: update upstream metadata Signed-off-by: Sam James gentoo.org> app-portage/getuto/metadata.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-portage/getuto/metadata.xml b/app-portage/getuto/metadata.xml index 06daec028494..d83b8d67cb67 100644 --- a/app-portage/getuto/metadata.xml +++ b/app-portage/getuto/metadata.xml @@ -7,7 +7,7 @@ - https://github.com/akhuettel/getuto/issues/ - akhuettel/getuto + https://github.com/projg2/getuto/issues/ + projg2/getuto
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: f0eeecbd89691ecbec236d3f40a9b5df90faa0de Author: Sam James gentoo org> AuthorDate: Sat Aug 19 11:35:40 2023 + Commit: Sam James gentoo org> CommitDate: Sat Aug 19 11:36:49 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0eeecbd app-portage/getuto: add Signed-off-by: Sam James gentoo.org> app-portage/getuto/Manifest | 1 + app-portage/getuto/getuto-.ebuild | 48 +++ 2 files changed, 49 insertions(+) diff --git a/app-portage/getuto/Manifest b/app-portage/getuto/Manifest index 60dd545800a6..a50e57772012 100644 --- a/app-portage/getuto/Manifest +++ b/app-portage/getuto/Manifest @@ -1 +1,2 @@ DIST getuto-1.0.tar.gz 8218 BLAKE2B 9579bce48cb746db6aabe13b1e809ec73ddd1ea6ed859bbe5b6b860659a2e3747dc8f408c67531854ba6b7f4aa6fc31ac788122eb30d2100213176777d2ca4b3 SHA512 b6de03eef95802d678504321f37093a491a17673ae31b03834bc29a85815aab593fd7e2fe396ac21b83e804939932557c99e69d94d0599e2dbbfb410e1708e2e +DIST libc-1-r1-1.gpkg.tar 20480 BLAKE2B b2c184e20c1a29ff66240e992f9f81219285f525eb63cea081372685cf03a2e231a2edb528259617e74c655fbe61b6e0d8fc0bbdbd8452b6098de58432f019d7 SHA512 ce52f398ea8979ec16161381803740d49a4294c77303880f54090c379ba5eb8e545a3d3550f229cacc18c7763dc3adf7936561ba1c64b43c87692ec66084e4e6 diff --git a/app-portage/getuto/getuto-.ebuild b/app-portage/getuto/getuto-.ebuild new file mode 100644 index ..e73fa00ef161 --- /dev/null +++ b/app-portage/getuto/getuto-.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Stand-alone gentoo install trust anchor generation tool" +HOMEPAGE="https://github.com/projg2/getuto"; + +if [[ ${PV} == ]] ; then + EGIT_REPO_URI="https://github.com/projg2/getuto"; + inherit git-r3 +else + SRC_URI=" + https://github.com/projg2/getuto/archive/refs/tags/${P}.tar.gz + " + S=${WORKDIR}/${PN}-${P} + + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" +fi + +SRC_URI+=" test? ( https://mirror.bytemark.co.uk/gentoo/releases/amd64/binpackages/17.1/x86-64/virtual/libc/libc-1-r1-1.gpkg.tar )" + +LICENSE="GPL-2" +SLOT="0" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + app-crypt/gnupg + sec-keys/openpgp-keys-gentoo-release +" + +src_unpack() { + if [[ ${PV} == ]] ; then + git-r3_src_unpack + else + # Don't mangle test data + unpack ${P}.tar.gz + fi + + if use test ; then + cp "${DISTDIR}"/libc-1-r1-1.gpkg.tar "${S}" || die + fi +} + +src_install() { + dobin getuto +}
[gentoo-commits] repo/gentoo:master commit in: app-portage/getuto/
commit: 63c8deb791bc6f4399ff1038a7f68a41476f1683 Author: Andreas K. Hüttel gentoo org> AuthorDate: Thu Aug 17 19:18:56 2023 + Commit: Andreas K. Hüttel gentoo org> CommitDate: Thu Aug 17 19:19:21 2023 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63c8deb7 app-portage/getuto: new package, add 1.0 Signed-off-by: Andreas K. Hüttel gentoo.org> app-portage/getuto/Manifest | 1 + app-portage/getuto/getuto-1.0.ebuild | 25 + app-portage/getuto/metadata.xml | 13 + 3 files changed, 39 insertions(+) diff --git a/app-portage/getuto/Manifest b/app-portage/getuto/Manifest new file mode 100644 index ..60dd545800a6 --- /dev/null +++ b/app-portage/getuto/Manifest @@ -0,0 +1 @@ +DIST getuto-1.0.tar.gz 8218 BLAKE2B 9579bce48cb746db6aabe13b1e809ec73ddd1ea6ed859bbe5b6b860659a2e3747dc8f408c67531854ba6b7f4aa6fc31ac788122eb30d2100213176777d2ca4b3 SHA512 b6de03eef95802d678504321f37093a491a17673ae31b03834bc29a85815aab593fd7e2fe396ac21b83e804939932557c99e69d94d0599e2dbbfb410e1708e2e diff --git a/app-portage/getuto/getuto-1.0.ebuild b/app-portage/getuto/getuto-1.0.ebuild new file mode 100644 index ..0859ddebd571 --- /dev/null +++ b/app-portage/getuto/getuto-1.0.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +SRC_URI="https://github.com/akhuettel/${PN}/archive/refs/tags/${P}.tar.gz"; +DESCRIPTION="Stand-alone gentoo install trust anchor generation tool" +HOMEPAGE=" + https://github.com/akhuettel/getuto/ +" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" + +RDEPEND=" + app-crypt/gnupg + sec-keys/openpgp-keys-gentoo-release +" + +S=${WORKDIR}/${PN}-${P} + +src_install() { + dobin getuto +} diff --git a/app-portage/getuto/metadata.xml b/app-portage/getuto/metadata.xml new file mode 100644 index ..06daec028494 --- /dev/null +++ b/app-portage/getuto/metadata.xml @@ -0,0 +1,13 @@ + +https://www.gentoo.org/dtd/metadata.dtd";> + + + dilfri...@gentoo.org + Andreas K. Hüttel + + + + https://github.com/akhuettel/getuto/issues/ + akhuettel/getuto + +