Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/parver/
Date: Mon, 04 May 2020 11:35:14
Message-Id: 1588592041.f10f6a45fac932b1476584edb3fa085d4e81c7a2.mgorny@gentoo
1 commit: f10f6a45fac932b1476584edb3fa085d4e81c7a2
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 4 11:34:01 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 4 11:34:01 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f10f6a45
7
8 dev-python/parver: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/parver/Manifest | 1 -
13 dev-python/parver/parver-0.2.1.ebuild | 40 -----------------------------------
14 2 files changed, 41 deletions(-)
15
16 diff --git a/dev-python/parver/Manifest b/dev-python/parver/Manifest
17 index fa349a9db61..dd46c71f64d 100644
18 --- a/dev-python/parver/Manifest
19 +++ b/dev-python/parver/Manifest
20 @@ -1,2 +1 @@
21 -DIST parver-0.2.1.tar.gz 25717 BLAKE2B dd55f44b8bb43ca948fa459537385066b811fca4ff68426365b840d704c30c4a258632f1d2ac2a3967acafcbde44151f1d394ffd96a18d03c6a004ce6b29f1b1 SHA512 674e97d5bef6bb02a659ecf5e1a78fa5d597436b656d0251db20fe330a151ae8de52a3f3f0d3732ccb624ad9093116c07837ba0cbe4ae7ae664b4d47ec3333c3
22 DIST parver-0.3.tar.gz 28324 BLAKE2B b7ffed6f6e03d9409ba512fb43336fa81ce4152fa066703c1de122f709410c946a1ce6fcedf8ddbdb0c9af66d8651c597f2abf3867115d89280381c6fb1f24e8 SHA512 0b31ee3c3fc24b056a97ccb9df10dec69ca66f4690b7f01ae84fbe583b77cf713b98d207eaf7a34c2192eecdf4077121154fe9b59aa83fe4836080cae729a90d
23
24 diff --git a/dev-python/parver/parver-0.2.1.ebuild b/dev-python/parver/parver-0.2.1.ebuild
25 deleted file mode 100644
26 index c18e7ee504f..00000000000
27 --- a/dev-python/parver/parver-0.2.1.ebuild
28 +++ /dev/null
29 @@ -1,40 +0,0 @@
30 -# Copyright 2019-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_{6,7} )
36 -inherit distutils-r1
37 -
38 -DESCRIPTION="Parse and manipulate version numbers"
39 -HOMEPAGE="https://github.com/RazerM/parver https://pypi.org/project/parver/"
40 -SRC_URI="https://github.com/RazerM/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
41 -
42 -LICENSE="MIT"
43 -SLOT="0"
44 -KEYWORDS="~amd64 ~x86"
45 -IUSE="test"
46 -
47 -RESTRICT="!test? ( test )"
48 -
49 -PATCHES=(
50 - "${FILESDIR}"/${PN}-0.2.1-gentoo-versioning.patch
51 -)
52 -
53 -RDEPEND="
54 - >=dev-python/arpeggio-1.7[${PYTHON_USEDEP}]
55 - dev-python/attrs[${PYTHON_USEDEP}]
56 - dev-python/six[${PYTHON_USEDEP}]
57 - "
58 -
59 -DEPEND="
60 - test? (
61 - ${RDEPEND}
62 - dev-python/hypothesis[${PYTHON_USEDEP}]
63 - dev-python/pytest[${PYTHON_USEDEP}]
64 - dev-python/pretend[${PYTHON_USEDEP}]
65 - )"
66 -
67 -python_test() {
68 - pytest -vv || die "Testing failed"
69 -}