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/deprecated/
Date: Thu, 26 Mar 2020 20:35:22
Message-Id: 1585254890.a4135898d7dbb0365ba1d8e86b2f92c7a4576291.mgorny@gentoo
1 commit: a4135898d7dbb0365ba1d8e86b2f92c7a4576291
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 26 20:28:14 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 26 20:34:50 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4135898
7
8 dev-python/deprecated: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/deprecated/Manifest | 1 -
13 dev-python/deprecated/deprecated-1.2.6.ebuild | 28 ---------------------------
14 2 files changed, 29 deletions(-)
15
16 diff --git a/dev-python/deprecated/Manifest b/dev-python/deprecated/Manifest
17 index 613dccd32bc..8c92df6b67a 100644
18 --- a/dev-python/deprecated/Manifest
19 +++ b/dev-python/deprecated/Manifest
20 @@ -1,2 +1 @@
21 -DIST deprecated-1.2.6.gh.tar.gz 5043633 BLAKE2B cc72838dc772db62ca75637268d09cbab4c9acb84b42bd1d2d76397d43b81781cfcef075a9a6e6ca2ab55eda19acae95cdfbdd820c1363e7ea4841fb1cb61b7b SHA512 fcef322c6d9c317081dae365d469d4b26b0d23d8290e7aa0ca18592fb098ae7f535cb5e898cc81e5c734e7e211c847cdd9d5430c1999a4b9612f30934243ee9e
22 DIST deprecated-1.2.7.gh.tar.gz 5044697 BLAKE2B 5e295ce21a3e536e08b6e57d78d3682b31e9041f4c53d97c06af03f8272a5b729c892449210471b80500ce499fe9e6af22df8ac0aeec5ac774fd74590ebdfc3b SHA512 da99a22410fdcc2a96cb5b15c489971078ce34e251406ae3dce6b3f97e284a4f09aaf1c5702407abe85a94cb6c8d9237f373a3096d6182e4a9cd1990be2817f1
23
24 diff --git a/dev-python/deprecated/deprecated-1.2.6.ebuild b/dev-python/deprecated/deprecated-1.2.6.ebuild
25 deleted file mode 100644
26 index 96830f8dde4..00000000000
27 --- a/dev-python/deprecated/deprecated-1.2.6.ebuild
28 +++ /dev/null
29 @@ -1,28 +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="Python @deprecated decorator to deprecate old API"
39 -HOMEPAGE="https://github.com/tantale/deprecated"
40 -SRC_URI="https://github.com/tantale/deprecated/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
41 -
42 -LICENSE="MIT"
43 -SLOT="0"
44 -KEYWORDS="amd64 x86"
45 -IUSE="test"
46 -RESTRICT="!test? ( test )"
47 -
48 -RDEPEND="dev-python/wrapt[${PYTHON_USEDEP}]"
49 -BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
50 - test? (
51 - ${RDEPEND}
52 - dev-python/pytest[${PYTHON_USEDEP}]
53 - )"
54 -
55 -python_test() {
56 - pytest -vv || die "Tests fail with ${EPYTHON}"
57 -}