dev-ros/python_qt_binding: backport upstream fix
authorAlexis Ballier <aballier@gentoo.org>
Wed, 28 Aug 2019 16:48:48 +0000 (18:48 +0200)
committerAlexis Ballier <aballier@gentoo.org>
Wed, 28 Aug 2019 17:01:46 +0000 (19:01 +0200)
For building qt_gui_cpp.

Closes: https://bugs.gentoo.org/691860
Package-Manager: Portage-2.3.73, Repoman-2.3.17
Signed-off-by: Alexis Ballier <aballier@gentoo.org>
dev-ros/python_qt_binding/files/var.patch [new file with mode: 0644]
dev-ros/python_qt_binding/python_qt_binding-0.3.5-r1.ebuild [moved from dev-ros/python_qt_binding/python_qt_binding-0.3.5.ebuild with 92% similarity]

diff --git a/dev-ros/python_qt_binding/files/var.patch b/dev-ros/python_qt_binding/files/var.patch
new file mode 100644 (file)
index 0000000..f0cd56d
--- /dev/null
@@ -0,0 +1,31 @@
+From 1b3000d2eccfad651b427de20028a4ca552e9ea7 Mon Sep 17 00:00:00 2001
+From: Hans Gaiser <h.gaiser@fizyr.com>
+Date: Mon, 29 Jul 2019 15:17:39 -0700
+Subject: [PATCH] Replace Qt variable in generated Makefile. (#64)
+
+* Replace Qt variable in generated Makefile.
+
+* use single quotes
+---
+ cmake/sip_configure.py | 9 +++++++++
+ 1 file changed, 9 insertions(+)
+
+diff --git a/cmake/sip_configure.py b/cmake/sip_configure.py
+index 49eb866..ce084dd 100644
+--- a/cmake/sip_configure.py
++++ b/cmake/sip_configure.py
+@@ -145,5 +145,14 @@ def split_paths(paths):
+ else:
+     makefile.extra_cxxflags.append('-std=c++14')
++# Finalise the Makefile, preparing it to be saved to disk
++makefile.finalise()
++
++# Replace Qt variables from libraries
++libs = makefile.LIBS.as_list()
++for i in range(len(libs)):
++    libs[i] = libs[i].replace('$$[QT_INSTALL_LIBS]', config.build_macros()['LIBDIR_QT'])
++makefile.LIBS.set(libs)
++
+ # Generate the Makefile itself
+ makefile.generate()
similarity index 92%
rename from dev-ros/python_qt_binding/python_qt_binding-0.3.5.ebuild
rename to dev-ros/python_qt_binding/python_qt_binding-0.3.5-r1.ebuild
index 5309c2893fbeb0a906519276ac2b18fb13479b3b..f74ff22c2b2ef30d9f65decd6b716388aab59ce7 100644 (file)
@@ -18,3 +18,4 @@ RDEPEND="
        dev-python/PyQt5[gui,widgets,${PYTHON_USEDEP}]
 "
 DEPEND="${RDEPEND}"
+PATCHES=( "${FILESDIR}/var.patch" )