diff options
Diffstat (limited to 'dev-python/clint')
-rw-r--r-- | dev-python/clint/clint-0.5.1-r2.ebuild (renamed from dev-python/clint/clint-0.5.1-r1.ebuild) | 4 | ||||
-rw-r--r-- | dev-python/clint/files/clint-0.5.1-disable-args-dependency.patch | 19 |
2 files changed, 22 insertions, 1 deletions
diff --git a/dev-python/clint/clint-0.5.1-r1.ebuild b/dev-python/clint/clint-0.5.1-r2.ebuild index 89e08c909a9e..f62be93bf388 100644 --- a/dev-python/clint/clint-0.5.1-r1.ebuild +++ b/dev-python/clint/clint-0.5.1-r2.ebuild @@ -22,7 +22,9 @@ DEPEND=" doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) test? ( dev-python/pytest[${PYTHON_USEDEP}] ) " -RDEPEND="dev-python/args[${PYTHON_USEDEP}]" + +# https://github.com/kennethreitz-archive/clint/pull/180 +PATCHES=( "${FILESDIR}/${P}-disable-args-dependency.patch" ) python_compile_all() { use doc && emake -C docs html diff --git a/dev-python/clint/files/clint-0.5.1-disable-args-dependency.patch b/dev-python/clint/files/clint-0.5.1-disable-args-dependency.patch new file mode 100644 index 000000000000..8b648dbc735d --- /dev/null +++ b/dev-python/clint/files/clint-0.5.1-disable-args-dependency.patch @@ -0,0 +1,19 @@ +commit e12338aa8f317c6f7e99fc2f4c2dc9424299b4ab +Author: Louis Sautier <sautier.louis@gmail.com> +Date: Sun Sep 13 16:54:20 2020 +0200 + + Do not require bundled args module + +diff --git a/setup.py b/setup.py +index 0221184..e9e3fa5 100755 +--- a/setup.py ++++ b/setup.py +@@ -19,7 +19,7 @@ if sys.argv[-1] == "publish": + publish() + sys.exit() + +-required = ['args'] ++required = [''] + + setup( + name='clint', |