View | Details | Raw Unified | Return to bug 199336 | 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.orig2015-04-10 00:05:34.000000000 +0300
2
+++ setup.py2015-04-10 00:06:01.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",
(-)pkg-descr (-3 / +3 lines)
Lines 1-5 Link Here
1
PyGitUp is a Python implementation of the great aanand/git-up/. It
1
PyGitUp is a Python implementation of the great aanand/git-up/. It not only 
2
not only fully covers the abilities of git-up and should be a drop-in
2
fully covers the abilities of git-up and should be a drop-in replacement, but 
3
replacement, but also extends it slightly.
3
also extends it slightly.
4
4
5
WWW: https://pypi.python.org/pypi/git-up
5
WWW: https://pypi.python.org/pypi/git-up

Return to bug 199336