From c489f6858a993b139b74c06b0d3fe5793d239dfc Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Tue, 8 Sep 2020 10:32:47 +0200 Subject: [PATCH 1/4] babl: Update version from 0.1.74 to 0.1.80 GIMP 2.10.20 requires 0.1.78. --- babl.be0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/babl.be0 b/babl.be0 index 3ae5184e7..4aa22ee46 100755 --- a/babl.be0 +++ b/babl.be0 @@ -1,6 +1,6 @@ #!/usr/bin/env beesh -# BEE_VERSION babl-0.1.74-0 +# BEE_VERSION babl-0.1.80-0 ## this file was created by bee init and should be executed to build a ## bee-package. (Additional hints are located at the end of this file.) From cf57da5c1840612cb0cc71794da13c04c2d43640 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Tue, 8 Sep 2020 10:36:30 +0200 Subject: [PATCH 2/4] gegl: Update version from 0.4.22 to 0.4.26 Required by GIMP 2.10.20. --- gegl.be0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gegl.be0 b/gegl.be0 index 39d822c90..5ddaa3275 100755 --- a/gegl.be0 +++ b/gegl.be0 @@ -1,6 +1,6 @@ #!/usr/bin/env beesh -# BEE_VERSION gegl-0.4.22-0 +# BEE_VERSION gegl-0.4.26-0 ## this file was created by bee init and should be executed to build a ## bee-package. (Additional hints are located at the end of this file.) From 940657f303e20e2c430d146a9369b09f898cc13b Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Tue, 8 Sep 2020 10:29:02 +0200 Subject: [PATCH 3/4] gimp: Update version from 2.10.18 to 2.10.20 https://www.gimp.org/news/2020/06/11/gimp-2-10-20-released/ --- gimp.be0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gimp.be0 b/gimp.be0 index de7adeef7..8d65f0dc1 100755 --- a/gimp.be0 +++ b/gimp.be0 @@ -1,6 +1,6 @@ #!/usr/bin/env beesh -# BEE_VERSION gimp-2.10.18-0 +# BEE_VERSION gimp-2.10.20-0 SRCURL[0]="https://download.gimp.org/mirror/pub/gimp/v${PKGVERSION[2]}/gimp-${PKGVERSION}.tar.bz2" From f084b635d171a395faab55df21c83d00cd52f5c4 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Wed, 9 Sep 2020 08:41:21 +0200 Subject: [PATCH 4/4] gimp: Disable update check on startup By default, GIMP checks for updates. Currently, this does not work (in our environment) resulting in the error below [1]. $ gimp gimp_check_updates_callback: loading of https://gimp.org/gimp_versions.json failed: Peer failed to perform TLS handshake So, configure the build to disable the check. --disable-check-update GIMP will not look up new version availability on startup [1]: https://gitlab.gnome.org/GNOME/gimp/-/issues/5622 --- gimp.be0 | 1 + 1 file changed, 1 insertion(+) diff --git a/gimp.be0 b/gimp.be0 index 8d65f0dc1..854d91cf9 100755 --- a/gimp.be0 +++ b/gimp.be0 @@ -25,6 +25,7 @@ SRCURL[0]="https://download.gimp.org/mirror/pub/gimp/v${PKGVERSION[2]}/gimp-${PK mee_configure() { bee_configure \ + --disable-check-update \ --disable-python }