Date: Sun, 5 Apr 2020 19:53:36 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r530810 - in head/devel: . py-intervals Message-ID: <202004051953.035JraqR003934@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Sun Apr 5 19:53:35 2020 New Revision: 530810 URL: https://svnweb.freebsd.org/changeset/ports/530810 Log: Add py-intervals 0.8.1 Intervals can be initialized using the class constructor, various factory methods or from_string class method. The recommended way is to use the factory methods. WWW: https://github.com/kvesteri/intervals Added: head/devel/py-intervals/ head/devel/py-intervals/Makefile (contents, props changed) head/devel/py-intervals/distinfo (contents, props changed) head/devel/py-intervals/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Apr 5 19:53:29 2020 (r530809) +++ head/devel/Makefile Sun Apr 5 19:53:35 2020 (r530810) @@ -4473,6 +4473,7 @@ SUBDIR += py-iniparse SUBDIR += py-instant SUBDIR += py-intbitset + SUBDIR += py-intervals SUBDIR += py-intervaltree SUBDIR += py-invoke SUBDIR += py-ioflo Added: head/devel/py-intervals/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-intervals/Makefile Sun Apr 5 19:53:35 2020 (r530810) @@ -0,0 +1,23 @@ +# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= intervals +PORTVERSION= 0.8.1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Handle intervals (ranges of comparable objects) + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}infinity>=0.1.3:devel/py-infinity@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/devel/py-intervals/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-intervals/distinfo Sun Apr 5 19:53:35 2020 (r530810) @@ -0,0 +1,3 @@ +TIMESTAMP = 1586082583 +SHA256 (intervals-0.8.1.tar.gz) = 37921da1407a5e9384e8e1350cfb8500f8d0d69fc43d03d01a4fdc6e7a7c7166 +SIZE (intervals-0.8.1.tar.gz) = 15255 Added: head/devel/py-intervals/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-intervals/pkg-descr Sun Apr 5 19:53:35 2020 (r530810) @@ -0,0 +1,5 @@ +Intervals can be initialized using the class constructor, various factory +methods or from_string class method. The recommended way is to use the factory +methods. + +WWW: https://github.com/kvesteri/intervals
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202004051953.035JraqR003934>