diff options
author | Matthias Andree <mandree@FreeBSD.org> | 2020-06-02 21:12:22 +0800 |
---|---|---|
committer | Matthias Andree <mandree@FreeBSD.org> | 2020-06-02 21:12:22 +0800 |
commit | 089344e3687a5782bfcb928c1fc5c28b2299ce3f (patch) | |
tree | 7389fd0c278f33fbfa1f938eff6becbd1474e793 /textproc | |
parent | 512580741f1ffd59e025b593c7773d4a0ba125ec (diff) | |
download | freebsd-ports-gnome-089344e3687a5782bfcb928c1fc5c28b2299ce3f.tar.gz freebsd-ports-gnome-089344e3687a5782bfcb928c1fc5c28b2299ce3f.tar.zst freebsd-ports-gnome-089344e3687a5782bfcb928c1fc5c28b2299ce3f.zip |
New port: textproc/py-iso3166: Standalone ISO 3166-1 country definitions
Self-contained ISO 3166-1 country definitions.
WWW: https://pypi.python.org/pypi/iso3166
First user: multimedia/streamlink
(kevans@ asked me to handle the commit on Sat May 30 via IRC,
I missed it, and he asked again today.)
PR: 241565
Submitted by: takefu@airport.fm (maintainer)
Reviewed by: koobs@, vvd@unislabs.com
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/py-iso3166/Makefile | 24 | ||||
-rw-r--r-- | textproc/py-iso3166/distinfo | 3 | ||||
-rw-r--r-- | textproc/py-iso3166/pkg-descr | 3 |
4 files changed, 31 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index 4562e23cf260..44befd033d30 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -1264,6 +1264,7 @@ SUBDIR += py-isbnlib SUBDIR += py-isbntools SUBDIR += py-iso-639 + SUBDIR += py-iso3166 SUBDIR += py-jc SUBDIR += py-jinja2-cli SUBDIR += py-jsonslicer diff --git a/textproc/py-iso3166/Makefile b/textproc/py-iso3166/Makefile new file mode 100644 index 000000000000..a06b87014cf4 --- /dev/null +++ b/textproc/py-iso3166/Makefile @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= iso3166 +PORTVERSION= 1.0.1 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= takefu@airport.fm +COMMENT= Standalone ISO 3166-1 country definitions + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist concurrent distutils +NO_ARCH= yes + +do-test: + @cd ${WRKSRC} && ${PYTHON_CMD} -m pytest -v -rs -o addopts= + +.include <bsd.port.mk> diff --git a/textproc/py-iso3166/distinfo b/textproc/py-iso3166/distinfo new file mode 100644 index 000000000000..8b8c957e6dde --- /dev/null +++ b/textproc/py-iso3166/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1586742202 +SHA256 (iso3166-1.0.1.tar.gz) = b1e58dbcf50fbb2c9c418ec7a6057f0cdb30b8f822ac852f72e71ba769dae8c5 +SIZE (iso3166-1.0.1.tar.gz) = 10052 diff --git a/textproc/py-iso3166/pkg-descr b/textproc/py-iso3166/pkg-descr new file mode 100644 index 000000000000..1519a512fc16 --- /dev/null +++ b/textproc/py-iso3166/pkg-descr @@ -0,0 +1,3 @@ +Self-contained ISO 3166-1 country definitions. + +WWW: https://pypi.python.org/pypi/iso3166 |