From 2a819f07bbaab7f15cc4a2c874541299ea796041 Mon Sep 17 00:00:00 2001 From: Tilman Keskinoz Date: Mon, 9 Sep 2019 18:42:31 +0000 Subject: Teach setup.py how to find lrelease. This patch is needed for upcoming Qt 5.13 Reported by: adridg@ --- textproc/retext/Makefile | 3 +++ textproc/retext/files/patch-setup.py | 11 +++++++++++ 2 files changed, 14 insertions(+) create mode 100644 textproc/retext/files/patch-setup.py diff --git a/textproc/retext/Makefile b/textproc/retext/Makefile index c3b2b8d6ead6..811008ef2248 100644 --- a/textproc/retext/Makefile +++ b/textproc/retext/Makefile @@ -31,4 +31,7 @@ BINARY_ALIAS= lrelease=${LRELEASE} NO_ARCH= yes +post-patch: + ${REINPLACE_CMD} -e "s,lrelease,${LOCALBASE}/bin/lrelease," ${WRKSRC}/setup.py + .include diff --git a/textproc/retext/files/patch-setup.py b/textproc/retext/files/patch-setup.py new file mode 100644 index 000000000000..fef973a8c849 --- /dev/null +++ b/textproc/retext/files/patch-setup.py @@ -0,0 +1,11 @@ +--- setup.py.orig 2019-09-09 20:33:15.181197000 +0200 ++++ setup.py 2019-09-09 20:37:49.730010000 +0200 +@@ -57,7 +57,7 @@ + def run(self): + for ts_file in glob(join('locale', '*.ts')): + try: +- check_call(('lrelease', ts_file), env={'QT_SELECT': '5'}) ++ check_call(('lrelease', ts_file), env={'QT_SELECT': 'qt5'}) + except Exception as e: + log.warn('Failed to build translations: %s', e) + break -- cgit v1.2.3