From fdc902e4614b3351867aedade15bb70525df55b7 Mon Sep 17 00:00:00 2001 From: Pino Toscano Date: Wed, 8 Jul 2020 16:54:12 +0200 Subject: [PATCH] setup: split listing of .in sources for POTFILES Extract them from _generate_potfiles_in() to an own _generate_meta_potfiles_in() function. Reviewed-by: Cole Robinson Signed-off-by: Pino Toscano --- setup.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 9d130dc36..3e921b456 100755 --- a/setup.py +++ b/setup.py @@ -59,6 +59,13 @@ _appdata_files = [ ] +def _generate_meta_potfiles_in(): + potfiles = "" + for ignore, filelist in _desktop_files + _appdata_files: + potfiles += "\n".join(filelist) + "\n" + return potfiles + + def _generate_potfiles_in(): def find(dirname, ext): ret = [] @@ -72,8 +79,7 @@ def _generate_potfiles_in(): potfiles += "\n".join(find("virtManager", "*.py")) + "\n\n" potfiles += "\n".join(find("virtinst", "*.py")) + "\n\n" - for ignore, filelist in _desktop_files + _appdata_files: - potfiles += "\n".join(filelist) + "\n" + potfiles += _generate_meta_potfiles_in() potfiles += "\n" potfiles += "\n".join(["[type: gettext/glade]" + f for