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/python-bugzilla/
Date: Wed, 01 Jul 2020 03:08:03
Message-Id: 1593572870.eaa0b28b7aad57c09f2ecbdd2b5c7b3b7d7b431e.mgorny@gentoo
1 commit: eaa0b28b7aad57c09f2ecbdd2b5c7b3b7d7b431e
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 1 02:52:43 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 1 03:07:50 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eaa0b28b
7
8 dev-python/python-bugzilla: Bump to 2.4.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/python-bugzilla/Manifest | 1 +
13 .../python-bugzilla/python-bugzilla-2.4.0.ebuild | 30 ++++++++++++++++++++++
14 2 files changed, 31 insertions(+)
15
16 diff --git a/dev-python/python-bugzilla/Manifest b/dev-python/python-bugzilla/Manifest
17 index a16778b886a..7b85b75efb3 100644
18 --- a/dev-python/python-bugzilla/Manifest
19 +++ b/dev-python/python-bugzilla/Manifest
20 @@ -1,2 +1,3 @@
21 DIST python-bugzilla-2.1.0.tar.gz 78791 BLAKE2B 31819e04ea5627b5513c22e9cb963cdea4d1ef8d6d4db78d14bf08b8b5fb373afaad4bddb2bc0b05d4637f966bf8b4f3699ace58ceff8ea226d9ffd4aacc7f61 SHA512 40dd331e2dbb4d70ce6d356eb800d6242ef9878112310087761c8dccb7f05b259f0f5fdee6821713a84c68f1e5f9e0bb6ee45542bc385f00822b97344371239e
22 DIST python-bugzilla-2.3.0.tar.gz 79002 BLAKE2B d3aaeaebf25bd56286fa1c4adcbf154ff2d84a28918bd1fd80e1f83b30bfe0f54f7418c75afc446c60046d69cf4ff6219718434158ce9cf040b0b2f7b94136ec SHA512 cd6e1c3f142ad74b8165fdd503ebaeb5e512ad8055dfc1e47e794908ac21cece6e39365544b94c123067f1d6527b65765431f2656336086e6dda940e446b763b
23 +DIST python-bugzilla-2.4.0.tar.gz 109556 BLAKE2B cf2c7a5a0f491e92c484f2270ab6c8cf67e4ea87419000474ee8ca80e2b406a837d699915fd3c76f62dd79e4338a7276e88ed653fd0d81efcefba5e259559129 SHA512 cbe1d735d4a733eb91d5c6f278a1b7c23a0b142a515eb8a4efed1bf0446a692afa9780f6bfd99e21a079cd4921c4b11d20f65596886b2eba3ba08abdc8593515
24
25 diff --git a/dev-python/python-bugzilla/python-bugzilla-2.4.0.ebuild b/dev-python/python-bugzilla/python-bugzilla-2.4.0.ebuild
26 new file mode 100644
27 index 00000000000..1f4edae4f35
28 --- /dev/null
29 +++ b/dev-python/python-bugzilla/python-bugzilla-2.4.0.ebuild
30 @@ -0,0 +1,30 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +DISTUTILS_USE_SETUPTOOLS=rdepend
37 +PYTHON_COMPAT=( python3_{6..9} )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="A python module for interacting with Bugzilla over XMLRPC"
42 +HOMEPAGE="https://github.com/python-bugzilla/python-bugzilla"
43 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 +
45 +KEYWORDS="~amd64 ~x86"
46 +LICENSE="GPL-2+"
47 +SLOT="0"
48 +
49 +RDEPEND="
50 + || ( dev-python/python-magic[${PYTHON_USEDEP}] sys-apps/file[python,${PYTHON_USEDEP}] )
51 + dev-python/requests[${PYTHON_USEDEP}]"
52 +BDEPEND="
53 + dev-python/docutils[${PYTHON_USEDEP}]"
54 +
55 +distutils_enable_tests pytest
56 +
57 +src_prepare() {
58 + sed -i -e 's:rst2man:&.py:' setup.py || die
59 + distutils-r1_src_prepare
60 +}