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/deprecation/
Date: Thu, 26 Mar 2020 20:35:22
Message-Id: 1585254891.f00bc83c0f7fe9686a8a39f943b9facc759c1e80.mgorny@gentoo
1 commit: f00bc83c0f7fe9686a8a39f943b9facc759c1e80
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 26 20:28:36 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 26 20:34:51 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f00bc83c
7
8 dev-python/deprecation: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/deprecation/Manifest | 2 --
13 dev-python/deprecation/deprecation-1.0.1.ebuild | 19 ---------------
14 dev-python/deprecation/deprecation-2.0.6.ebuild | 31 -------------------------
15 3 files changed, 52 deletions(-)
16
17 diff --git a/dev-python/deprecation/Manifest b/dev-python/deprecation/Manifest
18 index 6f805c69365..c9974089d59 100644
19 --- a/dev-python/deprecation/Manifest
20 +++ b/dev-python/deprecation/Manifest
21 @@ -1,3 +1 @@
22 -DIST deprecation-1.0.1.tar.gz 9596 BLAKE2B afc4cb457ce224f120d41944e6eb71c212ef4d40d5a7c5d6d695d31bd105a4a5291daf5d3c7af0f94b58049f7e745e7e5be462495de88c48cabf5a28c22b3637 SHA512 fc35e6516e1617e2baad598a91e5d83ca95ab8a2d6a2753751d6752675de93cb44210109450a2aad9eb52b3c772a8b753c1d42ab2356c6663d2a03c4f779f086
23 -DIST deprecation-2.0.6.tar.gz 13381 BLAKE2B 1f21a4b8bd9293d50e9068762d4f909afe02fb1f7a8f352c5b3d5d10e0da90d122927a97cf060bec626ff8538478f83740dc1d79e050fe43dc27ade8729f26d1 SHA512 69dcf5e07cfc1c746564e03063088cce65690e2b34cffe327d59edad24f00d23cf9904089ab9ff5e67dce2b6b02ed617e53959be4a907074440ddb778576aa2f
24 DIST deprecation-2.0.7.tar.gz 17077 BLAKE2B da3fb5db53f281c29e2af40335ef4038e37d133563b85d0ea795a314fd9f2d725a98c100aca338dc9ebe60bb1000476e0debcfdc9c4583108004df207cb36747 SHA512 4412e2e95f4aa4b3d5598346a6649c8d945d7401ac2d0fba3b6f6eef567403c8454ebe537e8de646903cd0c2308f48ecb949dae3015ba7617edd2fa3a26ed429
25
26 diff --git a/dev-python/deprecation/deprecation-1.0.1.ebuild b/dev-python/deprecation/deprecation-1.0.1.ebuild
27 deleted file mode 100644
28 index 54100da58a3..00000000000
29 --- a/dev-python/deprecation/deprecation-1.0.1.ebuild
30 +++ /dev/null
31 @@ -1,19 +0,0 @@
32 -# Copyright 1999-2020 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=6
36 -
37 -PYTHON_COMPAT=( python3_6 )
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="A library to handle automated deprecations"
41 -HOMEPAGE="https://deprecation.readthedocs.io/"
42 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 -
44 -LICENSE="Apache-2.0"
45 -SLOT="0"
46 -KEYWORDS="amd64 ~arm64 x86"
47 -IUSE=""
48 -
49 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
50 -RDEPEND=""
51
52 diff --git a/dev-python/deprecation/deprecation-2.0.6.ebuild b/dev-python/deprecation/deprecation-2.0.6.ebuild
53 deleted file mode 100644
54 index 6d059b81714..00000000000
55 --- a/dev-python/deprecation/deprecation-2.0.6.ebuild
56 +++ /dev/null
57 @@ -1,31 +0,0 @@
58 -# Copyright 1999-2020 Gentoo Authors
59 -# Distributed under the terms of the GNU General Public License v2
60 -
61 -EAPI=7
62 -
63 -PYTHON_COMPAT=( pypy3 python3_{6,7} )
64 -
65 -inherit distutils-r1
66 -
67 -DESCRIPTION="A library to handle automated deprecations"
68 -HOMEPAGE="https://deprecation.readthedocs.io/"
69 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
70 -
71 -LICENSE="Apache-2.0"
72 -SLOT="0"
73 -KEYWORDS="~amd64 ~arm64 ~x86"
74 -IUSE="test"
75 -RESTRICT="!test? ( test )"
76 -
77 -RDEPEND="dev-python/packaging[${PYTHON_USEDEP}]"
78 -BDEPEND="
79 - dev-python/setuptools[${PYTHON_USEDEP}]
80 - test? (
81 - dev-python/unittest2[${PYTHON_USEDEP}]
82 - ${RDEPEND}
83 - )
84 -"
85 -
86 -python_test() {
87 - "${EPYTHON}" -m unittest discover -v || die "tests failed with ${EPYTHON}"
88 -}