Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 19 Aug 2020 22:47:31 +0000 (UTC)
From:      "Danilo G. Baio" <dbaio@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r545464 - head/devel/py-fastprogress
Message-ID:  <202008192247.07JMlVKG020079@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



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