From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id F32EF158089 for ; Tue, 17 Oct 2023 18:07:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A577D2BC121; Tue, 17 Oct 2023 18:07:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8D8F32BC121 for ; Tue, 17 Oct 2023 18:07:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8AC11335C8E for ; Tue, 17 Oct 2023 18:07:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F22FC1149 for ; Tue, 17 Oct 2023 18:07:23 +0000 (UTC) From: "Mike Pagano" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Pagano" Message-ID: <1697565978.73b5e7c0eb552b916a83d10609fb46ed91f8506b.mpagano@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/portpeek/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-portage/portpeek/portpeek-3.2.3-r1.ebuild X-VCS-Directories: app-portage/portpeek/ X-VCS-Committer: mpagano X-VCS-Committer-Name: Mike Pagano X-VCS-Revision: 73b5e7c0eb552b916a83d10609fb46ed91f8506b X-VCS-Branch: master Date: Tue, 17 Oct 2023 18:07:23 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d3c9b1cc-2931-45d4-a159-7c7e406dd783 X-Archives-Hash: c6b7f414eb3b293276316e6ae846432c commit: 73b5e7c0eb552b916a83d10609fb46ed91f8506b Author: Mike Pagano gentoo org> AuthorDate: Tue Oct 17 18:06:18 2023 +0000 Commit: Mike Pagano gentoo org> CommitDate: Tue Oct 17 18:06:18 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73b5e7c0 app-portage/portpeek: Support python 3.12, bump rev for dependencies Signed-off-by: Mike Pagano gentoo.org> app-portage/portpeek/portpeek-3.2.3-r1.ebuild | 30 +++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/app-portage/portpeek/portpeek-3.2.3-r1.ebuild b/app-portage/portpeek/portpeek-3.2.3-r1.ebuild new file mode 100644 index 000000000000..c340af74aa86 --- /dev/null +++ b/app-portage/portpeek/portpeek-3.2.3-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="8" +PYTHON_COMPAT=( python3_{9,10,11,12} ) + +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 ~sparc ~x86" +IUSE="" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +DEPEND="${PYTHON_DEPS}" +RDEPEND="${DEPEND} + >=app-portage/gentoolkit-0.6.2 + || ( + >=sys-apps/portage-3.0.52[${PYTHON_USEDEP}] + )" + +src_install() { + python_foreach_impl python_doscript ${PN} + doman *.[0-9] +}