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 9897415817D for ; Wed, 19 Jun 2024 09:43:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DA67BE2A18; Wed, 19 Jun 2024 09:43:00 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BBB3FE2A18 for ; Wed, 19 Jun 2024 09:43:00 +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 073C133BF08 for ; Wed, 19 Jun 2024 09:43:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 620011062 for ; Wed, 19 Jun 2024 09:42:58 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1718790129.a632ccef4a06219bebd8dc0000b1e75b4601a83a.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/pius/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/pius/pius-3.0.0-r2.ebuild X-VCS-Directories: app-crypt/pius/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: a632ccef4a06219bebd8dc0000b1e75b4601a83a X-VCS-Branch: master Date: Wed, 19 Jun 2024 09:42:58 +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: cb389e14-24d4-4cd0-84ea-0fb0a78e48a6 X-Archives-Hash: d9e49e86257f6b88121827a21689c7b7 commit: a632ccef4a06219bebd8dc0000b1e75b4601a83a Author: Pacho Ramos gentoo org> AuthorDate: Wed Jun 19 09:34:32 2024 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Wed Jun 19 09:42:09 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a632ccef app-crypt/pius: Support python 3.12 and port to PEP517 Closes: https://bugs.gentoo.org/909869 Closes: https://bugs.gentoo.org/922153 Closes: https://bugs.gentoo.org/929292 Signed-off-by: Pacho Ramos gentoo.org> app-crypt/pius/pius-3.0.0-r2.ebuild | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/app-crypt/pius/pius-3.0.0-r2.ebuild b/app-crypt/pius/pius-3.0.0-r2.ebuild new file mode 100644 index 000000000000..184aaf851b53 --- /dev/null +++ b/app-crypt/pius/pius-3.0.0-r2.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..12} ) + +inherit distutils-r1 + +DESCRIPTION="A tool for signing and email all UIDs on a set of PGP keys" +HOMEPAGE="https://www.phildev.net/pius/ https://github.com/jaymzh/pius" +SRC_URI="https://github.com/jaymzh/pius/releases/download/v${PV}/pius-${PV}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +DEPEND=">=app-crypt/gnupg-2.0.0" +RDEPEND="${DEPEND} + dev-lang/perl" + +PATCHES=( + "${FILESDIR}/${P}-Fix-typos-132.patch" + "${FILESDIR}/${P}-pius-keyring-mgr-Fix-constants-134.patch" + "${FILESDIR}/${P}-Fix-typo-in-readme-135.patch" + "${FILESDIR}/${P}-Minor-fixes-for-pius-report-137.patch" +) + +python_test() { + ${EPYTHON} -m unittest discover -s test/* -v || die +}