pkgsrc-Changes archive

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

CVS commit: [pkgsrc-2024Q4] pkgsrc/lang/python312



Module Name:    pkgsrc
Committed By:   bsiegert
Date:           Thu Jan  2 12:41:11 UTC 2025

Modified Files:
        pkgsrc/lang/python312 [pkgsrc-2024Q4]: Makefile distinfo
        pkgsrc/lang/python312/patches [pkgsrc-2024Q4]: patch-configure

Log Message:
Pullup ticket #6923 - requested by wiz
lang/python312: build fix

Revisions pulled up:
- lang/python312/Makefile                                       1.24
- lang/python312/distinfo                                       1.12
- lang/python312/patches/patch-configure                        1.4

---
   Module Name: pkgsrc
   Committed By:        wiz
   Date:                Tue Dec 24 10:13:41 UTC 2024

   Modified Files:
        pkgsrc/lang/python312: Makefile distinfo
        pkgsrc/lang/python312/patches: patch-configure

   Log Message:
   python312: fix float detection on x86

   Document patch a bit.

   Bump PKGREVISION.


To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.23.2.1 pkgsrc/lang/python312/Makefile
cvs rdiff -u -r1.11 -r1.11.2.1 pkgsrc/lang/python312/distinfo
cvs rdiff -u -r1.3 -r1.3.2.1 pkgsrc/lang/python312/patches/patch-configure

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

Modified files:

Index: pkgsrc/lang/python312/Makefile
diff -u pkgsrc/lang/python312/Makefile:1.23 pkgsrc/lang/python312/Makefile:1.23.2.1
--- pkgsrc/lang/python312/Makefile:1.23 Fri Dec  6 06:19:12 2024
+++ pkgsrc/lang/python312/Makefile      Thu Jan  2 12:41:10 2025
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.23 2024/12/06 06:19:12 riastradh Exp $
+# $NetBSD: Makefile,v 1.23.2.1 2025/01/02 12:41:10 bsiegert Exp $
 
-PKGREVISION=   1
+PKGREVISION=   2
 .include "dist.mk"
 
 PKGNAME=       python312-${PY_DISTVERSION}

Index: pkgsrc/lang/python312/distinfo
diff -u pkgsrc/lang/python312/distinfo:1.11 pkgsrc/lang/python312/distinfo:1.11.2.1
--- pkgsrc/lang/python312/distinfo:1.11 Thu Dec  5 07:52:32 2024
+++ pkgsrc/lang/python312/distinfo      Thu Jan  2 12:41:10 2025
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.11 2024/12/05 07:52:32 adam Exp $
+$NetBSD: distinfo,v 1.11.2.1 2025/01/02 12:41:10 bsiegert Exp $
 
 BLAKE2s (Python-3.12.8.tar.xz) = 06c1062a5c7be61147a56e2fca507c0aa1664d0f73497fe69fbaaf4a232f40c8
 SHA512 (Python-3.12.8.tar.xz) = 406ce1146c4c2c70d252df56bbe9e5970ef469395cbaa211a96af71f32de2cf7abd944906920cc18b4a470027e63a3f64bf7679fb4954b31bf4ca4baf24fa370
@@ -9,4 +9,4 @@ SHA1 (patch-Lib_sysconfig.py) = bc6d91bf
 SHA1 (patch-Makefile.pre.in) = 03403a42fc77e4d244fe22335563927f97be6980
 SHA1 (patch-Modules_readline.c) = 232f6ac43b5a0e87c915f13117bae91ef069a6c1
 SHA1 (patch-Modules_socketmodule.c) = 9d88a801af6e2cbd36b9935a46c8a86727222d56
-SHA1 (patch-configure) = 4173265e97cd7cf28e892fb6d169ca277826b0ad
+SHA1 (patch-configure) = 041b53b35713165bc6c299538154a0bb798e5b4b

Index: pkgsrc/lang/python312/patches/patch-configure
diff -u pkgsrc/lang/python312/patches/patch-configure:1.3 pkgsrc/lang/python312/patches/patch-configure:1.3.2.1
--- pkgsrc/lang/python312/patches/patch-configure:1.3   Thu Dec  5 07:52:32 2024
+++ pkgsrc/lang/python312/patches/patch-configure       Thu Jan  2 12:41:10 2025
@@ -1,9 +1,10 @@
-$NetBSD: patch-configure,v 1.3 2024/12/05 07:52:32 adam Exp $
+$NetBSD: patch-configure,v 1.3.2.1 2025/01/02 12:41:10 bsiegert Exp $
 
-Fix linking on Darwin; don't use -stack_size.
-Changes for consistency across pkgsrc platforms.
-Simplify _sysconfigdata to include only platform name.
-Disable barrier to cross-compilation.
+Chunks 1, 4, 5: Changes for consistency across pkgsrc platforms.
+Chunk 1: Simplify _sysconfigdata to include only platform name.
+Chunk 2: Disable barrier to cross-compilation.
+Chunk 3: should be handled in the Makefile?
+Chunk 6: ?
 
 --- configure.orig     2024-12-03 18:42:41.000000000 +0000
 +++ configure
@@ -34,19 +35,6 @@ Disable barrier to cross-compilation.
  
  
  
-@@ -23541,10 +23541,10 @@ if ac_fn_c_try_link "$LINENO"
- then :
- 
- 
--if grep noonsees conftest$EXEEXT >/dev/null ; then
-+if strings -a conftest.$ac_objext | grep noonsees >/dev/null ; then
-   ax_cv_c_float_words_bigendian=yes
- fi
--if grep seesnoon conftest$EXEEXT >/dev/null ; then
-+if strings -a conftest.$ac_objext | grep seesnoon >/dev/null ; then
-   if test "$ax_cv_c_float_words_bigendian" = unknown; then
-     ax_cv_c_float_words_bigendian=no
-   else
 @@ -24399,7 +24399,7 @@ printf "%s\n" "#define ALT_SOABI \"${ALT
  fi
  



Home | Main Index | Thread Index | Old Index