Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id ABAF61A9239 for ; Thu, 27 Jan 2022 08:24:53 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id B6EC084E77; Thu, 27 Jan 2022 08:24:52 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id F278C84D41 for ; Thu, 27 Jan 2022 08:24:51 +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 KIbCxkNpG2qm for ; Thu, 27 Jan 2022 08:24:51 +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 76E8E84CBC for ; Thu, 27 Jan 2022 08:24:51 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 6ACBAFB24; Thu, 27 Jan 2022 08:24:51 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1643271891148960" MIME-Version: 1.0 Date: Thu, 27 Jan 2022 08:24:51 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/geography/py-proj To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20220127082451.6ACBAFB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1643271891148960 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Thu Jan 27 08:24:51 UTC 2022 Modified Files: pkgsrc/geography/py-proj: distinfo Added Files: pkgsrc/geography/py-proj/patches: patch-setup.py Log Message: py-proj: force running cythonize during build This fixes the build with python 3.10. To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 pkgsrc/geography/py-proj/distinfo cvs rdiff -u -r0 -r1.1 pkgsrc/geography/py-proj/patches/patch-setup.py Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1643271891148960 Content-Disposition: inline Content-Length: 1467 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/geography/py-proj/distinfo diff -u pkgsrc/geography/py-proj/distinfo:1.9 pkgsrc/geography/py-proj/distinfo:1.10 --- pkgsrc/geography/py-proj/distinfo:1.9 Tue Oct 26 10:45:15 2021 +++ pkgsrc/geography/py-proj/distinfo Thu Jan 27 08:24:51 2022 @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.9 2021/10/26 10:45:15 nia Exp $ +$NetBSD: distinfo,v 1.10 2022/01/27 08:24:51 wiz Exp $ BLAKE2s (pyproj-2.6.1.tar.gz) = 94000486db4227c8b26fa88e594363801a61c75bb34f9363df67dd4550854600 SHA512 (pyproj-2.6.1.tar.gz) = d6bf6b77eb95bb630c41ac7737538c015e2724277f37975b106a4386887c6193c3172dfc9309d1fc8af0b95c86486f359a18a0ca443bcdac9573df6da39935e0 Size (pyproj-2.6.1.tar.gz) = 528171 bytes +SHA1 (patch-setup.py) = 7aa563bcd6120b7ca7d0743da9657262b783474d Added files: Index: pkgsrc/geography/py-proj/patches/patch-setup.py diff -u /dev/null pkgsrc/geography/py-proj/patches/patch-setup.py:1.1 --- /dev/null Thu Jan 27 08:24:51 2022 +++ pkgsrc/geography/py-proj/patches/patch-setup.py Thu Jan 27 08:24:51 2022 @@ -0,0 +1,14 @@ +$NetBSD: patch-setup.py,v 1.1 2022/01/27 08:24:51 wiz Exp $ + +Force running cythonize, to fix build with python 3.10. + +--- setup.py.orig 2020-05-04 02:03:06.000000000 +0000 ++++ setup.py +@@ -168,6 +168,7 @@ def get_extension_modules(): + Extension("pyproj._list", ["pyproj/_list.pyx"], **ext_options), + ], + quiet=True, ++ force=True, + **get_cythonize_options() + ) + --_----------=_1643271891148960--