dev-python/python-bugzilla: Bump version to v2.1.0

Package-Manager: Portage-2.3.7, Repoman-2.3.3
This commit is contained in:
Nelo-T. Wallus
2017-08-15 19:39:45 +02:00
committed by Andreas K. Hüttel
parent 830b4f645f
commit 87ce2aed9a
2 changed files with 33 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST python-bugzilla-1.2.2.tar.gz 76026 SHA256 e4606c325960f9e3eb90aac26014348c96160d77bbee09b7c31c211d38433922 SHA512 bb4ce43ffbf054097bd537404861848dd4ff5883fa63f156dfa90bea9f2e89cfaf0670980ec290a3d9c90cee268709b914e8bd5bd38b7f2e29c8d7fbd0215ac2 WHIRLPOOL cd37177dd5ebcf3016ab870d76e9a2bb655c3d6d0ef8884820d1646daad9f364c71c62d156bb3f60c5a4fffc5b92255f9db9da9c9771f2c95b7494fd294bc75a
DIST python-bugzilla-2.1.0.tar.gz 78791 SHA256 f3145ab86c299389f3686fc44bb7c8b70eb1a9ccd4a7bafe578b5c4d450c8250 SHA512 40dd331e2dbb4d70ce6d356eb800d6242ef9878112310087761c8dccb7f05b259f0f5fdee6821713a84c68f1e5f9e0bb6ee45542bc385f00822b97344371239e WHIRLPOOL 4af78e7739a9276c0226d95ff25ba47b89e46de8539f864edae7e2678a90b6defe85684c36df0dc3490fca3f151cc917394bf4c14e95666c488c5979af8be1d8

View File

@@ -0,0 +1,32 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
inherit distutils-r1
DESCRIPTION="A python module for interacting with Bugzilla over XMLRPC"
HOMEPAGE="https://github.com/python-bugzilla/python-bugzilla"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
IUSE="test"
LICENSE="GPL-2"
SLOT="0"
RDEPEND="
|| ( dev-python/python-magic[${PYTHON_USEDEP}] sys-apps/file[python,${PYTHON_USEDEP}] )
dev-python/requests[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/coverage
dev-python/pep8
)
"
python_test() {
"${EPYTHON}" ./setup.py test
}