Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 16 May 2016 01:40:50 +0000 (UTC)
From:      Mark Felder <feld@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r415293 - in head/math: . py-intspan
Message-ID:  <201605160140.u4G1eoaO070052@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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>

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/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201605160140.u4G1eoaO070052>