Date: Mon, 11 Jan 2016 21:29:26 +0000 (UTC) From: Roman Bogorodskiy <novel@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r405811 - in head/devel: . py-debtcollector Message-ID: <201601112129.u0BLTQbn004102@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: novel Date: Mon Jan 11 21:29:26 2016 New Revision: 405811 URL: https://svnweb.freebsd.org/changeset/ports/405811 Log: New port: devel/py-debtcollector A collection of Python deprecation patterns and strategies that help you collect your technical debt in a non-destructive manner. The goal of this library is to provide well documented developer facing deprecation patterns that start of with a basic set and can expand into a larger set of patterns as time goes on. The desired output of these patterns is to apply the warnings module to emit DeprecationWarning or PendingDeprecationWarning or similar derivative to developers using libraries (or potentially applications) about future deprecations. Differential Revision: D4851 Submitted by: Davide D'Amico <dave@gufi.org> Reviewed by: koobs Added: head/devel/py-debtcollector/ head/devel/py-debtcollector/Makefile (contents, props changed) head/devel/py-debtcollector/distinfo (contents, props changed) head/devel/py-debtcollector/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Jan 11 21:28:55 2016 (r405810) +++ head/devel/Makefile Mon Jan 11 21:29:26 2016 (r405811) @@ -3988,6 +3988,7 @@ SUBDIR += py-darcsver SUBDIR += py-dateutil SUBDIR += py-dbus + SUBDIR += py-debtcollector SUBDIR += py-decorator SUBDIR += py-decoratortools SUBDIR += py-defusedxml Added: head/devel/py-debtcollector/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-debtcollector/Makefile Mon Jan 11 21:29:26 2016 (r405811) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= debtcollector +PORTVERSION= 1.1.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= dave@gufi.org +COMMENT= Collection of Python deprecation patterns and strategies + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>=1.6:${PORTSDIR}/devel/py-pbr +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Babel>=1.3:${PORTSDIR}/devel/py-babel \ + ${PYTHON_PKGNAMEPREFIX}six>0:${PORTSDIR}/devel/py-six \ + ${PYTHON_PKGNAMEPREFIX}wrapt>0:${PORTSDIR}/devel/py-wrapt + +NO_ARCH= yes + +USES= python +USE_PYTHON= autoplist concurrent distutils + +.include <bsd.port.mk> Added: head/devel/py-debtcollector/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-debtcollector/distinfo Mon Jan 11 21:29:26 2016 (r405811) @@ -0,0 +1,2 @@ +SHA256 (debtcollector-1.1.0.tar.gz) = 87da37838bffbe61b7ba4986579e0ae06bc5f8eb2e197e89ef7419322655ae9b +SIZE (debtcollector-1.1.0.tar.gz) = 21563 Added: head/devel/py-debtcollector/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-debtcollector/pkg-descr Mon Jan 11 21:29:26 2016 (r405811) @@ -0,0 +1,11 @@ +A collection of Python deprecation patterns and strategies that help you +collect your technical debt in a non-destructive manner. + +The goal of this library is to provide well documented developer facing +deprecation patterns that start of with a basic set and can expand into +a larger set of patterns as time goes on. The desired output of these +patterns is to apply the warnings module to emit DeprecationWarning or +PendingDeprecationWarning or similar derivative to developers using +libraries (or potentially applications) about future deprecations. + +WWW: http://docs.openstack.org/developer/debtcollector/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201601112129.u0BLTQbn004102>