diff options
author | Peter Korsgaard <peter@korsgaard.com> | 2019-02-06 15:10:44 +0100 |
---|---|---|
committer | Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> | 2019-02-06 15:13:24 +0100 |
commit | 90bbfe58dd0945b1c9dda9e962e0761fdffc68cc (patch) | |
tree | 8947eb7d268ce095cd256f946778424234d33215 /package/python-pyqt/0001-configure-skip-qtdetail.patch | |
parent | fcd9c85475b65c6e8f22d5f9b4ac7c7ecb93dc6a (diff) | |
download | buildroot-90bbfe58dd0945b1c9dda9e962e0761fdffc68cc.tar.gz buildroot-90bbfe58dd0945b1c9dda9e962e0761fdffc68cc.zip |
package/python-pyqt: remove package
The python-pyqt package uses the obsolete qt4 package, which we are about to
remove, so remove python-pyqt as well.
CC: Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Diffstat (limited to 'package/python-pyqt/0001-configure-skip-qtdetail.patch')
-rw-r--r-- | package/python-pyqt/0001-configure-skip-qtdetail.patch | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/package/python-pyqt/0001-configure-skip-qtdetail.patch b/package/python-pyqt/0001-configure-skip-qtdetail.patch deleted file mode 100644 index 08e99d026c..0000000000 --- a/package/python-pyqt/0001-configure-skip-qtdetail.patch +++ /dev/null @@ -1,29 +0,0 @@ -Do not run qtdetail - -qtdetail is a tool that generates qtdetail.out. Since this program is -cross-compiled, it's not possible to run it on the host. - -Consequently, python-pyqt.mk generates the qtdetail.out file before -calling configure-ng.py. - -Therefore, this patch makes sure that the pre-generated qtdetail.out -file is kept, and that qtdetail is not executed. - -Signed-off-by: Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com> -Signed-off-by: Sergey Kostanbaev <sergey.kostanbaev@gmail.com> ---- -Index: PyQt-x11-gpl-4.11.3/configure-ng.py -=================================================================== ---- PyQt-x11-gpl-4.11.3.orig/configure-ng.py -+++ PyQt-x11-gpl-4.11.3/configure-ng.py -@@ -672,10 +672,6 @@ int main(int argc, char **argv) - if cmd is None: - error("Failed to determine the detail of your Qt installation. Try again using the --verbose flag to see more detail about the problem.") - -- # Create the output file, first making sure it doesn't exist. -- remove_file(out_file) -- run_command(cmd, verbose) -- - if not os.access(out_file, os.F_OK): - error("%s failed to create %s. Make sure your Qt installation is correct." % (cmd, out_file)) - |