Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: "Yann E. MORIN" <yann.morin.1998@free.fr>
To: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Cc: Alexandru Ardelean <ardeleanalex@gmail.com>,
	Angelo Compagnucci <angelo.compagnucci@gmail.com>,
	Martin Bark <martin@barkynet.com>,
	Daniel Price <daniel.price@gmail.com>,
	Buildroot List <buildroot@buildroot.org>
Subject: Re: [Buildroot] [PATCH 2/4] package/nodejs: bump to v16.17.1
Date: Sun, 25 Sep 2022 20:17:07 +0200	[thread overview]
Message-ID: <20220925181707.GD1419013@scaer> (raw)
In-Reply-To: <20220925171932.1630739-2-thomas.petazzoni@bootlin.com>

Thomas, All,

On 2022-09-25 19:19 +0200, Thomas Petazzoni via buildroot spake thusly:
> This is currently the latest version in the v16.x branch.
> 
> Patch 0001-add-qemu-wrapper-support.patch needs some minor adaptations
> to resolve conflicts with other unrelated upstream changes. The other
> patches are simply refreshed.
> 
> The license file is updates due to:
> 
>  - Reformatting changes
> 
>  - Addition of the mention of some files being under GPLv3, but it's
>    only the autoconf machinery: aclocal.m4 and config.guess, so it's
>    not relevant to add in our LICENSE variable.
> 
>  - Addition of the mention of another file being under the MIT
>    license (install-sh), and MIT is already listed, and this file is
>    anyway only part of the autoconf machinery.
> 
> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>

Applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
>  .../0001-add-qemu-wrapper-support.patch       | 28 +++++++++----------
>  ...heck-if-uclibc-has-backtrace-support.patch |  6 ++--
>  ...lude-obj-name-in-shared-intermediate.patch |  4 +--
>  package/nodejs/nodejs.hash                    |  6 ++--
>  package/nodejs/nodejs.mk                      |  2 +-
>  5 files changed, 23 insertions(+), 23 deletions(-)
> 
> diff --git a/package/nodejs/0001-add-qemu-wrapper-support.patch b/package/nodejs/0001-add-qemu-wrapper-support.patch
> index 8d09601158..184f3d19b7 100644
> --- a/package/nodejs/0001-add-qemu-wrapper-support.patch
> +++ b/package/nodejs/0001-add-qemu-wrapper-support.patch
> @@ -1,4 +1,4 @@
> -From c6103ceab64b73c1a25ece3315ea8f52507c2bfe Mon Sep 17 00:00:00 2001
> +From 1f6c55d7318e7075169004b4314708f4766ec193 Mon Sep 17 00:00:00 2001
>  From: Adam Duskett <aduskett@gmail.com>
>  Date: Mon, 27 Sep 2021 12:55:09 -0700
>  Subject: [PATCH] add qemu-wrapper support
> @@ -22,10 +22,10 @@ Signed-off-by: Adam Duskett <aduskett@gmail.com>
>   2 files changed, 7 insertions(+), 7 deletions(-)
>  
>  diff --git a/node.gyp b/node.gyp
> -index 74e9f9cc2e..c3eaab6c92 100644
> +index 97cdbb531d..db5cf51ce6 100644
>  --- a/node.gyp
>  +++ b/node.gyp
> -@@ -295,7 +295,7 @@
> +@@ -319,7 +319,7 @@
>                 'action_name': 'run_mkcodecache',
>                 'process_outputs_as_sources': 1,
>                 'inputs': [
> @@ -34,17 +34,17 @@ index 74e9f9cc2e..c3eaab6c92 100644
>                 ],
>                 'outputs': [
>                   '<(SHARED_INTERMEDIATE_DIR)/node_code_cache.cc',
> -@@ -320,7 +320,7 @@
> -               'action_name': 'node_mksnapshot',
> -               'process_outputs_as_sources': 1,
> -               'inputs': [
> --                '<(node_mksnapshot_exec)',
> -+                @MAYBE_WRAPPER@ '<(node_mksnapshot_exec)',
> -               ],
> -               'outputs': [
> -                 '<(SHARED_INTERMEDIATE_DIR)/node_snapshot.cc',
> +@@ -346,7 +346,7 @@
> +                   'action_name': 'node_mksnapshot',
> +                   'process_outputs_as_sources': 1,
> +                   'inputs': [
> +-                    '<(node_mksnapshot_exec)',
> ++                    @MAYBE_WRAPPER@ '<(node_mksnapshot_exec)',
> +                     '<(node_snapshot_main)',
> +                   ],
> +                   'outputs': [
>  diff --git a/tools/v8_gypfiles/v8.gyp b/tools/v8_gypfiles/v8.gyp
> -index 39b96803c7..9321982ea4 100644
> +index 73099a03e4..88ca91efb4 100644
>  --- a/tools/v8_gypfiles/v8.gyp
>  +++ b/tools/v8_gypfiles/v8.gyp
>  @@ -68,7 +68,7 @@
> @@ -83,7 +83,7 @@ index 39b96803c7..9321982ea4 100644
>             ],
>             'outputs': [
>               '<(INTERMEDIATE_DIR)/snapshot.cc',
> -@@ -1503,7 +1503,7 @@
> +@@ -1505,7 +1505,7 @@
>           {
>             'action_name': 'run_gen-regexp-special-case_action',
>             'inputs': [
> diff --git a/package/nodejs/0002-check-if-uclibc-has-backtrace-support.patch b/package/nodejs/0002-check-if-uclibc-has-backtrace-support.patch
> index 079bbb4366..367b9fb8d5 100644
> --- a/package/nodejs/0002-check-if-uclibc-has-backtrace-support.patch
> +++ b/package/nodejs/0002-check-if-uclibc-has-backtrace-support.patch
> @@ -1,4 +1,4 @@
> -From 7c69553d7275bbcaa88fada8ccd0d2d9f787e1ad Mon Sep 17 00:00:00 2001
> +From f1a15cea9a47d0a9b0ae78fb22fef3a268e355ad Mon Sep 17 00:00:00 2001
>  From: Martin Bark <martin@barkynet.com>
>  Date: Sat, 4 Mar 2017 20:41:40 +0000
>  Subject: [PATCH] check if uclibc has backtrace support
> @@ -9,7 +9,7 @@ Signed-off-by: Martin Bark <martin@barkynet.com>
>   1 file changed, 1 insertion(+), 1 deletion(-)
>  
>  diff --git a/deps/v8/src/base/debug/stack_trace_posix.cc b/deps/v8/src/base/debug/stack_trace_posix.cc
> -index 87c0a73..d2c182a 100644
> +index 270f1ca4e0..5227e88671 100644
>  --- a/deps/v8/src/base/debug/stack_trace_posix.cc
>  +++ b/deps/v8/src/base/debug/stack_trace_posix.cc
>  @@ -25,7 +25,7 @@
> @@ -22,5 +22,5 @@ index 87c0a73..d2c182a 100644
>   #endif
>   
>  -- 
> -2.7.4
> +2.37.3
>  
> diff --git a/package/nodejs/0003-include-obj-name-in-shared-intermediate.patch b/package/nodejs/0003-include-obj-name-in-shared-intermediate.patch
> index b439c66a0c..5b44e6c400 100644
> --- a/package/nodejs/0003-include-obj-name-in-shared-intermediate.patch
> +++ b/package/nodejs/0003-include-obj-name-in-shared-intermediate.patch
> @@ -1,4 +1,4 @@
> -From e6e691d093de440e0f408d48971e2b7332a07d58 Mon Sep 17 00:00:00 2001
> +From af47d317e5ae12978c1cdc40627008ada144f98b Mon Sep 17 00:00:00 2001
>  From: Min RK <benjaminrk@gmail.com>
>  Date: Fri, 19 Feb 2021 11:57:04 +0100
>  Subject: [PATCH] include obj name in shared intermediate
> @@ -12,7 +12,7 @@ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
>   1 file changed, 7 insertions(+), 1 deletion(-)
>  
>  diff --git a/tools/gyp/pylib/gyp/generator/ninja.py b/tools/gyp/pylib/gyp/generator/ninja.py
> -index d173bf2299..efaeee53ef 100644
> +index 3db3771ac9..2e0a021703 100644
>  --- a/tools/gyp/pylib/gyp/generator/ninja.py
>  +++ b/tools/gyp/pylib/gyp/generator/ninja.py
>  @@ -42,7 +42,7 @@ generator_default_variables = {
> diff --git a/package/nodejs/nodejs.hash b/package/nodejs/nodejs.hash
> index 12ae449ab4..83e4c271ce 100644
> --- a/package/nodejs/nodejs.hash
> +++ b/package/nodejs/nodejs.hash
> @@ -1,5 +1,5 @@
> -# From https://nodejs.org/dist/v16.16.0/SHASUMS256.txt
> -sha256  145151eff3b2aa5ebe73384009c52271a83740ae687a93c98c628cd7d52736eb  node-v16.16.0.tar.xz
> +# From https://nodejs.org/dist/v16.17.1/SHASUMS256.txt
> +sha256  6721feb4152d56d2c6b358ce397abd5a7f1daf09ee2e25c5021b9b4d3f86a330  node-v16.17.1.tar.xz
>  
>  # Hash for license file
> -sha256  6211cc77f9ceaf365db12faf050775b3a1e6da7a1eff3577ba006c4918103c33  LICENSE
> +sha256  69090e865afa7c62715b97f0712632d2923bd7a5faba91f94e4e75a2f9219d5e  LICENSE
> diff --git a/package/nodejs/nodejs.mk b/package/nodejs/nodejs.mk
> index e9fe96812f..05456e3443 100644
> --- a/package/nodejs/nodejs.mk
> +++ b/package/nodejs/nodejs.mk
> @@ -4,7 +4,7 @@
>  #
>  ################################################################################
>  
> -NODEJS_VERSION = 16.16.0
> +NODEJS_VERSION = 16.17.1
>  NODEJS_SOURCE = node-v$(NODEJS_VERSION).tar.xz
>  NODEJS_SITE = http://nodejs.org/dist/v$(NODEJS_VERSION)
>  NODEJS_DEPENDENCIES = \
> -- 
> 2.37.3
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

  reply	other threads:[~2022-09-25 18:17 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-09-25 17:19 [Buildroot] [PATCH 1/4] package/nodejs: fixup qemu dependencies Thomas Petazzoni
2022-09-25 17:19 ` [Buildroot] [PATCH 2/4] package/nodejs: bump to v16.17.1 Thomas Petazzoni via buildroot
2022-09-25 18:17   ` Yann E. MORIN [this message]
2022-10-11 19:19   ` Peter Korsgaard
2022-10-12  8:26     ` Peter Korsgaard
2022-10-14 19:33       ` Yann E. MORIN
2022-09-25 17:19 ` [Buildroot] [PATCH 3/4] package/nodejs: add patch to adjust default NodeJS search path Thomas Petazzoni
2022-09-25 18:15   ` Yann E. MORIN
2022-09-25 19:23     ` Thomas Petazzoni
2022-09-25 17:19 ` [Buildroot] [PATCH 4/4] support/testing/tests: add NodeJS tests Thomas Petazzoni
2022-09-25 18:16 ` [Buildroot] [PATCH 1/4] package/nodejs: fixup qemu dependencies Yann E. MORIN
2022-10-11 18:53 ` Peter Korsgaard

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220925181707.GD1419013@scaer \
    --to=yann.morin.1998@free.fr \
    --cc=angelo.compagnucci@gmail.com \
    --cc=ardeleanalex@gmail.com \
    --cc=buildroot@buildroot.org \
    --cc=daniel.price@gmail.com \
    --cc=martin@barkynet.com \
    --cc=thomas.petazzoni@bootlin.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox