Add jira-2.0.0

This commit is contained in:
madmaurice 2021-01-11 19:09:17 +01:00
parent c9c315e3ab
commit 1af06557e7
2 changed files with 44 additions and 0 deletions

2
dev-python/jira/Manifest Normal file
View File

@ -0,0 +1,2 @@
DIST jira-2.0.0.tar.gz 95561 BLAKE2B 6b8d08896be35514c3059c68539998f46368b1e4d0747ccdc42abd30dbb344ffad3f641aed34753a35d25191a8ce030349ea5b245ea59aa5d977bcb72327be4f SHA512 444a614581b420bd2d056a033553884a1f2c9fded118c49765fdbbdb90899ed048585f61383a0b4f87dddd6d075e3d98931b91919119b5f24ca75a0eafe1a830
EBUILD jira-2.0.0.ebuild 1187 BLAKE2B 9da16ff73ec9f026159e5f53fa7d42920627663339207925aef27aff248217d2c31138a74db05b948dffb4e858695008ee1fd9c50a918dfa31d8abc269e149b6 SHA512 a83a583ca70f7625d8b1be83e1504db97eb7f3bc328dbd4bf8670e0fbce59f53f05ec36a4cbe29b599bf6af4564d9cd1e114d0800ee0213f57773912c7b72d08

View File

@ -0,0 +1,42 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python3_6 python3_7 python3_8 )
inherit distutils-r1
DESCRIPTION="Python library for interacting with the JIRA REST API"
HOMEPAGE="https://jira.readthedocs.io/en/latest/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE="magic jirashell kerberos oauth"
DEPEND="
>=dev-python/pbr-3.0[${PYTHON_USEDEP}]
dev-python/pytest-runner[${PYTHON_USEDEP}]
>=dev-python/setuptools-20.10.1[${PYTHON_USEDEP}]
>=dev-python/sphinx-1.6.5[${PYTHON_USEDEP}]
"
RDEPEND="
dev-python/defusedxml[${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]
dev-python/requests-toolbelt[${PYTHON_USEDEP}]
>=dev-python/six-1.10[${PYTHON_USEDEP}]
magic? ( dev-python/filemagic[${PYTHON_USEDEP}] )
jirashell? (
dev-python/ipython[${PYTHON_USEDEP}]
dev-python/requests-oauthlib[${PYTHON_USEDEP}]
)
kerberos? ( dev-python/requests-kerberos[${PYTHON_USEDEP}] )
oauth? (
|| (
dev-python/pycryptodome[${PYTHON_USEDEP}]
dev-python/pycrypto[${PYTHON_USEDEP}]
)
dev-python/requests-oauthlib[${PYTHON_USEDEP}]
)
"