Gentoo Archives: gentoo-commits

From: Austin English <wizardedit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jira/
Date: Wed, 13 Dec 2017 23:02:05
Message-Id: 1513206095.aab162ef390384ffddededc1f4b1fa2601b6ad7e.wizardedit@gentoo
1 commit: aab162ef390384ffddededc1f4b1fa2601b6ad7e
2 Author: Austin English <wizardedit <AT> gentoo <DOT> org>
3 AuthorDate: Wed Dec 13 23:00:50 2017 +0000
4 Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 13 23:01:35 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aab162ef
7
8 dev-python/jira: allow dev-python/pycryptodome as well as dev-python/pycrypto, Bug #611568
9
10 Gentoo-Bug: https://bugs.gentoo.org/611568
11 Gentoo-Bug: https://bugs.gentoo.org/611596
12 Package-Manager: Portage-2.3.13, Repoman-2.3.3
13
14 dev-python/jira/jira-1.0.10-r1.ebuild | 32 ++++++++++++++++++++++++++++++++
15 1 file changed, 32 insertions(+)
16
17 diff --git a/dev-python/jira/jira-1.0.10-r1.ebuild b/dev-python/jira/jira-1.0.10-r1.ebuild
18 new file mode 100644
19 index 00000000000..023e1361916
20 --- /dev/null
21 +++ b/dev-python/jira/jira-1.0.10-r1.ebuild
22 @@ -0,0 +1,32 @@
23 +# Copyright 1999-2017 Gentoo Foundation
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=6
27 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
28 +inherit distutils-r1
29 +
30 +DESCRIPTION="Python library for interacting with the JIRA REST API"
31 +HOMEPAGE="https://jira.readthedocs.io/en/latest/"
32 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
33 +
34 +LICENSE="BSD-2"
35 +SLOT="0"
36 +KEYWORDS="~amd64"
37 +IUSE="filemagic ipython oauth"
38 +
39 +DEPEND="
40 + dev-python/pbr[${PYTHON_USEDEP}]
41 + dev-python/pytest-runner[${PYTHON_USEDEP}]
42 + dev-python/setuptools[${PYTHON_USEDEP}]
43 + "
44 +RDEPEND="
45 + dev-python/requests[${PYTHON_USEDEP}]
46 + dev-python/requests-toolbelt[${PYTHON_USEDEP}]
47 + dev-python/six[${PYTHON_USEDEP}]
48 + filemagic? ( dev-python/filemagic[${PYTHON_USEDEP}] )
49 + ipython? ( dev-python/ipython[${PYTHON_USEDEP}] )
50 + oauth? (
51 + || ( dev-python/pycryptodome[${PYTHON_USEDEP}] dev-python/pycrypto[${PYTHON_USEDEP}] )
52 + dev-python/requests-oauthlib[${PYTHON_USEDEP}]
53 + )
54 + "