update to 2.10.28

thanks gnezdo and Joss Gross for testing
This commit is contained in:
espie 2021-10-06 07:37:02 +00:00
parent 263232e0a7
commit 30b4060383
6 changed files with 27 additions and 123 deletions

View File

@ -1,13 +1,12 @@
# $OpenBSD: Makefile,v 1.147 2021/08/31 07:30:29 ajacoutot Exp $
# $OpenBSD: Makefile,v 1.148 2021/10/06 07:37:02 espie Exp $
COMMENT= GNU Image Manipulation Program
DISTNAME = gimp-2.10.24
REVISION = 2
DISTNAME = gimp-2.10.28
.for i in gimp gimpbase gimpcolor gimpconfig gimpmath gimpmodule \
gimpthumb gimpui gimpwidgets
SHARED_LIBS += $i-2.0 273.0
SHARED_LIBS += $i-2.0 274.0
.endfor
CATEGORIES= graphics
@ -104,6 +103,8 @@ CONFIGURE_ARGS+= \
--without-alsa \
--without-webkit
UPDATE_PLIST_ARGS += -i MODPY_PY_PREFIX -i MODPY_BIN_SUFFIX
post-install:
${MODPY_BIN} ${MODPY_LIBDIR}/compileall.py \
${PREFIX}/lib/gimp/2.0/plug-ins

View File

@ -1,2 +1,2 @@
SHA256 (gimp-2.10.24.tar.bz2) = vRu3YjaMDdMXXPBQBoEt1naUnDcH4h9OaFdDXLQ1mJ4=
SIZE (gimp-2.10.24.tar.bz2) = 31546295
SHA256 (gimp-2.10.28.tar.bz2) = T03CLP8atfAm/qoqtV4Fd1s6EeGYGGtHvat5y/oHiCY=
SIZE (gimp-2.10.28.tar.bz2) = 31675862

View File

@ -1,52 +0,0 @@
$OpenBSD: patch-app_widgets_gimpdashboard_c,v 1.1 2021/05/09 14:18:37 espie Exp $
Index: app/widgets/gimpdashboard.c
--- app/widgets/gimpdashboard.c.orig
+++ app/widgets/gimpdashboard.c
@@ -2512,6 +2512,46 @@ gimp_dashboard_sample_memory_available (GimpDashboard
variable_data->value.size = ms.ullAvailPhys;
}
+#elif defined(__OpenBSD__)
+#include <sys/resource.h>
+#include <sys/types.h>
+#include <sys/sysctl.h>
+
+static void
+gimp_dashboard_sample_memory_used (GimpDashboard *dashboard,
+ Variable variable)
+{
+ GimpDashboardPrivate *priv = dashboard->priv;
+ VariableData *variable_data = &priv->variables[variable];
+ struct rusage rusage;
+
+ variable_data->available = FALSE;
+
+ if (getrusage(RUSAGE_SELF, &rusage) == -1)
+ return;
+ variable_data->available = TRUE;
+ variable_data->value.size = (guint64)(rusage.ru_maxrss * 1024);
+}
+
+static void
+gimp_dashboard_sample_memory_available (GimpDashboard *dashboard,
+ Variable variable)
+{
+ GimpDashboardPrivate *priv = dashboard->priv;
+ VariableData *variable_data = &priv->variables[variable];
+ int mib[] = {CTL_HW, HW_PHYSMEM64};
+ int64_t result;
+ size_t sz = sizeof(int64_t);
+
+
+ variable_data->available = FALSE;
+
+ if (sysctl(mib, 2, &result, &sz, NULL, 0) == -1)
+ return;
+ variable_data->available = TRUE;
+ variable_data->value.size = (guint64)result;
+}
+
#else /* ! G_OS_WIN32 && ! PLATFORM_OSX */
static void
gimp_dashboard_sample_memory_used (GimpDashboard *dashboard,

View File

@ -1,9 +1,9 @@
$OpenBSD: patch-etc_Makefile_in,v 1.20 2021/03/31 20:52:47 sthen Exp $
$OpenBSD: patch-etc_Makefile_in,v 1.21 2021/10/06 07:37:02 espie Exp $
Index: etc/Makefile.in
--- etc/Makefile.in.orig
+++ etc/Makefile.in
@@ -530,7 +530,7 @@ gimpdatadir = @gimpdatadir@
@@ -533,7 +533,7 @@ gimpdatadir = @gimpdatadir@
gimpdir = @gimpdir@
gimplocaledir = @gimplocaledir@
gimpplugindir = @gimpplugindir@

View File

@ -0,0 +1,16 @@
$OpenBSD: patch-plug-ins_common_file-ps_c,v 1.1 2021/10/06 07:37:02 espie Exp $
see comment, remove when ghostscript gets updated
Index: plug-ins/common/file-ps.c
--- plug-ins/common/file-ps.c.orig
+++ plug-ins/common/file-ps.c
@@ -1765,7 +1765,8 @@ ps_open (const gchar *filename,
code = gsapi_new_instance (&instance, NULL);
if (code == 0) {
- code = gsapi_set_arg_encoding(instance, GS_ARG_ENCODING_UTF8);
+ //requires a ghostscript update !
+ //code = gsapi_set_arg_encoding(instance, GS_ARG_ENCODING_UTF8);
code = gsapi_init_with_args (instance, cmdA->len - 1, pcmdA);
code = gsapi_exit (instance);
gsapi_delete_instance (instance);

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.50 2021/03/31 20:52:47 sthen Exp $
@comment $OpenBSD: PLIST,v 1.51 2021/10/06 07:37:02 espie Exp $
bin/gimp
@bin bin/gimp-2.10
bin/gimp-console
@ -4434,6 +4434,7 @@ share/gimp/2.0/themes/Dark/ui/gimp-arrow-up.png
share/gimp/2.0/themes/Dark/ui/gimp-button-default.png
share/gimp/2.0/themes/Dark/ui/gimp-button-insensitive.png
share/gimp/2.0/themes/Dark/ui/gimp-button-normal.png
share/gimp/2.0/themes/Dark/ui/gimp-button-prelight-white-border.png
share/gimp/2.0/themes/Dark/ui/gimp-button-prelight.png
share/gimp/2.0/themes/Dark/ui/gimp-button-pressed.png
share/gimp/2.0/themes/Dark/ui/gimp-handle-h.png
@ -5418,7 +5419,6 @@ share/locale/ar/LC_MESSAGES/gimp20-libgimp.mo
share/locale/ar/LC_MESSAGES/gimp20-python.mo
share/locale/ar/LC_MESSAGES/gimp20-script-fu.mo
share/locale/ar/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/ar/LC_MESSAGES/gimp20-tips.mo
share/locale/ar/LC_MESSAGES/gimp20.mo
share/locale/ast/LC_MESSAGES/gimp20.mo
share/locale/az/LC_MESSAGES/gimp20-libgimp.mo
@ -5429,122 +5429,102 @@ share/locale/be/LC_MESSAGES/gimp20-libgimp.mo
share/locale/be/LC_MESSAGES/gimp20-python.mo
share/locale/be/LC_MESSAGES/gimp20-script-fu.mo
share/locale/be/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/be/LC_MESSAGES/gimp20-tips.mo
share/locale/be/LC_MESSAGES/gimp20.mo
share/locale/bg/LC_MESSAGES/gimp20-libgimp.mo
share/locale/bg/LC_MESSAGES/gimp20-python.mo
share/locale/bg/LC_MESSAGES/gimp20-script-fu.mo
share/locale/bg/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/bg/LC_MESSAGES/gimp20-tips.mo
share/locale/bg/LC_MESSAGES/gimp20.mo
share/locale/br/LC_MESSAGES/gimp20-libgimp.mo
share/locale/br/LC_MESSAGES/gimp20-python.mo
share/locale/br/LC_MESSAGES/gimp20-script-fu.mo
share/locale/br/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/br/LC_MESSAGES/gimp20-tips.mo
share/locale/br/LC_MESSAGES/gimp20.mo
share/locale/bs/LC_MESSAGES/gimp20-libgimp.mo
share/locale/bs/LC_MESSAGES/gimp20-python.mo
share/locale/bs/LC_MESSAGES/gimp20-script-fu.mo
share/locale/bs/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/bs/LC_MESSAGES/gimp20-tips.mo
share/locale/bs/LC_MESSAGES/gimp20.mo
share/locale/ca/LC_MESSAGES/gimp20-libgimp.mo
share/locale/ca/LC_MESSAGES/gimp20-python.mo
share/locale/ca/LC_MESSAGES/gimp20-script-fu.mo
share/locale/ca/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/ca/LC_MESSAGES/gimp20-tips.mo
share/locale/ca/LC_MESSAGES/gimp20.mo
share/locale/ca@valencia/LC_MESSAGES/gimp20-libgimp.mo
share/locale/ca@valencia/LC_MESSAGES/gimp20-python.mo
share/locale/ca@valencia/LC_MESSAGES/gimp20-script-fu.mo
share/locale/ca@valencia/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/ca@valencia/LC_MESSAGES/gimp20-tips.mo
share/locale/ca@valencia/LC_MESSAGES/gimp20.mo
share/locale/cs/LC_MESSAGES/gimp20-libgimp.mo
share/locale/cs/LC_MESSAGES/gimp20-python.mo
share/locale/cs/LC_MESSAGES/gimp20-script-fu.mo
share/locale/cs/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/cs/LC_MESSAGES/gimp20-tips.mo
share/locale/cs/LC_MESSAGES/gimp20.mo
share/locale/csb/LC_MESSAGES/gimp20.mo
share/locale/da/LC_MESSAGES/gimp20-libgimp.mo
share/locale/da/LC_MESSAGES/gimp20-python.mo
share/locale/da/LC_MESSAGES/gimp20-script-fu.mo
share/locale/da/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/da/LC_MESSAGES/gimp20-tips.mo
share/locale/da/LC_MESSAGES/gimp20.mo
share/locale/de/LC_MESSAGES/gimp20-libgimp.mo
share/locale/de/LC_MESSAGES/gimp20-python.mo
share/locale/de/LC_MESSAGES/gimp20-script-fu.mo
share/locale/de/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/de/LC_MESSAGES/gimp20-tips.mo
share/locale/de/LC_MESSAGES/gimp20.mo
share/locale/dz/LC_MESSAGES/gimp20-libgimp.mo
share/locale/dz/LC_MESSAGES/gimp20-python.mo
share/locale/dz/LC_MESSAGES/gimp20-script-fu.mo
share/locale/dz/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/dz/LC_MESSAGES/gimp20-tips.mo
share/locale/dz/LC_MESSAGES/gimp20.mo
share/locale/el/LC_MESSAGES/gimp20-libgimp.mo
share/locale/el/LC_MESSAGES/gimp20-python.mo
share/locale/el/LC_MESSAGES/gimp20-script-fu.mo
share/locale/el/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/el/LC_MESSAGES/gimp20-tips.mo
share/locale/el/LC_MESSAGES/gimp20.mo
share/locale/en_CA/LC_MESSAGES/gimp20-libgimp.mo
share/locale/en_CA/LC_MESSAGES/gimp20-python.mo
share/locale/en_CA/LC_MESSAGES/gimp20-script-fu.mo
share/locale/en_CA/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/en_CA/LC_MESSAGES/gimp20-tips.mo
share/locale/en_CA/LC_MESSAGES/gimp20.mo
share/locale/en_GB/LC_MESSAGES/gimp20-libgimp.mo
share/locale/en_GB/LC_MESSAGES/gimp20-python.mo
share/locale/en_GB/LC_MESSAGES/gimp20-script-fu.mo
share/locale/en_GB/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/en_GB/LC_MESSAGES/gimp20-tips.mo
share/locale/en_GB/LC_MESSAGES/gimp20.mo
share/locale/eo/LC_MESSAGES/gimp20-libgimp.mo
share/locale/eo/LC_MESSAGES/gimp20-python.mo
share/locale/eo/LC_MESSAGES/gimp20-script-fu.mo
share/locale/eo/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/eo/LC_MESSAGES/gimp20-tips.mo
share/locale/eo/LC_MESSAGES/gimp20.mo
share/locale/es/LC_MESSAGES/gimp20-libgimp.mo
share/locale/es/LC_MESSAGES/gimp20-python.mo
share/locale/es/LC_MESSAGES/gimp20-script-fu.mo
share/locale/es/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/es/LC_MESSAGES/gimp20-tips.mo
share/locale/es/LC_MESSAGES/gimp20.mo
share/locale/et/LC_MESSAGES/gimp20-libgimp.mo
share/locale/et/LC_MESSAGES/gimp20-python.mo
share/locale/et/LC_MESSAGES/gimp20-script-fu.mo
share/locale/et/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/et/LC_MESSAGES/gimp20-tips.mo
share/locale/et/LC_MESSAGES/gimp20.mo
share/locale/eu/LC_MESSAGES/gimp20-libgimp.mo
share/locale/eu/LC_MESSAGES/gimp20-python.mo
share/locale/eu/LC_MESSAGES/gimp20-script-fu.mo
share/locale/eu/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/eu/LC_MESSAGES/gimp20-tips.mo
share/locale/eu/LC_MESSAGES/gimp20.mo
share/locale/fa/LC_MESSAGES/gimp20-libgimp.mo
share/locale/fa/LC_MESSAGES/gimp20-python.mo
share/locale/fa/LC_MESSAGES/gimp20-script-fu.mo
share/locale/fa/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/fa/LC_MESSAGES/gimp20-tips.mo
share/locale/fa/LC_MESSAGES/gimp20.mo
share/locale/fi/LC_MESSAGES/gimp20-libgimp.mo
share/locale/fi/LC_MESSAGES/gimp20-python.mo
share/locale/fi/LC_MESSAGES/gimp20-script-fu.mo
share/locale/fi/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/fi/LC_MESSAGES/gimp20-tips.mo
share/locale/fi/LC_MESSAGES/gimp20.mo
share/locale/fr/LC_MESSAGES/gimp20-libgimp.mo
share/locale/fr/LC_MESSAGES/gimp20-python.mo
share/locale/fr/LC_MESSAGES/gimp20-script-fu.mo
share/locale/fr/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/fr/LC_MESSAGES/gimp20-tips.mo
share/locale/fr/LC_MESSAGES/gimp20.mo
share/locale/ga/LC_MESSAGES/gimp20-libgimp.mo
share/locale/ga/LC_MESSAGES/gimp20-python.mo
@ -5556,55 +5536,46 @@ share/locale/gl/LC_MESSAGES/gimp20-libgimp.mo
share/locale/gl/LC_MESSAGES/gimp20-python.mo
share/locale/gl/LC_MESSAGES/gimp20-script-fu.mo
share/locale/gl/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/gl/LC_MESSAGES/gimp20-tips.mo
share/locale/gl/LC_MESSAGES/gimp20.mo
share/locale/gu/LC_MESSAGES/gimp20-libgimp.mo
share/locale/gu/LC_MESSAGES/gimp20-python.mo
share/locale/gu/LC_MESSAGES/gimp20-script-fu.mo
share/locale/gu/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/gu/LC_MESSAGES/gimp20-tips.mo
share/locale/gu/LC_MESSAGES/gimp20.mo
share/locale/he/LC_MESSAGES/gimp20-libgimp.mo
share/locale/he/LC_MESSAGES/gimp20-script-fu.mo
share/locale/he/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/he/LC_MESSAGES/gimp20-tips.mo
share/locale/he/LC_MESSAGES/gimp20.mo
share/locale/hi/LC_MESSAGES/gimp20.mo
share/locale/hr/LC_MESSAGES/gimp20-libgimp.mo
share/locale/hr/LC_MESSAGES/gimp20-python.mo
share/locale/hr/LC_MESSAGES/gimp20-script-fu.mo
share/locale/hr/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/hr/LC_MESSAGES/gimp20-tips.mo
share/locale/hr/LC_MESSAGES/gimp20.mo
share/locale/hu/LC_MESSAGES/gimp20-libgimp.mo
share/locale/hu/LC_MESSAGES/gimp20-python.mo
share/locale/hu/LC_MESSAGES/gimp20-script-fu.mo
share/locale/hu/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/hu/LC_MESSAGES/gimp20-tips.mo
share/locale/hu/LC_MESSAGES/gimp20.mo
share/locale/id/LC_MESSAGES/gimp20-libgimp.mo
share/locale/id/LC_MESSAGES/gimp20-python.mo
share/locale/id/LC_MESSAGES/gimp20-script-fu.mo
share/locale/id/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/id/LC_MESSAGES/gimp20-tips.mo
share/locale/id/LC_MESSAGES/gimp20.mo
share/locale/is/LC_MESSAGES/gimp20-libgimp.mo
share/locale/is/LC_MESSAGES/gimp20-python.mo
share/locale/is/LC_MESSAGES/gimp20-script-fu.mo
share/locale/is/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/is/LC_MESSAGES/gimp20-tips.mo
share/locale/is/LC_MESSAGES/gimp20.mo
share/locale/it/LC_MESSAGES/gimp20-libgimp.mo
share/locale/it/LC_MESSAGES/gimp20-python.mo
share/locale/it/LC_MESSAGES/gimp20-script-fu.mo
share/locale/it/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/it/LC_MESSAGES/gimp20-tips.mo
share/locale/it/LC_MESSAGES/gimp20.mo
share/locale/ja/LC_MESSAGES/gimp20-libgimp.mo
share/locale/ja/LC_MESSAGES/gimp20-python.mo
share/locale/ja/LC_MESSAGES/gimp20-script-fu.mo
share/locale/ja/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/ja/LC_MESSAGES/gimp20-tips.mo
share/locale/ja/LC_MESSAGES/gimp20.mo
share/locale/ka/LC_MESSAGES/gimp20.mo
share/locale/kab/LC_MESSAGES/gimp20-python.mo
@ -5615,7 +5586,6 @@ share/locale/km/LC_MESSAGES/gimp20-libgimp.mo
share/locale/km/LC_MESSAGES/gimp20-python.mo
share/locale/km/LC_MESSAGES/gimp20-script-fu.mo
share/locale/km/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/km/LC_MESSAGES/gimp20-tips.mo
share/locale/km/LC_MESSAGES/gimp20.mo
share/locale/kn/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/kn/LC_MESSAGES/gimp20.mo
@ -5623,154 +5593,129 @@ share/locale/ko/LC_MESSAGES/gimp20-libgimp.mo
share/locale/ko/LC_MESSAGES/gimp20-python.mo
share/locale/ko/LC_MESSAGES/gimp20-script-fu.mo
share/locale/ko/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/ko/LC_MESSAGES/gimp20-tips.mo
share/locale/ko/LC_MESSAGES/gimp20.mo
share/locale/ky/LC_MESSAGES/gimp20.mo
share/locale/lt/LC_MESSAGES/gimp20-libgimp.mo
share/locale/lt/LC_MESSAGES/gimp20-python.mo
share/locale/lt/LC_MESSAGES/gimp20-script-fu.mo
share/locale/lt/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/lt/LC_MESSAGES/gimp20-tips.mo
share/locale/lt/LC_MESSAGES/gimp20.mo
share/locale/lv/LC_MESSAGES/gimp20-libgimp.mo
share/locale/lv/LC_MESSAGES/gimp20-python.mo
share/locale/lv/LC_MESSAGES/gimp20-script-fu.mo
share/locale/lv/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/lv/LC_MESSAGES/gimp20-tips.mo
share/locale/lv/LC_MESSAGES/gimp20.mo
share/locale/mk/LC_MESSAGES/gimp20-libgimp.mo
share/locale/mk/LC_MESSAGES/gimp20-python.mo
share/locale/mk/LC_MESSAGES/gimp20-script-fu.mo
share/locale/mk/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/mk/LC_MESSAGES/gimp20-tips.mo
share/locale/mk/LC_MESSAGES/gimp20.mo
share/locale/ml/LC_MESSAGES/gimp20.mo
share/locale/mr/LC_MESSAGES/gimp20-libgimp.mo
share/locale/mr/LC_MESSAGES/gimp20-python.mo
share/locale/mr/LC_MESSAGES/gimp20-script-fu.mo
share/locale/mr/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/mr/LC_MESSAGES/gimp20-tips.mo
share/locale/mr/LC_MESSAGES/gimp20.mo
share/locale/ms/LC_MESSAGES/gimp20-libgimp.mo
share/locale/ms/LC_MESSAGES/gimp20-python.mo
share/locale/ms/LC_MESSAGES/gimp20-script-fu.mo
share/locale/ms/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/ms/LC_MESSAGES/gimp20-tips.mo
share/locale/ms/LC_MESSAGES/gimp20.mo
share/locale/my/LC_MESSAGES/gimp20-libgimp.mo
share/locale/my/LC_MESSAGES/gimp20-python.mo
share/locale/my/LC_MESSAGES/gimp20-script-fu.mo
share/locale/my/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/my/LC_MESSAGES/gimp20-tips.mo
share/locale/my/LC_MESSAGES/gimp20.mo
share/locale/nb/LC_MESSAGES/gimp20-libgimp.mo
share/locale/nb/LC_MESSAGES/gimp20-python.mo
share/locale/nb/LC_MESSAGES/gimp20-script-fu.mo
share/locale/nb/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/nb/LC_MESSAGES/gimp20-tips.mo
share/locale/nb/LC_MESSAGES/gimp20.mo
share/locale/nds/LC_MESSAGES/gimp20.mo
share/locale/ne/LC_MESSAGES/gimp20-libgimp.mo
share/locale/ne/LC_MESSAGES/gimp20-python.mo
share/locale/ne/LC_MESSAGES/gimp20-script-fu.mo
share/locale/ne/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/ne/LC_MESSAGES/gimp20-tips.mo
share/locale/ne/LC_MESSAGES/gimp20.mo
share/locale/nl/LC_MESSAGES/gimp20-libgimp.mo
share/locale/nl/LC_MESSAGES/gimp20-python.mo
share/locale/nl/LC_MESSAGES/gimp20-script-fu.mo
share/locale/nl/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/nl/LC_MESSAGES/gimp20-tips.mo
share/locale/nl/LC_MESSAGES/gimp20.mo
share/locale/nn/LC_MESSAGES/gimp20-libgimp.mo
share/locale/nn/LC_MESSAGES/gimp20-python.mo
share/locale/nn/LC_MESSAGES/gimp20-script-fu.mo
share/locale/nn/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/nn/LC_MESSAGES/gimp20-tips.mo
share/locale/nn/LC_MESSAGES/gimp20.mo
share/locale/oc/LC_MESSAGES/gimp20-libgimp.mo
share/locale/oc/LC_MESSAGES/gimp20-python.mo
share/locale/oc/LC_MESSAGES/gimp20-script-fu.mo
share/locale/oc/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/oc/LC_MESSAGES/gimp20-tips.mo
share/locale/oc/LC_MESSAGES/gimp20.mo
share/locale/pa/LC_MESSAGES/gimp20-libgimp.mo
share/locale/pa/LC_MESSAGES/gimp20-python.mo
share/locale/pa/LC_MESSAGES/gimp20-script-fu.mo
share/locale/pa/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/pa/LC_MESSAGES/gimp20-tips.mo
share/locale/pa/LC_MESSAGES/gimp20.mo
share/locale/pl/LC_MESSAGES/gimp20-libgimp.mo
share/locale/pl/LC_MESSAGES/gimp20-python.mo
share/locale/pl/LC_MESSAGES/gimp20-script-fu.mo
share/locale/pl/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/pl/LC_MESSAGES/gimp20-tips.mo
share/locale/pl/LC_MESSAGES/gimp20.mo
share/locale/pt/LC_MESSAGES/gimp20-libgimp.mo
share/locale/pt/LC_MESSAGES/gimp20-python.mo
share/locale/pt/LC_MESSAGES/gimp20-script-fu.mo
share/locale/pt/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/pt/LC_MESSAGES/gimp20-tips.mo
share/locale/pt/LC_MESSAGES/gimp20.mo
share/locale/pt_BR/LC_MESSAGES/gimp20-libgimp.mo
share/locale/pt_BR/LC_MESSAGES/gimp20-python.mo
share/locale/pt_BR/LC_MESSAGES/gimp20-script-fu.mo
share/locale/pt_BR/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/pt_BR/LC_MESSAGES/gimp20-tips.mo
share/locale/pt_BR/LC_MESSAGES/gimp20.mo
share/locale/ro/LC_MESSAGES/gimp20-libgimp.mo
share/locale/ro/LC_MESSAGES/gimp20-python.mo
share/locale/ro/LC_MESSAGES/gimp20-script-fu.mo
share/locale/ro/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/ro/LC_MESSAGES/gimp20-tips.mo
share/locale/ro/LC_MESSAGES/gimp20.mo
share/locale/ru/LC_MESSAGES/gimp20-libgimp.mo
share/locale/ru/LC_MESSAGES/gimp20-python.mo
share/locale/ru/LC_MESSAGES/gimp20-script-fu.mo
share/locale/ru/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/ru/LC_MESSAGES/gimp20-tips.mo
share/locale/ru/LC_MESSAGES/gimp20.mo
share/locale/rw/LC_MESSAGES/gimp20-libgimp.mo
share/locale/rw/LC_MESSAGES/gimp20-python.mo
share/locale/rw/LC_MESSAGES/gimp20-script-fu.mo
share/locale/rw/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/rw/LC_MESSAGES/gimp20-tips.mo
share/locale/rw/LC_MESSAGES/gimp20.mo
share/locale/si/LC_MESSAGES/gimp20.mo
share/locale/sk/LC_MESSAGES/gimp20-libgimp.mo
share/locale/sk/LC_MESSAGES/gimp20-python.mo
share/locale/sk/LC_MESSAGES/gimp20-script-fu.mo
share/locale/sk/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/sk/LC_MESSAGES/gimp20-tips.mo
share/locale/sk/LC_MESSAGES/gimp20.mo
share/locale/sl/LC_MESSAGES/gimp20-libgimp.mo
share/locale/sl/LC_MESSAGES/gimp20-python.mo
share/locale/sl/LC_MESSAGES/gimp20-script-fu.mo
share/locale/sl/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/sl/LC_MESSAGES/gimp20-tips.mo
share/locale/sl/LC_MESSAGES/gimp20.mo
share/locale/sr/LC_MESSAGES/gimp20-libgimp.mo
share/locale/sr/LC_MESSAGES/gimp20-python.mo
share/locale/sr/LC_MESSAGES/gimp20-script-fu.mo
share/locale/sr/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/sr/LC_MESSAGES/gimp20-tips.mo
share/locale/sr/LC_MESSAGES/gimp20.mo
share/locale/sr@latin/LC_MESSAGES/gimp20-libgimp.mo
share/locale/sr@latin/LC_MESSAGES/gimp20-python.mo
share/locale/sr@latin/LC_MESSAGES/gimp20-script-fu.mo
share/locale/sr@latin/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/sr@latin/LC_MESSAGES/gimp20-tips.mo
share/locale/sr@latin/LC_MESSAGES/gimp20.mo
share/locale/sv/LC_MESSAGES/gimp20-libgimp.mo
share/locale/sv/LC_MESSAGES/gimp20-python.mo
share/locale/sv/LC_MESSAGES/gimp20-script-fu.mo
share/locale/sv/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/sv/LC_MESSAGES/gimp20-tips.mo
share/locale/sv/LC_MESSAGES/gimp20.mo
share/locale/ta/LC_MESSAGES/gimp20-libgimp.mo
share/locale/ta/LC_MESSAGES/gimp20-python.mo
share/locale/ta/LC_MESSAGES/gimp20-script-fu.mo
share/locale/ta/LC_MESSAGES/gimp20-tips.mo
share/locale/ta/LC_MESSAGES/gimp20.mo
share/locale/te/LC_MESSAGES/gimp20-libgimp.mo
share/locale/te/LC_MESSAGES/gimp20-python.mo
@ -5781,20 +5726,17 @@ share/locale/tr/LC_MESSAGES/gimp20-libgimp.mo
share/locale/tr/LC_MESSAGES/gimp20-python.mo
share/locale/tr/LC_MESSAGES/gimp20-script-fu.mo
share/locale/tr/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/tr/LC_MESSAGES/gimp20-tips.mo
share/locale/tr/LC_MESSAGES/gimp20.mo
share/locale/tt/LC_MESSAGES/gimp20.mo
share/locale/uk/LC_MESSAGES/gimp20-libgimp.mo
share/locale/uk/LC_MESSAGES/gimp20-python.mo
share/locale/uk/LC_MESSAGES/gimp20-script-fu.mo
share/locale/uk/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/uk/LC_MESSAGES/gimp20-tips.mo
share/locale/uk/LC_MESSAGES/gimp20.mo
share/locale/vi/LC_MESSAGES/gimp20-libgimp.mo
share/locale/vi/LC_MESSAGES/gimp20-python.mo
share/locale/vi/LC_MESSAGES/gimp20-script-fu.mo
share/locale/vi/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/vi/LC_MESSAGES/gimp20-tips.mo
share/locale/vi/LC_MESSAGES/gimp20.mo
share/locale/xh/LC_MESSAGES/gimp20-libgimp.mo
share/locale/xh/LC_MESSAGES/gimp20-python.mo
@ -5809,19 +5751,16 @@ share/locale/zh_CN/LC_MESSAGES/gimp20-libgimp.mo
share/locale/zh_CN/LC_MESSAGES/gimp20-python.mo
share/locale/zh_CN/LC_MESSAGES/gimp20-script-fu.mo
share/locale/zh_CN/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/zh_CN/LC_MESSAGES/gimp20-tips.mo
share/locale/zh_CN/LC_MESSAGES/gimp20.mo
share/locale/zh_HK/LC_MESSAGES/gimp20-libgimp.mo
share/locale/zh_HK/LC_MESSAGES/gimp20-python.mo
share/locale/zh_HK/LC_MESSAGES/gimp20-script-fu.mo
share/locale/zh_HK/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/zh_HK/LC_MESSAGES/gimp20-tips.mo
share/locale/zh_HK/LC_MESSAGES/gimp20.mo
share/locale/zh_TW/LC_MESSAGES/gimp20-libgimp.mo
share/locale/zh_TW/LC_MESSAGES/gimp20-python.mo
share/locale/zh_TW/LC_MESSAGES/gimp20-script-fu.mo
share/locale/zh_TW/LC_MESSAGES/gimp20-std-plug-ins.mo
share/locale/zh_TW/LC_MESSAGES/gimp20-tips.mo
share/locale/zh_TW/LC_MESSAGES/gimp20.mo
share/metainfo/
share/metainfo/gimp-data-extras.metainfo.xml