Gentoo Archives: gentoo-commits

From: Brian Dolbec <dolsen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/cbor2/
Date: Thu, 20 Aug 2020 16:13:24
Message-Id: 1597939952.014f37d5d773d58636112b69434ec380dfb39495.dolsen@gentoo
1 commit: 014f37d5d773d58636112b69434ec380dfb39495
2 Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 20 16:12:32 2020 +0000
4 Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 20 16:12:32 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=014f37d5
7
8 dev-python/cbor2: Version bump to 5.1.2
9
10 Package-Manager: Portage-3.0.2_p6, Repoman-2.3.23_p209
11 Signed-off-by: Brian Dolbec <dolsen <AT> gentoo.org>
12
13 dev-python/cbor2/Manifest | 1 +
14 dev-python/cbor2/cbor2-5.1.2.ebuild | 41 +++++++++++++++++++++++++++++++++++++
15 2 files changed, 42 insertions(+)
16
17 diff --git a/dev-python/cbor2/Manifest b/dev-python/cbor2/Manifest
18 index bb524addff1..9c3e4f76a76 100644
19 --- a/dev-python/cbor2/Manifest
20 +++ b/dev-python/cbor2/Manifest
21 @@ -1 +1,2 @@
22 DIST cbor2-5.1.0.tar.gz 72328 BLAKE2B 22737f1ce152eb356fc937199ba83e9558b68900f8183ee8acca52312fa56499812d6b26aaaa629b6e2cfacbdfbb72f65cb7fcbe93a010320aff94aec8dc3978 SHA512 0df4f0c5609ae8d73627a64ee1544af88461b2bf829538f23d912138cf47ae8d03193644c7315e2a77318e58fd2bd61c4cb103d94ed0710db0ae5c2cf4df60b7
23 +DIST cbor2-5.1.2.tar.gz 73247 BLAKE2B de033651c0483aee4bb3bb31f9a997bdd6329c2941dbde65acabe7f7a3bfde37ab0322085a3107fb581e36cb6792cfb4fcf07cdbedfcec4a18a907582081d141 SHA512 81e4c3e8c727fea6db8bbed657806ace8777d8ad157395de3db7f0dab369abcd7f173f0cfad538c325a49bf90b450eab16ad2f4aa4f69c324dd0807ae0ab556f
24
25 diff --git a/dev-python/cbor2/cbor2-5.1.2.ebuild b/dev-python/cbor2/cbor2-5.1.2.ebuild
26 new file mode 100644
27 index 00000000000..0ab2f141e00
28 --- /dev/null
29 +++ b/dev-python/cbor2/cbor2-5.1.2.ebuild
30 @@ -0,0 +1,41 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +PYTHON_COMPAT=( python3_{6,7,8} )
36 +
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="Pure Python CBOR (de)serializer with extensive tag support"
40 +HOMEPAGE="https://github.com/agronholm/cbor2 https://pypi.org/project/cbor2/"
41 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 +
43 +IUSE="test"
44 +RESTRICT="!test? ( test )"
45 +
46 +LICENSE="MIT"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~arm ~arm64 ~x86"
49 +
50 +DEPEND="
51 + dev-python/setuptools_scm[${PYTHON_USEDEP}]
52 +"
53 +BDEPEND="
54 + test? (
55 + dev-python/pytest[${PYTHON_USEDEP}]
56 + )
57 +"
58 +
59 +RDEPEND="${DEPEND}"
60 +
61 +python_prepare_all() {
62 +
63 + # remove pytest-cov dep
64 + sed -e "s/pytest-cov//" \
65 + -e "s/--cov //" \
66 + -i setup.cfg || die
67 +
68 + distutils-r1_python_prepare_all
69 +}
70 +
71 +distutils_enable_tests pytest