pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/py-llvmlite



Module Name:    pkgsrc
Committed By:   wiz
Date:           Thu Feb 12 07:33:48 UTC 2026

Modified Files:
        pkgsrc/devel/py-llvmlite: distinfo
Added Files:
        pkgsrc/devel/py-llvmlite/patches: patch-setup.py

Log Message:
py-llvmlite: fix build with latest setuptools

dry-run flag was removed, we don't need it, so remove it here as well


To generate a diff of this commit:
cvs rdiff -u -r1.26 -r1.27 pkgsrc/devel/py-llvmlite/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/devel/py-llvmlite/patches/patch-setup.py

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/py-llvmlite/distinfo
diff -u pkgsrc/devel/py-llvmlite/distinfo:1.26 pkgsrc/devel/py-llvmlite/distinfo:1.27
--- pkgsrc/devel/py-llvmlite/distinfo:1.26      Sun Sep 15 10:46:16 2024
+++ pkgsrc/devel/py-llvmlite/distinfo   Thu Feb 12 07:33:48 2026
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.26 2024/09/15 10:46:16 wiz Exp $
+$NetBSD: distinfo,v 1.27 2026/02/12 07:33:48 wiz Exp $
 
 BLAKE2s (libunwind-14.0.6.src.tar.xz) = 21da632762db6524a46c1f721908b233265afe83728c1de5dd7757c662db0d99
 SHA512 (libunwind-14.0.6.src.tar.xz) = c8f3804c47ac33273238899e5682f9cb52465dcceff0e0ecf9925469620c6c9a62cc2c708a35a0e156b666e1198df52c5fff1da9d5ee3194605dfd62c296b058
@@ -13,3 +13,4 @@ BLAKE2s (llvmlite-0.43.0.tar.gz) = 379d6
 SHA512 (llvmlite-0.43.0.tar.gz) = 82fc43e2b4be22ca5de5fe5ea850c4d363fe6ff7dd8f34e523bebb5b9ff5bb41a591f112b1732fab3cf60c6248aa157ed58962c58d91eedf01857fa3b4877c5b
 Size (llvmlite-0.43.0.tar.gz) = 157069 bytes
 SHA1 (patch-ffi_build.py) = 3ad47b6643484c7b98fd7f4debe8e84b803bf071
+SHA1 (patch-setup.py) = e8aaea4f9eccfa92694b3da985632485d678ba71

Added files:

Index: pkgsrc/devel/py-llvmlite/patches/patch-setup.py
diff -u /dev/null pkgsrc/devel/py-llvmlite/patches/patch-setup.py:1.1
--- /dev/null   Thu Feb 12 07:33:48 2026
+++ pkgsrc/devel/py-llvmlite/patches/patch-setup.py     Thu Feb 12 07:33:48 2026
@@ -0,0 +1,15 @@
+$NetBSD: patch-setup.py,v 1.1 2026/02/12 07:33:48 wiz Exp $
+
+dry_run flag was removed from setuptools.
+
+--- setup.py.orig      2026-02-12 07:31:33.741515162 +0000
++++ setup.py
+@@ -65,7 +65,7 @@ def build_library_files(dry_run):
+     plt = sys.platform
+     if 'linux' in plt or 'bsd' in plt or 'darwin' in plt or 'gnu' in plt:
+         os.environ['CXXFLAGS'] = os.environ.get('CXXFLAGS', '') + ' -fPIC'
+-    spawn(cmd, dry_run=dry_run)
++    spawn(cmd)
+ 
+ 
+ class LlvmliteBuild(build):



Home | Main Index | Thread Index | Old Index