[Armadeus-commitlog] armadeus branch, master, updated. armadeus-5.3-289-g88751ec
Brought to you by:
sszy
|
From: Julien B a. A. <ar...@us...> - 2014-06-17 07:00:29
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "armadeus".
The branch, master has been updated
via 88751ec53f243b4d5445796962567272f789b6f4 (commit)
from 9ad2bf81e004b8a4f50e5343e1279cbdbf8433da (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 88751ec53f243b4d5445796962567272f789b6f4
Author: Julien Boibessot <jul...@ar...>
Date: Tue Jun 17 08:59:48 2014 +0200
[BUILDROOT] 2013.11: Add support for Tkinter in Python
-----------------------------------------------------------------------
Summary of changes:
...12-armadeus-add-tkinter-support-to-python.patch | 50 ++++++++++++++++++++
1 files changed, 50 insertions(+), 0 deletions(-)
create mode 100644 patches/buildroot/2013.11/012-armadeus-add-tkinter-support-to-python.patch
diff --git a/patches/buildroot/2013.11/012-armadeus-add-tkinter-support-to-python.patch b/patches/buildroot/2013.11/012-armadeus-add-tkinter-support-to-python.patch
new file mode 100644
index 0000000..baeadaa
--- /dev/null
+++ b/patches/buildroot/2013.11/012-armadeus-add-tkinter-support-to-python.patch
@@ -0,0 +1,50 @@
+Signed-off-by: Julien Boibessot <jul...@ar...>
+
+Index: buildroot/package/python/Config.in
+===================================================================
+--- buildroot.orig/package/python/Config.in 2014-06-17 08:26:47.723364227 +0200
++++ buildroot/package/python/Config.in 2014-06-17 08:34:11.573565170 +0200
+@@ -78,6 +78,18 @@
+ help
+ _ssl module for Python (required for https in urllib etc).
+
++config BR2_PACKAGE_PYTHON_TKINTER
++ depends on BR2_PACKAGE_XORG7
++ depends on BR2_PACKAGE_TCL
++ select BR2_PACKAGE_TK
++ bool "tkinter"
++ help
++ Tkinter module for Python.
++
++comment "tkinter needs a X server and tcl"
++ depends on !BR2_PACKAGE_XORG7
++ depends on !BR2_PACKAGE_TCL
++
+ config BR2_PACKAGE_PYTHON_UNICODEDATA
+ bool "unicodedata module"
+ default y
+Index: buildroot/package/python/python.mk
+===================================================================
+--- buildroot.orig/package/python/python.mk 2014-06-17 08:26:39.363322790 +0200
++++ buildroot/package/python/python.mk 2014-06-17 08:37:13.726468410 +0200
+@@ -112,6 +112,12 @@
+ PYTHON_DEPENDENCIES += openssl
+ endif
+
++ifeq ($(BR2_PACKAGE_PYTHON_TKINTER),y)
++PYTHON_DEPENDENCIES += tk
++else
++PYTHON_CONF_OPT += --disable-tk
++endif
++
+ PYTHON_CONF_ENV += \
+ PYTHON_FOR_BUILD=$(HOST_PYTHON_DIR)/python \
+ PGEN_FOR_BUILD=$(HOST_PYTHON_DIR)/Parser/pgen \
+@@ -125,7 +131,6 @@
+ --disable-test-modules \
+ --disable-lib2to3 \
+ --disable-gdbm \
+- --disable-tk \
+ --disable-nis \
+ --disable-dbm
+
hooks/post-receive
--
armadeus
|