diff options
author | Brian Dolbec <dolsen@gentoo.org> | 2020-10-14 09:27:52 -0400 |
---|---|---|
committer | Brian Dolbec <dolsen@gentoo.org> | 2020-10-14 09:28:39 -0400 |
commit | 0f36d2f92e4ea5dc2aad906e9858fe2c3f0b3b69 (patch) | |
tree | 452af8138ae7a3ff76daca7044e20f0cf0020f6f /dev-python/cbor2 | |
parent | dev-python/pypugjs: Version bump to 2.9.5 (diff) | |
download | gentoo-0f36d2f92e4ea5dc2aad906e9858fe2c3f0b3b69.tar.gz gentoo-0f36d2f92e4ea5dc2aad906e9858fe2c3f0b3b69.tar.bz2 gentoo-0f36d2f92e4ea5dc2aad906e9858fe2c3f0b3b69.zip |
dev-python/cbor2: Version bump to 5.2.0
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Brian Dolbec <dolsen@gentoo.org>
Diffstat (limited to 'dev-python/cbor2')
-rw-r--r-- | dev-python/cbor2/Manifest | 1 | ||||
-rw-r--r-- | dev-python/cbor2/cbor2-5.2.0.ebuild | 39 |
2 files changed, 40 insertions, 0 deletions
diff --git a/dev-python/cbor2/Manifest b/dev-python/cbor2/Manifest index a67b6c404d8f..b8de5259b911 100644 --- a/dev-python/cbor2/Manifest +++ b/dev-python/cbor2/Manifest @@ -1 +1,2 @@ DIST cbor2-5.1.2.tar.gz 73247 BLAKE2B de033651c0483aee4bb3bb31f9a997bdd6329c2941dbde65acabe7f7a3bfde37ab0322085a3107fb581e36cb6792cfb4fcf07cdbedfcec4a18a907582081d141 SHA512 81e4c3e8c727fea6db8bbed657806ace8777d8ad157395de3db7f0dab369abcd7f173f0cfad538c325a49bf90b450eab16ad2f4aa4f69c324dd0807ae0ab556f +DIST cbor2-5.2.0.tar.gz 81467 BLAKE2B ac35cf682f15eba2c2bff81f562fe2f22906ab8da39c04cbf65f403eeacb5e640e200b15a8cca0d7eede1d0106cd8674640b3093d166a4414a2d42452a374322 SHA512 101aed37c3921ace2f4a5fbb9964ddd2ec2ffcd23fb1a9f838b2f8925f17ffaf5eb39a40b5426e176f0c97a2ba1d3a045e96ceb53312b283101900eddacc6af4 diff --git a/dev-python/cbor2/cbor2-5.2.0.ebuild b/dev-python/cbor2/cbor2-5.2.0.ebuild new file mode 100644 index 000000000000..3af7eadeeba0 --- /dev/null +++ b/dev-python/cbor2/cbor2-5.2.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{6,7,8} ) +DISTUTILS_USE_SETUPTOOLS="bdepend" + +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" + +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 |