From d5ef7540d60de840d03b0ba0224e446d0c2b5e7d Mon Sep 17 00:00:00 2001 From: William Grzybowski Date: Wed, 4 Apr 2018 21:54:02 +0000 Subject: [PATCH] devel/py-bidict: Bidirectional map implementation and related functionality WWW: https://github.com/jab/bidict --- devel/Makefile | 1 + devel/py-bidict/Makefile | 21 +++++++++++++++++++++ devel/py-bidict/distinfo | 3 +++ devel/py-bidict/pkg-descr | 3 +++ 4 files changed, 28 insertions(+) create mode 100644 devel/py-bidict/Makefile create mode 100644 devel/py-bidict/distinfo create mode 100644 devel/py-bidict/pkg-descr diff --git a/devel/Makefile b/devel/Makefile index 1ec47ef6c362..d98a8c9a6ce7 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -4291,6 +4291,7 @@ SUBDIR += py-backports_abc SUBDIR += py-bandit SUBDIR += py-bcdoc + SUBDIR += py-bidict SUBDIR += py-billiard SUBDIR += py-binplist SUBDIR += py-biplist diff --git a/devel/py-bidict/Makefile b/devel/py-bidict/Makefile new file mode 100644 index 000000000000..6433db26f4b2 --- /dev/null +++ b/devel/py-bidict/Makefile @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= bidict +PORTVERSION= 0.15.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= wg@FreeBSD.org +COMMENT= Bidirectional map implementation and related functionality + +LICENSE= MPL20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools_scm>0:devel/py-setuptools_scm@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pytest-runner>0:devel/py-pytest-runner@${FLAVOR} + +USES= python +USE_PYTHON= autoplist concurrent distutils + +.include diff --git a/devel/py-bidict/distinfo b/devel/py-bidict/distinfo new file mode 100644 index 000000000000..9358fde217f5 --- /dev/null +++ b/devel/py-bidict/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1522880253 +SHA256 (bidict-0.15.0.tar.gz) = fbc2cf5dee6a7a4c72eb80ecb4bc81560154d668c0f11729361e4baddba0b686 +SIZE (bidict-0.15.0.tar.gz) = 260807 diff --git a/devel/py-bidict/pkg-descr b/devel/py-bidict/pkg-descr new file mode 100644 index 000000000000..035abe7d269b --- /dev/null +++ b/devel/py-bidict/pkg-descr @@ -0,0 +1,3 @@ +Efficient, Pythonic bidirectional map implementation and related functionality. + +WWW: https://github.com/jab/bidict