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 17083138351 for ; Sat, 28 Mar 2020 11:37:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3CE81E0DFC; Sat, 28 Mar 2020 11:36:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 229C0E0DFC for ; Sat, 28 Mar 2020 11:36:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 8CBA934F9FA for ; Sat, 28 Mar 2020 11:36:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0581D199 for ; Sat, 28 Mar 2020 11:36:56 +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: <1585395387.3ac6d8ae7b6eb324e3fad708707511f725291e5e.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/parver/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/parver/Manifest dev-python/parver/parver-0.1.1.ebuild X-VCS-Directories: dev-python/parver/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 3ac6d8ae7b6eb324e3fad708707511f725291e5e X-VCS-Branch: master Date: Sat, 28 Mar 2020 11:36:56 +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: a53d42e5-4273-43f3-860d-d35bc36da84b X-Archives-Hash: 7e5d298ffb91df632e137255e240576c commit: 3ac6d8ae7b6eb324e3fad708707511f725291e5e Author: Michał Górny gentoo org> AuthorDate: Sat Mar 28 11:28:36 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Mar 28 11:36:27 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ac6d8ae dev-python/parver: Remove redundant versions Signed-off-by: Michał Górny gentoo.org> dev-python/parver/Manifest | 1 - dev-python/parver/parver-0.1.1.ebuild | 32 -------------------------------- 2 files changed, 33 deletions(-) diff --git a/dev-python/parver/Manifest b/dev-python/parver/Manifest index b99d6e0f291..40f1fcaaf6c 100644 --- a/dev-python/parver/Manifest +++ b/dev-python/parver/Manifest @@ -1,2 +1 @@ -DIST parver-0.1.1.tar.gz 23398 BLAKE2B 2e15ac0c5739ac4d5360cd905d87d0ba1e3831fa975b42c73503f1fdc0952d4a73f36a9eb07cf95a12969637cbfaa902ed46c9a66a85110c17b8ff36c39c87f1 SHA512 d79a4981f3ad77180c5a9c5972410714a1be075308c933bde6af499c25aaa2f82034afb27c0b4c4d7ca269d645285a953a91ea6f945fcac663250ed06ae3accb DIST parver-0.2.1.tar.gz 25717 BLAKE2B dd55f44b8bb43ca948fa459537385066b811fca4ff68426365b840d704c30c4a258632f1d2ac2a3967acafcbde44151f1d394ffd96a18d03c6a004ce6b29f1b1 SHA512 674e97d5bef6bb02a659ecf5e1a78fa5d597436b656d0251db20fe330a151ae8de52a3f3f0d3732ccb624ad9093116c07837ba0cbe4ae7ae664b4d47ec3333c3 diff --git a/dev-python/parver/parver-0.1.1.ebuild b/dev-python/parver/parver-0.1.1.ebuild deleted file mode 100644 index e3bbb6bf927..00000000000 --- a/dev-python/parver/parver-0.1.1.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_{6,7} ) - -inherit distutils-r1 - -DESCRIPTION="Parse and manipulate version numbers" -HOMEPAGE="https://github.com/RazerM/parver https://pypi.org/project/parver/" -SRC_URI="https://github.com/RazerM/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="test" -RESTRICT="!test? ( test )" - -DEPEND=" - dev-python/arpeggio[${PYTHON_USEDEP}] - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( - dev-python/hypothesis[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] - dev-python/pretend[${PYTHON_USEDEP}] - ) -" - -python_test() { - pytest -vv || die "Testing failed" -}