1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-22 00:35:15 +00:00

textproc/py-openstep-plist: Add py-openstep-plist 0.3.0.post1

A parser for the "old style" OpenStep property list format (also known as ASCII
plist), written in Cython. Largely based on the CoreFoundation implementation.
This commit is contained in:
Po-Chuan Hsieh 2022-12-30 16:36:16 +08:00
parent c75c48c78b
commit f5b4e30c5e
No known key found for this signature in database
GPG Key ID: 9A4BD10F002DD04B
4 changed files with 30 additions and 0 deletions

View File

@ -1405,6 +1405,7 @@
SUBDIR += py-ocrmypdf
SUBDIR += py-openpyxl
SUBDIR += py-openstackdocstheme
SUBDIR += py-openstep-plist
SUBDIR += py-orange3-text
SUBDIR += py-os-api-ref
SUBDIR += py-packageurl-python

View File

@ -0,0 +1,24 @@
PORTNAME= openstep-plist
PORTVERSION= 0.3.0
DISTVERSIONSUFFIX= .post1
CATEGORIES= textproc python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= openstep_plist-${DISTVERSIONFULL}
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= ASCII plist parser written in Cython
WWW= https://github.com/fonttools/openstep-plist
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools_scm>=0:devel/py-setuptools_scm@${PY_FLAVOR}
USES= python:3.7+ zip
USE_PYTHON= autoplist concurrent cython distutils
post-install:
${FIND} ${STAGEDIR}${PYTHON_SITELIBDIR} -name '*.so' -exec ${STRIP_CMD} {} +
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1669057515
SHA256 (openstep_plist-0.3.0.post1.zip) = 18aff3d5eded9ebfbedfeba444a3c048324697bf8a39bb04361c0dd53bfeab0b
SIZE (openstep_plist-0.3.0.post1.zip) = 215537

View File

@ -0,0 +1,2 @@
A parser for the "old style" OpenStep property list format (also known as ASCII
plist), written in Cython. Largely based on the CoreFoundation implementation.