mirror of
https://github.com/openwrt/packages.git
synced 2026-05-31 15:02:01 +08:00
3fddbe2e07
This is the latest 3.14.x point release with assorted bug fixes from upstream. PYTHON3_PIP_VERSION is bumped from 26.0.1 to 26.1.1 to match the pip wheel bundled in the 3.14.5 source tarball; the host build's ensurepip lookup of pip-$(PYTHON3_PIP_VERSION).whl otherwise fails. The set of OpenWrt-side patches still applies against the new source; only quilt context-line offsets needed refreshing for the patches that touch Makefile.pre.in. Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
19 lines
905 B
Diff
19 lines
905 B
Diff
--- a/Makefile.pre.in
|
|
+++ b/Makefile.pre.in
|
|
@@ -2813,6 +2813,7 @@ libinstall: all $(srcdir)/Modules/xxmodu
|
|
echo "Applying app store compliance patch"; \
|
|
patch --force --reject-file "$(abs_builddir)/app-store-compliance.rej" --strip 2 --directory "$(DESTDIR)$(LIBDEST)" --input "$(abs_srcdir)/$(APP_STORE_COMPLIANCE_PATCH)" || true ; \
|
|
fi
|
|
+ifeq (1,)
|
|
@ # Build PYC files for the 3 optimization levels (0, 1, 2)
|
|
-PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
|
|
$(PYTHON_FOR_BUILD) -Wi $(DESTDIR)$(LIBDEST)/compileall.py \
|
|
@@ -2823,6 +2824,7 @@ libinstall: all $(srcdir)/Modules/xxmodu
|
|
$(PYTHON_FOR_BUILD) -Wi $(DESTDIR)$(LIBDEST)/compileall.py \
|
|
-o 0 -o 1 -o 2 $(COMPILEALL_OPTS) -d $(LIBDEST)/site-packages -f \
|
|
-x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
|
|
+endif
|
|
|
|
# bpo-21536: Misc/python-config.sh is generated in the build directory
|
|
# from $(srcdir)Misc/python-config.sh.in.
|