diff options
author | feld <feld@FreeBSD.org> | 2016-05-16 09:40:50 +0800 |
---|---|---|
committer | feld <feld@FreeBSD.org> | 2016-05-16 09:40:50 +0800 |
commit | 165fd7546342589420973707c4d2a06a82d58dba (patch) | |
tree | 43ef2f97f07b2e18f3e0a622e5e6b068c459558b | |
parent | 9e5243d6e1200e6953dccf4c07c3b30780a7a37f (diff) | |
download | freebsd-ports-gnome-165fd7546342589420973707c4d2a06a82d58dba.tar.gz freebsd-ports-gnome-165fd7546342589420973707c4d2a06a82d58dba.tar.zst freebsd-ports-gnome-165fd7546342589420973707c4d2a06a82d58dba.zip |
intspan is a set subclass that conveniently stores sets of integers.
Sets can be created from and displayed as integer spans such as
1-3,14,29,92-97 rather than exhaustive member listings.
WWW: https://pypi.python.org/pypi/intspan/
-rw-r--r-- | math/Makefile | 1 | ||||
-rw-r--r-- | math/py-intspan/Makefile | 18 | ||||
-rw-r--r-- | math/py-intspan/distinfo | 2 | ||||
-rw-r--r-- | math/py-intspan/pkg-descr | 5 |
4 files changed, 26 insertions, 0 deletions
diff --git a/math/Makefile b/math/Makefile index b344ab91342d..70083241a92e 100644 --- a/math/Makefile +++ b/math/Makefile @@ -601,6 +601,7 @@ SUBDIR += py-graphillion SUBDIR += py-gsl SUBDIR += py-igraph + SUBDIR += py-intspan SUBDIR += py-luminol SUBDIR += py-mathdom SUBDIR += py-matplotlib diff --git a/math/py-intspan/Makefile b/math/py-intspan/Makefile new file mode 100644 index 000000000000..cdff28bf0158 --- /dev/null +++ b/math/py-intspan/Makefile @@ -0,0 +1,18 @@ +# Created by: Mark Felder <feld@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= intspan +PORTVERSION= 1.5.2 +CATEGORIES= math python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= feld@FreeBSD.org +COMMENT= FInite element Automatic Tabulator + +LICENSE= APACHE20 + +USES= python zip +USE_PYTHON= distutils autoplist + +.include <bsd.port.mk> diff --git a/math/py-intspan/distinfo b/math/py-intspan/distinfo new file mode 100644 index 000000000000..a53252b840f5 --- /dev/null +++ b/math/py-intspan/distinfo @@ -0,0 +1,2 @@ +SHA256 (intspan-1.5.2.zip) = 68d3b4c8a0de270d75b6b0395e3c36fc43ec94c54343eebc1f744f4b64fffb5d +SIZE (intspan-1.5.2.zip) = 15229 diff --git a/math/py-intspan/pkg-descr b/math/py-intspan/pkg-descr new file mode 100644 index 000000000000..239c822ed627 --- /dev/null +++ b/math/py-intspan/pkg-descr @@ -0,0 +1,5 @@ +intspan is a set subclass that conveniently stores sets of integers. +Sets can be created from and displayed as integer spans such as +1-3,14,29,92-97 rather than exhaustive member listings. + +WWW: https://pypi.python.org/pypi/intspan/ |