pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/lang/python311
Module Name: pkgsrc
Committed By: cheusov
Date: Tue Apr 30 16:55:22 UTC 2024
Modified Files:
pkgsrc/lang/python311: distinfo
Added Files:
pkgsrc/lang/python311/patches: patch-Modules_readline.c
Log Message:
Fix build failure on systems with libedit as the default
To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 pkgsrc/lang/python311/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/lang/python311/patches/patch-Modules_readline.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/lang/python311/distinfo
diff -u pkgsrc/lang/python311/distinfo:1.15 pkgsrc/lang/python311/distinfo:1.16
--- pkgsrc/lang/python311/distinfo:1.15 Mon Apr 8 12:49:33 2024
+++ pkgsrc/lang/python311/distinfo Tue Apr 30 16:55:22 2024
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.15 2024/04/08 12:49:33 adam Exp $
+$NetBSD: distinfo,v 1.16 2024/04/30 16:55:22 cheusov Exp $
BLAKE2s (Python-3.11.9.tar.xz) = 82562f4c5e5a6feb3d9ec5186c7402da21b83a65c761cbb1e4f6b840892c1b89
SHA512 (Python-3.11.9.tar.xz) = 2b0a1d936b4ef8376f9655797aece8ffdff75031ad7bfa840f330cac2aed189aecc80c163edc12ea772851d7a011f3fc1960470a73d9d4290cf3ab8ad6ed7e6a
@@ -9,5 +9,6 @@ SHA1 (patch-Lib_distutils_unixccompiler.
SHA1 (patch-Lib_lib2to3_pgen2_driver.py) = 593c4e93c5653ab400f0a98b91db92630c0a7390
SHA1 (patch-Lib_sysconfig.py) = bc6d91bf8f7121456b26ea7f080f588c96f2596f
SHA1 (patch-Makefile.pre.in) = fdb5794d112f422a1f28aa9f8b179dc05520f9e1
+SHA1 (patch-Modules_readline.c) = 86f2e4ed7dbd8560b848ef2be11ae95d97bad83e
SHA1 (patch-configure) = a6d9a00ff160581245bc30d1b0d2ec0e9da8fb0b
SHA1 (patch-setup.py) = 874b114febf51181509593a272ad5cdd4acaf3b4
Added files:
Index: pkgsrc/lang/python311/patches/patch-Modules_readline.c
diff -u /dev/null pkgsrc/lang/python311/patches/patch-Modules_readline.c:1.1
--- /dev/null Tue Apr 30 16:55:22 2024
+++ pkgsrc/lang/python311/patches/patch-Modules_readline.c Tue Apr 30 16:55:22 2024
@@ -0,0 +1,15 @@
+$NetBSD: patch-Modules_readline.c,v 1.1 2024/04/30 16:55:22 cheusov Exp $
+
+pkgsrc buildlink framework installs libedit headers to readline/ subdirectory.
+
+--- Modules/readline.c.orig 2024-04-30 14:54:41.228944748 +0000
++++ Modules/readline.c
+@@ -29,7 +29,7 @@
+ #endif
+
+ #ifdef WITH_EDITLINE
+-# include <editline/readline.h>
++# include <readline/readline.h>
+ #else
+ /* GNU readline definitions */
+ # undef HAVE_CONFIG_H /* Else readline/chardefs.h includes strings.h */
Home |
Main Index |
Thread Index |
Old Index