diff options
author | Andrey Smirnov <andrew.smirnov@gmail.com> | 2017-09-18 15:34:41 -0700 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2017-09-20 19:53:42 +0200 |
commit | 6e6e8d37b549033c9dc2ac21ed600708a890894f (patch) | |
tree | 9cf2df0ab3b7c65a506bb179dc211368b46d5ec3 /package/python3/0023-Add-an-option-to-disable-IDLE.patch | |
parent | 847048c58d3639b7646eea1ef17ad42d6a68798d (diff) | |
download | buildroot-6e6e8d37b549033c9dc2ac21ed600708a890894f.tar.gz buildroot-6e6e8d37b549033c9dc2ac21ed600708a890894f.zip |
package/python3: bump to 3.6.2
Bump Python3 version to 3.6.2.
Patches dropped:
"Support PGEN_FOR_BUILD and FREEZE_IMPORTLIB_FOR_BUILD"
Rationale: With commit 9d02f562961efd12d3c8317a10916db7f77330cc, code
generation step of building CPython now became explicit (instead of
always performed as a part of 'make' invocation) and more granular. We
no longer need to use Parser/pgen at all and tricking the build system
into using different Programs/_freeze_importlib can be done as a part
of recipe.
Additional info about the build change can be found at
https://bugs.python.org/issue23404
Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
Tested-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/python3/0023-Add-an-option-to-disable-IDLE.patch')
-rw-r--r-- | package/python3/0023-Add-an-option-to-disable-IDLE.patch | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/package/python3/0023-Add-an-option-to-disable-IDLE.patch b/package/python3/0023-Add-an-option-to-disable-IDLE.patch index 99ae10bbec..da77c44899 100644 --- a/package/python3/0023-Add-an-option-to-disable-IDLE.patch +++ b/package/python3/0023-Add-an-option-to-disable-IDLE.patch @@ -1,4 +1,4 @@ -From 49814176a19247a39c55feb8e0eb3656cd801118 Mon Sep 17 00:00:00 2001 +From 5bbd94f014c89665d02a8a32442822ab7c5520d0 Mon Sep 17 00:00:00 2001 From: Maxime Ripard <maxime.ripard@free-electrons.com> Date: Wed, 22 Feb 2017 17:45:14 -0800 Subject: [PATCH] Add an option to disable IDLE @@ -16,10 +16,10 @@ Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com> 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/Makefile.pre.in b/Makefile.pre.in -index a9bdbde..82b01c9 100644 +index dc4b92b6fe..3e43066d90 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in -@@ -1159,7 +1159,9 @@ bininstall: altbininstall +@@ -1162,7 +1162,9 @@ bininstall: altbininstall -rm -f $(DESTDIR)$(LIBPC)/python3.pc (cd $(DESTDIR)$(LIBPC); $(LN) -s python-$(VERSION).pc python3.pc) -rm -f $(DESTDIR)$(BINDIR)/idle3 @@ -29,7 +29,7 @@ index a9bdbde..82b01c9 100644 -rm -f $(DESTDIR)$(BINDIR)/pydoc3 ifeq (@PYDOC@,yes) (cd $(DESTDIR)$(BINDIR); $(LN) -s pydoc$(VERSION) pydoc3) -@@ -1204,7 +1206,6 @@ LIBSUBDIRS= site-packages \ +@@ -1207,7 +1209,6 @@ LIBSUBDIRS= site-packages \ html json http dbm xmlrpc \ logging csv wsgiref urllib \ ctypes ctypes/macholib \ @@ -37,7 +37,7 @@ index a9bdbde..82b01c9 100644 distutils distutils/command \ importlib \ turtledemo \ -@@ -1272,6 +1273,10 @@ ifeq (@EXPAT@,yes) +@@ -1275,6 +1276,10 @@ ifeq (@EXPAT@,yes) LIBSUBDIRS += $(XMLLIBSUBDIRS) endif @@ -49,10 +49,10 @@ index a9bdbde..82b01c9 100644 LIBSUBDIRS += lib2to3 lib2to3/fixes lib2to3/pgen2 TESTSUBDIRS += lib2to3/tests \ diff --git a/configure.ac b/configure.ac -index 9820526..72989a1 100644 +index 1d610e132b..2699e7ceb1 100644 --- a/configure.ac +++ b/configure.ac -@@ -3152,6 +3152,12 @@ AC_ARG_ENABLE(lib2to3, +@@ -3183,6 +3183,12 @@ AC_ARG_ENABLE(lib2to3, AS_HELP_STRING([--disable-lib2to3], [disable lib2to3]), [ LIB2TO3="${enableval}" ], [ LIB2TO3=yes ]) @@ -66,10 +66,10 @@ index 9820526..72989a1 100644 AH_TEMPLATE(ENABLE_IPV6, [Define if --enable-ipv6 is specified]) AC_MSG_CHECKING([if --enable-ipv6 is specified]) diff --git a/setup.py b/setup.py -index 660bbd7..1079eba 100644 +index 38aa5e605e..d642825c1e 100644 --- a/setup.py +++ b/setup.py -@@ -2279,11 +2279,13 @@ def main(): +@@ -2282,11 +2282,13 @@ def main(): import warnings warnings.filterwarnings("ignore",category=DeprecationWarning) @@ -85,5 +85,5 @@ index 660bbd7..1079eba 100644 setup(# PyPI Metadata (PEP 301) name = "Python", -- -2.9.3 +2.13.5 |