From owner-svn-ports-head@freebsd.org Mon Jan 11 21:29:28 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 482EAA6BC79; Mon, 11 Jan 2016 21:29:28 +0000 (UTC) (envelope-from novel@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 217621F6E; Mon, 11 Jan 2016 21:29:28 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u0BLTRFV004106; Mon, 11 Jan 2016 21:29:27 GMT (envelope-from novel@FreeBSD.org) Received: (from novel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0BLTQbn004102; Mon, 11 Jan 2016 21:29:26 GMT (envelope-from novel@FreeBSD.org) Message-Id: <201601112129.u0BLTQbn004102@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: novel set sender to novel@FreeBSD.org using -f From: Roman Bogorodskiy Date: Mon, 11 Jan 2016 21:29:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r405811 - in head/devel: . py-debtcollector 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.20 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, 11 Jan 2016 21:29:28 -0000 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 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 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/