All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/gdk-pixbuf: bump to version 2.42.8
@ 2022-07-27  9:16 Fabrice Fontaine
  2022-07-27 10:12 ` Thomas Petazzoni via buildroot
  2022-08-30 15:57 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2022-07-27  9:16 UTC (permalink / raw)
  To: buildroot; +Cc: Fabrice Fontaine

https://gitlab.gnome.org/GNOME/gdk-pixbuf/-/blob/2.42.8/NEWS

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/gdk-pixbuf/gdk-pixbuf.hash |  4 ++--
 package/gdk-pixbuf/gdk-pixbuf.mk   | 22 +++++++++++-----------
 2 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/package/gdk-pixbuf/gdk-pixbuf.hash b/package/gdk-pixbuf/gdk-pixbuf.hash
index 5e7dc7e03b..4bb246aa50 100644
--- a/package/gdk-pixbuf/gdk-pixbuf.hash
+++ b/package/gdk-pixbuf/gdk-pixbuf.hash
@@ -1,3 +1,3 @@
-# From https://ftp.gnome.org/pub/gnome/sources/gdk-pixbuf/2.42/gdk-pixbuf-2.42.4.sha256sum
-sha256  fe9c5dd88f486194ea2bc09b8814c1ed895bb6c530f37cbbf259757c4e482e4d  gdk-pixbuf-2.42.4.tar.xz
+# From https://ftp.gnome.org/pub/gnome/sources/gdk-pixbuf/2.42/gdk-pixbuf-2.42.8.sha256sum
+sha256  84acea3acb2411b29134b32015a5b1aaa62844b19c4b1ef8b8971c6b0759f4c6  gdk-pixbuf-2.42.8.tar.xz
 sha256  dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551  COPYING
diff --git a/package/gdk-pixbuf/gdk-pixbuf.mk b/package/gdk-pixbuf/gdk-pixbuf.mk
index 329c05520e..57e8bbd511 100644
--- a/package/gdk-pixbuf/gdk-pixbuf.mk
+++ b/package/gdk-pixbuf/gdk-pixbuf.mk
@@ -5,7 +5,7 @@
 ################################################################################
 
 GDK_PIXBUF_VERSION_MAJOR = 2.42
-GDK_PIXBUF_VERSION = $(GDK_PIXBUF_VERSION_MAJOR).4
+GDK_PIXBUF_VERSION = $(GDK_PIXBUF_VERSION_MAJOR).8
 GDK_PIXBUF_SOURCE = gdk-pixbuf-$(GDK_PIXBUF_VERSION).tar.xz
 GDK_PIXBUF_SITE = http://ftp.gnome.org/pub/gnome/sources/gdk-pixbuf/$(GDK_PIXBUF_VERSION_MAJOR)
 GDK_PIXBUF_LICENSE = LGPL-2.1+
@@ -41,30 +41,30 @@ GDK_PIXBUF_CONF_OPTS += -Dintrospection=disabled
 endif
 
 ifeq ($(BR2_PACKAGE_LIBPNG),y)
-GDK_PIXBUF_CONF_OPTS += -Dpng=true
+GDK_PIXBUF_CONF_OPTS += -Dpng=enabled
 GDK_PIXBUF_DEPENDENCIES += libpng
 else
-GDK_PIXBUF_CONF_OPTS += -Dpng=false
+GDK_PIXBUF_CONF_OPTS += -Dpng=disabled
 endif
 
 ifeq ($(BR2_PACKAGE_JPEG),y)
-GDK_PIXBUF_CONF_OPTS += -Djpeg=true
-HOST_GDK_PIXBUF_CONF_OPTS += -Djpeg=true
+GDK_PIXBUF_CONF_OPTS += -Djpeg=enabled
+HOST_GDK_PIXBUF_CONF_OPTS += -Djpeg=enabled
 GDK_PIXBUF_DEPENDENCIES += jpeg
 HOST_GDK_PIXBUF_DEPENDENCIES += host-libjpeg
 else
-GDK_PIXBUF_CONF_OPTS += -Djpeg=false
-HOST_GDK_PIXBUF_CONF_OPTS += -Djpeg=false
+GDK_PIXBUF_CONF_OPTS += -Djpeg=disabled
+HOST_GDK_PIXBUF_CONF_OPTS += -Djpeg=disabled
 endif
 
 ifeq ($(BR2_PACKAGE_TIFF),y)
-GDK_PIXBUF_CONF_OPTS += -Dtiff=true
-HOST_GDK_PIXBUF_CONF_OPTS += -Dtiff=true
+GDK_PIXBUF_CONF_OPTS += -Dtiff=enabled
+HOST_GDK_PIXBUF_CONF_OPTS += -Dtiff=enabled
 GDK_PIXBUF_DEPENDENCIES += tiff
 HOST_GDK_PIXBUF_DEPENDENCIES += host-tiff
 else
-GDK_PIXBUF_CONF_OPTS += -Dtiff=false
-HOST_GDK_PIXBUF_CONF_OPTS += -Dtiff=false
+GDK_PIXBUF_CONF_OPTS += -Dtiff=disabled
+HOST_GDK_PIXBUF_CONF_OPTS += -Dtiff=disabled
 endif
 
 # gdk-pixbuf requires the loaders.cache file populated to work properly
-- 
2.35.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [Buildroot] [PATCH 1/1] package/gdk-pixbuf: bump to version 2.42.8
  2022-07-27  9:16 [Buildroot] [PATCH 1/1] package/gdk-pixbuf: bump to version 2.42.8 Fabrice Fontaine
@ 2022-07-27 10:12 ` Thomas Petazzoni via buildroot
  2022-08-30 15:57 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni via buildroot @ 2022-07-27 10:12 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: buildroot

On Wed, 27 Jul 2022 11:16:07 +0200
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> https://gitlab.gnome.org/GNOME/gdk-pixbuf/-/blob/2.42.8/NEWS
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/gdk-pixbuf/gdk-pixbuf.hash |  4 ++--
>  package/gdk-pixbuf/gdk-pixbuf.mk   | 22 +++++++++++-----------
>  2 files changed, 13 insertions(+), 13 deletions(-)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Buildroot] [PATCH 1/1] package/gdk-pixbuf: bump to version 2.42.8
  2022-07-27  9:16 [Buildroot] [PATCH 1/1] package/gdk-pixbuf: bump to version 2.42.8 Fabrice Fontaine
  2022-07-27 10:12 ` Thomas Petazzoni via buildroot
@ 2022-08-30 15:57 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2022-08-30 15:57 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > https://gitlab.gnome.org/GNOME/gdk-pixbuf/-/blob/2.42.8/NEWS
 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed to 2022.05.x and 2022.02.x given the fixes, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-08-30 15:57 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-27  9:16 [Buildroot] [PATCH 1/1] package/gdk-pixbuf: bump to version 2.42.8 Fabrice Fontaine
2022-07-27 10:12 ` Thomas Petazzoni via buildroot
2022-08-30 15:57 ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.