Sun Dec 31 18:47:08 2017 UTC ()
py-deprecation: added version 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:

1. 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.

2. 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.


(adam)
diff -r1.2587 -r1.2588 pkgsrc/devel/Makefile
diff -r0 -r1.1 pkgsrc/devel/py-deprecation/DESCR
diff -r0 -r1.1 pkgsrc/devel/py-deprecation/Makefile
diff -r0 -r1.1 pkgsrc/devel/py-deprecation/PLIST
diff -r0 -r1.1 pkgsrc/devel/py-deprecation/distinfo

cvs diff -r1.2587 -r1.2588 pkgsrc/devel/Makefile (expand / switch to unified diff)

--- pkgsrc/devel/Makefile 2017/12/31 13:38:18 1.2587
+++ pkgsrc/devel/Makefile 2017/12/31 18:47:08 1.2588
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: Makefile,v 1.2587 2017/12/31 13:38:18 wiz Exp $ 1# $NetBSD: Makefile,v 1.2588 2017/12/31 18:47:08 adam Exp $
2# 2#
3 3
4COMMENT= Development utilities 4COMMENT= Development utilities
5 5
6SUBDIR+= ETL 6SUBDIR+= ETL
7SUBDIR+= ExmanIDE 7SUBDIR+= ExmanIDE
8SUBDIR+= GConf 8SUBDIR+= GConf
9SUBDIR+= GConf-ui 9SUBDIR+= GConf-ui
10SUBDIR+= Gorm 10SUBDIR+= Gorm
11SUBDIR+= MoarVM 11SUBDIR+= MoarVM
12SUBDIR+= ObjectiveLib 12SUBDIR+= ObjectiveLib
13SUBDIR+= ProjectCenter 13SUBDIR+= ProjectCenter
14SUBDIR+= R-Rcpp 14SUBDIR+= R-Rcpp
@@ -1891,26 +1891,27 @@ SUBDIR+= py-cparser @@ -1891,26 +1891,27 @@ SUBDIR+= py-cparser
1891SUBDIR+= py-crayons 1891SUBDIR+= py-crayons
1892SUBDIR+= py-cubes 1892SUBDIR+= py-cubes
1893SUBDIR+= py-curses 1893SUBDIR+= py-curses
1894SUBDIR+= py-cursespanel 1894SUBDIR+= py-cursespanel
1895SUBDIR+= py-curtsies 1895SUBDIR+= py-curtsies
1896SUBDIR+= py-cyordereddict 1896SUBDIR+= py-cyordereddict
1897SUBDIR+= py-cython 1897SUBDIR+= py-cython
1898SUBDIR+= py-d2to1 1898SUBDIR+= py-d2to1
1899SUBDIR+= py-daemon 1899SUBDIR+= py-daemon
1900SUBDIR+= py-daemonize 1900SUBDIR+= py-daemonize
1901SUBDIR+= py-darcsver 1901SUBDIR+= py-darcsver
1902SUBDIR+= py-ddt 1902SUBDIR+= py-ddt
1903SUBDIR+= py-decorator 1903SUBDIR+= py-decorator
 1904SUBDIR+= py-deprecation
1904SUBDIR+= py-dialog 1905SUBDIR+= py-dialog
1905SUBDIR+= py-dialog2 1906SUBDIR+= py-dialog2
1906SUBDIR+= py-distorm3 1907SUBDIR+= py-distorm3
1907SUBDIR+= py-docopt 1908SUBDIR+= py-docopt
1908SUBDIR+= py-docstyle 1909SUBDIR+= py-docstyle
1909SUBDIR+= py-doctor 1910SUBDIR+= py-doctor
1910SUBDIR+= py-dogpile-cache 1911SUBDIR+= py-dogpile-cache
1911SUBDIR+= py-dulwich 1912SUBDIR+= py-dulwich
1912SUBDIR+= py-editorconfig-core 1913SUBDIR+= py-editorconfig-core
1913SUBDIR+= py-entrypoints 1914SUBDIR+= py-entrypoints
1914SUBDIR+= py-enum 1915SUBDIR+= py-enum
1915SUBDIR+= py-enum34 1916SUBDIR+= py-enum34
1916SUBDIR+= py-exam 1917SUBDIR+= py-exam

File Added: pkgsrc/devel/py-deprecation/DESCR
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:

1. 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.

2. 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.

File Added: pkgsrc/devel/py-deprecation/Makefile
# $NetBSD: Makefile,v 1.1 2017/12/31 18:47:08 adam Exp $

DISTNAME=	deprecation-1.0.1
PKGNAME=	${PYPKGPREFIX}-${DISTNAME}
CATEGORIES=	devel python
MASTER_SITES=	${MASTER_SITE_PYPI:=d/deprecation/}

MAINTAINER=	pkgsrc-users@NetBSD.org
HOMEPAGE=	http://deprecation.readthedocs.io/
COMMENT=	Library to handle automated deprecations
LICENSE=	apache-2.0

#DEPENDS+=	${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six

USE_LANGUAGES=	# none

.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"

File Added: pkgsrc/devel/py-deprecation/PLIST
@comment $NetBSD: PLIST,v 1.1 2017/12/31 18:47:08 adam Exp $
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
${PYSITELIB}/deprecation.py
${PYSITELIB}/deprecation.pyc
${PYSITELIB}/deprecation.pyo

File Added: pkgsrc/devel/py-deprecation/distinfo
$NetBSD: distinfo,v 1.1 2017/12/31 18:47:08 adam Exp $

SHA1 (deprecation-1.0.1.tar.gz) = 54e669246915e6b24abd1f5c55767dea62b84cb2
RMD160 (deprecation-1.0.1.tar.gz) = 1085136c3468139081a0404d77af85072f58e968
SHA512 (deprecation-1.0.1.tar.gz) = fc35e6516e1617e2baad598a91e5d83ca95ab8a2d6a2753751d6752675de93cb44210109450a2aad9eb52b3c772a8b753c1d42ab2356c6663d2a03c4f779f086
Size (deprecation-1.0.1.tar.gz) = 9596 bytes