Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 1 Jul 2015 09:26:45 +0000 (UTC)
From:      Johannes Jost Meixner <xmj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r391038 - in head/devel/py-pygitup: . files
Message-ID:  <201507010926.t619Qjuc003227@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: xmj
Date: Wed Jul  1 09:26:44 2015
New Revision: 391038
URL: https://svnweb.freebsd.org/changeset/ports/391038

Log:
  devel/py-pygitup: fix port
  
  - fix RUN_DEPENDS
  - fix install_requires in setup.py patch
  - while there, add dos2unix
  
  PR:		199336
  Submitted by:	Maxim Filimonov

Added:
  head/devel/py-pygitup/files/
  head/devel/py-pygitup/files/patch-setup.py   (contents, props changed)
Modified:
  head/devel/py-pygitup/Makefile

Modified: head/devel/py-pygitup/Makefile
==============================================================================
--- head/devel/py-pygitup/Makefile	Wed Jul  1 08:35:06 2015	(r391037)
+++ head/devel/py-pygitup/Makefile	Wed Jul  1 09:26:44 2015	(r391038)
@@ -11,12 +11,12 @@ COMMENT=	Python implementation of 'git u
 
 LICENSE=	MIT
 
-RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pygit2>=0.21.1:${PORTSDIR}/devel/py-pygit2 \
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}GitPython>=0.3.6:${PORTSDIR}/devel/py-gitpython \
 	${PYTHON_PKGNAMEPREFIX}colorama>=0.3.2:${PORTSDIR}/devel/py-colorama \
 	${PYTHON_PKGNAMEPREFIX}termcolor>=1.1.0:${PORTSDIR}/devel/py-termcolor \
 	${PYTHON_PKGNAMEPREFIX}docopt>=0.6.1:${PORTSDIR}/devel/py-docopt
 
-USES=		python zip
+USES=		python zip dos2unix
 USE_PYTHON=	autoplist distutils
 
 .include <bsd.port.mk>

Added: head/devel/py-pygitup/files/patch-setup.py
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pygitup/files/patch-setup.py	Wed Jul  1 09:26:44 2015	(r391038)
@@ -0,0 +1,13 @@
+--- setup.py.orig	2015-07-01 09:15:37 UTC
++++ setup.py
+@@ -6,8 +6,8 @@ setup(
+     version="1.2.2",
+     packages=find_packages(exclude=["tests"]),
+     scripts=['PyGitUp/gitup.py'],
+-    install_requires=['GitPython==0.3.2.1', 'colorama==0.3.2',
+-                      'termcolor==1.1.0', 'docopt==0.6.1'],
++    install_requires=['GitPython>=0.3.2.1', 'colorama>=0.3.2',
++                      'termcolor>=1.1.0', 'docopt>=0.6.1'],
+ 
+     # Tests
+     test_suite="nose.collector",



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201507010926.t619Qjuc003227>