From 7f82b8f0a6dd7d56237719391ef5596c8645a46b Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Mon, 15 May 2017 09:36:32 -0400 Subject: dev-python/python-redmine: new version 2.0.2. Package-Manager: Portage-2.3.3, Repoman-2.3.1 --- dev-python/python-redmine/Manifest | 2 +- .../python-redmine/python-redmine-1.5.1.ebuild | 46 ---------------------- .../python-redmine/python-redmine-2.0.2.ebuild | 46 ++++++++++++++++++++++ 3 files changed, 47 insertions(+), 47 deletions(-) delete mode 100644 dev-python/python-redmine/python-redmine-1.5.1.ebuild create mode 100644 dev-python/python-redmine/python-redmine-2.0.2.ebuild diff --git a/dev-python/python-redmine/Manifest b/dev-python/python-redmine/Manifest index 49ec19618dab..f4f5d1468611 100644 --- a/dev-python/python-redmine/Manifest +++ b/dev-python/python-redmine/Manifest @@ -1 +1 @@ -DIST python-redmine-1.5.1.tar.gz 465595 SHA256 8a2ba7292693579656434e74817f7308e24e76ca05cf179a7645420f1203edcd SHA512 51a5deaaccc401f31f2ba74ad164c9d9a7df90b200121664779f1eee4cb871a2fdd139509e6201abb6e5203a46e00b98ca5ddcccf88e7e3a2fb9f509ffc36665 WHIRLPOOL 0113cd703badb0d6c90b1d8d3744f1fcbb839a6c990337b7581607ba7c3dcada9d4f75864b810f18b866ba18f3c2a50c0160443b02dfe8387c694f250b007374 +DIST python-redmine-2.0.2.tar.gz 559017 SHA256 e65a0213be1b3b246201e3f52e36ad0971a966f847e84c38f653e5f712bb98a1 SHA512 3f8e11315e8e2b4474e8b981bd801ef75857fe73e8ed18d27f64223703d18ea2061416ed38ea35c4a4460a4ccba167b41ab48e2489930181951e9e2a5f53ec12 WHIRLPOOL 7e2cfe63f67ce2a00145f7510b5e79cf010ec5a823f4d7298873cd800b32b557b08dfbf04bb31c49b4cf56a56b0d08f43ca5da121dc73c48ae63775752a2518a diff --git a/dev-python/python-redmine/python-redmine-1.5.1.ebuild b/dev-python/python-redmine/python-redmine-1.5.1.ebuild deleted file mode 100644 index cc542e53863a..000000000000 --- a/dev-python/python-redmine/python-redmine-1.5.1.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python2_7 python3_{4,5} pypy ) - -inherit distutils-r1 - -DESCRIPTION="Python interface to the Redmine REST API" -HOMEPAGE="https://github.com/maxtepkeev/python-redmine" -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="test" - -RDEPEND="dev-python/requests[${PYTHON_USEDEP}]" - -# This package bundles dev-python/requests, so setup.py won't check for -# it. As a result, we don't need RDEPEND in DEPEND unconditionally. -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - test? ( - ${RDEPEND} - dev-python/coverage[${PYTHON_USEDEP}] - $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python2_7) - dev-python/nose[${PYTHON_USEDEP}] - )" - -python_prepare_all() { - # Remove the bundled copy of dev-python/requests... - rm -r redmine/packages \ - || die 'failed to remove the bundled copy of dev-python/requests' - - # and replace its local import statement with a global one. - sed -i 's/from .packages import requests/import requests/' \ - redmine/__init__.py \ - || die 'failed to replace the dev-python/requests library import' - - distutils-r1_python_prepare_all -} - -python_test() { - nosetests || die "tests failed under ${EPYTHON}" -} diff --git a/dev-python/python-redmine/python-redmine-2.0.2.ebuild b/dev-python/python-redmine/python-redmine-2.0.2.ebuild new file mode 100644 index 000000000000..53c1001ea04d --- /dev/null +++ b/dev-python/python-redmine/python-redmine-2.0.2.ebuild @@ -0,0 +1,46 @@ +# 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} pypy ) + +inherit distutils-r1 + +DESCRIPTION="Python interface to the Redmine REST API" +HOMEPAGE="https://github.com/maxtepkeev/python-redmine" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND="dev-python/requests[${PYTHON_USEDEP}]" + +# This package bundles dev-python/requests, so setup.py won't check for +# it. As a result, we don't need RDEPEND in DEPEND unconditionally. +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + ${RDEPEND} + dev-python/coverage[${PYTHON_USEDEP}] + $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python2_7) + dev-python/nose[${PYTHON_USEDEP}] + )" + +python_prepare_all() { + # Remove the bundled copy of dev-python/requests... + rm -r redminelib/packages/requests \ + || die 'failed to remove the bundled copy of dev-python/requests' + + # and replace its local import statement with a global one. + sed -i redminelib/packages/__init__.py \ + -e 's/from . import requests/import requests/' \ + || die 'failed to replace the dev-python/requests library import' + + distutils-r1_python_prepare_all +} + +python_test() { + nosetests || die "tests failed under ${EPYTHON}" +} -- cgit v1.2.3-65-gdbad