All of lore.kernel.org
 help / color / mirror / Atom feed
* [OE-core][PATCH 1/4] nghttp2: upgrade 1.66.0 -> 1.68.0
@ 2025-11-06 20:45 ankur.tyagi85
  2025-11-06 20:45 ` [OE-core][PATCH 2/4] libunistring: upgrade 1.3 -> 1.4.1 ankur.tyagi85
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: ankur.tyagi85 @ 2025-11-06 20:45 UTC (permalink / raw)
  To: openembedded-core; +Cc: Ankur Tyagi

From: Ankur Tyagi <ankur.tyagi85@gmail.com>

Changelog:
https://github.com/nghttp2/nghttp2/releases/tag/v1.67.0
https://github.com/nghttp2/nghttp2/releases/tag/v1.67.1
https://github.com/nghttp2/nghttp2/releases/tag/v1.68.0

Signed-off-by: Ankur Tyagi <ankur.tyagi85@gmail.com>
---
 .../nghttp2/{nghttp2_1.66.0.bb => nghttp2_1.68.0.bb}            | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-support/nghttp2/{nghttp2_1.66.0.bb => nghttp2_1.68.0.bb} (84%)

diff --git a/meta/recipes-support/nghttp2/nghttp2_1.66.0.bb b/meta/recipes-support/nghttp2/nghttp2_1.68.0.bb
similarity index 84%
rename from meta/recipes-support/nghttp2/nghttp2_1.66.0.bb
rename to meta/recipes-support/nghttp2/nghttp2_1.68.0.bb
index 49d6d7e632..952064d268 100644
--- a/meta/recipes-support/nghttp2/nghttp2_1.66.0.bb
+++ b/meta/recipes-support/nghttp2/nghttp2_1.68.0.bb
@@ -5,7 +5,7 @@ LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://COPYING;md5=764abdf30b2eadd37ce47dcbce0ea1ec"
 
 SRC_URI = "${GITHUB_BASE_URI}/download/v${PV}/nghttp2-${PV}.tar.xz"
-SRC_URI[sha256sum] = "00ba1bdf0ba2c74b2a4fe6c8b1069dc9d82f82608af24442d430df97c6f9e631"
+SRC_URI[sha256sum] = "5511d3128850e01b5b26ec92bf39df15381c767a63441438b25ad6235def902c"
 
 inherit cmake manpages python3native github-releases
 


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

* [OE-core][PATCH 2/4] libunistring: upgrade 1.3 -> 1.4.1
  2025-11-06 20:45 [OE-core][PATCH 1/4] nghttp2: upgrade 1.66.0 -> 1.68.0 ankur.tyagi85
@ 2025-11-06 20:45 ` ankur.tyagi85
  2025-11-06 20:45 ` [OE-core][PATCH 3/4] libproxy: upgrade 0.5.10 -> 0.5.11 ankur.tyagi85
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 7+ messages in thread
From: ankur.tyagi85 @ 2025-11-06 20:45 UTC (permalink / raw)
  To: openembedded-core; +Cc: Ankur Tyagi

From: Ankur Tyagi <ankur.tyagi85@gmail.com>

License-Update: copyright years updated[1].

Changes in 1.4:
* The data tables and algorithms have been updated to Unicode version 17.0.0.
* Fixed a bug: The functions u*_grapheme_next and u*_grapheme_prev did not work right for strings with Indic characters, Emojis, or regional indicators.
Changes in 1.4.1:
* Fixed a compilation error in C++ mode.

[1] https://gitweb.git.savannah.gnu.org/gitweb/?p=libunistring.git;a=commitdiff;h=8839cd8ecfe0d6c32337419e4abdc856da23826e

Signed-off-by: Ankur Tyagi <ankur.tyagi85@gmail.com>
---
 .../{libunistring_1.3.bb => libunistring_1.4.1.bb}            | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-support/libunistring/{libunistring_1.3.bb => libunistring_1.4.1.bb} (87%)

diff --git a/meta/recipes-support/libunistring/libunistring_1.3.bb b/meta/recipes-support/libunistring/libunistring_1.4.1.bb
similarity index 87%
rename from meta/recipes-support/libunistring/libunistring_1.3.bb
rename to meta/recipes-support/libunistring/libunistring_1.4.1.bb
index 08531acec1..791f4983ed 100644
--- a/meta/recipes-support/libunistring/libunistring_1.3.bb
+++ b/meta/recipes-support/libunistring/libunistring_1.4.1.bb
@@ -16,12 +16,12 @@ SECTION = "devel"
 LICENSE = "LGPL-3.0-or-later | GPL-2.0-or-later"
 LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=6a6a8e020838b23406c81b19c1d46df6 \
                     file://README;beginline=45;endline=65;md5=3a896a943b4da2c551e6be1af27eff8d \
-                    file://doc/libunistring.texi;md5=36b7d20daef7fbcc032333ae2429aa94 \
+                    file://doc/libunistring.texi;md5=55cc91e1fe09c7aec78b6dc932202300 \
                     "
 DEPENDS = "gperf-native"
 
 SRC_URI = "${GNU_MIRROR}/libunistring/libunistring-${PV}.tar.gz"
-SRC_URI[sha256sum] = "8ea8ccf86c09dd801c8cac19878e804e54f707cf69884371130d20bde68386b7"
+SRC_URI[sha256sum] = "12542ad7619470efd95a623174dcd4b364f2483caf708c6bee837cb53a54cb9d"
 
 inherit autotools texinfo
 BBCLASSEXTEND = "native nativesdk"


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

* [OE-core][PATCH 3/4] libproxy: upgrade 0.5.10 -> 0.5.11
  2025-11-06 20:45 [OE-core][PATCH 1/4] nghttp2: upgrade 1.66.0 -> 1.68.0 ankur.tyagi85
  2025-11-06 20:45 ` [OE-core][PATCH 2/4] libunistring: upgrade 1.3 -> 1.4.1 ankur.tyagi85
@ 2025-11-06 20:45 ` ankur.tyagi85
  2025-11-06 20:45 ` [OE-core][PATCH 4/4] lighttpd: upgrade 1.4.81 -> 1.4.82 ankur.tyagi85
  2025-11-08  7:52 ` [OE-core][PATCH 1/4] nghttp2: upgrade 1.66.0 -> 1.68.0 Mathieu Dubois-Briand
  3 siblings, 0 replies; 7+ messages in thread
From: ankur.tyagi85 @ 2025-11-06 20:45 UTC (permalink / raw)
  To: openembedded-core; +Cc: Ankur Tyagi

From: Ankur Tyagi <ankur.tyagi85@gmail.com>

Changelog:
https://github.com/libproxy/libproxy/releases/tag/0.5.11

Signed-off-by: Ankur Tyagi <ankur.tyagi85@gmail.com>
---
 .../libproxy/{libproxy_0.5.10.bb => libproxy_0.5.11.bb}         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-support/libproxy/{libproxy_0.5.10.bb => libproxy_0.5.11.bb} (95%)

diff --git a/meta/recipes-support/libproxy/libproxy_0.5.10.bb b/meta/recipes-support/libproxy/libproxy_0.5.11.bb
similarity index 95%
rename from meta/recipes-support/libproxy/libproxy_0.5.10.bb
rename to meta/recipes-support/libproxy/libproxy_0.5.11.bb
index 21930ada00..1efa3cdc0e 100644
--- a/meta/recipes-support/libproxy/libproxy_0.5.10.bb
+++ b/meta/recipes-support/libproxy/libproxy_0.5.11.bb
@@ -14,7 +14,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c \
 DEPENDS = "glib-2.0"
 
 SRC_URI = "git://github.com/libproxy/libproxy;protocol=https;branch=main;tag=${PV}"
-SRCREV = "7e4852f9658084c61a95973b8a1d720b1763437a"
+SRCREV = "3fd3a6e845c0386d91abc742453d0f29bf28c404"
 
 inherit meson pkgconfig gobject-introspection vala gi-docgen
 GIDOCGEN_MESON_OPTION = 'docs'


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

* [OE-core][PATCH 4/4] lighttpd: upgrade 1.4.81 -> 1.4.82
  2025-11-06 20:45 [OE-core][PATCH 1/4] nghttp2: upgrade 1.66.0 -> 1.68.0 ankur.tyagi85
  2025-11-06 20:45 ` [OE-core][PATCH 2/4] libunistring: upgrade 1.3 -> 1.4.1 ankur.tyagi85
  2025-11-06 20:45 ` [OE-core][PATCH 3/4] libproxy: upgrade 0.5.10 -> 0.5.11 ankur.tyagi85
@ 2025-11-06 20:45 ` ankur.tyagi85
  2025-11-08  7:52 ` [OE-core][PATCH 1/4] nghttp2: upgrade 1.66.0 -> 1.68.0 Mathieu Dubois-Briand
  3 siblings, 0 replies; 7+ messages in thread
From: ankur.tyagi85 @ 2025-11-06 20:45 UTC (permalink / raw)
  To: openembedded-core; +Cc: Ankur Tyagi

From: Ankur Tyagi <ankur.tyagi85@gmail.com>

Changelog:
https://www.lighttpd.net/2025/9/12/1.4.82/

Signed-off-by: Ankur Tyagi <ankur.tyagi85@gmail.com>
---
 .../lighttpd/{lighttpd_1.4.81.bb => lighttpd_1.4.82.bb}         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-extended/lighttpd/{lighttpd_1.4.81.bb => lighttpd_1.4.82.bb} (97%)

diff --git a/meta/recipes-extended/lighttpd/lighttpd_1.4.81.bb b/meta/recipes-extended/lighttpd/lighttpd_1.4.82.bb
similarity index 97%
rename from meta/recipes-extended/lighttpd/lighttpd_1.4.81.bb
rename to meta/recipes-extended/lighttpd/lighttpd_1.4.82.bb
index 40abef784b..8221d30283 100644
--- a/meta/recipes-extended/lighttpd/lighttpd_1.4.81.bb
+++ b/meta/recipes-extended/lighttpd/lighttpd_1.4.82.bb
@@ -16,7 +16,7 @@ SRC_URI = "http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-${PV}.t
            file://lighttpd \
            "
 
-SRC_URI[sha256sum] = "d7d42c3fd2fd94b63c915aa7d18f4da3cac5937ddba33e909f81cf50842a5840"
+SRC_URI[sha256sum] = "abfe74391f9cbd66ab154ea07e64f194dbe7e906ef4ed47eb3b0f3b46246c962"
 
 DEPENDS = "virtual/crypt"
 


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

* Re: [OE-core][PATCH 1/4] nghttp2: upgrade 1.66.0 -> 1.68.0
  2025-11-06 20:45 [OE-core][PATCH 1/4] nghttp2: upgrade 1.66.0 -> 1.68.0 ankur.tyagi85
                   ` (2 preceding siblings ...)
  2025-11-06 20:45 ` [OE-core][PATCH 4/4] lighttpd: upgrade 1.4.81 -> 1.4.82 ankur.tyagi85
@ 2025-11-08  7:52 ` Mathieu Dubois-Briand
  2025-11-08 21:14   ` Ankur Tyagi
       [not found]   ` <18762488E2A91015.568378@lists.openembedded.org>
  3 siblings, 2 replies; 7+ messages in thread
From: Mathieu Dubois-Briand @ 2025-11-08  7:52 UTC (permalink / raw)
  To: ankur.tyagi85, openembedded-core

On Thu Nov 6, 2025 at 9:45 PM CET, Ankur Tyagi via lists.openembedded.org wrote:
> From: Ankur Tyagi <ankur.tyagi85@gmail.com>
>
> Changelog:
> https://github.com/nghttp2/nghttp2/releases/tag/v1.67.0
> https://github.com/nghttp2/nghttp2/releases/tag/v1.67.1
> https://github.com/nghttp2/nghttp2/releases/tag/v1.68.0
>
> Signed-off-by: Ankur Tyagi <ankur.tyagi85@gmail.com>
> ---

Hi Ankur,

Thanks for your patch.

It looks like there are some new installed files that are not shipped:

ERROR: nghttp2-1.68.0-r0 do_package: QA Issue: nghttp2: Files/directories were installed but not shipped in any package:
  /usr/lib
  /usr/lib/cmake
  /usr/lib/cmake/nghttp2
  /usr/lib/cmake/nghttp2/nghttp2Config.cmake
  /usr/lib/cmake/nghttp2/nghttp2Targets.cmake
  /usr/lib/cmake/nghttp2/nghttp2ConfigVersion.cmake
  /usr/lib/cmake/nghttp2/nghttp2Targets-relwithdebinfo.cmake

https://autobuilder.yoctoproject.org/valkyrie/#/builders/59/builds/2701
https://autobuilder.yoctoproject.org/valkyrie/#/builders/17/builds/2533
https://autobuilder.yoctoproject.org/valkyrie/#/builders/92/builds/2683

Can you have a look at this?

Thanks,
Mathieu

-- 
Mathieu Dubois-Briand, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com



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

* Re: [OE-core][PATCH 1/4] nghttp2: upgrade 1.66.0 -> 1.68.0
  2025-11-08  7:52 ` [OE-core][PATCH 1/4] nghttp2: upgrade 1.66.0 -> 1.68.0 Mathieu Dubois-Briand
@ 2025-11-08 21:14   ` Ankur Tyagi
       [not found]   ` <18762488E2A91015.568378@lists.openembedded.org>
  1 sibling, 0 replies; 7+ messages in thread
From: Ankur Tyagi @ 2025-11-08 21:14 UTC (permalink / raw)
  To: Mathieu Dubois-Briand; +Cc: openembedded-core

On Sat, Nov 8, 2025 at 8:52 PM Mathieu Dubois-Briand
<mathieu.dubois-briand@bootlin.com> wrote:
>
> On Thu Nov 6, 2025 at 9:45 PM CET, Ankur Tyagi via lists.openembedded.org wrote:
> > From: Ankur Tyagi <ankur.tyagi85@gmail.com>
> >
> > Changelog:
> > https://github.com/nghttp2/nghttp2/releases/tag/v1.67.0
> > https://github.com/nghttp2/nghttp2/releases/tag/v1.67.1
> > https://github.com/nghttp2/nghttp2/releases/tag/v1.68.0
> >
> > Signed-off-by: Ankur Tyagi <ankur.tyagi85@gmail.com>
> > ---
>
> Hi Ankur,
>
> Thanks for your patch.
>
> It looks like there are some new installed files that are not shipped:
>
> ERROR: nghttp2-1.68.0-r0 do_package: QA Issue: nghttp2: Files/directories were installed but not shipped in any package:
>   /usr/lib
>   /usr/lib/cmake
>   /usr/lib/cmake/nghttp2
>   /usr/lib/cmake/nghttp2/nghttp2Config.cmake
>   /usr/lib/cmake/nghttp2/nghttp2Targets.cmake
>   /usr/lib/cmake/nghttp2/nghttp2ConfigVersion.cmake
>   /usr/lib/cmake/nghttp2/nghttp2Targets-relwithdebinfo.cmake
>
> https://autobuilder.yoctoproject.org/valkyrie/#/builders/59/builds/2701
> https://autobuilder.yoctoproject.org/valkyrie/#/builders/17/builds/2533
> https://autobuilder.yoctoproject.org/valkyrie/#/builders/92/builds/2683
>
> Can you have a look at this?

Thanks for pointing it out Mathieu.

I also managed to repro this locally by enabling multilib, sorry I
should have done that in the first place.
Will send v2 later today with the fix and also enable multilib support
for future submissions to avoid such errors.

>
> Thanks,
> Mathieu
>
> --
> Mathieu Dubois-Briand, Bootlin
> Embedded Linux and Kernel engineering
> https://bootlin.com
>


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

* Re: [OE-core][PATCH 1/4] nghttp2: upgrade 1.66.0 -> 1.68.0
       [not found]   ` <18762488E2A91015.568378@lists.openembedded.org>
@ 2025-11-09  1:34     ` Ankur Tyagi
  0 siblings, 0 replies; 7+ messages in thread
From: Ankur Tyagi @ 2025-11-09  1:34 UTC (permalink / raw)
  To: ankur.tyagi85; +Cc: Mathieu Dubois-Briand, openembedded-core

On Sun, Nov 9, 2025 at 10:14 AM Ankur Tyagi via lists.openembedded.org
<ankur.tyagi85=gmail.com@lists.openembedded.org> wrote:
>
> On Sat, Nov 8, 2025 at 8:52 PM Mathieu Dubois-Briand
> <mathieu.dubois-briand@bootlin.com> wrote:
> >
> > On Thu Nov 6, 2025 at 9:45 PM CET, Ankur Tyagi via lists.openembedded.org wrote:
> > > From: Ankur Tyagi <ankur.tyagi85@gmail.com>
> > >
> > > Changelog:
> > > https://github.com/nghttp2/nghttp2/releases/tag/v1.67.0
> > > https://github.com/nghttp2/nghttp2/releases/tag/v1.67.1
> > > https://github.com/nghttp2/nghttp2/releases/tag/v1.68.0
> > >
> > > Signed-off-by: Ankur Tyagi <ankur.tyagi85@gmail.com>
> > > ---
> >
> > Hi Ankur,
> >
> > Thanks for your patch.
> >
> > It looks like there are some new installed files that are not shipped:
> >
> > ERROR: nghttp2-1.68.0-r0 do_package: QA Issue: nghttp2: Files/directories were installed but not shipped in any package:
> >   /usr/lib
> >   /usr/lib/cmake
> >   /usr/lib/cmake/nghttp2
> >   /usr/lib/cmake/nghttp2/nghttp2Config.cmake
> >   /usr/lib/cmake/nghttp2/nghttp2Targets.cmake
> >   /usr/lib/cmake/nghttp2/nghttp2ConfigVersion.cmake
> >   /usr/lib/cmake/nghttp2/nghttp2Targets-relwithdebinfo.cmake
> >
> > https://autobuilder.yoctoproject.org/valkyrie/#/builders/59/builds/2701
> > https://autobuilder.yoctoproject.org/valkyrie/#/builders/17/builds/2533
> > https://autobuilder.yoctoproject.org/valkyrie/#/builders/92/builds/2683
> >
> > Can you have a look at this?
>
> Thanks for pointing it out Mathieu.
>
> I also managed to repro this locally by enabling multilib, sorry I
> should have done that in the first place.
> Will send v2 later today with the fix and also enable multilib support
> for future submissions to avoid such errors.
>

Hi Mathieu,

Assuming no issue with other patches in the series, I have separately
sent v2 for nghttp2.
https://lists.openembedded.org/g/openembedded-core/message/226087

cheers
Ankur

> >
> > Thanks,
> > Mathieu
> >
> > --
> > Mathieu Dubois-Briand, Bootlin
> > Embedded Linux and Kernel engineering
> > https://bootlin.com
> >
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#226086): https://lists.openembedded.org/g/openembedded-core/message/226086
> Mute This Topic: https://lists.openembedded.org/mt/116160357/3619737
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [ankur.tyagi85@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>


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

end of thread, other threads:[~2025-11-09  1:34 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-06 20:45 [OE-core][PATCH 1/4] nghttp2: upgrade 1.66.0 -> 1.68.0 ankur.tyagi85
2025-11-06 20:45 ` [OE-core][PATCH 2/4] libunistring: upgrade 1.3 -> 1.4.1 ankur.tyagi85
2025-11-06 20:45 ` [OE-core][PATCH 3/4] libproxy: upgrade 0.5.10 -> 0.5.11 ankur.tyagi85
2025-11-06 20:45 ` [OE-core][PATCH 4/4] lighttpd: upgrade 1.4.81 -> 1.4.82 ankur.tyagi85
2025-11-08  7:52 ` [OE-core][PATCH 1/4] nghttp2: upgrade 1.66.0 -> 1.68.0 Mathieu Dubois-Briand
2025-11-08 21:14   ` Ankur Tyagi
     [not found]   ` <18762488E2A91015.568378@lists.openembedded.org>
2025-11-09  1:34     ` Ankur Tyagi

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.