pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/py-zconfig



Module Name:    pkgsrc
Committed By:   adam
Date:           Tue Oct 23 09:46:43 UTC 2018

Modified Files:
        pkgsrc/devel/py-zconfig: ALTERNATIVES Makefile PLIST distinfo

Log Message:
py-zconfig: updated to 3.3.0

3.3.0:
- Drop support for Python 3.3.
- Add support for Python 3.7.
- Drop support for 'python setup.py test'.
- Add support for example in section and multisection, and
  include those examples in generated documentation.
- Fix configuration loaders to decode byte data using UTF-8 instead of
  the default encoding (usually ASCII).


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/py-zconfig/ALTERNATIVES
cvs rdiff -u -r1.18 -r1.19 pkgsrc/devel/py-zconfig/Makefile
cvs rdiff -u -r1.6 -r1.7 pkgsrc/devel/py-zconfig/PLIST
cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/py-zconfig/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/py-zconfig/ALTERNATIVES
diff -u pkgsrc/devel/py-zconfig/ALTERNATIVES:1.1 pkgsrc/devel/py-zconfig/ALTERNATIVES:1.2
--- pkgsrc/devel/py-zconfig/ALTERNATIVES:1.1    Wed Jan 24 10:17:03 2018
+++ pkgsrc/devel/py-zconfig/ALTERNATIVES        Tue Oct 23 09:46:43 2018
@@ -1,2 +1,2 @@
-bin/zconfig @PREFIX@/bin/zconfig@PYVERSSUFFIX@
-bin/zconfig_schema2html @PREFIX@/bin/zconfig_schema2html@PYVERSSUFFIX@
+bin/zconfig @PREFIX@/bin/zconfig-@PYVERSSUFFIX@
+bin/zconfig_schema2html @PREFIX@/bin/zconfig_schema2html-@PYVERSSUFFIX@

Index: pkgsrc/devel/py-zconfig/Makefile
diff -u pkgsrc/devel/py-zconfig/Makefile:1.18 pkgsrc/devel/py-zconfig/Makefile:1.19
--- pkgsrc/devel/py-zconfig/Makefile:1.18       Wed Jan 24 10:17:03 2018
+++ pkgsrc/devel/py-zconfig/Makefile    Tue Oct 23 09:46:43 2018
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.18 2018/01/24 10:17:03 adam Exp $
+# $NetBSD: Makefile,v 1.19 2018/10/23 09:46:43 adam Exp $
 
-DISTNAME=      ZConfig-3.2.0
+DISTNAME=      ZConfig-3.3.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME:tl}
-PKGREVISION=   1
 CATEGORIES=    devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=Z/ZConfig/}
 
@@ -11,16 +10,16 @@ HOMEPAGE=   https://github.com/zopefoundat
 COMMENT=       Configuration library
 LICENSE=       zpl-2.1
 
-# TEST_DEPENDS
-BUILD_DEPENDS+=        ${PYPKGPREFIX}-docutils-[0-9]*:../../textproc/py-docutils
-#BUILD_DEPENDS+=       ${PYPKGPREFIX}-manuel-[0-9]*:../../?/py-manuel
-#BUILD_DEPENDS+=       ${PYPKGPREFIX}-zope-testrunner-[0-9]*:../../?/py-zope-testrunner
+TEST_DEPENDS+= ${PYPKGPREFIX}-docutils-[0-9]*:../../textproc/py-docutils
+#TEST_DEPENDS+=        ${PYPKGPREFIX}-manuel-[0-9]*:../../?/py-manuel
+TEST_DEPENDS+= ${PYPKGPREFIX}-ZopeTestrunner-[0-9]*:../../devel/py-ZopeTestrunner
 
 USE_LANGUAGES= # none
 
 post-install:
-       cd ${DESTDIR}${PREFIX}/bin && ${MV} zconfig zconfig${PYVERSSUFFIX} && \
-       ${MV} zconfig_schema2html zconfig_schema2html${PYVERSSUFFIX} || ${TRUE}
+       cd ${DESTDIR}${PREFIX}/bin && \
+               ${MV} zconfig zconfig-${PYVERSSUFFIX} && \
+               ${MV} zconfig_schema2html zconfig_schema2html-${PYVERSSUFFIX} || ${TRUE}
 
 .include "../../lang/python/egg.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/devel/py-zconfig/PLIST
diff -u pkgsrc/devel/py-zconfig/PLIST:1.6 pkgsrc/devel/py-zconfig/PLIST:1.7
--- pkgsrc/devel/py-zconfig/PLIST:1.6   Wed Jan 24 10:17:03 2018
+++ pkgsrc/devel/py-zconfig/PLIST       Tue Oct 23 09:46:43 2018
@@ -1,6 +1,6 @@
-@comment $NetBSD: PLIST,v 1.6 2018/01/24 10:17:03 adam Exp $
-bin/zconfig${PYVERSSUFFIX}
-bin/zconfig_schema2html${PYVERSSUFFIX}
+@comment $NetBSD: PLIST,v 1.7 2018/10/23 09:46:43 adam Exp $
+bin/zconfig-${PYVERSSUFFIX}
+bin/zconfig_schema2html-${PYVERSSUFFIX}
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
 ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -113,6 +113,7 @@ ${PYSITELIB}/ZConfig/tests/input/include
 ${PYSITELIB}/ZConfig/tests/input/inner.conf
 ${PYSITELIB}/ZConfig/tests/input/library.xml
 ${PYSITELIB}/ZConfig/tests/input/logger.xml
+${PYSITELIB}/ZConfig/tests/input/non-ascii.txt
 ${PYSITELIB}/ZConfig/tests/input/outer.conf
 ${PYSITELIB}/ZConfig/tests/input/simple.conf
 ${PYSITELIB}/ZConfig/tests/input/simple.xml

Index: pkgsrc/devel/py-zconfig/distinfo
diff -u pkgsrc/devel/py-zconfig/distinfo:1.5 pkgsrc/devel/py-zconfig/distinfo:1.6
--- pkgsrc/devel/py-zconfig/distinfo:1.5        Sat Nov 25 12:39:16 2017
+++ pkgsrc/devel/py-zconfig/distinfo    Tue Oct 23 09:46:43 2018
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.5 2017/11/25 12:39:16 wiz Exp $
+$NetBSD: distinfo,v 1.6 2018/10/23 09:46:43 adam Exp $
 
-SHA1 (ZConfig-3.2.0.tar.gz) = 6189b15e67c00cf28cb47832885643af2d6f942f
-RMD160 (ZConfig-3.2.0.tar.gz) = a333b762509990aa7140633e6be05c7573386346
-SHA512 (ZConfig-3.2.0.tar.gz) = 9e39e2a06a2c6da45d45989fa5806f0238b7fbcda46a02f13a7f36d60d09729f260f7c22de677b21ea3f7c520a39b72ceeb664ac4055e37d3a7b223b27dd3d7b
-Size (ZConfig-3.2.0.tar.gz) = 115162 bytes
+SHA1 (ZConfig-3.3.0.tar.gz) = 6978cff09d6af1e46b13d2e2d919232d93598f0e
+RMD160 (ZConfig-3.3.0.tar.gz) = 4ae2034fba8a1e26ff05872ce491bfe060ecec66
+SHA512 (ZConfig-3.3.0.tar.gz) = 47c166f04dafbf3391e0d5b323751728b8d87e63a3eb37837ce7bab3d31ab52f1d3d7236aa9d35fd81a248b72811f73796d0c21b5b657758f0f22068a8d9ec74
+Size (ZConfig-3.3.0.tar.gz) = 113198 bytes



Home | Main Index | Thread Index | Old Index