View | Details | Raw Unified | Return to bug 199335 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile (-1 / +1 lines)
Lines 11-17 Link Here
11
11
12
LICENSE=	MIT
12
LICENSE=	MIT
13
13
14
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pygit2>=0.21.1:${PORTSDIR}/devel/py-pygit2 \
14
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}GitPython>=0.3.6:${PORTSDIR}/devel/py-gitpython \
15
	${PYTHON_PKGNAMEPREFIX}colorama>=0.3.2:${PORTSDIR}/devel/py-colorama \
15
	${PYTHON_PKGNAMEPREFIX}colorama>=0.3.2:${PORTSDIR}/devel/py-colorama \
16
	${PYTHON_PKGNAMEPREFIX}termcolor>=1.1.0:${PORTSDIR}/devel/py-termcolor \
16
	${PYTHON_PKGNAMEPREFIX}termcolor>=1.1.0:${PORTSDIR}/devel/py-termcolor \
17
	${PYTHON_PKGNAMEPREFIX}docopt>=0.6.1:${PORTSDIR}/devel/py-docopt
17
	${PYTHON_PKGNAMEPREFIX}docopt>=0.6.1:${PORTSDIR}/devel/py-docopt
(-)files/patch-setup.py (+13 lines)
Line 0 Link Here
1
--- setup.py.orig	2015-04-10 01:13:14.000000000 +0300
2
+++ setup.py	2015-04-10 01:13:30.000000000 +0300
3
@@ -6,8 +6,8 @@
4
     version="1.2.2",
5
     packages=find_packages(exclude=["tests"]),
6
     scripts=['PyGitUp/gitup.py'],
7
-    install_requires=['GitPython==0.3.2.1', 'colorama==0.3.2',
8
-                      'termcolor==1.1.0', 'docopt==0.6.1'],
9
+    install_requires=['GitPython>=0.3.2.1', 'colorama>=0.3.2',
10
+                      'termcolor>=1.1.0', 'docopt>=0.6.1'],
11
 
12
     # Tests
13
     test_suite="nose.collector",

Return to bug 199335