svn commit: r415293 - in head/math: . py-intspan

Mark Felder feld at FreeBSD.org
Mon May 16 01:40:52 UTC 2016


Author: feld
Date: Mon May 16 01:40:50 2016
New Revision: 415293
URL: https://svnweb.freebsd.org/changeset/ports/415293

Log:
  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/

Added:
  head/math/py-intspan/
  head/math/py-intspan/Makefile   (contents, props changed)
  head/math/py-intspan/distinfo   (contents, props changed)
  head/math/py-intspan/pkg-descr   (contents, props changed)
Modified:
  head/math/Makefile

Modified: head/math/Makefile
==============================================================================
--- head/math/Makefile	Mon May 16 00:29:36 2016	(r415292)
+++ head/math/Makefile	Mon May 16 01:40:50 2016	(r415293)
@@ -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

Added: head/math/py-intspan/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/py-intspan/Makefile	Mon May 16 01:40:50 2016	(r415293)
@@ -0,0 +1,18 @@
+# Created by: Mark Felder <feld at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	intspan
+PORTVERSION=	1.5.2
+CATEGORIES=	math python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	feld at FreeBSD.org
+COMMENT=	FInite element Automatic Tabulator
+
+LICENSE=	APACHE20
+
+USES=		python zip
+USE_PYTHON=	distutils autoplist
+
+.include <bsd.port.mk>

Added: head/math/py-intspan/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/py-intspan/distinfo	Mon May 16 01:40:50 2016	(r415293)
@@ -0,0 +1,2 @@
+SHA256 (intspan-1.5.2.zip) = 68d3b4c8a0de270d75b6b0395e3c36fc43ec94c54343eebc1f744f4b64fffb5d
+SIZE (intspan-1.5.2.zip) = 15229

Added: head/math/py-intspan/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/py-intspan/pkg-descr	Mon May 16 01:40:50 2016	(r415293)
@@ -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/


More information about the svn-ports-all mailing list