commit: fabf22d0f45da74e2b16d353ae6f5ca76dce4763
Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 16 20:48:49 2025 +0000
Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
CommitDate: Sun Feb 16 20:49:13 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fabf22d0
app-portage/portpeek: add 3.2.5, dont break on USE_EXPANDS
Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
app-portage/portpeek/Manifest | 1 +
app-portage/portpeek/portpeek-3.2.5.ebuild | 29 +++++++++++++++++++++++++++++
2 files changed, 30 insertions(+)
diff --git a/app-portage/portpeek/Manifest b/app-portage/portpeek/Manifest
index ac2c786744eb..4aca0a8e770c 100644
--- a/app-portage/portpeek/Manifest
+++ b/app-portage/portpeek/Manifest
@@ -1 +1,2 @@
DIST portpeek-3.2.4.tar.gz 13655 BLAKE2B
bc758a6312775458974bf0cd1218150f18b35cf0722b36829443a7df8e8aaf35b40f2d8edeaad8a21f32b9a5f46ad2eabe7a762286ad62f71f41de08553fbd1c
SHA512
2a8d85c1862c3d800251aa94a9ffdee18100aa8d39b6e72dcf8d34c21ac1efb7ef100efe4a3bca5b96570604bfa4b5c4f702ab85f343476ba3081f123d65b5e5
+DIST portpeek-3.2.5.tar.gz 13984 BLAKE2B
67646d60cb64233c220fd72296ce3bdda2bd122e2edda1292a1188a2cd26fad7aab3b512d217ca909c09b538f72a8f14dd0b3d00dd0a1b8b5825d2765f3dc176
SHA512
c269f3a2e018d6fabdb9121057e575e16f2be4e60ee855f5be120a25a29226bc6658f9ebfe0186faf5c3be6ca0d2bbb1e76ae03eadb33a720a0b8a4671e5e2df
diff --git a/app-portage/portpeek/portpeek-3.2.5.ebuild
b/app-portage/portpeek/portpeek-3.2.5.ebuild
new file mode 100644
index 000000000000..1ca2dd9b0ff4
--- /dev/null
+++ b/app-portage/portpeek/portpeek-3.2.5.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="8"
+PYTHON_COMPAT=( python3_{9,10,11,12,13} )
+
+inherit python-r1
+
+DESCRIPTION="A helper program for maintaining the package.keyword and
package.unmask files"
+HOMEPAGE="https://github.com/mpagano/portpeek"
+SRC_URI="https://github.com/mpagano/portpeek/releases/download/v${PV}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~riscv ~sparc ~x86"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="${PYTHON_DEPS}"
+RDEPEND="${DEPEND}
+ >=app-portage/gentoolkit-0.6.7
+ || (
+ >=sys-apps/portage-3.0.65-r1[${PYTHON_USEDEP}]
+ )"
+
+src_install() {
+ python_foreach_impl python_doscript ${PN}
+ doman *.[0-9]
+}