diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-10-09 10:41:46 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-10-09 10:46:04 +0200 |
commit | a941912752d9e68188fa55da6424a87b2cbd9cb4 (patch) | |
tree | b79e9fb89da221b59dd12c0186cb8ad163ab951d /dev-python/cbor2 | |
parent | dev-python/reportlab: Remove old (diff) | |
download | gentoo-a941912752d9e68188fa55da6424a87b2cbd9cb4.tar.gz gentoo-a941912752d9e68188fa55da6424a87b2cbd9cb4.tar.bz2 gentoo-a941912752d9e68188fa55da6424a87b2cbd9cb4.zip |
dev-python/cbor2: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/cbor2')
-rw-r--r-- | dev-python/cbor2/Manifest | 1 | ||||
-rw-r--r-- | dev-python/cbor2/cbor2-5.1.0.ebuild | 41 |
2 files changed, 0 insertions, 42 deletions
diff --git a/dev-python/cbor2/Manifest b/dev-python/cbor2/Manifest index 9c3e4f76a768..a67b6c404d8f 100644 --- a/dev-python/cbor2/Manifest +++ b/dev-python/cbor2/Manifest @@ -1,2 +1 @@ -DIST cbor2-5.1.0.tar.gz 72328 BLAKE2B 22737f1ce152eb356fc937199ba83e9558b68900f8183ee8acca52312fa56499812d6b26aaaa629b6e2cfacbdfbb72f65cb7fcbe93a010320aff94aec8dc3978 SHA512 0df4f0c5609ae8d73627a64ee1544af88461b2bf829538f23d912138cf47ae8d03193644c7315e2a77318e58fd2bd61c4cb103d94ed0710db0ae5c2cf4df60b7 DIST cbor2-5.1.2.tar.gz 73247 BLAKE2B de033651c0483aee4bb3bb31f9a997bdd6329c2941dbde65acabe7f7a3bfde37ab0322085a3107fb581e36cb6792cfb4fcf07cdbedfcec4a18a907582081d141 SHA512 81e4c3e8c727fea6db8bbed657806ace8777d8ad157395de3db7f0dab369abcd7f173f0cfad538c325a49bf90b450eab16ad2f4aa4f69c324dd0807ae0ab556f diff --git a/dev-python/cbor2/cbor2-5.1.0.ebuild b/dev-python/cbor2/cbor2-5.1.0.ebuild deleted file mode 100644 index 212a52fd6ee0..000000000000 --- a/dev-python/cbor2/cbor2-5.1.0.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python3_{6,7,8} ) - -inherit distutils-r1 - -DESCRIPTION="Pure Python CBOR (de)serializer with extensive tag support" -HOMEPAGE="https://github.com/agronholm/cbor2 https://pypi.org/project/cbor2/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -IUSE="test" -RESTRICT="!test? ( test )" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 arm arm64 x86" - -DEPEND=" - dev-python/setuptools_scm[${PYTHON_USEDEP}] -" -BDEPEND=" - test? ( - dev-python/pytest[${PYTHON_USEDEP}] - ) -" - -RDEPEND="${DEPEND}" - -python_prepare_all() { - - # remove pytest-cov dep - sed -e "s/pytest-cov//" \ - -e "s/--cov //" \ - -i setup.cfg || die - - distutils-r1_python_prepare_all -} - -distutils_enable_tests pytest |