All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] libmicrohttpd: upgrade 1.0.1 -> 1.0.2
@ 2025-07-22 15:26 Gyorgy Sarvari
  2025-07-22 15:27 ` [PATCH 2/3] libwebp: upgrade 1.5.0 -> 1.6.0 Gyorgy Sarvari
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Gyorgy Sarvari @ 2025-07-22 15:26 UTC (permalink / raw)
  To: openembedded-core

Changelog: It primarily fixes a double-close() bug on bind() errors.

Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com>
---
 .../{libmicrohttpd_1.0.1.bb => libmicrohttpd_1.0.2.bb}          | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-support/libmicrohttpd/{libmicrohttpd_1.0.1.bb => libmicrohttpd_1.0.2.bb} (90%)

diff --git a/meta/recipes-support/libmicrohttpd/libmicrohttpd_1.0.1.bb b/meta/recipes-support/libmicrohttpd/libmicrohttpd_1.0.2.bb
similarity index 90%
rename from meta/recipes-support/libmicrohttpd/libmicrohttpd_1.0.1.bb
rename to meta/recipes-support/libmicrohttpd/libmicrohttpd_1.0.2.bb
index 0628ee71b5..a75a5b3be8 100644
--- a/meta/recipes-support/libmicrohttpd/libmicrohttpd_1.0.1.bb
+++ b/meta/recipes-support/libmicrohttpd/libmicrohttpd_1.0.2.bb
@@ -7,7 +7,7 @@ SECTION = "net"
 DEPENDS = "file"
 
 SRC_URI = "${GNU_MIRROR}/libmicrohttpd/${BPN}-${PV}.tar.gz"
-SRC_URI[sha256sum] = "a89e09fc9b4de34dde19f4fcb4faaa1ce10299b9908db1132bbfa1de47882b94"
+SRC_URI[sha256sum] = "df324fcd0834175dab07483133902d9774a605bfa298025f69883288fd20a8c7"
 
 inherit autotools lib_package pkgconfig gettext
 


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

* [PATCH 2/3] libwebp: upgrade 1.5.0 -> 1.6.0
  2025-07-22 15:26 [PATCH 1/3] libmicrohttpd: upgrade 1.0.1 -> 1.0.2 Gyorgy Sarvari
@ 2025-07-22 15:27 ` Gyorgy Sarvari
  2025-07-22 15:27 ` [PATCH 3/3] libpng: upgrade 1.6.48 -> 1.6.50 Gyorgy Sarvari
       [not found] ` <18549C5120596710.28644@lists.openembedded.org>
  2 siblings, 0 replies; 5+ messages in thread
From: Gyorgy Sarvari @ 2025-07-22 15:27 UTC (permalink / raw)
  To: openembedded-core

Changelog:
  This is a binary compatible release.
  API changes:
    - libwebp: WebPValidateDecoderConfig
  * additional x86 (AVX2, SSE2), general optimizations and compression
    improvements for lossless
  * `-mt` returns same results as single-threaded lossless (regressed in
    1.5.0)
  * miscellaneous warning, bug & build fixes
  Tool updates:
    * cwebp can restrict the use of `-resize` with `-resize_mode`

Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com>
---
 .../webp/{libwebp_1.5.0.bb => libwebp_1.6.0.bb}                 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-multimedia/webp/{libwebp_1.5.0.bb => libwebp_1.6.0.bb} (96%)

diff --git a/meta/recipes-multimedia/webp/libwebp_1.5.0.bb b/meta/recipes-multimedia/webp/libwebp_1.6.0.bb
similarity index 96%
rename from meta/recipes-multimedia/webp/libwebp_1.5.0.bb
rename to meta/recipes-multimedia/webp/libwebp_1.6.0.bb
index 39fe947eea..0ba90c406a 100644
--- a/meta/recipes-multimedia/webp/libwebp_1.5.0.bb
+++ b/meta/recipes-multimedia/webp/libwebp_1.6.0.bb
@@ -14,7 +14,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=6e8dee932c26f2dab503abf70c96d8bb \
                     file://PATENTS;md5=c6926d0cb07d296f886ab6e0cc5a85b7"
 
 SRC_URI = "https://storage.googleapis.com/downloads.webmproject.org/releases/webp/${BP}.tar.gz"
-SRC_URI[sha256sum] = "7d6fab70cf844bf6769077bd5d7a74893f8ffd4dfb42861745750c63c2a5c92c"
+SRC_URI[sha256sum] = "e4ab7009bf0629fd11982d4c2aa83964cf244cffba7347ecd39019a9e38c4564"
 
 UPSTREAM_CHECK_URI = "http://downloads.webmproject.org/releases/webp/index.html"
 


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

* [PATCH 3/3] libpng: upgrade 1.6.48 -> 1.6.50
  2025-07-22 15:26 [PATCH 1/3] libmicrohttpd: upgrade 1.0.1 -> 1.0.2 Gyorgy Sarvari
  2025-07-22 15:27 ` [PATCH 2/3] libwebp: upgrade 1.5.0 -> 1.6.0 Gyorgy Sarvari
@ 2025-07-22 15:27 ` Gyorgy Sarvari
       [not found] ` <18549C5120596710.28644@lists.openembedded.org>
  2 siblings, 0 replies; 5+ messages in thread
From: Gyorgy Sarvari @ 2025-07-22 15:27 UTC (permalink / raw)
  To: openembedded-core

Changelog:
Version 1.6.49 [June 12, 2025]
  Added SIMD-optimized code for the RISC-V Vector Extension (RVV).
    (Contributed by Manfred Schlaegl, Dragos Tiselice and Filip Wasil)
  Added various fixes and improvements to the build scripts and to
    the sample code.

Version 1.6.50 [July 1, 2025]
  Improved the detection of the RVV Extension on the RISC-V platform.
    (Contributed by Filip Wasil)
  Replaced inline ASM with C intrinsics in the RVV code.
    (Contributed by Filip Wasil)
  Fixed a decoder defect in which unknown chunks trailing IDAT, set
    to go through the unknown chunk handler, incorrectly triggered
    out-of-place IEND errors.
    (Contributed by John Bowler)
  Fixed the CMake file for cross-platform builds that require `libm`.

Ptests successfully passed:

============================================================================
Testsuite summary for libpng 1.6.50
============================================================================
# TOTAL: 32
# PASS:  32
# SKIP:  0
# XFAIL: 0
# FAIL:  0
# XPASS: 0
# ERROR: 0
============================================================================

Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com>
---
 .../libpng/{libpng_1.6.48.bb => libpng_1.6.50.bb}               | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-multimedia/libpng/{libpng_1.6.48.bb => libpng_1.6.50.bb} (97%)

diff --git a/meta/recipes-multimedia/libpng/libpng_1.6.48.bb b/meta/recipes-multimedia/libpng/libpng_1.6.50.bb
similarity index 97%
rename from meta/recipes-multimedia/libpng/libpng_1.6.48.bb
rename to meta/recipes-multimedia/libpng/libpng_1.6.50.bb
index e603df1edd..aa2dc99f10 100644
--- a/meta/recipes-multimedia/libpng/libpng_1.6.48.bb
+++ b/meta/recipes-multimedia/libpng/libpng_1.6.50.bb
@@ -14,7 +14,7 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BPN}${LIBV}/${BP}.tar.xz \
            file://run-ptest \
 "
 
-SRC_URI[sha256sum] = "46fd06ff37db1db64c0dc288d78a3f5efd23ad9ac41561193f983e20937ece03"
+SRC_URI[sha256sum] = "4df396518620a7aa3651443e87d1b2862e4e88cad135a8b93423e01706232307"
 
 MIRRORS += "${SOURCEFORGE_MIRROR}/project/${BPN}/${BPN}${LIBV}/ ${SOURCEFORGE_MIRROR}/project/${BPN}/${BPN}${LIBV}/older-releases/"
 


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

* Re: [OE-core] [PATCH 3/3] libpng: upgrade 1.6.48 -> 1.6.50
       [not found] ` <18549C5120596710.28644@lists.openembedded.org>
@ 2025-09-10 12:03   ` Gyorgy Sarvari
  2025-09-11 15:54     ` Mathieu Dubois-Briand
  0 siblings, 1 reply; 5+ messages in thread
From: Gyorgy Sarvari @ 2025-09-10 12:03 UTC (permalink / raw)
  To: openembedded-core

Out of curiosity, did this patch only fell through the cracks and that's
why it wasn't applied, or is there some issue with it?


On 7/22/25 17:27, Gyorgy Sarvari via lists.openembedded.org wrote:
> Changelog:
> Version 1.6.49 [June 12, 2025]
>   Added SIMD-optimized code for the RISC-V Vector Extension (RVV).
>     (Contributed by Manfred Schlaegl, Dragos Tiselice and Filip Wasil)
>   Added various fixes and improvements to the build scripts and to
>     the sample code.
>
> Version 1.6.50 [July 1, 2025]
>   Improved the detection of the RVV Extension on the RISC-V platform.
>     (Contributed by Filip Wasil)
>   Replaced inline ASM with C intrinsics in the RVV code.
>     (Contributed by Filip Wasil)
>   Fixed a decoder defect in which unknown chunks trailing IDAT, set
>     to go through the unknown chunk handler, incorrectly triggered
>     out-of-place IEND errors.
>     (Contributed by John Bowler)
>   Fixed the CMake file for cross-platform builds that require `libm`.
>
> Ptests successfully passed:
>
> ============================================================================
> Testsuite summary for libpng 1.6.50
> ============================================================================
> # TOTAL: 32
> # PASS:  32
> # SKIP:  0
> # XFAIL: 0
> # FAIL:  0
> # XPASS: 0
> # ERROR: 0
> ============================================================================
>
> Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com>
> ---
>  .../libpng/{libpng_1.6.48.bb => libpng_1.6.50.bb}               | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>  rename meta/recipes-multimedia/libpng/{libpng_1.6.48.bb => libpng_1.6.50.bb} (97%)
>
> diff --git a/meta/recipes-multimedia/libpng/libpng_1.6.48.bb b/meta/recipes-multimedia/libpng/libpng_1.6.50.bb
> similarity index 97%
> rename from meta/recipes-multimedia/libpng/libpng_1.6.48.bb
> rename to meta/recipes-multimedia/libpng/libpng_1.6.50.bb
> index e603df1edd..aa2dc99f10 100644
> --- a/meta/recipes-multimedia/libpng/libpng_1.6.48.bb
> +++ b/meta/recipes-multimedia/libpng/libpng_1.6.50.bb
> @@ -14,7 +14,7 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BPN}${LIBV}/${BP}.tar.xz \
>             file://run-ptest \
>  "
>  
> -SRC_URI[sha256sum] = "46fd06ff37db1db64c0dc288d78a3f5efd23ad9ac41561193f983e20937ece03"
> +SRC_URI[sha256sum] = "4df396518620a7aa3651443e87d1b2862e4e88cad135a8b93423e01706232307"
>  
>  MIRRORS += "${SOURCEFORGE_MIRROR}/project/${BPN}/${BPN}${LIBV}/ ${SOURCEFORGE_MIRROR}/project/${BPN}/${BPN}${LIBV}/older-releases/"
>  
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#220753): https://lists.openembedded.org/g/openembedded-core/message/220753
> Mute This Topic: https://lists.openembedded.org/mt/114288160/6084445
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [skandigraun@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>



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

* Re: [OE-core] [PATCH 3/3] libpng: upgrade 1.6.48 -> 1.6.50
  2025-09-10 12:03   ` [OE-core] " Gyorgy Sarvari
@ 2025-09-11 15:54     ` Mathieu Dubois-Briand
  0 siblings, 0 replies; 5+ messages in thread
From: Mathieu Dubois-Briand @ 2025-09-11 15:54 UTC (permalink / raw)
  To: skandigraun, openembedded-core

On Wed Sep 10, 2025 at 2:03 PM CEST, Gyorgy Sarvari via lists.openembedded.org wrote:
> Out of curiosity, did this patch only fell through the cracks and that's
> why it wasn't applied, or is there some issue with it?
>

I have no record of dropping these patches, so it might be we missed
them in the first place.

libmicrohttpd and libwebp got other update patches, but libpng still has
to be updated. I took the patch in my master-next branch this morning.

Thanks,
Mathieu


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

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

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-22 15:26 [PATCH 1/3] libmicrohttpd: upgrade 1.0.1 -> 1.0.2 Gyorgy Sarvari
2025-07-22 15:27 ` [PATCH 2/3] libwebp: upgrade 1.5.0 -> 1.6.0 Gyorgy Sarvari
2025-07-22 15:27 ` [PATCH 3/3] libpng: upgrade 1.6.48 -> 1.6.50 Gyorgy Sarvari
     [not found] ` <18549C5120596710.28644@lists.openembedded.org>
2025-09-10 12:03   ` [OE-core] " Gyorgy Sarvari
2025-09-11 15:54     ` Mathieu Dubois-Briand

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.