Received: by mail.netbsd.org (Postfix, from userid 605) id F048C84EA8; Mon, 11 Oct 2021 17:55:08 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3847984D7A for ; Mon, 11 Oct 2021 17:55:08 +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 kMvZdslJ20WU for ; Mon, 11 Oct 2021 17:55:07 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 94BC284D04 for ; Mon, 11 Oct 2021 17:55:07 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8C05BFA97; Mon, 11 Oct 2021 17:55:07 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1633974907202600" MIME-Version: 1.0 Date: Mon, 11 Oct 2021 17:55:07 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-iso3166 To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20211011175507.8C05BFA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1633974907202600 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Oct 11 17:55:07 UTC 2021 Modified Files: pkgsrc/devel/py-iso3166: Makefile PLIST distinfo Log Message: py-iso3166: updated to 2.0.2 2.0.2 - Sep 20, 2021 -------------------- * Add the ``py.typed`` marker file in accordance with PEP 561 2.0.1 - Sep 14, 2021 -------------------- * Add ``python_requires`` to ``setup.py`` 2.0.0 - Sep 14, 2021 -------------------- * Add type hints throughout codebase (thanks blokje!) * Drop support for Python versions prior to 3.6 To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/devel/py-iso3166/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/py-iso3166/PLIST cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/py-iso3166/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1633974907202600 Content-Disposition: inline Content-Length: 2754 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-iso3166/Makefile diff -u pkgsrc/devel/py-iso3166/Makefile:1.6 pkgsrc/devel/py-iso3166/Makefile:1.7 --- pkgsrc/devel/py-iso3166/Makefile:1.6 Sat May 16 17:13:40 2020 +++ pkgsrc/devel/py-iso3166/Makefile Mon Oct 11 17:55:07 2021 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.6 2020/05/16 17:13:40 adam Exp $ +# $NetBSD: Makefile,v 1.7 2021/10/11 17:55:07 adam Exp $ -DISTNAME= iso3166-1.0.1 +DISTNAME= iso3166-2.0.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=i/iso3166/} @@ -10,13 +10,14 @@ HOMEPAGE= https://github.com/deactivated COMMENT= Self-contained ISO 3166-1 country definitions LICENSE= mit -PYTHON_VERSIONED_DEPENDENCIES= test:test +TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test USE_LANGUAGES= # none +PYTHON_VERSIONS_INCOMPATIBLE= 27 + do-test: - cd ${WRKSRC} && pytest-${PYVERSSUFFIX} tests + cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} tests .include "../../lang/python/egg.mk" -.include "../../lang/python/versioned_dependencies.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-iso3166/PLIST diff -u pkgsrc/devel/py-iso3166/PLIST:1.1 pkgsrc/devel/py-iso3166/PLIST:1.2 --- pkgsrc/devel/py-iso3166/PLIST:1.1 Sat Feb 25 02:15:19 2017 +++ pkgsrc/devel/py-iso3166/PLIST Mon Oct 11 17:55:07 2021 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1 2017/02/25 02:15:19 maya Exp $ +@comment $NetBSD: PLIST,v 1.2 2021/10/11 17:55:07 adam Exp $ ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt @@ -7,3 +7,4 @@ ${PYSITELIB}/${EGG_INFODIR}/top_level.tx ${PYSITELIB}/iso3166/__init__.py ${PYSITELIB}/iso3166/__init__.pyc ${PYSITELIB}/iso3166/__init__.pyo +${PYSITELIB}/iso3166/py.typed Index: pkgsrc/devel/py-iso3166/distinfo diff -u pkgsrc/devel/py-iso3166/distinfo:1.5 pkgsrc/devel/py-iso3166/distinfo:1.6 --- pkgsrc/devel/py-iso3166/distinfo:1.5 Thu Oct 7 13:43:17 2021 +++ pkgsrc/devel/py-iso3166/distinfo Mon Oct 11 17:55:07 2021 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.5 2021/10/07 13:43:17 nia Exp $ +$NetBSD: distinfo,v 1.6 2021/10/11 17:55:07 adam Exp $ -RMD160 (iso3166-1.0.1.tar.gz) = 039173f3a626294db4537dbf387e1c81c2d89b29 -SHA512 (iso3166-1.0.1.tar.gz) = 44da1b987f01494fc7874b044fa6b0ed8a888bd159f73ab239f9db35e26c4fd310444164e538166c3804d796c0ab212bb1b1eee02eb3b9b70883d5d2d7ccccc0 -Size (iso3166-1.0.1.tar.gz) = 10052 bytes +RMD160 (iso3166-2.0.2.tar.gz) = cfbc42b6df381359701e4d09c93b084ede15da54 +SHA512 (iso3166-2.0.2.tar.gz) = eb5c27c69e29c4312f3a5146206032aae49ee489d9a5987fce1fb66bae9d93ec252bf7fd1119403a278f66adaa5ce1c77fe8d3a1622c46ae4a291d73e5c9fb21 +Size (iso3166-2.0.2.tar.gz) = 11067 bytes --_----------=_1633974907202600--