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 D0DDF158090 for ; Mon, 16 May 2022 12:56:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F1CC1E0916; Mon, 16 May 2022 12:56:01 +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 758E1E0916 for ; Mon, 16 May 2022 12:56:01 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8B27634152E for ; Mon, 16 May 2022 12:56:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A0A3747E for ; Mon, 16 May 2022 12:55:57 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1652705753.6ec17233319492f09577a39617de78dc0d87f783.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/atpublic/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/atpublic/Manifest dev-python/atpublic/atpublic-2.3.ebuild X-VCS-Directories: dev-python/atpublic/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 6ec17233319492f09577a39617de78dc0d87f783 X-VCS-Branch: master Date: Mon, 16 May 2022 12:55:57 +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: f644e25c-6b24-4608-97dd-7208f2e94242 X-Archives-Hash: 4cd137a7b48a17cbf2555afc90ad9d8e commit: 6ec17233319492f09577a39617de78dc0d87f783 Author: Michał Górny gentoo org> AuthorDate: Mon May 16 12:55:11 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon May 16 12:55:53 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ec17233 dev-python/atpublic: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/atpublic/Manifest | 1 - dev-python/atpublic/atpublic-2.3.ebuild | 25 ------------------------- 2 files changed, 26 deletions(-) diff --git a/dev-python/atpublic/Manifest b/dev-python/atpublic/Manifest index e8623fef8ca3..0b40a3da9911 100644 --- a/dev-python/atpublic/Manifest +++ b/dev-python/atpublic/Manifest @@ -1,2 +1 @@ -DIST atpublic-2.3.tar.gz 16746 BLAKE2B 60d12db8c56f3e3ce45c2e300759334b662369980b3dc36bff1edbac2d4a13dcf1bd390725eac488969d5a80e5ee5bb598c80e31ed3667c2e7d4f1f88fd00f7c SHA512 88c140c7ca0cfe3db791fd43a97f9fc63de979191a026df4d9f7a34a347b657d7d7b6fb7e31a231ac3adbc5e5d014b8e3c3606b93515a6ad42ea3d101b480329 DIST atpublic-3.0.1.tar.gz 14131 BLAKE2B 3912c23c5ee575d7bdec1b598f1f360c54296211600115a413d97c73751b5301b2f3d22152aa62d4d7ac6da9a6cf4202a2deba1de374407ede4358620ee97391 SHA512 02c4af8aa02040bba2f09b852e17a0a90c0a6dce8fdabc8362a67c2f326b68369bf5f12f91291f9ff3395685530592561b132f09f9869867516592bd092e0e38 diff --git a/dev-python/atpublic/atpublic-2.3.ebuild b/dev-python/atpublic/atpublic-2.3.ebuild deleted file mode 100644 index fd115ed1769c..000000000000 --- a/dev-python/atpublic/atpublic-2.3.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{8..10} ) -inherit distutils-r1 - -DESCRIPTION="A decorator to populate __all__ and the module globals" -HOMEPAGE="https://gitlab.com/warsaw/public" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -BDEPEND=" - test? ( dev-python/sybil[${PYTHON_USEDEP}] )" - -distutils_enable_tests pytest - -src_prepare() { - sed -i -e 's:--cov=public::' setup.cfg || die - distutils-r1_src_prepare -}