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 55E8A158083 for ; Sun, 1 Sep 2024 21:14:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2747DE2A12; Sun, 1 Sep 2024 21:14:30 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 0CBA6E2A12 for ; Sun, 1 Sep 2024 21:14:30 +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 20270343113 for ; Sun, 1 Sep 2024 21:14:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7C9131E7F for ; Sun, 1 Sep 2024 21:14:27 +0000 (UTC) From: "Petr Vaněk" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Petr Vaněk" Message-ID: <1725225249.f434e805b74c08727a5dae6ed4ca4b1ef06336e9.arkamar@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-r1.ebuild X-VCS-Directories: app-crypt/pius/ X-VCS-Committer: arkamar X-VCS-Committer-Name: Petr Vaněk X-VCS-Revision: f434e805b74c08727a5dae6ed4ca4b1ef06336e9 X-VCS-Branch: master Date: Sun, 1 Sep 2024 21:14:27 +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: 57094757-7204-497e-956a-e58a64de2b5f X-Archives-Hash: 8794f6cf7719068de159db4f111f1014 commit: f434e805b74c08727a5dae6ed4ca4b1ef06336e9 Author: Petr Vaněk gentoo org> AuthorDate: Sun Sep 1 20:56:27 2024 +0000 Commit: Petr Vaněk gentoo org> CommitDate: Sun Sep 1 21:14:09 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f434e805 app-crypt/pius: drop 3.0.0-r1 Signed-off-by: Petr Vaněk gentoo.org> app-crypt/pius/pius-3.0.0-r1.ebuild | 34 ---------------------------------- 1 file changed, 34 deletions(-) diff --git a/app-crypt/pius/pius-3.0.0-r1.ebuild b/app-crypt/pius/pius-3.0.0-r1.ebuild deleted file mode 100644 index cf60ccbe13a5..000000000000 --- a/app-crypt/pius/pius-3.0.0-r1.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DISTUTILS_USE_SETUPTOOLS=no -PYTHON_COMPAT=( python3_{9..11} ) - -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 -}