Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/{libuv, uvw}: bump version to libuv 1.47.0 and uvw 3.3.0
@ 2024-02-15 22:46 Kadambini Nema
  2024-02-22 13:20 ` Marcus Hoffmann via buildroot
  2024-07-12 22:02 ` Thomas Petazzoni via buildroot
  0 siblings, 2 replies; 4+ messages in thread
From: Kadambini Nema @ 2024-02-15 22:46 UTC (permalink / raw)
  To: buildroot; +Cc: Bernd Kuhls, Kadambini Nema, Asaf Kahlon

Change Log : https://github.com/libuv/libuv/blob/v1.x/ChangeLog#L92
             https://github.com/skypjack/uvw/releases/tag/v3.3.0_libuv_v1.47

Build test results:
 libuv.config
   BR2_PACKAGE_LIBUV=y
   BR2_PACKAGE_UVW=y

$./utils/test-pkg -k -c libuv.uvw.config -p uvw -p libuv
                    bootlin-armv5-uclibc [1/6]: OK
                     bootlin-armv7-glibc [2/6]: OK
                   bootlin-armv7m-uclibc [3/6]: SKIPPED
                     bootlin-x86-64-musl [4/6]: OK
                      br-arm-full-static [5/6]: SKIPPED
                            sourcery-arm [6/6]: SKIPPED
6 builds, 3 skipped, 0 build failed, 0 legal-info failed, 0 show-info failed

Signed-off-by: Kadambini Nema <kadambini.nema@gmail.com>
---
 package/libuv/libuv.hash | 2 +-
 package/libuv/libuv.mk   | 2 +-
 package/uvw/uvw.hash     | 4 ++--
 package/uvw/uvw.mk       | 2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/package/libuv/libuv.hash b/package/libuv/libuv.hash
index 1fd286d9e9..3a2904f247 100644
--- a/package/libuv/libuv.hash
+++ b/package/libuv/libuv.hash
@@ -1,4 +1,4 @@
 # Locally calculated
-sha256  94f101111ef3209340d7f09c2aa150ddb4feabd2f9d87d47d9f5bded835b8094  libuv-v1.46.0-dist.tar.gz
+sha256  72a187104662b47f2a2b204da39d2acb05cf22a4fcb13ceaebe3b0ed0c0e2e43  libuv-v1.47.0-dist.tar.gz
 sha256  16de0c32b265cb7d46a6d3bd614f259dd4d693a5e26b3407b04aae8d73041f0c  LICENSE
 sha256  262c44bd2cdba037e6d2a82fba15f5800d292bc993a6f5d6b6ea487744d02836  LICENSE-extra
diff --git a/package/libuv/libuv.mk b/package/libuv/libuv.mk
index 76316484e4..a794ac1c8a 100644
--- a/package/libuv/libuv.mk
+++ b/package/libuv/libuv.mk
@@ -6,7 +6,7 @@
 
 # When bumping libuv, check if a new version of uvw is available
 # and bump it too.
-LIBUV_VERSION = 1.46.0
+LIBUV_VERSION = 1.47.0
 LIBUV_SOURCE = libuv-v$(LIBUV_VERSION)-dist.tar.gz
 LIBUV_SITE = https://dist.libuv.org/dist/v$(LIBUV_VERSION)
 LIBUV_DEPENDENCIES = host-pkgconf
diff --git a/package/uvw/uvw.hash b/package/uvw/uvw.hash
index 2dc6e879e1..3f237d00f2 100644
--- a/package/uvw/uvw.hash
+++ b/package/uvw/uvw.hash
@@ -1,3 +1,3 @@
 # Locally calculated
-sha256  bd5aed741765950074b1ea2507291dce81e528abdf56c406991ad4a27d8d1714  uvw-3.2.0_libuv_v1.46.tar.gz
-sha256  e2a4062818ab05e2a0908737ad49b7c01202247364e900167ac81105de8713f3  LICENSE
+sha256  aabb17d3d8f0b3481b44e981c889dd4a2a6a3f1a96a4d01055e669f4b7d37d0e  uvw-3.3.0_libuv_v1.47.tar.gz
+sha256  5e439d0ad6e1b16f2f14023872c49cb2cf1b62a172c30b864cb45a5aa6533454  LICENSE
diff --git a/package/uvw/uvw.mk b/package/uvw/uvw.mk
index 12149d43ca..23e5060c34 100644
--- a/package/uvw/uvw.mk
+++ b/package/uvw/uvw.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-UVW_VERSION = 3.2.0_libuv_v1.46
+UVW_VERSION = 3.3.0_libuv_v1.47
 UVW_SITE = $(call github,skypjack,uvw,v$(UVW_VERSION))
 UVW_INSTALL_STAGING = YES
 UVW_INSTALL_TARGET = NO
-- 
2.25.1

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

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

* Re: [Buildroot] [PATCH 1/1] package/{libuv, uvw}: bump version to libuv 1.47.0 and uvw 3.3.0
  2024-02-15 22:46 [Buildroot] [PATCH 1/1] package/{libuv, uvw}: bump version to libuv 1.47.0 and uvw 3.3.0 Kadambini Nema
@ 2024-02-22 13:20 ` Marcus Hoffmann via buildroot
  2024-07-12 22:03   ` Thomas Petazzoni via buildroot
  2024-07-12 22:02 ` Thomas Petazzoni via buildroot
  1 sibling, 1 reply; 4+ messages in thread
From: Marcus Hoffmann via buildroot @ 2024-02-22 13:20 UTC (permalink / raw)
  To: Kadambini Nema, buildroot; +Cc: Bernd Kuhls, Asaf Kahlon

Hi Kadambini,

On 15.02.24 23:46, Kadambini Nema wrote:
> Change Log : https://github.com/libuv/libuv/blob/v1.x/ChangeLog#L92
>               https://github.com/skypjack/uvw/releases/tag/v3.3.0_libuv_v1.47

I think one patch per package update is preferred for buildroot. If one 
update depends on another one, these should be send in one series, but 
still as separate patches.

I've just send another libuv update to 1.48, which contains a security fix.

I didn't know what to do with the uvw as I don't know how it works with 
libuv compatibility, there was no explicit version for libuv 1.48.


> 
> Build test results:
>   libuv.config
>     BR2_PACKAGE_LIBUV=y
>     BR2_PACKAGE_UVW=y
> 
> $./utils/test-pkg -k -c libuv.uvw.config -p uvw -p libuv
>                      bootlin-armv5-uclibc [1/6]: OK
>                       bootlin-armv7-glibc [2/6]: OK
>                     bootlin-armv7m-uclibc [3/6]: SKIPPED
>                       bootlin-x86-64-musl [4/6]: OK
>                        br-arm-full-static [5/6]: SKIPPED
>                              sourcery-arm [6/6]: SKIPPED
> 6 builds, 3 skipped, 0 build failed, 0 legal-info failed, 0 show-info failed
> 
> Signed-off-by: Kadambini Nema <kadambini.nema@gmail.com>
> ---
>   package/libuv/libuv.hash | 2 +-
>   package/libuv/libuv.mk   | 2 +-
>   package/uvw/uvw.hash     | 4 ++--
>   package/uvw/uvw.mk       | 2 +-
>   4 files changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/package/libuv/libuv.hash b/package/libuv/libuv.hash
> index 1fd286d9e9..3a2904f247 100644
> --- a/package/libuv/libuv.hash
> +++ b/package/libuv/libuv.hash
> @@ -1,4 +1,4 @@
>   # Locally calculated
> -sha256  94f101111ef3209340d7f09c2aa150ddb4feabd2f9d87d47d9f5bded835b8094  libuv-v1.46.0-dist.tar.gz
> +sha256  72a187104662b47f2a2b204da39d2acb05cf22a4fcb13ceaebe3b0ed0c0e2e43  libuv-v1.47.0-dist.tar.gz
>   sha256  16de0c32b265cb7d46a6d3bd614f259dd4d693a5e26b3407b04aae8d73041f0c  LICENSE
>   sha256  262c44bd2cdba037e6d2a82fba15f5800d292bc993a6f5d6b6ea487744d02836  LICENSE-extra
> diff --git a/package/libuv/libuv.mk b/package/libuv/libuv.mk
> index 76316484e4..a794ac1c8a 100644
> --- a/package/libuv/libuv.mk
> +++ b/package/libuv/libuv.mk
> @@ -6,7 +6,7 @@
>   
>   # When bumping libuv, check if a new version of uvw is available
>   # and bump it too.
> -LIBUV_VERSION = 1.46.0
> +LIBUV_VERSION = 1.47.0
>   LIBUV_SOURCE = libuv-v$(LIBUV_VERSION)-dist.tar.gz
>   LIBUV_SITE = https://dist.libuv.org/dist/v$(LIBUV_VERSION)
>   LIBUV_DEPENDENCIES = host-pkgconf
> diff --git a/package/uvw/uvw.hash b/package/uvw/uvw.hash
> index 2dc6e879e1..3f237d00f2 100644
> --- a/package/uvw/uvw.hash
> +++ b/package/uvw/uvw.hash
> @@ -1,3 +1,3 @@
>   # Locally calculated
> -sha256  bd5aed741765950074b1ea2507291dce81e528abdf56c406991ad4a27d8d1714  uvw-3.2.0_libuv_v1.46.tar.gz
> -sha256  e2a4062818ab05e2a0908737ad49b7c01202247364e900167ac81105de8713f3  LICENSE
> +sha256  aabb17d3d8f0b3481b44e981c889dd4a2a6a3f1a96a4d01055e669f4b7d37d0e  uvw-3.3.0_libuv_v1.47.tar.gz
> +sha256  5e439d0ad6e1b16f2f14023872c49cb2cf1b62a172c30b864cb45a5aa6533454  LICENSE
> diff --git a/package/uvw/uvw.mk b/package/uvw/uvw.mk
> index 12149d43ca..23e5060c34 100644
> --- a/package/uvw/uvw.mk
> +++ b/package/uvw/uvw.mk
> @@ -4,7 +4,7 @@
>   #
>   ################################################################################
>   
> -UVW_VERSION = 3.2.0_libuv_v1.46
> +UVW_VERSION = 3.3.0_libuv_v1.47
>   UVW_SITE = $(call github,skypjack,uvw,v$(UVW_VERSION))
>   UVW_INSTALL_STAGING = YES
>   UVW_INSTALL_TARGET = NO


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

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

* Re: [Buildroot] [PATCH 1/1] package/{libuv, uvw}: bump version to libuv 1.47.0 and uvw 3.3.0
  2024-02-15 22:46 [Buildroot] [PATCH 1/1] package/{libuv, uvw}: bump version to libuv 1.47.0 and uvw 3.3.0 Kadambini Nema
  2024-02-22 13:20 ` Marcus Hoffmann via buildroot
@ 2024-07-12 22:02 ` Thomas Petazzoni via buildroot
  1 sibling, 0 replies; 4+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-07-12 22:02 UTC (permalink / raw)
  To: Kadambini Nema; +Cc: Bernd Kuhls, Asaf Kahlon, Marcus Hoffmann via buildroot

Hello Kadambini,

On Thu, 15 Feb 2024 14:46:14 -0800
Kadambini Nema <kadambini.nema@gmail.com> wrote:

> Change Log : https://github.com/libuv/libuv/blob/v1.x/ChangeLog#L92
>              https://github.com/skypjack/uvw/releases/tag/v3.3.0_libuv_v1.47
> 
> Build test results:
>  libuv.config
>    BR2_PACKAGE_LIBUV=y
>    BR2_PACKAGE_UVW=y
> 
> $./utils/test-pkg -k -c libuv.uvw.config -p uvw -p libuv
>                     bootlin-armv5-uclibc [1/6]: OK
>                      bootlin-armv7-glibc [2/6]: OK
>                    bootlin-armv7m-uclibc [3/6]: SKIPPED
>                      bootlin-x86-64-musl [4/6]: OK
>                       br-arm-full-static [5/6]: SKIPPED
>                             sourcery-arm [6/6]: SKIPPED
> 6 builds, 3 skipped, 0 build failed, 0 legal-info failed, 0 show-info failed
> 
> Signed-off-by: Kadambini Nema <kadambini.nema@gmail.com>
> ---
>  package/libuv/libuv.hash | 2 +-
>  package/libuv/libuv.mk   | 2 +-
>  package/uvw/uvw.hash     | 4 ++--
>  package/uvw/uvw.mk       | 2 +-
>  4 files changed, 5 insertions(+), 5 deletions(-)

Thanks for your patch, and sorry for the long delay in getting back to
you. As was already replied by Marcus, libuv has already been bumped to
1.48 in the mean time. So instead I pushed a version bump for just uvm
that updates it to version 3.4.0, which is aligned with libuv 1.48. See:

  https://gitlab.com/buildroot.org/buildroot/-/commit/c54134bf6914593caaa9ed4aa11cbe3a17c59eca

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] 4+ messages in thread

* Re: [Buildroot] [PATCH 1/1] package/{libuv, uvw}: bump version to libuv 1.47.0 and uvw 3.3.0
  2024-02-22 13:20 ` Marcus Hoffmann via buildroot
@ 2024-07-12 22:03   ` Thomas Petazzoni via buildroot
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-07-12 22:03 UTC (permalink / raw)
  To: Marcus Hoffmann via buildroot
  Cc: Bernd Kuhls, Kadambini Nema, Marcus Hoffmann, Asaf Kahlon

Hello Marcus,

On Thu, 22 Feb 2024 14:20:02 +0100
Marcus Hoffmann via buildroot <buildroot@buildroot.org> wrote:

> I think one patch per package update is preferred for buildroot. If one 
> update depends on another one, these should be send in one series, but 
> still as separate patches.

In the general case, you're right, but libuv/uvw are kind of special,
as the comment in libuv.mk indicates:

# When bumping libuv, check if a new version of uvw is available
# and bump it too.

So we do expect both to be updated together.

Best regards,

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

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

end of thread, other threads:[~2024-07-12 22:03 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-15 22:46 [Buildroot] [PATCH 1/1] package/{libuv, uvw}: bump version to libuv 1.47.0 and uvw 3.3.0 Kadambini Nema
2024-02-22 13:20 ` Marcus Hoffmann via buildroot
2024-07-12 22:03   ` Thomas Petazzoni via buildroot
2024-07-12 22:02 ` Thomas Petazzoni via buildroot

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