Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C0AAE85006 for ; Sat, 4 Nov 2023 16:16:00 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id rf4lb2STBe9A for ; Sat, 4 Nov 2023 16:16:00 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 1DD7B84D0C for ; Sat, 4 Nov 2023 16:16:00 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 15C1AFA2B; Sat, 4 Nov 2023 16:16:00 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1699114560268370" MIME-Version: 1.0 Date: Sat, 4 Nov 2023 16:16:00 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/py-constantly To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20231104161600.15C1AFA2B@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1699114560268370 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sat Nov 4 16:15:59 UTC 2023 Modified Files: pkgsrc/devel/py-constantly: Makefile PLIST distinfo Removed Files: pkgsrc/devel/py-constantly/patches: patch-versioneer.py Log Message: py-constantly: update to 23.10.4. Changes: not summarized, but previous version was 8 years old. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/py-constantly/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/py-constantly/PLIST cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/py-constantly/distinfo cvs rdiff -u -r1.2 -r0 pkgsrc/devel/py-constantly/patches/patch-versioneer.py Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1699114560268370 Content-Disposition: inline Content-Length: 3567 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-constantly/Makefile diff -u pkgsrc/devel/py-constantly/Makefile:1.3 pkgsrc/devel/py-constantly/Makefile:1.4 --- pkgsrc/devel/py-constantly/Makefile:1.3 Wed Oct 25 10:07:36 2023 +++ pkgsrc/devel/py-constantly/Makefile Sat Nov 4 16:15:59 2023 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.3 2023/10/25 10:07:36 wiz Exp $ +# $NetBSD: Makefile,v 1.4 2023/11/04 16:15:59 wiz Exp $ -DISTNAME= constantly-15.1.0 +DISTNAME= constantly-23.10.4 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -PKGREVISION= 2 CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=c/constantly/} @@ -11,5 +10,10 @@ HOMEPAGE= https://pypi.python.org/pypi/c COMMENT= Symbolic constants in Python LICENSE= mit -.include "../../lang/python/egg.mk" +TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools +TOOL_DEPENDS+= ${PYPKGPREFIX}-versioneer-[0-9]*:../../devel/py-versioneer +TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel +TEST_DEPENDS+= ${PYPKGPREFIX}-twisted-[0-9]*:../../net/py-twisted + +.include "../../lang/python/wheel.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-constantly/PLIST diff -u pkgsrc/devel/py-constantly/PLIST:1.1 pkgsrc/devel/py-constantly/PLIST:1.2 --- pkgsrc/devel/py-constantly/PLIST:1.1 Wed Nov 30 12:24:34 2016 +++ pkgsrc/devel/py-constantly/PLIST Sat Nov 4 16:15:59 2023 @@ -1,9 +1,9 @@ -@comment $NetBSD: PLIST,v 1.1 2016/11/30 12:24:34 wiz Exp $ -${PYSITELIB}/${EGG_INFODIR}/PKG-INFO -${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt -${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt -${PYSITELIB}/${EGG_INFODIR}/pbr.json -${PYSITELIB}/${EGG_INFODIR}/top_level.txt +@comment $NetBSD: PLIST,v 1.2 2023/11/04 16:15:59 wiz Exp $ +${PYSITELIB}/${WHEEL_INFODIR}/LICENSE +${PYSITELIB}/${WHEEL_INFODIR}/METADATA +${PYSITELIB}/${WHEEL_INFODIR}/RECORD +${PYSITELIB}/${WHEEL_INFODIR}/WHEEL +${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt ${PYSITELIB}/constantly/__init__.py ${PYSITELIB}/constantly/__init__.pyc ${PYSITELIB}/constantly/__init__.pyo @@ -13,3 +13,9 @@ ${PYSITELIB}/constantly/_constants.pyo ${PYSITELIB}/constantly/_version.py ${PYSITELIB}/constantly/_version.pyc ${PYSITELIB}/constantly/_version.pyo +${PYSITELIB}/constantly/test/__init__.py +${PYSITELIB}/constantly/test/__init__.pyc +${PYSITELIB}/constantly/test/__init__.pyo +${PYSITELIB}/constantly/test/test_constants.py +${PYSITELIB}/constantly/test/test_constants.pyc +${PYSITELIB}/constantly/test/test_constants.pyo Index: pkgsrc/devel/py-constantly/distinfo diff -u pkgsrc/devel/py-constantly/distinfo:1.5 pkgsrc/devel/py-constantly/distinfo:1.6 --- pkgsrc/devel/py-constantly/distinfo:1.5 Wed Oct 25 10:34:17 2023 +++ pkgsrc/devel/py-constantly/distinfo Sat Nov 4 16:15:59 2023 @@ -1,6 +1,5 @@ -$NetBSD: distinfo,v 1.5 2023/10/25 10:34:17 wiz Exp $ +$NetBSD: distinfo,v 1.6 2023/11/04 16:15:59 wiz Exp $ -BLAKE2s (constantly-15.1.0.tar.gz) = cb5bdfd31dd3f7980315233c7a9d604d4eafb200cc1a02a492786db59382c3d0 -SHA512 (constantly-15.1.0.tar.gz) = ccc6f41b0bd552d2bb5346cc9d64cd7b91a59dd30e0cf66b01e82f7e0e079c01c34bc6c66b69c5fee9d2eed35ae5455258d309e66278d708d5f576ddf2e00ac3 -Size (constantly-15.1.0.tar.gz) = 21465 bytes -SHA1 (patch-versioneer.py) = 4e54ed0ffd62e5efd0c55c48d3a796f2b59ed9b3 +BLAKE2s (constantly-23.10.4.tar.gz) = 54508c18383f89d823bad1ef36b7cd6da17b14830ad84f0dcfaff36fdbdf6371 +SHA512 (constantly-23.10.4.tar.gz) = 14c99ec39cf5ec588d24818ca56909ed59c646093fbf1d061a8a6e6bec8e7258c64dafd346e0dbb8aeef35260fe1e03efa649150b60b1fd3e7865fa59e96ce49 +Size (constantly-23.10.4.tar.gz) = 13300 bytes --_----------=_1699114560268370--