From owner-svn-ports-head@freebsd.org Mon May 16 01:40:52 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 19202B3C68D; Mon, 16 May 2016 01:40:52 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C3CB61E2D; Mon, 16 May 2016 01:40:51 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4G1eobC070056; Mon, 16 May 2016 01:40:50 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4G1eoaO070052; Mon, 16 May 2016 01:40:50 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201605160140.u4G1eoaO070052@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Mon, 16 May 2016 01:40:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r415293 - in head/math: . py-intspan X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2016 01:40:52 -0000 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 +# $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 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/