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/cbor2/
Date: Fri, 09 Oct 2020 08:53:24
Message-Id: 1602233164.a941912752d9e68188fa55da6424a87b2cbd9cb4.mgorny@gentoo
1 commit: a941912752d9e68188fa55da6424a87b2cbd9cb4
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 9 08:41:46 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 9 08:46:04 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9419127
7
8 dev-python/cbor2: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/cbor2/Manifest | 1 -
13 dev-python/cbor2/cbor2-5.1.0.ebuild | 41 -------------------------------------
14 2 files changed, 42 deletions(-)
15
16 diff --git a/dev-python/cbor2/Manifest b/dev-python/cbor2/Manifest
17 index 9c3e4f76a76..a67b6c404d8 100644
18 --- a/dev-python/cbor2/Manifest
19 +++ b/dev-python/cbor2/Manifest
20 @@ -1,2 +1 @@
21 -DIST cbor2-5.1.0.tar.gz 72328 BLAKE2B 22737f1ce152eb356fc937199ba83e9558b68900f8183ee8acca52312fa56499812d6b26aaaa629b6e2cfacbdfbb72f65cb7fcbe93a010320aff94aec8dc3978 SHA512 0df4f0c5609ae8d73627a64ee1544af88461b2bf829538f23d912138cf47ae8d03193644c7315e2a77318e58fd2bd61c4cb103d94ed0710db0ae5c2cf4df60b7
22 DIST cbor2-5.1.2.tar.gz 73247 BLAKE2B de033651c0483aee4bb3bb31f9a997bdd6329c2941dbde65acabe7f7a3bfde37ab0322085a3107fb581e36cb6792cfb4fcf07cdbedfcec4a18a907582081d141 SHA512 81e4c3e8c727fea6db8bbed657806ace8777d8ad157395de3db7f0dab369abcd7f173f0cfad538c325a49bf90b450eab16ad2f4aa4f69c324dd0807ae0ab556f
23
24 diff --git a/dev-python/cbor2/cbor2-5.1.0.ebuild b/dev-python/cbor2/cbor2-5.1.0.ebuild
25 deleted file mode 100644
26 index 212a52fd6ee..00000000000
27 --- a/dev-python/cbor2/cbor2-5.1.0.ebuild
28 +++ /dev/null
29 @@ -1,41 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -PYTHON_COMPAT=( python3_{6,7,8} )
35 -
36 -inherit distutils-r1
37 -
38 -DESCRIPTION="Pure Python CBOR (de)serializer with extensive tag support"
39 -HOMEPAGE="https://github.com/agronholm/cbor2 https://pypi.org/project/cbor2/"
40 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
41 -
42 -IUSE="test"
43 -RESTRICT="!test? ( test )"
44 -
45 -LICENSE="MIT"
46 -SLOT="0"
47 -KEYWORDS="amd64 arm arm64 x86"
48 -
49 -DEPEND="
50 - dev-python/setuptools_scm[${PYTHON_USEDEP}]
51 -"
52 -BDEPEND="
53 - test? (
54 - dev-python/pytest[${PYTHON_USEDEP}]
55 - )
56 -"
57 -
58 -RDEPEND="${DEPEND}"
59 -
60 -python_prepare_all() {
61 -
62 - # remove pytest-cov dep
63 - sed -e "s/pytest-cov//" \
64 - -e "s/--cov //" \
65 - -i setup.cfg || die
66 -
67 - distutils-r1_python_prepare_all
68 -}
69 -
70 -distutils_enable_tests pytest