svn commit: r423485 - in head/devel/py-gitless: . files

Carlos J. Puga Medina cpm at FreeBSD.org
Fri Oct 7 21:41:03 UTC 2016


Author: cpm
Date: Fri Oct  7 21:41:01 2016
New Revision: 423485
URL: https://svnweb.freebsd.org/changeset/ports/423485

Log:
  - Fix reqs declaration in setup.py to permit dependencies >= required version.
  - Bump PORTREVISION
  
  Approved by:	amdmi3 (mentor)

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

Modified: head/devel/py-gitless/Makefile
==============================================================================
--- head/devel/py-gitless/Makefile	Fri Oct  7 20:52:13 2016	(r423484)
+++ head/devel/py-gitless/Makefile	Fri Oct  7 21:41:01 2016	(r423485)
@@ -4,6 +4,7 @@
 PORTNAME=	gitless
 PORTVERSION=	0.8.3
 DISTVERSIONPREFIX=	v
+PORTREVISION=	1
 CATEGORIES=	devel python
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
 

Added: head/devel/py-gitless/files/patch-setup.py
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-gitless/files/patch-setup.py	Fri Oct  7 21:41:01 2016	(r423485)
@@ -0,0 +1,11 @@
+--- setup.py.orig	2016-10-06 16:22:24 UTC
++++ setup.py
+@@ -36,7 +36,7 @@ if sys.argv[-1] == 'gl-build':
+   sys.exit()
+ 
+ 
+-reqs = ['pygit2==0.23.0', 'sh==1.11', 'clint==0.3.6']
++reqs = ['pygit2>=0.23.0', 'sh>=1.11', 'clint>=0.3.6']
+ if sys.version_info < (2, 7) or (
+     sys.version_info < (3, 3) and sys.version_info > (3, 0)):
+   reqs.append('argparse')


More information about the svn-ports-head mailing list