Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 625A684D31 for ; Fri, 16 Jun 2023 15:44:13 +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 K7eVDtylvzVN for ; Fri, 16 Jun 2023 15:44:12 +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 C847E84D01 for ; Fri, 16 Jun 2023 15:44:12 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C18F9FA89; Fri, 16 Jun 2023 15:44:12 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1686930252200810" MIME-Version: 1.0 Date: Fri, 16 Jun 2023 15:44:12 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/geography/py-maxminddb To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20230616154412.C18F9FA89@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1686930252200810 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Fri Jun 16 15:44:12 UTC 2023 Modified Files: pkgsrc/geography/py-maxminddb: Makefile distinfo Log Message: py-maxminddb: updated to 2.3.0 2.3.0 (2023-05-09) * IMPORTANT: Python 3.7 or greater is required. If you are using an older version, please use an earlier release. * ``distutils`` is no longer used for building the C extension. * Missing ``Py_INCREF`` was added to module initialization for the C extension. Pull request by R. Christian McDonald. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/geography/py-maxminddb/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/geography/py-maxminddb/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1686930252200810 Content-Disposition: inline Content-Length: 2186 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/geography/py-maxminddb/Makefile diff -u pkgsrc/geography/py-maxminddb/Makefile:1.2 pkgsrc/geography/py-maxminddb/Makefile:1.3 --- pkgsrc/geography/py-maxminddb/Makefile:1.2 Wed Aug 24 11:09:33 2022 +++ pkgsrc/geography/py-maxminddb/Makefile Fri Jun 16 15:44:12 2023 @@ -1,19 +1,20 @@ -# $NetBSD: Makefile,v 1.2 2022/08/24 11:09:33 wiz Exp $ +# $NetBSD: Makefile,v 1.3 2023/06/16 15:44:12 adam Exp $ -DISTNAME= maxminddb-2.2.0 +DISTNAME= maxminddb-2.3.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -CATEGORIES= geography +CATEGORIES= geography python MASTER_SITES= ${MASTER_SITE_PYPI:=m/maxminddb/} MAINTAINER= pkgsrc-users@NetBSD.org -HOMEPAGE= https://pypi.org/project/maxminddb/ +HOMEPAGE= https://github.com/maxmind/MaxMind-DB-Reader-python COMMENT= Reader for the MaxMind DB format LICENSE= apache-2.0 -TEST_DEPENDS+= ${PYPKGPREFIX}-nose-[0-9]*:../../devel/py-nose - PYTHON_VERSIONS_INCOMPATIBLE= 27 +do-test: + cd ${WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHONBIN} -m unittest tests/*.py + .include "../../geography/libmaxminddb/buildlink3.mk" .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/geography/py-maxminddb/distinfo diff -u pkgsrc/geography/py-maxminddb/distinfo:1.1 pkgsrc/geography/py-maxminddb/distinfo:1.2 --- pkgsrc/geography/py-maxminddb/distinfo:1.1 Wed Aug 24 11:07:22 2022 +++ pkgsrc/geography/py-maxminddb/distinfo Fri Jun 16 15:44:12 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.1 2022/08/24 11:07:22 wiz Exp $ +$NetBSD: distinfo,v 1.2 2023/06/16 15:44:12 adam Exp $ -BLAKE2s (maxminddb-2.2.0.tar.gz) = d8f5db2e6143a25328fcdcb447bd84175c6aa8a6aba5d4133edcdbeb03ef535f -SHA512 (maxminddb-2.2.0.tar.gz) = b5526bfe37a846aa9ff49dde0daa87eeef491fd16f6c275efc22eb194bb71dfc9f4fabccb553d575827cd1e2aff20d796a0d6a2ac6b74c54ffbf48401b935bbd -Size (maxminddb-2.2.0.tar.gz) = 330865 bytes +BLAKE2s (maxminddb-2.3.0.tar.gz) = 5e35e2dacaee2bd209f20950e4eead87fb173e68306829f2fc3aa82db70c8bd7 +SHA512 (maxminddb-2.3.0.tar.gz) = 23b7b69eff08cc98f7ec4f621b2b31fde86fd6fb4c7b875583f994bfcc6daba7799105a52ad8873e9d33f58b7b74bb0f0c512d69be72f73c7e1cedb52d671857 +Size (maxminddb-2.3.0.tar.gz) = 322114 bytes --_----------=_1686930252200810--