git: c9b75004648e - main - devel/py-fortranformat: new port
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 09 Sep 2026 19:29:28 UTC
The branch main has been updated by michaelo:
URL: https://cgit.FreeBSD.org/ports/commit/?id=c9b75004648e17f5d91652dc9ff67820bd0b1243
commit c9b75004648e17f5d91652dc9ff67820bd0b1243
Author: Daniel O'Connor <darius@dons.net.au>
AuthorDate: 2026-07-08 01:50:33 +0000
Commit: Michael Osipov <michaelo@FreeBSD.org>
CommitDate: 2026-09-09 19:28:53 +0000
devel/py-fortranformat: new port
Generates text from a Python list of variables or will read a line of text
into Python variables according to the FORTRAN format statement passed.
PR: 282396
---
devel/py-fortranformat/Makefile | 21 +++++++++++++++++++++
devel/py-fortranformat/distinfo | 3 +++
devel/py-fortranformat/pkg-descr | 3 +++
3 files changed, 27 insertions(+)
diff --git a/devel/py-fortranformat/Makefile b/devel/py-fortranformat/Makefile
new file mode 100644
index 000000000000..49d4afdc7820
--- /dev/null
+++ b/devel/py-fortranformat/Makefile
@@ -0,0 +1,21 @@
+PORTNAME= fortranformat
+DISTVERSION= 2.0.3
+CATEGORIES= devel python
+MASTER_SITES= PYPI
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= doconnor@gsoft.com.au
+COMMENT= Generate and parse text using FORTRAN format records
+WWW= https://github.com/brendanarnold/py-fortranformat
+
+LICENSE= MIT
+LICENSE_FILE= ${WRKSRC}/LICENSE
+
+BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}poetry-core>=1.0.0:devel/py-poetry-core@${PY_FLAVOR}
+
+USES= python
+USE_PYTHON= autoplist pep517
+
+NO_ARCH= yes
+
+.include <bsd.port.mk>
diff --git a/devel/py-fortranformat/distinfo b/devel/py-fortranformat/distinfo
new file mode 100644
index 000000000000..237f488a791f
--- /dev/null
+++ b/devel/py-fortranformat/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1757315984
+SHA256 (fortranformat-2.0.3.tar.gz) = 1e765c01a66208d54d75cae140ba9f1adda0548aaad8538cba8da39e69ac178c
+SIZE (fortranformat-2.0.3.tar.gz) = 18657
diff --git a/devel/py-fortranformat/pkg-descr b/devel/py-fortranformat/pkg-descr
new file mode 100644
index 000000000000..fbb0255fd465
--- /dev/null
+++ b/devel/py-fortranformat/pkg-descr
@@ -0,0 +1,3 @@
+Generates text from a Python list of variables or will read a line of
+text into Python variables according to the FORTRAN format statement
+passed.