svn commit: r531457 - in head/devel: . py-flynt
Craig Leres
leres at FreeBSD.org
Sat Apr 11 19:51:25 UTC 2020
Author: leres
Date: Sat Apr 11 19:51:24 2020
New Revision: 531457
URL: https://svnweb.freebsd.org/changeset/ports/531457
Log:
devel/py-flynt: New port
flynt is a command line tool to automatically convert a project's
Python code from old "%-formatted" and .format(...) strings into
Python 3.6+'s "f-strings".
WWW: https://github.com/ikamensh/
Added:
head/devel/py-flynt/
head/devel/py-flynt/Makefile (contents, props changed)
head/devel/py-flynt/distinfo (contents, props changed)
head/devel/py-flynt/pkg-descr (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Sat Apr 11 19:14:54 2020 (r531456)
+++ head/devel/Makefile Sat Apr 11 19:51:24 2020 (r531457)
@@ -4383,6 +4383,7 @@
SUBDIR += py-fluent-logger
SUBDIR += py-flufl.i18n
SUBDIR += py-flufl.lock
+ SUBDIR += py-flynt
SUBDIR += py-foolscap
SUBDIR += py-freebsd
SUBDIR += py-freebsd-sysctl
Added: head/devel/py-flynt/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-flynt/Makefile Sat Apr 11 19:51:24 2020 (r531457)
@@ -0,0 +1,22 @@
+# Created by: Craig Leres <leres at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= flynt
+PORTVERSION= 0.46
+CATEGORIES= devel python
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= leres at FreeBSD.org
+COMMENT= Convert Python scripts from string formatting to f-strings
+
+LICENSE= MIT
+
+RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}astor>0:devel/py-astor@${PY_FLAVOR}
+
+USES= python:3.6+
+USE_GITHUB= yes
+USE_PYTHON= autoplist distutils
+
+GH_ACCOUNT= ikamensh
+
+.include <bsd.port.mk>
Added: head/devel/py-flynt/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-flynt/distinfo Sat Apr 11 19:51:24 2020 (r531457)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1586627490
+SHA256 (ikamensh-flynt-0.46_GH0.tar.gz) = 3df7a37c44e582a84cc9a335c306207d2aace2db79a5fee919abce1c211dd95f
+SIZE (ikamensh-flynt-0.46_GH0.tar.gz) = 38930
Added: head/devel/py-flynt/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-flynt/pkg-descr Sat Apr 11 19:51:24 2020 (r531457)
@@ -0,0 +1,5 @@
+flynt is a command line tool to automatically convert a project's
+Python code from old "%-formatted" and .format(...) strings into
+Python 3.6+'s "f-strings".
+
+WWW: https://github.com/ikamensh/
More information about the svn-ports-head
mailing list