diff options
author | Kurt Jaeger <pi@FreeBSD.org> | 2023-02-06 16:03:45 +0000 |
---|---|---|
committer | Kurt Jaeger <pi@FreeBSD.org> | 2023-02-06 16:08:52 +0000 |
commit | 15917e6cc978992f55fef6f3889818ecdb52878a (patch) | |
tree | 6eef0bdf1b9c3b1429ee8c2c95a0c30a88738a3d | |
parent | 38a46fcea80baa5c0352c1841f6ca5bd2e1da17c (diff) | |
download | ports-15917e6cc978992f55fef6f3889818ecdb52878a.tar.gz ports-15917e6cc978992f55fef6f3889818ecdb52878a.zip |
print/py-pydyf: New port, version 0.5.0
A low-level PDF generator written in Python and based
on PDF specification 1.7.
-rw-r--r-- | print/Makefile | 1 | ||||
-rw-r--r-- | print/py-pydyf/Makefile | 18 | ||||
-rw-r--r-- | print/py-pydyf/distinfo | 3 | ||||
-rw-r--r-- | print/py-pydyf/pkg-descr | 2 |
4 files changed, 24 insertions, 0 deletions
diff --git a/print/Makefile b/print/Makefile index 3e4db1f41e23..15355f006216 100644 --- a/print/Makefile +++ b/print/Makefile @@ -187,6 +187,7 @@ SUBDIR += py-preppy SUBDIR += py-psautohint SUBDIR += py-pycups + SUBDIR += py-pydyf SUBDIR += py-pypdf SUBDIR += py-pypdf2 SUBDIR += py-pypdf3 diff --git a/print/py-pydyf/Makefile b/print/py-pydyf/Makefile new file mode 100644 index 000000000000..63f84cc46a70 --- /dev/null +++ b/print/py-pydyf/Makefile @@ -0,0 +1,18 @@ +PORTNAME= pydyf +PORTVERSION= 0.5.0 +CATEGORIES= print python +MASTER_SITES= PYPI +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= pi@FreeBSD.org +COMMENT= Low-level PDF generator based on PDF spec 1.7 +WWW= https://doc.courtbouillon.org/pydyf/ + +LICENSE= BSD + +USES= python:3.6+ +USE_PYTHON= pep517 autoplist + +NO_ARCH= yes + +.include <bsd.port.mk> diff --git a/print/py-pydyf/distinfo b/print/py-pydyf/distinfo new file mode 100644 index 000000000000..b74fb379544b --- /dev/null +++ b/print/py-pydyf/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1675690266 +SHA256 (pydyf-0.5.0.tar.gz) = 51e751ae1504037c1fc1f4815119137b011802cd5f6c3539db066c455b14a7e1 +SIZE (pydyf-0.5.0.tar.gz) = 15092 diff --git a/print/py-pydyf/pkg-descr b/print/py-pydyf/pkg-descr new file mode 100644 index 000000000000..fa6c4008ad5c --- /dev/null +++ b/print/py-pydyf/pkg-descr @@ -0,0 +1,2 @@ +A low-level PDF generator written in Python and based +on PDF specification 1.7. |