dev-python/catkin_pkg: Remove argparse dep from setup.py

Package-Manager: Portage-2.3.3, Repoman-2.3.1
This commit is contained in:
Alexis Ballier
2017-02-16 05:12:59 +01:00
parent 46347f2f30
commit e7135ebb9b
3 changed files with 14 additions and 2 deletions

View File

@@ -37,7 +37,7 @@ RDEPEND="
DEPEND="${RDEPEND}
test? ( dev-python/mock[${PYTHON_USEDEP}] dev-python/nose[${PYTHON_USEDEP}] )
"
PATCHES=( "${FILESDIR}/catkin_prefix.patch" )
PATCHES=( "${FILESDIR}/catkin_prefix.patch" "${FILESDIR}/argparse.patch" )
python_test() {
nosetests -s --tests test || die

View File

@@ -37,7 +37,7 @@ RDEPEND="
DEPEND="${RDEPEND}
test? ( dev-python/mock[${PYTHON_USEDEP}] dev-python/nose[${PYTHON_USEDEP}] )
"
PATCHES=( "${FILESDIR}/catkin_prefix.patch" )
PATCHES=( "${FILESDIR}/catkin_prefix.patch" "${FILESDIR}/argparse.patch" )
python_test() {
nosetests -s --tests test || die

View File

@@ -0,0 +1,12 @@
Index: catkin_pkg-0.3.1/setup.py
===================================================================
--- catkin_pkg-0.3.1.orig/setup.py
+++ catkin_pkg-0.3.1/setup.py
@@ -31,7 +31,6 @@ kwargs = {
'long_description': 'Library for retrieving information about catkin packages.',
'license': 'BSD',
'install_requires': [
- 'argparse',
'docutils',
'python-dateutil'
],