svn commit: r545464 - head/devel/py-fastprogress

Danilo G. Baio dbaio at FreeBSD.org
Wed Aug 19 22:47:31 UTC 2020


Author: dbaio
Date: Wed Aug 19 22:47:31 2020
New Revision: 545464
URL: https://svnweb.freebsd.org/changeset/ports/545464

Log:
  devel/py-fastprogress: Not compatible with Python 2
  
  Missing dependency (configparser) and invalid syntax.
  
  File "/usr/local/lib/python2.7/site-packages/fastprogress/fastprogress.py", line 72
      end = '' if len(self.comment) == 0 else f' {self.comment}'
  SyntaxError: invalid syntax
  
  File "/usr/local/lib/python2.7/site-packages/fastprogress/core.py", line 10
      if h!= 0: return f'{h}:{m:02d}:{s:02d}'
  SyntaxError: invalid syntax
  
  Reported by:	pkg-fallout
  Approved by:	portmgr blanket

Modified:
  head/devel/py-fastprogress/Makefile

Modified: head/devel/py-fastprogress/Makefile
==============================================================================
--- head/devel/py-fastprogress/Makefile	Wed Aug 19 22:40:04 2020	(r545463)
+++ head/devel/py-fastprogress/Makefile	Wed Aug 19 22:47:31 2020	(r545464)
@@ -12,7 +12,7 @@ COMMENT=	Nested progress with plotting options
 LICENSE=	APACHE20
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-USES=		python
+USES=		python:3.5+
 USE_PYTHON=	distutils autoplist
 
 NO_ARCH=	yes


More information about the svn-ports-head mailing list