diff options
author | Fatih Aşıcı <fatih.asici@gmail.com> | 2013-12-24 08:34:51 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2013-12-25 18:14:20 +0100 |
commit | ecf4dff4ee72900ea42b785b314454dae04f5bd5 (patch) | |
tree | 21dad6f8726b2b34dcc77df5d5dfd5c17806730b /package/qt5/qt5jsbackend/qt5jsbackend-0001-dont-import-bz2-python-module.patch | |
parent | 622bd71e0a26755e8bec37e835524e0a82a50884 (diff) | |
download | buildroot-ecf4dff4ee72900ea42b785b314454dae04f5bd5.tar.gz buildroot-ecf4dff4ee72900ea42b785b314454dae04f5bd5.zip |
qt5: remove qt5jsbackend package
Upstream did not release a new version of this package since it is
superseded by the builtin qml engine found in new qt5declarative.
Fixes: http://autobuild.buildroot.net/results/3861aa91e03154c7d20f4157f0c3a1fa14838af1/
Signed-off-by: Fatih Aşıcı <fatih.asici@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/qt5/qt5jsbackend/qt5jsbackend-0001-dont-import-bz2-python-module.patch')
-rw-r--r-- | package/qt5/qt5jsbackend/qt5jsbackend-0001-dont-import-bz2-python-module.patch | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/package/qt5/qt5jsbackend/qt5jsbackend-0001-dont-import-bz2-python-module.patch b/package/qt5/qt5jsbackend/qt5jsbackend-0001-dont-import-bz2-python-module.patch deleted file mode 100644 index 08f343e5ea..0000000000 --- a/package/qt5/qt5jsbackend/qt5jsbackend-0001-dont-import-bz2-python-module.patch +++ /dev/null @@ -1,29 +0,0 @@ -Only import bz2 python module when needed - -The js2c.py script imports the bz2 module unconditionnally, which -would require us to build the bzip2 support in host-python. Since in -fact bzip2 support is not technically used when building this package, -we ensure that the bz2 module is only imported when needed. - -Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> - -Index: b/src/3rdparty/v8/tools/js2c.py -=================================================================== ---- a/src/3rdparty/v8/tools/js2c.py -+++ b/src/3rdparty/v8/tools/js2c.py -@@ -33,7 +33,6 @@ - - import os, re, sys, string - import jsmin --import bz2 - - - def ToCAsciiArray(lines): -@@ -344,6 +343,7 @@ - else: - raw_sources_declaration = RAW_SOURCES_COMPRESSION_DECLARATION - if env['COMPRESSION'] == 'bz2': -+ import bz2 - all_sources = bz2.compress("".join(all_sources)) - total_length = len(all_sources) - sources_data = ToCArray(all_sources) |