diff options
Diffstat (limited to 'meta-gnome/recipes-gimp')
| -rw-r--r-- | meta-gnome/recipes-gimp/babl/babl_0.1.126.bb (renamed from meta-gnome/recipes-gimp/babl/babl_0.1.122.bb) | 2 | ||||
| -rw-r--r-- | meta-gnome/recipes-gimp/gegl/gegl/0001-gegl-Add-gegl-arm.def-file.patch | 53 | ||||
| -rw-r--r-- | meta-gnome/recipes-gimp/gegl/gegl_0.4.70.bb (renamed from meta-gnome/recipes-gimp/gegl/gegl_0.4.66.bb) | 6 | ||||
| -rw-r--r-- | meta-gnome/recipes-gimp/gimp/gimp/0004-meson.build-dont-check-for-python3-pygobject-gexiv2-.patch | 47 | ||||
| -rw-r--r-- | meta-gnome/recipes-gimp/gimp/gimp/0005-docs-meson.build-disable-gimprc-man-build.patch | 33 | ||||
| -rw-r--r-- | meta-gnome/recipes-gimp/gimp/gimp_3.2.4.bb (renamed from meta-gnome/recipes-gimp/gimp/gimp_3.2.0.bb) | 7 | ||||
| -rw-r--r-- | meta-gnome/recipes-gimp/mypaint/mypaint-brushes-1.0_git.bb | 11 |
7 files changed, 88 insertions, 71 deletions
diff --git a/meta-gnome/recipes-gimp/babl/babl_0.1.122.bb b/meta-gnome/recipes-gimp/babl/babl_0.1.126.bb index c623e0d4ac..10e2c482a5 100644 --- a/meta-gnome/recipes-gimp/babl/babl_0.1.122.bb +++ b/meta-gnome/recipes-gimp/babl/babl_0.1.126.bb | |||
| @@ -10,7 +10,7 @@ inherit setuptools3 gnomebase gobject-introspection vala | |||
| 10 | DEPENDS += "lcms" | 10 | DEPENDS += "lcms" |
| 11 | 11 | ||
| 12 | SRC_URI = "https://download.gimp.org/pub/${BPN}/0.1/${BP}.tar.xz" | 12 | SRC_URI = "https://download.gimp.org/pub/${BPN}/0.1/${BP}.tar.xz" |
| 13 | SRC_URI[sha256sum] = "6851f705cda38f2df08a4ba8618279ce30d0a46f957fe6aa325b7b7de297bed2" | 13 | SRC_URI[sha256sum] = "3f090f4b2a61fecf7c8dc60a5804bbc77cefd8d778af2ded059f0e367a52930e" |
| 14 | 14 | ||
| 15 | FILES:${PN} += "${libdir}/${BPN}-${@gnome_verdir("${PV}")}" | 15 | FILES:${PN} += "${libdir}/${BPN}-${@gnome_verdir("${PV}")}" |
| 16 | 16 | ||
diff --git a/meta-gnome/recipes-gimp/gegl/gegl/0001-gegl-Add-gegl-arm.def-file.patch b/meta-gnome/recipes-gimp/gegl/gegl/0001-gegl-Add-gegl-arm.def-file.patch deleted file mode 100644 index 1a2d39af4a..0000000000 --- a/meta-gnome/recipes-gimp/gegl/gegl/0001-gegl-Add-gegl-arm.def-file.patch +++ /dev/null | |||
| @@ -1,53 +0,0 @@ | |||
| 1 | From 69c263ae5f3d4a2d251e00c7236efd035db2bb5a Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Bruno Lopes <brunvonlope@outlook.com> | ||
| 3 | Date: Sat, 13 Dec 2025 08:48:21 -0300 | ||
| 4 | Subject: [PATCH] gegl: Add gegl-arm.def file | ||
| 5 | |||
| 6 | Fix def-file problem in arm environment. | ||
| 7 | |||
| 8 | Problem found in gegl/gegl.def | ||
| 9 | the following symbols are in the library, | ||
| 10 | but are not listed in the .def-file: | ||
| 11 | + gegl_downscale_2x2_arm_neon | ||
| 12 | + gegl_downscale_2x2_get_fun_arm_neon | ||
| 13 | + gegl_downscale_2x2_nearest_arm_neon | ||
| 14 | + gegl_resample_bilinear_arm_neon | ||
| 15 | + gegl_resample_boxfilter_arm_neon | ||
| 16 | + gegl_resample_nearest_arm_neon | ||
| 17 | |||
| 18 | Upstream-Status: Backport [https://github.com/GNOME/gegl/commit/69c263ae5f3d4a2d251e00c7236efd035db2bb5a] | ||
| 19 | Signed-off-by: Liu Yiding <liuyd.fnst@fujitsu.com> | ||
| 20 | --- | ||
| 21 | gegl/gegl-arm.def | 6 ++++++ | ||
| 22 | gegl/meson.build | 2 +- | ||
| 23 | 2 files changed, 7 insertions(+), 1 deletion(-) | ||
| 24 | create mode 100644 gegl/gegl-arm.def | ||
| 25 | |||
| 26 | diff --git a/gegl/gegl-arm.def b/gegl/gegl-arm.def | ||
| 27 | new file mode 100644 | ||
| 28 | index 000000000..cb8277cf6 | ||
| 29 | --- /dev/null | ||
| 30 | +++ b/gegl/gegl-arm.def | ||
| 31 | @@ -0,0 +1,6 @@ | ||
| 32 | + gegl_downscale_2x2_arm_neon | ||
| 33 | + gegl_downscale_2x2_get_fun_arm_neon | ||
| 34 | + gegl_downscale_2x2_nearest_arm_neon | ||
| 35 | + gegl_resample_bilinear_arm_neon | ||
| 36 | + gegl_resample_boxfilter_arm_neon | ||
| 37 | + gegl_resample_nearest_arm_neon | ||
| 38 | diff --git a/gegl/meson.build b/gegl/meson.build | ||
| 39 | index 0548b069d..85e89bbd2 100644 | ||
| 40 | --- a/gegl/meson.build | ||
| 41 | +++ b/gegl/meson.build | ||
| 42 | @@ -102,7 +102,7 @@ if host_cpu_family == 'x86_64' | ||
| 43 | simd_extra_def = ['gegl-x86_64.def'] | ||
| 44 | elif host_cpu_family == 'arm' | ||
| 45 | simd_extra = [lib_gegl_arm_neon] | ||
| 46 | - simd_extra_def = [] | ||
| 47 | + simd_extra_def = ['gegl-arm.def'] | ||
| 48 | else | ||
| 49 | simd_extra = [] | ||
| 50 | simd_extra_def = [] | ||
| 51 | -- | ||
| 52 | 2.43.0 | ||
| 53 | |||
diff --git a/meta-gnome/recipes-gimp/gegl/gegl_0.4.66.bb b/meta-gnome/recipes-gimp/gegl/gegl_0.4.70.bb index 3ec7457866..64ff475dc4 100644 --- a/meta-gnome/recipes-gimp/gegl/gegl_0.4.66.bb +++ b/meta-gnome/recipes-gimp/gegl/gegl_0.4.70.bb | |||
| @@ -27,10 +27,8 @@ ANY_OF_DISTRO_FEATURES = "${GTK3DISTROFEATURES}" | |||
| 27 | 27 | ||
| 28 | SHPV = "${@gnome_verdir("${PV}")}" | 28 | SHPV = "${@gnome_verdir("${PV}")}" |
| 29 | 29 | ||
| 30 | SRC_URI = "https://download.gimp.org/pub/${BPN}/${SHPV}/${BP}.tar.xz \ | 30 | SRC_URI = "https://download.gimp.org/pub/${BPN}/${SHPV}/${BP}.tar.xz" |
| 31 | file://0001-gegl-Add-gegl-arm.def-file.patch \ | 31 | SRC_URI[sha256sum] = "47f50d9c3aecd375deb48c11ebfead52d162e4fc162a4b3d44618277f1faec02" |
| 32 | " | ||
| 33 | SRC_URI[sha256sum] = "92b05855e2190868949d70cea6e9a50b163a6a441242e740a6263975379f993b" | ||
| 34 | 32 | ||
| 35 | PACKAGECONFIG ??= "gexiv2 libraw librsvg pango poppler sdl2" | 33 | PACKAGECONFIG ??= "gexiv2 libraw librsvg pango poppler sdl2" |
| 36 | PACKAGECONFIG:class-native = "librsvg" | 34 | PACKAGECONFIG:class-native = "librsvg" |
diff --git a/meta-gnome/recipes-gimp/gimp/gimp/0004-meson.build-dont-check-for-python3-pygobject-gexiv2-.patch b/meta-gnome/recipes-gimp/gimp/gimp/0004-meson.build-dont-check-for-python3-pygobject-gexiv2-.patch new file mode 100644 index 0000000000..4eb6f9553d --- /dev/null +++ b/meta-gnome/recipes-gimp/gimp/gimp/0004-meson.build-dont-check-for-python3-pygobject-gexiv2-.patch | |||
| @@ -0,0 +1,47 @@ | |||
| 1 | From d00c3c9fb8267f53cf730b8441a7d7f904af5215 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Markus Volk <f_l_k@t-online.de> | ||
| 3 | Date: Mon, 20 Apr 2026 09:14:50 +0200 | ||
| 4 | Subject: [PATCH] meson.build: dont check for python3-pygobject gexiv2 support | ||
| 5 | MIME-Version: 1.0 | ||
| 6 | Content-Type: text/plain; charset=UTF-8 | ||
| 7 | Content-Transfer-Encoding: 8bit | ||
| 8 | |||
| 9 | We only provide support for gexiv2 in python3-pygobject for the target, but | ||
| 10 | unfortunately this feature is being requested for the native version, which | ||
| 11 | would require gexiv2-native to be compilable — something I consider quite | ||
| 12 | hard to achieve and maybe also not desirable at all. | ||
| 13 | |||
| 14 | Remove the test for this feature, since we know that our target provides it. | ||
| 15 | |||
| 16 | Signed-off-by: Markus Volk <f_l_k@t-online.de> | ||
| 17 | |||
| 18 | Upstream-Status: Inappropriate [oe-specific] | ||
| 19 | --- | ||
| 20 | meson.build | 4 ++-- | ||
| 21 | 1 file changed, 2 insertions(+), 2 deletions(-) | ||
| 22 | |||
| 23 | diff --git a/meson.build b/meson.build | ||
| 24 | index 4f6f8ce9a4..4509cd2c39 100644 | ||
| 25 | --- a/meson.build | ||
| 26 | +++ b/meson.build | ||
| 27 | @@ -1224,7 +1224,7 @@ foreach py : py_candidates | ||
| 28 | '''except (ImportError):''', | ||
| 29 | ''' sys.exit(1)''']), | ||
| 30 | check: false).returncode() == 0 | ||
| 31 | - if pygobject_found.returncode() == 0 and pygobject_found.stdout().strip().version_compare(pygobject_minver) and pygobject_gexiv2_found | ||
| 32 | + if pygobject_found.returncode() == 0 and pygobject_found.stdout().strip().version_compare(pygobject_minver) | ||
| 33 | break | ||
| 34 | endif | ||
| 35 | endif | ||
| 36 | @@ -1235,7 +1235,7 @@ if not python.found() or not python.language_version().version_compare(python3_m | ||
| 37 | endif | ||
| 38 | message('Found Python @0@'.format(python.language_version())) | ||
| 39 | |||
| 40 | -if pygobject_found.returncode() != 0 or not pygobject_found.stdout().strip().version_compare(pygobject_minver) or not pygobject_gexiv2_found | ||
| 41 | +if pygobject_found.returncode() != 0 or not pygobject_found.stdout().strip().version_compare(pygobject_minver) | ||
| 42 | error('No suitable PyGObject (with GExiv2 submodule) found. Minimum supported version: @0@'.format(pygobject_minver)) | ||
| 43 | endif | ||
| 44 | message('Found PyGObject: @0@'.format(pygobject_found.stdout().strip())) | ||
| 45 | -- | ||
| 46 | 2.53.0 | ||
| 47 | |||
diff --git a/meta-gnome/recipes-gimp/gimp/gimp/0005-docs-meson.build-disable-gimprc-man-build.patch b/meta-gnome/recipes-gimp/gimp/gimp/0005-docs-meson.build-disable-gimprc-man-build.patch new file mode 100644 index 0000000000..91e7f92336 --- /dev/null +++ b/meta-gnome/recipes-gimp/gimp/gimp/0005-docs-meson.build-disable-gimprc-man-build.patch | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | From 47948d14777438ca5e8619a1f9293db28af88305 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Markus Volk <f_l_k@t-online.de> | ||
| 3 | Date: Mon, 20 Apr 2026 09:24:38 +0200 | ||
| 4 | Subject: [PATCH] docs/meson.build: disable gimprc man build | ||
| 5 | |||
| 6 | This would require a native variant of gimp-console | ||
| 7 | |||
| 8 | Signed-off-by: Markus Volk <f_l_k@t-online.de> | ||
| 9 | |||
| 10 | Upstream-Status: Inappropriate [oe-specific] | ||
| 11 | --- | ||
| 12 | docs/meson.build | 4 ++-- | ||
| 13 | 1 file changed, 2 insertions(+), 2 deletions(-) | ||
| 14 | |||
| 15 | diff --git a/docs/meson.build b/docs/meson.build | ||
| 16 | index 70b57b52ef..d36e47dbb5 100644 | ||
| 17 | --- a/docs/meson.build | ||
| 18 | +++ b/docs/meson.build | ||
| 19 | @@ -16,9 +16,9 @@ gimprc_man = custom_target('gimprc-' + gimp_app_version + '.5', | ||
| 20 | command: [ gimp_exe, '--no-interface', | ||
| 21 | '--dump-gimprc-manpage' ], | ||
| 22 | capture: true, | ||
| 23 | - build_by_default: true, | ||
| 24 | + build_by_default: false, | ||
| 25 | env: gimp_run_env, | ||
| 26 | - install: true, | ||
| 27 | + install: false, | ||
| 28 | install_dir: get_option('mandir') / 'man5') | ||
| 29 | |||
| 30 | gimptool_man = configure_file(input : 'gimptool.1.in', | ||
| 31 | -- | ||
| 32 | 2.53.0 | ||
| 33 | |||
diff --git a/meta-gnome/recipes-gimp/gimp/gimp_3.2.0.bb b/meta-gnome/recipes-gimp/gimp/gimp_3.2.4.bb index d6928498ac..82c68346eb 100644 --- a/meta-gnome/recipes-gimp/gimp/gimp_3.2.0.bb +++ b/meta-gnome/recipes-gimp/gimp/gimp_3.2.4.bb | |||
| @@ -37,6 +37,7 @@ DEPENDS = " \ | |||
| 37 | poppler \ | 37 | poppler \ |
| 38 | poppler-data \ | 38 | poppler-data \ |
| 39 | python3-pygobject-native \ | 39 | python3-pygobject-native \ |
| 40 | python3-pycairo-native \ | ||
| 40 | tiff \ | 41 | tiff \ |
| 41 | xz \ | 42 | xz \ |
| 42 | zlib \ | 43 | zlib \ |
| @@ -62,8 +63,10 @@ SRC_URI = "https://download.gimp.org/gimp/v3.2/${BP}.tar.xz \ | |||
| 62 | file://0001-meson.build-dont-check-for-lgi.patch \ | 63 | file://0001-meson.build-dont-check-for-lgi.patch \ |
| 63 | file://0002-meson.build-use-relative-path-for-ISO_CODES_LOCATION.patch \ | 64 | file://0002-meson.build-use-relative-path-for-ISO_CODES_LOCATION.patch \ |
| 64 | file://0003-meson.build-reproducibility-fix.patch \ | 65 | file://0003-meson.build-reproducibility-fix.patch \ |
| 66 | file://0004-meson.build-dont-check-for-python3-pygobject-gexiv2-.patch \ | ||
| 67 | file://0005-docs-meson.build-disable-gimprc-man-build.patch \ | ||
| 65 | " | 68 | " |
| 66 | SRC_URI[sha256sum] = "2618391416e51be3c693df9ef90e3860ed72ab3d36363ea1f196e30b75b2e083" | 69 | SRC_URI[sha256sum] = "7312bc53e9c6d2d0056ca7b93f1c6b98707946dd934f714c21b8746ecb601588" |
| 67 | 70 | ||
| 68 | PACKAGECONFIG[aa] = "-Daa=enabled,-Daa=disabled,aalib" | 71 | PACKAGECONFIG[aa] = "-Daa=enabled,-Daa=disabled,aalib" |
| 69 | PACKAGECONFIG[alsa] = "-Dalsa=enabled,-Dalsa=disabled,alsa-lib" | 72 | PACKAGECONFIG[alsa] = "-Dalsa=enabled,-Dalsa=disabled,alsa-lib" |
| @@ -132,7 +135,7 @@ do_install:prepend() { | |||
| 132 | 135 | ||
| 133 | FILES:${PN} += "${datadir}/metainfo" | 136 | FILES:${PN} += "${datadir}/metainfo" |
| 134 | 137 | ||
| 135 | RDEPENDS:${PN} = "mypaint-brushes-1.0 glib-networking python3-pygobject" | 138 | RDEPENDS:${PN} = "mypaint-brushes glib-networking python3-pygobject python3-pycairo" |
| 136 | 139 | ||
| 137 | CVE_STATUS[CVE-2007-3741] = "not-applicable-platform: This only applies for Mandriva Linux" | 140 | CVE_STATUS[CVE-2007-3741] = "not-applicable-platform: This only applies for Mandriva Linux" |
| 138 | CVE_STATUS[CVE-2025-8672] = "not-applicable-config: the vulnerability only affects MacOS" | 141 | CVE_STATUS[CVE-2025-8672] = "not-applicable-config: the vulnerability only affects MacOS" |
diff --git a/meta-gnome/recipes-gimp/mypaint/mypaint-brushes-1.0_git.bb b/meta-gnome/recipes-gimp/mypaint/mypaint-brushes-1.0_git.bb deleted file mode 100644 index b6b8ff8c1f..0000000000 --- a/meta-gnome/recipes-gimp/mypaint/mypaint-brushes-1.0_git.bb +++ /dev/null | |||
| @@ -1,11 +0,0 @@ | |||
| 1 | SUMMARY = "MyPaint brushes" | ||
| 2 | LICENSE = "CC0-1.0" | ||
| 3 | LIC_FILES_CHKSUM = "file://COPYING;md5=65d3616852dbf7b1a6d4b53b00626032" | ||
| 4 | |||
| 5 | inherit autotools allarch | ||
| 6 | |||
| 7 | SRC_URI = "git://github.com/mypaint/mypaint-brushes.git;protocol=https;branch=v1.3.x" | ||
| 8 | SRCREV = "8a0124ac0675103eae8fa41fad533851768ae1ce" | ||
| 9 | PV = "1.3.1" | ||
| 10 | |||
| 11 | FILES:${PN} += "${datadir}/mypaint-data" | ||
