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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5C5F4158092 for ; Sun, 12 Sep 2021 07:44:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8F965E086B; Sun, 12 Sep 2021 07:44:06 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 487AEE086B for ; Sun, 12 Sep 2021 07:44:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E1296342D5F for ; Sun, 12 Sep 2021 07:44:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5849BCF for ; Sun, 12 Sep 2021 07:44:03 +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: <1631432585.42e9933a6fe6534211f993514b1be2453e739c73.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/configargparse/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/configargparse/Manifest dev-python/configargparse/configargparse-1.5.1.ebuild X-VCS-Directories: dev-python/configargparse/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 42e9933a6fe6534211f993514b1be2453e739c73 X-VCS-Branch: master Date: Sun, 12 Sep 2021 07:44:03 +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: 3488e8d4-e956-4955-8343-8d581d3ea74b X-Archives-Hash: b3404439b027b0d6faec18727765c460 commit: 42e9933a6fe6534211f993514b1be2453e739c73 Author: Michał Górny gentoo org> AuthorDate: Sun Sep 12 07:43:05 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Sep 12 07:43:05 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42e9933a dev-python/configargparse: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/configargparse/Manifest | 1 - .../configargparse/configargparse-1.5.1.ebuild | 32 ---------------------- 2 files changed, 33 deletions(-) diff --git a/dev-python/configargparse/Manifest b/dev-python/configargparse/Manifest index 686647d5715..c157e373bab 100644 --- a/dev-python/configargparse/Manifest +++ b/dev-python/configargparse/Manifest @@ -1,2 +1 @@ -DIST ConfigArgParse-1.5.1.gh.tar.gz 32245 BLAKE2B 9df80b4f0b12b3777311193c454dd010ce60dd9ceb702c99c1d8ac56575c615e77039910f3b412a176c9c229b88fa8937b052076d0cde2307ecc07f3337d064a SHA512 2c3854a45d97f0352321d2442a30408248e990dd46e2515cd7e2576efe9a33e03495231f8397ba6e3d79bb04bf11edfe5930b4765d46f29ca66b7bb3d3c1e0c9 DIST ConfigArgParse-1.5.2.gh.tar.gz 32598 BLAKE2B 2fcf2b93f9e80686f658217dbc5871f1b920565870bb8194855088dd6f81422325d505fbe5bfa014def8188cc792660d35450a0daf0229c0dc59da37adab9fff SHA512 823d7b256b803d3b60a373a124ea5d255b67a3b948d6543bd9a33f63f4b0dd1a416138a7105c64b064c222a90b4cada3b4aa6aecb70054ae2f1978fa5791330f diff --git a/dev-python/configargparse/configargparse-1.5.1.ebuild b/dev-python/configargparse/configargparse-1.5.1.ebuild deleted file mode 100644 index 37184c108b9..00000000000 --- a/dev-python/configargparse/configargparse-1.5.1.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} ) -inherit distutils-r1 - -MY_PN="ConfigArgParse" -MY_P="${MY_PN}-${PV}" -DESCRIPTION="Drop-in replacement for argparse supporting config files and env variables" -HOMEPAGE=" - https://github.com/bw2/ConfigArgParse/ - https://pypi.org/project/ConfigArgParse/" -SRC_URI=" - https://github.com/bw2/ConfigArgParse/archive/v${PV}.tar.gz - -> ${MY_P}.gh.tar.gz" -S="${WORKDIR}/${MY_P}" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86" - -BDEPEND=" - test? ( dev-python/pyyaml[${PYTHON_USEDEP}] )" - -distutils_enable_tests unittest - -src_test() { - local -x COLUMNS=80 - distutils-r1_src_test -}