From owner-svn-ports-head@freebsd.org Mon Dec 25 13:53:23 2017 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 35E60E8C87E; Mon, 25 Dec 2017 13:53:23 +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 mx1.freebsd.org (Postfix) with ESMTPS id 0D109651B6; Mon, 25 Dec 2017 13:53:22 +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 vBPDrMEf006305; Mon, 25 Dec 2017 13:53:22 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBPDrLlV006300; Mon, 25 Dec 2017 13:53:21 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201712251353.vBPDrLlV006300@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 25 Dec 2017 13:53:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r457227 - in head/devel: . py-deprecation X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . py-deprecation X-SVN-Commit-Revision: 457227 X-SVN-Commit-Repository: ports 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.25 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, 25 Dec 2017 13:53:23 -0000 Author: sunpoet Date: Mon Dec 25 13:53:21 2017 New Revision: 457227 URL: https://svnweb.freebsd.org/changeset/ports/457227 Log: Add py-deprecation 1.0.1 The deprecation library provides a deprecated decorator and a fail_if_not_removed decorator for your tests. Together, the two enable the automation of several things: - The docstring of a deprecated method gets the deprecation details appended to the end of it. If you generate your API docs direct from your source, you don't need to worry about writing your own notification. You also don't need to worry about forgetting to write it. It's done for you. - Rather than having code live on forever because you only deprecated it but never actually moved on from it, you can have your tests tell you when it's time to remove the code. The @deprecated decorator can be told when it's time to entirely remove the code, which causes @fail_if_not_removed to raise an AssertionError, causing either your unittest or py.test tests to fail. WWW: https://pypi.python.org/pypi/deprecation WWW: https://github.com/briancurtin/deprecation Added: head/devel/py-deprecation/ head/devel/py-deprecation/Makefile (contents, props changed) head/devel/py-deprecation/distinfo (contents, props changed) head/devel/py-deprecation/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Dec 25 13:24:19 2017 (r457226) +++ head/devel/Makefile Mon Dec 25 13:53:21 2017 (r457227) @@ -4374,6 +4374,7 @@ SUBDIR += py-delfick_error SUBDIR += py-deliciousapi SUBDIR += py-demjson + SUBDIR += py-deprecation SUBDIR += py-dexml SUBDIR += py-dialog SUBDIR += py-diazo Added: head/devel/py-deprecation/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-deprecation/Makefile Mon Dec 25 13:53:21 2017 (r457227) @@ -0,0 +1,20 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= deprecation +PORTVERSION= 1.0.1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Library to handle automated deprecations + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +NO_ARCH= yes +USE_PYTHON= autoplist distutils +USES= python + +.include Added: head/devel/py-deprecation/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-deprecation/distinfo Mon Dec 25 13:53:21 2017 (r457227) @@ -0,0 +1,3 @@ +TIMESTAMP = 1514205418 +SHA256 (deprecation-1.0.1.tar.gz) = b9bff5cc91f601ef2a8a0200bc6cde3f18a48c2ed3d1ecbfc16076b14b3ad935 +SIZE (deprecation-1.0.1.tar.gz) = 9596 Added: head/devel/py-deprecation/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-deprecation/pkg-descr Mon Dec 25 13:53:21 2017 (r457227) @@ -0,0 +1,15 @@ +The deprecation library provides a deprecated decorator and a +fail_if_not_removed decorator for your tests. Together, the two enable the +automation of several things: +- The docstring of a deprecated method gets the deprecation details appended to + the end of it. If you generate your API docs direct from your source, you + don't need to worry about writing your own notification. You also don't need + to worry about forgetting to write it. It's done for you. +- Rather than having code live on forever because you only deprecated it but + never actually moved on from it, you can have your tests tell you when it's + time to remove the code. The @deprecated decorator can be told when it's time + to entirely remove the code, which causes @fail_if_not_removed to raise an + AssertionError, causing either your unittest or py.test tests to fail. + +WWW: https://pypi.python.org/pypi/deprecation +WWW: https://github.com/briancurtin/deprecation