mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH 1/2] glib: Version bump. 2.74.6 -> 2.76.1
@ 2023-04-09 18:38 Christian Melki
  2023-04-09 18:38 ` [ptxdist] [PATCH 2/2] host-glib: Follow suit from target glib Christian Melki
  2023-04-14 10:03 ` [ptxdist] [APPLIED] glib: Version bump. 2.74.6 -> 2.76.1 Michael Olbrich
  0 siblings, 2 replies; 4+ messages in thread
From: Christian Melki @ 2023-04-09 18:38 UTC (permalink / raw)
  To: ptxdist

Bunch of fixes and changes over to the next stable series.
Since there is no single summary from 74.x to 76.x it's best
to inspect everything inbetween.

https://gitlab.gnome.org/GNOME/glib/-/releases/2.75.0
https://gitlab.gnome.org/GNOME/glib/-/releases/2.75.1
https://gitlab.gnome.org/GNOME/glib/-/releases/2.75.2
https://gitlab.gnome.org/GNOME/glib/-/releases/2.75.3
https://gitlab.gnome.org/GNOME/glib/-/releases/2.75.4
https://gitlab.gnome.org/GNOME/glib/-/releases/2.76.0
https://gitlab.gnome.org/GNOME/glib/-/releases/2.76.1

* Remove deprecated iconv option. Isn't used.

Signed-off-by: Christian Melki <christian.melki@t2data.com>
---
 rules/glib.make | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/rules/glib.make b/rules/glib.make
index da5c88110..dc152463b 100644
--- a/rules/glib.make
+++ b/rules/glib.make
@@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_GLIB) += glib
 #
 # Paths and names
 #
-GLIB_VERSION	:= 2.74.6
-GLIB_MD5	:= 38f81d4a06c03e667b1f4d73cb803da8
+GLIB_VERSION	:= 2.76.1
+GLIB_MD5	:= 1adbc389ab891616a041aa6d42ef0529
 GLIB		:= glib-$(GLIB_VERSION)
 GLIB_SUFFIX	:= tar.xz
 GLIB_URL	:= $(call ptx/mirror, GNOME, glib/$(basename $(GLIB_VERSION))/$(GLIB).$(GLIB_SUFFIX))
@@ -44,7 +44,6 @@ GLIB_CONF_OPT	:= \
 	-Dglib_checks=true \
 	-Dglib_debug=enabled \
 	-Dgtk_doc=false \
-	-Diconv=libc \
 	-Dinstalled_tests=false \
 	-Dlibelf=disabled \
 	-Dlibmount=$(call ptx/endis, PTXCONF_GLIB_LIBMOUNT)d \
-- 
2.34.1




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

* [ptxdist] [PATCH 2/2] host-glib: Follow suit from target glib.
  2023-04-09 18:38 [ptxdist] [PATCH 1/2] glib: Version bump. 2.74.6 -> 2.76.1 Christian Melki
@ 2023-04-09 18:38 ` Christian Melki
  2023-04-14 10:03   ` [ptxdist] [APPLIED] " Michael Olbrich
  2023-04-14 10:03 ` [ptxdist] [APPLIED] glib: Version bump. 2.74.6 -> 2.76.1 Michael Olbrich
  1 sibling, 1 reply; 4+ messages in thread
From: Christian Melki @ 2023-04-09 18:38 UTC (permalink / raw)
  To: ptxdist

* Remove deprecated iconv option. Isn't used.

Signed-off-by: Christian Melki <christian.melki@t2data.com>
---
 rules/host-glib.make | 1 -
 1 file changed, 1 deletion(-)

diff --git a/rules/host-glib.make b/rules/host-glib.make
index 558340a69..fd7d11d9e 100644
--- a/rules/host-glib.make
+++ b/rules/host-glib.make
@@ -33,7 +33,6 @@ HOST_GLIB_CONF_OPT	:= \
 	-Dglib_checks=true \
 	-Dglib_debug=enabled \
 	-Dgtk_doc=false \
-	-Diconv=libc \
 	-Dinstalled_tests=false \
 	-Dlibelf=disabled \
 	-Dlibmount=disabled \
-- 
2.34.1




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

* Re: [ptxdist] [APPLIED] glib: Version bump. 2.74.6 -> 2.76.1
  2023-04-09 18:38 [ptxdist] [PATCH 1/2] glib: Version bump. 2.74.6 -> 2.76.1 Christian Melki
  2023-04-09 18:38 ` [ptxdist] [PATCH 2/2] host-glib: Follow suit from target glib Christian Melki
@ 2023-04-14 10:03 ` Michael Olbrich
  1 sibling, 0 replies; 4+ messages in thread
From: Michael Olbrich @ 2023-04-14 10:03 UTC (permalink / raw)
  To: ptxdist; +Cc: Christian Melki

Thanks, applied as 2867d4672cc82166532266e9eb9d31bf66152d4e.

Michael

[sent from post-receive hook]

On Fri, 14 Apr 2023 12:03:40 +0200, Christian Melki <christian.melki@t2data.com> wrote:
> Bunch of fixes and changes over to the next stable series.
> Since there is no single summary from 74.x to 76.x it's best
> to inspect everything inbetween.
> 
> https://gitlab.gnome.org/GNOME/glib/-/releases/2.75.0
> https://gitlab.gnome.org/GNOME/glib/-/releases/2.75.1
> https://gitlab.gnome.org/GNOME/glib/-/releases/2.75.2
> https://gitlab.gnome.org/GNOME/glib/-/releases/2.75.3
> https://gitlab.gnome.org/GNOME/glib/-/releases/2.75.4
> https://gitlab.gnome.org/GNOME/glib/-/releases/2.76.0
> https://gitlab.gnome.org/GNOME/glib/-/releases/2.76.1
> 
> * Remove deprecated iconv option. Isn't used.
> 
> Signed-off-by: Christian Melki <christian.melki@t2data.com>
> Message-Id: <20230409183819.4180222-1-christian.melki@t2data.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/glib.make b/rules/glib.make
> index da5c88110544..dc152463b92d 100644
> --- a/rules/glib.make
> +++ b/rules/glib.make
> @@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_GLIB) += glib
>  #
>  # Paths and names
>  #
> -GLIB_VERSION	:= 2.74.6
> -GLIB_MD5	:= 38f81d4a06c03e667b1f4d73cb803da8
> +GLIB_VERSION	:= 2.76.1
> +GLIB_MD5	:= 1adbc389ab891616a041aa6d42ef0529
>  GLIB		:= glib-$(GLIB_VERSION)
>  GLIB_SUFFIX	:= tar.xz
>  GLIB_URL	:= $(call ptx/mirror, GNOME, glib/$(basename $(GLIB_VERSION))/$(GLIB).$(GLIB_SUFFIX))
> @@ -44,7 +44,6 @@ GLIB_CONF_OPT	:= \
>  	-Dglib_checks=true \
>  	-Dglib_debug=enabled \
>  	-Dgtk_doc=false \
> -	-Diconv=libc \
>  	-Dinstalled_tests=false \
>  	-Dlibelf=disabled \
>  	-Dlibmount=$(call ptx/endis, PTXCONF_GLIB_LIBMOUNT)d \



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

* Re: [ptxdist] [APPLIED] host-glib: Follow suit from target glib.
  2023-04-09 18:38 ` [ptxdist] [PATCH 2/2] host-glib: Follow suit from target glib Christian Melki
@ 2023-04-14 10:03   ` Michael Olbrich
  0 siblings, 0 replies; 4+ messages in thread
From: Michael Olbrich @ 2023-04-14 10:03 UTC (permalink / raw)
  To: ptxdist; +Cc: Christian Melki

Thanks, applied as 923082101362da69f8e3853d060e3d4b3d293fa0.

Michael

[sent from post-receive hook]

On Fri, 14 Apr 2023 12:03:41 +0200, Christian Melki <christian.melki@t2data.com> wrote:
> * Remove deprecated iconv option. Isn't used.
> 
> Signed-off-by: Christian Melki <christian.melki@t2data.com>
> Message-Id: <20230409183819.4180222-2-christian.melki@t2data.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/host-glib.make b/rules/host-glib.make
> index 558340a695f6..fd7d11d9e19f 100644
> --- a/rules/host-glib.make
> +++ b/rules/host-glib.make
> @@ -33,7 +33,6 @@ HOST_GLIB_CONF_OPT	:= \
>  	-Dglib_checks=true \
>  	-Dglib_debug=enabled \
>  	-Dgtk_doc=false \
> -	-Diconv=libc \
>  	-Dinstalled_tests=false \
>  	-Dlibelf=disabled \
>  	-Dlibmount=disabled \



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

end of thread, other threads:[~2023-04-14 10:04 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-04-09 18:38 [ptxdist] [PATCH 1/2] glib: Version bump. 2.74.6 -> 2.76.1 Christian Melki
2023-04-09 18:38 ` [ptxdist] [PATCH 2/2] host-glib: Follow suit from target glib Christian Melki
2023-04-14 10:03   ` [ptxdist] [APPLIED] " Michael Olbrich
2023-04-14 10:03 ` [ptxdist] [APPLIED] glib: Version bump. 2.74.6 -> 2.76.1 Michael Olbrich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox