diff options
author | 2023-03-28 05:49:15 +0200 | |
---|---|---|
committer | 2023-03-28 05:49:15 +0200 | |
commit | 456c87796100038f5f7cbef4a1a0b693791196b3 (patch) | |
tree | 9406953ee6e3545d707938857838cb9e9a57f28f | |
parent | app-admin/awscli: Bump to 1.27.100 (diff) | |
download | gentoo-456c87796100038f5f7cbef4a1a0b693791196b3.tar.gz gentoo-456c87796100038f5f7cbef4a1a0b693791196b3.tar.bz2 gentoo-456c87796100038f5f7cbef4a1a0b693791196b3.zip |
dev-python/cbor: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r-- | dev-python/cbor/cbor-1.0.0-r1.ebuild | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/dev-python/cbor/cbor-1.0.0-r1.ebuild b/dev-python/cbor/cbor-1.0.0-r1.ebuild deleted file mode 100644 index 8f27537c24c2..000000000000 --- a/dev-python/cbor/cbor-1.0.0-r1.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python3_{9..10} ) - -inherit distutils-r1 - -EGIT_COMMIT="b3af679e7cf3e12d50acb83c3c591fc5db9a658d" -DESCRIPTION="RFC 7049 - Concise Binary Object Representation" -HOMEPAGE="https://github.com/brianolson/cbor_py - https://pypi.org/project/cbor/" -SRC_URI=" - https://github.com/brianolson/cbor_py/archive/${EGIT_COMMIT}.tar.gz - -> ${P}.gh.tar.gz" -S=${WORKDIR}/cbor_py-${EGIT_COMMIT} - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 arm arm64 x86 ~amd64-linux ~x86-linux" - -# upstream PR: https://github.com/brianolson/cbor_py/pull/19 -# upstream PR: https://github.com/brianolson/cbor_py/pull/11 -PATCHES=( - "${FILESDIR}/cbor-1.0.0.zero-length-bytes.patch" - "${FILESDIR}/cbor-1.0.0.Fix-broken-test_sortkeys.patch" - "${FILESDIR}/cbor-1.0.0.Replace-deprecated-logger.warn.patch" -) - -python_test() { - "${EPYTHON}" cbor/tests/test_cbor.py || die "Testsuite failed under ${EPYTHON}" - "${EPYTHON}" cbor/tests/test_objects.py || die "Testsuite failed under ${EPYTHON}" - "${EPYTHON}" cbor/tests/test_usage.py || die "Testsuite failed under ${EPYTHON}" - "${EPYTHON}" cbor/tests/test_vectors.py || die "Testsuite failed under ${EPYTHON}" -} |