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 97BDD158094 for ; Mon, 11 Jul 2022 18:03:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 94CE1E0FA2; Mon, 11 Jul 2022 18:03:56 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 48BCCE0FA2 for ; Mon, 11 Jul 2022 18:03:56 +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 6D0613410C3 for ; Mon, 11 Jul 2022 18:03:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9BB7B52C for ; Mon, 11 Jul 2022 18:03:53 +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: <1657562621.cccacbae494c2783b04aefa08d0c55295343c8f5.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.2-r1.ebuild X-VCS-Directories: app-portage/portpeek/ X-VCS-Committer: mpagano X-VCS-Committer-Name: Mike Pagano X-VCS-Revision: cccacbae494c2783b04aefa08d0c55295343c8f5 X-VCS-Branch: master Date: Mon, 11 Jul 2022 18:03:53 +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: 2661f743-bc0b-4b59-92c2-a37b457f2c2e X-Archives-Hash: 892a7ca37fddd938a7d3539ab74896a2 commit: cccacbae494c2783b04aefa08d0c55295343c8f5 Author: Mike Pagano gentoo org> AuthorDate: Mon Jul 11 18:02:39 2022 +0000 Commit: Mike Pagano gentoo org> CommitDate: Mon Jul 11 18:03:41 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cccacbae app-portage/portpeek: Version bump with support for python 3.11 Signed-off-by: Mike Pagano gentoo.org> app-portage/portpeek/portpeek-3.2.2-r1.ebuild | 30 +++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/app-portage/portpeek/portpeek-3.2.2-r1.ebuild b/app-portage/portpeek/portpeek-3.2.2-r1.ebuild new file mode 100644 index 000000000000..459e51243625 --- /dev/null +++ b/app-portage/portpeek/portpeek-3.2.2-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="8" +PYTHON_COMPAT=( python3_{8,9,10,11} ) + +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/${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.1-r1 + || ( + >=sys-apps/portage-3.0.31[${PYTHON_USEDEP}] + )" + +src_install() { + python_foreach_impl python_doscript ${PN} + doman *.[0-9] +}