From owner-svn-ports-all@freebsd.org Sun Apr 5 19:53:47 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 31A5B268C60; Sun, 5 Apr 2020 19:53:47 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48wPVx1t9Vz4SrL; Sun, 5 Apr 2020 19:53:44 +0000 (UTC) (envelope-from sunpoet@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 687C31B07B; Sun, 5 Apr 2020 19:53:37 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 035JrbET003938; Sun, 5 Apr 2020 19:53:37 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 035JraqR003934; Sun, 5 Apr 2020 19:53:36 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <202004051953.035JraqR003934@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 5 Apr 2020 19:53:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r530810 - in head/devel: . py-intervals X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . py-intervals X-SVN-Commit-Revision: 530810 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Apr 2020 19:53:47 -0000 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 +# $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 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