* python3: Update to 3.6.1
The patches starting with 16 are new to fix the build.
Some no longer relevant patches were dropped, the rest is just refreshed.
* Bump pkgrel of all packages containing Python 3 bytecode/extensions.
The package list was generated using:
pkgfile.exe -R mingw64 -r "cpython.*\\.(py[cod]|dll)"
* lensfun: Add cmake to makedepends
* numpy: Don't hardcode the Python version
* blender: rebuild for new Python
* boost: Don't hardcode Python versions; rebuild
* pillow: Don't hardcode Python version; rebuild
* python-dateutil: Don't hardcode Python versions
* sip: Don't hardcode Python versions
* pyqt4: Don't hardcode Python versions; rebuild
* pyqt5: Don't hardcode Python versions; rebuild
* opencv: Update Python3 version in patch
63 lines
1.9 KiB
Diff
63 lines
1.9 KiB
Diff
--- Python-3.6.1/configure.ac.orig 2017-06-13 17:42:33.096411800 +0200
|
|
+++ Python-3.6.1/configure.ac 2017-06-13 17:44:43.059845300 +0200
|
|
@@ -919,6 +919,28 @@
|
|
fi
|
|
AC_SUBST(MULTIARCH_CPPFLAGS)
|
|
|
|
+# initialize default configuration
|
|
+py_config=
|
|
+case $host in
|
|
+ *-*-mingw*) py_config=mingw ;;
|
|
+esac
|
|
+if test -n "$py_config" ; then
|
|
+ AC_MSG_NOTICE([loading configure defaults from .../Misc/config_$py_config"])
|
|
+ . "$srcdir/Misc/config_$py_config"
|
|
+fi
|
|
+
|
|
+# initialize defaults for cross-builds
|
|
+if test "$cross_compiling" = yes; then
|
|
+ py_config=$host_os
|
|
+ case $py_config in
|
|
+ mingw32*) py_config=mingw32 ;;
|
|
+ esac
|
|
+ if test -f "$srcdir/Misc/cross_$py_config" ; then
|
|
+ AC_MSG_NOTICE([loading cross defaults from .../Misc/cross_$py_config"])
|
|
+ . "$srcdir/Misc/cross_$py_config"
|
|
+ fi
|
|
+fi
|
|
+
|
|
AC_MSG_CHECKING([for -Wl,--no-as-needed])
|
|
save_LDFLAGS="$LDFLAGS"
|
|
LDFLAGS="$LDFLAGS -Wl,--no-as-needed"
|
|
diff -Naur Python-3.5.2-orig/Misc/config_mingw Python-3.5.2/Misc/config_mingw
|
|
--- Python-3.5.2-orig/Misc/config_mingw 1970-01-01 03:00:00.000000000 +0300
|
|
+++ Python-3.5.2/Misc/config_mingw 2016-07-12 14:20:38.832800700 +0300
|
|
@@ -0,0 +1,12 @@
|
|
+# configure defaults for mingw* hosts
|
|
+
|
|
+# mingw functions to ignore
|
|
+ac_cv_func_ftruncate=ignore # implement it as _chsize
|
|
+
|
|
+# mingw-w64 functions to ignore
|
|
+ac_cv_func_truncate=ignore
|
|
+ac_cv_func_alarm=ignore
|
|
+
|
|
+# files to ignore
|
|
+ac_cv_file__dev_ptmx=ignore #NOTE: under MSYS environment device exist
|
|
+ac_cv_file__dev_ptc=no
|
|
diff -Naur Python-3.5.2-orig/Misc/cross_mingw32 Python-3.5.2/Misc/cross_mingw32
|
|
--- Python-3.5.2-orig/Misc/cross_mingw32 1970-01-01 03:00:00.000000000 +0300
|
|
+++ Python-3.5.2/Misc/cross_mingw32 2016-07-12 14:20:38.838300700 +0300
|
|
@@ -0,0 +1,11 @@
|
|
+# configure defaults for mingw32 host if cross-build
|
|
+
|
|
+ac_cv_little_endian_double=yes
|
|
+ac_cv_big_endian_double=no
|
|
+ac_cv_mixed_endian_double=no
|
|
+
|
|
+ac_cv_tanh_preserves_zero_sign=yes
|
|
+
|
|
+ac_cv_wchar_t_signed=no
|
|
+
|
|
+ac_cv_have_size_t_format=no
|