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 466EF1A9239 for ; Tue, 25 Jan 2022 10:40:25 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 80F8484D80; Tue, 25 Jan 2022 10:40:24 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id BB96484D55 for ; Tue, 25 Jan 2022 10:40:23 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id Aijch_3jkvL5 for ; Tue, 25 Jan 2022 10:40:23 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 37FE184CE0 for ; Tue, 25 Jan 2022 10:40:23 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3531FFB24; Tue, 25 Jan 2022 10:40:23 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1643107223226660" MIME-Version: 1.0 Date: Tue, 25 Jan 2022 10:40:23 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/converters/py-reedsolo To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20220125104023.3531FFB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1643107223226660 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Tue Jan 25 10:40:23 UTC 2022 Modified Files: pkgsrc/converters/py-reedsolo: distinfo Added Files: pkgsrc/converters/py-reedsolo/patches: patch-setup.py Log Message: py-reedsolo: fix build with python 3.10 To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/converters/py-reedsolo/distinfo cvs rdiff -u -r0 -r1.1 pkgsrc/converters/py-reedsolo/patches/patch-setup.py Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1643107223226660 Content-Disposition: inline Content-Length: 1845 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/converters/py-reedsolo/distinfo diff -u pkgsrc/converters/py-reedsolo/distinfo:1.3 pkgsrc/converters/py-reedsolo/distinfo:1.4 --- pkgsrc/converters/py-reedsolo/distinfo:1.3 Tue Oct 26 10:06:50 2021 +++ pkgsrc/converters/py-reedsolo/distinfo Tue Jan 25 10:40:22 2022 @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.3 2021/10/26 10:06:50 nia Exp $ +$NetBSD: distinfo,v 1.4 2022/01/25 10:40:22 wiz Exp $ BLAKE2s (reedsolo-1.5.4.tar.gz) = 7c70f109d3c329f1759a883fa5b9c7d87117e9ff0a115f82dfc76b1c9a4e2897 SHA512 (reedsolo-1.5.4.tar.gz) = f41203bbdae9012e72f723d38dd8ee93c9f9fbab62f4ed5dd1c2b9ca9b7e87f5fc91871049d7d952d8ee6be25ed2793c90ac7134eda5cc351e1adf8ed460e8df Size (reedsolo-1.5.4.tar.gz) = 271280 bytes +SHA1 (patch-setup.py) = bce91d0950b473a27002667f69e244285f8dd8fa Added files: Index: pkgsrc/converters/py-reedsolo/patches/patch-setup.py diff -u /dev/null pkgsrc/converters/py-reedsolo/patches/patch-setup.py:1.1 --- /dev/null Tue Jan 25 10:40:23 2022 +++ pkgsrc/converters/py-reedsolo/patches/patch-setup.py Tue Jan 25 10:40:23 2022 @@ -0,0 +1,16 @@ +$NetBSD: patch-setup.py,v 1.1 2022/01/25 10:40:23 wiz Exp $ + +Fix build with python 3.10. +https://github.com/tomerfiliba/reedsolomon/pull/38 + +--- setup.py.orig 2020-05-20 06:35:49.000000000 +0000 ++++ setup.py +@@ -31,7 +31,7 @@ try: + # If Cython is installed, transpile the optimized Cython module to C and compile as a .pyd to be distributed + from Cython.Build import cythonize + print("Cython is installed, building creedsolo module") +- extensions = cythonize([ Extension('creedsolo', ['creedsolo.pyx']) ]) ++ extensions = cythonize([ Extension('creedsolo', ['creedsolo.pyx']) ], force=True) + except ImportError: + # Else Cython is not installed (or user explicitly wanted to skip) + if '--native-compile' in sys.argv: --_----------=_1643107223226660--