From owner-svn-ports-head@freebsd.org Sat Nov 12 20:35:57 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 62178C3EED3; Sat, 12 Nov 2016 20:35:57 +0000 (UTC) (envelope-from pi@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 1F5961435; Sat, 12 Nov 2016 20:35:57 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uACKZugi007241; Sat, 12 Nov 2016 20:35:56 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uACKZusW007237; Sat, 12 Nov 2016 20:35:56 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201611122035.uACKZusW007237@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sat, 12 Nov 2016 20:35:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r425992 - in head/devel: . py-constantly 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.23 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: Sat, 12 Nov 2016 20:35:57 -0000 Author: pi Date: Sat Nov 12 20:35:55 2016 New Revision: 425992 URL: https://svnweb.freebsd.org/changeset/ports/425992 Log: New port: devel/py-constantly A library that provides symbolic constant support. It includes collections and constants with text, numeric, and bit flag values. Originally twisted.python.constants from the Twisted project. WWW: https://pypi.python.org/pypi/constantly PR: 214447 Submitted by: Yuri Victorovich Added: head/devel/py-constantly/ head/devel/py-constantly/Makefile (contents, props changed) head/devel/py-constantly/distinfo (contents, props changed) head/devel/py-constantly/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Nov 12 20:31:40 2016 (r425991) +++ head/devel/Makefile Sat Nov 12 20:35:55 2016 (r425992) @@ -4085,6 +4085,7 @@ SUBDIR += py-configargparse SUBDIR += py-configobj SUBDIR += py-configparser + SUBDIR += py-constantly SUBDIR += py-construct SUBDIR += py-contextlib2 SUBDIR += py-country Added: head/devel/py-constantly/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-constantly/Makefile Sat Nov 12 20:35:55 2016 (r425992) @@ -0,0 +1,19 @@ +# Created by: Yuri Victorovich +# $FreeBSD$ + +PORTNAME= constantly +PORTVERSION= 15.1.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@rawbw.com +COMMENT= Provides symbolic constant support to Python projects + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= python +USE_PYTHON= distutils autoplist + +.include Added: head/devel/py-constantly/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-constantly/distinfo Sat Nov 12 20:35:55 2016 (r425992) @@ -0,0 +1,3 @@ +TIMESTAMP = 1478965100 +SHA256 (constantly-15.1.0.tar.gz) = 586372eb92059873e29eba4f9dec8381541b4d3834660707faf8ba59146dfc35 +SIZE (constantly-15.1.0.tar.gz) = 21465 Added: head/devel/py-constantly/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-constantly/pkg-descr Sat Nov 12 20:35:55 2016 (r425992) @@ -0,0 +1,5 @@ +A library that provides symbolic constant support. It includes collections +and constants with text, numeric, and bit flag values. Originally +twisted.python.constants from the Twisted project. + +WWW: https://pypi.python.org/pypi/constantly