GNU bug report logs - #75384
[PATCH 0/4] Bump node-lts to 22.12.0

Previous Next

Package: guix-patches;

Reported by: jlicht <at> fsfe.org

Date: Sun, 5 Jan 2025 17:49:02 UTC

Severity: normal

Tags: patch

Done: Jelle Licht <jlicht <at> fsfe.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 75384 in the body.
You can then email your comments to 75384 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to dthompson2 <at> worcester.edu, guix-patches <at> gnu.org:
bug#75384; Package guix-patches. (Sun, 05 Jan 2025 17:49:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to jlicht <at> fsfe.org:
New bug report received and forwarded. Copy sent to dthompson2 <at> worcester.edu, guix-patches <at> gnu.org. (Sun, 05 Jan 2025 17:49:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: jlicht <at> fsfe.org
To: guix-patches <at> gnu.org
Cc: Jelle Licht <jlicht <at> fsfe.org>
Subject: [PATCH 0/4] Bump node-lts to 22.12.0
Date: Sun,  5 Jan 2025 18:48:56 +0100
From: Jelle Licht <jlicht <at> fsfe.org>

Hi all, this series bumps node-lts to version 22.12.0.

I had to reintroduce a c-ares package variant specific to node-lts, as well as
disable some tests that did not work in the build container for one reason or
another.

To keep the llhttp-bootstrap dance as short as possible, I've adapted a
so-called ponyfill[0] for Object.fromEntries so we can directly build llhttp
9.2.1 using our node-bootstrap package.

[0] https://github.com/feross/fromentries/tree/master#what-is-a-ponyfill

Jelle Licht (4):
  gnu: Add c-ares-for-node-lts.
  gnu: libuv-for-node-lts: Update to 1.49.1.
  gnu: llhttp-bootstrap: Update to 9.2.1.
  gnu: node-lts: Update to 22.12.0.

 gnu/local.mk                                  |  1 +
 gnu/packages/adns.scm                         | 15 ++++++
 gnu/packages/libevent.scm                     | 12 +----
 gnu/packages/node.scm                         | 23 ++++++----
 .../llhttp-ponyfill-object-fromentries.patch  | 46 +++++++++++++++++++
 5 files changed, 77 insertions(+), 20 deletions(-)
 create mode 100644 gnu/packages/patches/llhttp-ponyfill-object-fromentries.patch


base-commit: 67a535351f8678969e412e8dba9197a883b524d0
-- 
2.47.1





Information forwarded to jlicht <at> fsfe.org, sharlatanus <at> gmail.com, guix-patches <at> gnu.org:
bug#75384; Package guix-patches. (Sun, 05 Jan 2025 17:58:02 GMT) Full text and rfc822 format available.

Message #8 received at 75384 <at> debbugs.gnu.org (full text, mbox):

From: jlicht <at> fsfe.org
To: 75384 <at> debbugs.gnu.org
Cc: Jelle Licht <jlicht <at> fsfe.org>
Subject: [PATCH 1/4] gnu: Add c-ares-for-node-lts.
Date: Sun,  5 Jan 2025 18:57:19 +0100
From: Jelle Licht <jlicht <at> fsfe.org>

* gnu/packages/adns.scm (c-ares-for-node-lts): New variable.

Change-Id: I547272f3fa3419a7659bf5b2d91a3e917c20d434
---
 gnu/packages/adns.scm | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/gnu/packages/adns.scm b/gnu/packages/adns.scm
index 1097b84062..8f37d970c3 100644
--- a/gnu/packages/adns.scm
+++ b/gnu/packages/adns.scm
@@ -148,6 +148,21 @@ (define-public c-ares
 multiple clients and programs with graphical user interfaces.")
     (license (x11-style "https://c-ares.haxx.se/license.html"))))
 
+(define-public c-ares-for-node-lts
+  (hidden-package
+   (package
+     (inherit c-ares)
+     (version "1.34.4")
+     (source (origin
+               (method url-fetch)
+               (uri (string-append
+                     "https://github.com/c-ares/c-ares/releases/download/v"
+                     version "/c-ares-" version
+                     ".tar.gz"))
+               (sha256
+                (base32
+                 "0br2msk3bpl5myhjp9vr5j2scpspvbg2fpnz69dcrr4ycpnxnf7s")))))))
+
 ;; gRPC requires a c-ares built with CMake in order to get the .cmake modules.
 ;; We can not build c-ares itself with CMake because that would introduce a
 ;; circular dependency through nghttp2.
-- 
2.47.1





Information forwarded to jlicht <at> fsfe.org, guix-patches <at> gnu.org:
bug#75384; Package guix-patches. (Sun, 05 Jan 2025 17:58:02 GMT) Full text and rfc822 format available.

Message #11 received at 75384 <at> debbugs.gnu.org (full text, mbox):

From: jlicht <at> fsfe.org
To: 75384 <at> debbugs.gnu.org
Cc: Jelle Licht <jlicht <at> fsfe.org>
Subject: [PATCH 2/4] gnu: libuv-for-node-lts: Update to 1.49.1.
Date: Sun,  5 Jan 2025 18:57:20 +0100
From: Jelle Licht <jlicht <at> fsfe.org>

* gnu/packages/libevent.scm (libuv-for-node-lts): Update to 1.49.1.

Change-Id: I8acf2fb174fffa90f7c3271088d0476c682df904
---
 gnu/packages/libevent.scm | 12 ++----------
 1 file changed, 2 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/libevent.scm b/gnu/packages/libevent.scm
index 202deaea47..40de182ff8 100644
--- a/gnu/packages/libevent.scm
+++ b/gnu/packages/libevent.scm
@@ -164,22 +164,14 @@ (define-public libuv-for-node-lts
   (package
     (inherit libuv)
     (name "libuv")
-    (version "1.46.0")
+    (version "1.49.1")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://dist.libuv.org/dist/v" version
                                   "/libuv-v" version ".tar.gz"))
               (sha256
                (base32
-                "1knxvp6bl3y0c87cch1id0z7m7rb6igx55ci93qnbp4zifaq67qi"))
-       (modules '((guix build utils)))
-       (snippet
-        '(begin
-           ;; Disable io_uring by default due to CVE-2024-22017. Can be removed once
-           ;; https://github.com/libuv/libuv/issues/4468 is released and compatible
-           ;; with Node.js
-           (substitute* "src/unix/linux.c"
-             (("val == NULL \\|\\|") "val != NULL &&"))))))
+                "0rk73b373zb495jd0qsl2gpnc8fc60jbhn3aayqnglfgyhagg14d"))))
     (properties '((hidden? . #t)))))
 
 (define-public libuv-for-r-httpuv
-- 
2.47.1





Information forwarded to jlicht <at> fsfe.org, guix-patches <at> gnu.org:
bug#75384; Package guix-patches. (Sun, 05 Jan 2025 17:58:03 GMT) Full text and rfc822 format available.

Message #14 received at 75384 <at> debbugs.gnu.org (full text, mbox):

From: jlicht <at> fsfe.org
To: 75384 <at> debbugs.gnu.org
Cc: Jelle Licht <jlicht <at> fsfe.org>
Subject: [PATCH 4/4] gnu: node-lts: Update to 22.12.0.
Date: Sun,  5 Jan 2025 18:57:22 +0100
From: Jelle Licht <jlicht <at> fsfe.org>

* gnu/packages/node.scm (node-lts): Update to 22.12.0.
[#:phases]<delete-problematic-tests>: Delete tests that fail due to the build
container. Delete tests that require a DNS resolver.
[inputs]: Replace c-ares by c-ares-for-node-lts.
Replace icu4c by icu4c-73.
[native-inputs]: Replace c-ares by c-ares-for-node-lts.
Replace icu4c by icu4c-73.

Change-Id: I8cbc790bd82c55b48f8917e6405b37569b29dc1c
---
 gnu/packages/node.scm | 18 ++++++++++--------
 1 file changed, 10 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/node.scm b/gnu/packages/node.scm
index 6c0031aa5a..75a1a12c53 100644
--- a/gnu/packages/node.scm
+++ b/gnu/packages/node.scm
@@ -750,14 +750,14 @@ (define-public llhttp-bootstrap
 (define-public node-lts
   (package
     (inherit node-bootstrap)
-    (version "20.18.1")
+    (version "22.12.0")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://nodejs.org/dist/v" version
                                   "/node-v" version ".tar.gz"))
               (sha256
                (base32
-                "1f180vgr6lrg4gs48q5c414j5sdwaqqp1vnswwr3pvryhznqrbav"))
+                "1qrcn9hm85bmh81ircaa0vmxrqmiip1iwczvpsyn9sdn0b0ffmri"))
               (modules '((guix build utils)))
               (snippet
                '(begin
@@ -838,14 +838,16 @@ (define-public node-lts
                ;; seem to be indicative of real problems in practice.
                (for-each delete-file
                          '("test/parallel/test-cluster-primary-error.js"
-                           "test/parallel/test-cluster-primary-kill.js"))
+                           "test/parallel/test-cluster-primary-kill.js"
+                           "test/parallel/test-node-run.js"))
 
                ;; These require a DNS resolver.
                (for-each delete-file
                          '("test/parallel/test-dns.js"
                            "test/parallel/test-dns-lookupService-promises.js"
                            "test/parallel/test-net-socket-connect-without-cb.js"
-                           "test/parallel/test-tcp-wrap-listen.js"))
+                           "test/parallel/test-tcp-wrap-listen.js"
+                           "test/report/test-report-exclude-network.js"))
 
                ;; These tests require networking.
                (for-each delete-file
@@ -956,9 +958,9 @@ (define-public node-lts
                  (chmod file #o555))))))))
     (native-inputs
      (list ;; Runtime dependencies for binaries used as a bootstrap.
-           c-ares
+           c-ares-for-node-lts
            brotli
-           icu4c
+           icu4c-73
            libuv-for-node-lts
            `(,nghttp2 "lib")
            openssl
@@ -973,8 +975,8 @@ (define-public node-lts
     (inputs
      (list bash-minimal
            coreutils
-           c-ares
-           icu4c
+           c-ares-for-node-lts
+           icu4c-73
            libuv-for-node-lts
            llhttp-bootstrap
            brotli
-- 
2.47.1





Information forwarded to jlicht <at> fsfe.org, guix-patches <at> gnu.org:
bug#75384; Package guix-patches. (Sun, 05 Jan 2025 17:58:04 GMT) Full text and rfc822 format available.

Message #17 received at 75384 <at> debbugs.gnu.org (full text, mbox):

From: jlicht <at> fsfe.org
To: 75384 <at> debbugs.gnu.org
Cc: Jelle Licht <jlicht <at> fsfe.org>
Subject: [PATCH 3/4] gnu: llhttp-bootstrap: Update to 9.2.1.
Date: Sun,  5 Jan 2025 18:57:21 +0100
From: Jelle Licht <jlicht <at> fsfe.org>

* gnu/packages/patches/llhttp-ponyfill-object-fromentries.patch: New patch.
* gnu/local.mk (dist_patch_DATA): Register patch.
* gnu/packages/node.scm (llhttp-bootstrap): Update to 9.2.1.
[source]: Use patch.
---
 gnu/local.mk                                  |  1 +
 gnu/packages/node.scm                         |  5 +-
 .../llhttp-ponyfill-object-fromentries.patch  | 46 +++++++++++++++++++
 3 files changed, 50 insertions(+), 2 deletions(-)
 create mode 100644 gnu/packages/patches/llhttp-ponyfill-object-fromentries.patch

diff --git a/gnu/local.mk b/gnu/local.mk
index f118fe4442..61f91d2e9f 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -1812,6 +1812,7 @@ dist_patch_DATA =						\
   %D%/packages/patches/mcrypt-CVE-2012-4527.patch			\
   %D%/packages/patches/libmemcached-build-with-gcc7.patch	\
   %D%/packages/patches/libmhash-hmac-fix-uaf.patch		\
+  %D%/packages/patches/llhttp-ponyfill-object-fromentries.patch	\
   %D%/packages/patches/lvm2-no-systemd.patch    		\
   %D%/packages/patches/maturin-no-cross-compile.patch		\
   %D%/packages/patches/mecab-variable-param.patch		\
diff --git a/gnu/packages/node.scm b/gnu/packages/node.scm
index 20acffb3df..6c0031aa5a 100644
--- a/gnu/packages/node.scm
+++ b/gnu/packages/node.scm
@@ -679,7 +679,7 @@ (define-public node-llparse-bootstrap
 (define-public llhttp-bootstrap
   (package
     (name "llhttp")
-    (version "8.1.2")
+    (version "9.2.1")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -688,7 +688,8 @@ (define-public llhttp-bootstrap
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "1808y8mpdcmsi8rxndilngg4nn2fbqfgb29f47kk9mmdpqg5s17r"))
+                "0mzg19aqb1am498gms0z75cwd5kmfg9p78b1hhxw67019nsjcbac"))
+              (patches (search-patches "llhttp-ponyfill-object-fromentries.patch"))
               (modules '((guix build utils)))
               (snippet
                '(begin
diff --git a/gnu/packages/patches/llhttp-ponyfill-object-fromentries.patch b/gnu/packages/patches/llhttp-ponyfill-object-fromentries.patch
new file mode 100644
index 0000000000..16ac6b45f6
--- /dev/null
+++ b/gnu/packages/patches/llhttp-ponyfill-object-fromentries.patch
@@ -0,0 +1,46 @@
+diff --git a/src/llhttp/constants.ts b/src/llhttp/constants.ts
+index 226342e..1a4c93a 100644
+--- a/src/llhttp/constants.ts
++++ b/src/llhttp/constants.ts
+@@ -1,4 +1,4 @@
+-import { enumToMap } from './utils';
++import { enumToMap, fromEntries } from './utils';
+ 
+ export type IntDict = Record<string, number>;
+ 
+@@ -328,7 +328,7 @@ export const METHODS_RTSP = [
+ 
+ export const METHOD_MAP = enumToMap(METHODS);
+ 
+-export const H_METHOD_MAP = Object.fromEntries(
++export const H_METHOD_MAP = fromEntries(
+   Object.entries(METHODS).filter(([ k ]) => k.startsWith('H'))
+ );
+ 
+diff --git a/src/llhttp/utils.ts b/src/llhttp/utils.ts
+index 2251125..5ac4aeb 100644
+--- a/src/llhttp/utils.ts
++++ b/src/llhttp/utils.ts
+@@ -1,5 +1,13 @@
+ import { IntDict } from './constants';
+ 
++/*! fromentries. MIT License. Copyright (c) 2018-2020 Feross Aboukhadijeh */
++export function fromEntries (iterable) {
++  return [...iterable].reduce((obj, [key, val]) => {
++    obj[key] = val
++    return obj
++  }, {})
++}
++
+ export function enumToMap(
+   obj: IntDict,
+   filter: ReadonlyArray<number> = [],
+@@ -8,7 +16,7 @@ export function enumToMap(
+   const emptyFilter = (filter?.length ?? 0) === 0;
+   const emptyExceptions = (exceptions?.length ?? 0) === 0;
+ 
+-  return Object.fromEntries(Object.entries(obj).filter(([ , value ]) => {
++  return fromEntries(Object.entries(obj).filter(([ , value ]) => {
+     return (
+       typeof value === 'number' &&
+       (emptyFilter || filter.includes(value)) &&
\ No newline at end of file
-- 
2.47.1





Information forwarded to guix-patches <at> gnu.org:
bug#75384; Package guix-patches. (Wed, 08 Jan 2025 16:37:01 GMT) Full text and rfc822 format available.

Message #20 received at 75384 <at> debbugs.gnu.org (full text, mbox):

From: "Thompson, David" <dthompson2 <at> worcester.edu>
To: Jelle Licht <jlicht <at> fsfe.org>
Cc: 75384 <at> debbugs.gnu.org
Subject: Re: [bug#75384] [PATCH 0/4] Bump node-lts to 22.12.0
Date: Wed, 8 Jan 2025 11:36:11 -0500
Hey Jelle,

On Sun, Jan 5, 2025 at 12:49 PM <jlicht <at> fsfe.org> wrote:
>
> From: Jelle Licht <jlicht <at> fsfe.org>
>
> Hi all, this series bumps node-lts to version 22.12.0.

I tested the patch series and everything compiled successfully.  I
also tested it with WebAssembly binaries generated by Hoot, to see if
we could drop our custom, non-bootstrapped Node build in that project,
and indeed we can!

The code all looks good to me!  Thank you for doing this important
work!  I must admit I briefly looked into upgrading Node back when the
22 series was fresh and couldn't figure it out.

Now, there's a practical issue for getting this merged.  `guix refresh
-l node` tells me this:

Building the following 162 packages would ensure 280 dependent
packages are rebuilt: ccwl <at> 0.3.0
ungoogled-chromium-wayland <at> 112.0.5615.165-1 emacs-nodejs-repl <at> 0.2.5
emacs-dape <at> 0.19.0 icedove <at> 115.16.3 geierlein <at> 0.9.13
icedove-minimal <at> 115.16.3 icecat-l10n <at> 115.18.0-guix2
icecat-minimal <at> 115.18.0-guix2 icedove-l10n <at> 115.16.3 js-mathjax <at> 3.2.0
r-metap <at> 1.11 r-mmuphin <at> 1.18.1 r-spacexr <at> 2.2.1-1.0a0861e r-altmeta <at> 4.2
r-fmri <at> 1.9.12.1 r-puniform <at> 0.2.7 r-prospectr <at> 0.2.7 r-untb <at> 1.7-7-1
librewolf <at> 133.0-1 node-path-key <at> 4.0.0 node-sqlite3 <at> 5.0.2
node-once <at> 1.4.0 node-mersenne <at> 0.0.4 node-normalize-path <at> 3.0.0
node-statsd-parser <at> 0.0.4 node-safe-stable-stringify <at> 2.4.3
node-stack-trace <at> 0.0.10-1.4fd379e node-color-name <at> 1.1.3
node-env-variable <at> 0.0.4 node-crx3 <at> 1.1.3 node-segfault-handler <at> 1.3.0
node-irc <at> 0.5.2 node-global-gradle-clean <at> 1.0.1 node-serialport <at> 9.2.7
bap <at> 2.6.0-alpha-0.f995d28 frama-c <at> 29.0 ocaml-mirage-logs <at> 1.2.0
fpm <at> 1.15.1 komikku <at> 1.46.0 python-bulkvis <at> 2.0.0-2.00a82a9
python-ikarus <at> 0.0.2 python-pyrodigal <at> 3.3.0 kitsas <at> 5.7 falkon <at> 24.05.2
ktorrent <at> 24.05.2 calligra <at> 4.0.1 ghostwriter <at> 24.05.2 knotes <at> 24.05.2
kaccounts-providers <at> 24.05.2 kdepim-runtime <at> 24.05.2 korganizer <at> 24.05.2
merkuro <at> 24.05.2 kmail <at> 24.05.2 plasma-pass <at> 1.2.2 plasma <at> 6.1.4
khelpcenter <at> 24.05.2 akregator <at> 24.05.2 python-apscheduler <at> 3.10.4
syncplay <at> 1.7.3 qutebrowser <at> 3.3.1 stellarium <at> 24.3
emacs-ob-sclang <at> 0.1-1.cd3f3c8 ecl-cl-collider <at> 2018.7.15-0.a469088
cl-collider <at> 2018.7.15-0.a469088 zeal <at> 0.7.1 qolibri <at> 2.1.4
openboard <at> 1.7.3 fcitx5-chinese-addons <at> 5.1.3 qmapshack <at> 1.17.1
luminance-hdr <at> 2.6.0 kvirc <at> 5.2.6 marble-qt <at> 24.05.2 kdevelop <at> 24.05.2
movim-desktop <at> 0.14.0-3.83d583b hydrus-network <at> 495 mygnuhealth <at> 2.2.1
freecad <at> 1.0.0 rfcat <at> 1.9.6 onionshare <at> 2.6 emacs-calibredb <at> 2.13.0
anki <at> 2.1.16 openmolar <at> 1.1.6-g81838c85 orange <at> 3.32.0 sdrangel <at> 7.22.2
openfoam-com <at> 2212 openfoam-org <at> 10.20230119 nextcloud-client <at> 3.8.2
openshot <at> 3.2.1 openconnect-sso <at> 0.8.0 kiwix-desktop <at> 2.3.1
ruby-autoprefixer-rails <at> 10.4.13.0 mullvadbrowser <at> 14.0.3
torbrowser <at> 14.0.3 tree-sitter-julia <at> 0.19.0 tree-sitter-clojure <at> 0.0.11
tree-sitter-rust <at> 0.20.4 tree-sitter-ocaml <at> 0.20.1
tree-sitter-java <at> 0.20.1 tree-sitter-erlang <at> 0.4.0-0.57e6951
tree-sitter-prisma <at> 1.4.0 tree-sitter-bibtex <at> 0.1.0-0.ccfd77d
tree-sitter-css <at> 0.19.0 tree-sitter-dockerfile <at> 0.1.2
tree-sitter-scala <at> 0.20.2 tree-sitter-c-sharp <at> 0.20.0
tree-sitter-scheme <at> 0.2.0-0.67b90a3 tree-sitter-vhdl <at> 0.1.1-0.a3b2d84
tree-sitter-markdown-gfm <at> 0.7.1 tree-sitter-verilog <at> 1.0.0-0.075ebfc
tree-sitter-go <at> 0.20.0 tree-sitter-json <at> 0.20.0 tree-sitter-html <at> 0.19.0
tree-sitter-matlab <at> 1.0.2-0.79d8b25 tree-sitter-cpp <at> 0.20.3
tree-sitter-r <at> 0.0.1-0.80efda5 tree-sitter-ungrammar <at> 0.0.2-0.debd26f
tree-sitter-haskell <at> 0.14.0-0.3bdba07
tree-sitter-plantuml <at> 1.0.0-0.bea443e tree-sitter-elm <at> 5.6.3
tree-sitter-nix <at> 0.0.0 tree-sitter-racket <at> 0.1.0-0.1a5df02
tree-sitter-ron <at> 0.2.0 tree-sitter-bash <at> 0.20.4 tree-sitter-gomod <at> 1.0.0
tree-sitter-cmake <at> 0.4.1 tree-sitter-elixir <at> 0.19.0-0.b20eaa7
emacs-devicetree-ts-mode <at> 0.3 tree-sitter-kotlin <at> 0.3.6
tree-sitter-hcl <at> 1.1.0 emacs-jsdoc <at> 0.3 python-textual <at> 0.50.1
tree-sitter-markdown <at> 0.1.1 tree-sitter-latex <at> 0.3.0
tree-sitter-awk <at> 0.6.2 tree-sitter-org <at> 1.3.1-0.081179c
emacs-combobulate <at> 0.1-1.c7e4670 tree-sitter-kdl <at> 1.1.0
tree-sitter-tlaplus <at> 1.0.8 tree-sitter-meson <at> 1.2-0.3d6dfbd
tree-sitter-lua <at> 0.0.19 tree-sitter-heex <at> 0.6.0
tree-sitter-ruby <at> 0.19.0-0.206c707 tree-sitter-php <at> 0.19.0-0.f860e59
pigx <at> 0.0.3 laminar <at> 1.3 r-zra <at> 0.2 r-aasea <at> 1.1.0 r-pcaexplorer <at> 3.0.0
r-mlinterfaces <at> 1.86.0 r-tidyposterior <at> 1.0.1 markdeep <at> 1.16 mate <at> 1.28.2
gr-satellites <at> 4.6.0 gqrx <at> 2.17.6 urh <at> 2.9.8 gnss-sdr <at> 0.0.19
gr-dsd <at> 1.0.0-0.f9b9936 vlang <at> 0.2.4 r-shinydashboardplus <at> 2.0.5
archivebox <at> 0.6.2 node-openzwave-shared <at> 1.7.2

This would be quite a disruptive change to push to the master branch.
Is there anyone who can help get these patches pre-baked in CI before
merging?  That would be much appreciated!

- Dave




Information forwarded to guix-patches <at> gnu.org:
bug#75384; Package guix-patches. (Fri, 24 Jan 2025 09:16:01 GMT) Full text and rfc822 format available.

Message #23 received at 75384 <at> debbugs.gnu.org (full text, mbox):

From: Jelle Licht <jlicht <at> fsfe.org>
To: "Thompson, David" <dthompson2 <at> worcester.edu>
Cc: 75384 <at> debbugs.gnu.org, Ludovic Courtès <ludo <at> gnu.org>
Subject: Re: [bug#75384] [PATCH 0/4] Bump node-lts to 22.12.0
Date: Fri, 24 Jan 2025 10:15:25 +0100
"Thompson, David" <dthompson2 <at> worcester.edu> writes:

> Hey Jelle,

[snip]

> Now, there's a practical issue for getting this merged.  `guix refresh
> -l node` tells me this:
>
> Building the following 162 packages would ensure 280 dependent
> packages are rebuilt: ccwl <at> 0.3.0
> ungoogled-chromium-wayland <at> 112.0.5615.165-1 emacs-nodejs-repl <at> 0.2.5
> emacs-dape <at> 0.19.0 icedove <at> 115.16.3 geierlein <at> 0.9.13
> icedove-minimal <at> 115.16.3 icecat-l10n <at> 115.18.0-guix2
> icecat-minimal <at> 115.18.0-guix2 icedove-l10n <at> 115.16.3 js-mathjax <at> 3.2.0
> r-metap <at> 1.11 r-mmuphin <at> 1.18.1 r-spacexr <at> 2.2.1-1.0a0861e r-altmeta <at> 4.2
> r-fmri <at> 1.9.12.1 r-puniform <at> 0.2.7 r-prospectr <at> 0.2.7 r-untb <at> 1.7-7-1
> librewolf <at> 133.0-1 node-path-key <at> 4.0.0 node-sqlite3 <at> 5.0.2
> node-once <at> 1.4.0 node-mersenne <at> 0.0.4 node-normalize-path <at> 3.0.0
> node-statsd-parser <at> 0.0.4 node-safe-stable-stringify <at> 2.4.3
> node-stack-trace <at> 0.0.10-1.4fd379e node-color-name <at> 1.1.3
> node-env-variable <at> 0.0.4 node-crx3 <at> 1.1.3 node-segfault-handler <at> 1.3.0
> node-irc <at> 0.5.2 node-global-gradle-clean <at> 1.0.1 node-serialport <at> 9.2.7
> bap <at> 2.6.0-alpha-0.f995d28 frama-c <at> 29.0 ocaml-mirage-logs <at> 1.2.0
> fpm <at> 1.15.1 komikku <at> 1.46.0 python-bulkvis <at> 2.0.0-2.00a82a9
> python-ikarus <at> 0.0.2 python-pyrodigal <at> 3.3.0 kitsas <at> 5.7 falkon <at> 24.05.2
> ktorrent <at> 24.05.2 calligra <at> 4.0.1 ghostwriter <at> 24.05.2 knotes <at> 24.05.2
> kaccounts-providers <at> 24.05.2 kdepim-runtime <at> 24.05.2 korganizer <at> 24.05.2
> merkuro <at> 24.05.2 kmail <at> 24.05.2 plasma-pass <at> 1.2.2 plasma <at> 6.1.4
> khelpcenter <at> 24.05.2 akregator <at> 24.05.2 python-apscheduler <at> 3.10.4
> syncplay <at> 1.7.3 qutebrowser <at> 3.3.1 stellarium <at> 24.3
> emacs-ob-sclang <at> 0.1-1.cd3f3c8 ecl-cl-collider <at> 2018.7.15-0.a469088
> cl-collider <at> 2018.7.15-0.a469088 zeal <at> 0.7.1 qolibri <at> 2.1.4
> openboard <at> 1.7.3 fcitx5-chinese-addons <at> 5.1.3 qmapshack <at> 1.17.1
> luminance-hdr <at> 2.6.0 kvirc <at> 5.2.6 marble-qt <at> 24.05.2 kdevelop <at> 24.05.2
> movim-desktop <at> 0.14.0-3.83d583b hydrus-network <at> 495 mygnuhealth <at> 2.2.1
> freecad <at> 1.0.0 rfcat <at> 1.9.6 onionshare <at> 2.6 emacs-calibredb <at> 2.13.0
> anki <at> 2.1.16 openmolar <at> 1.1.6-g81838c85 orange <at> 3.32.0 sdrangel <at> 7.22.2
> openfoam-com <at> 2212 openfoam-org <at> 10.20230119 nextcloud-client <at> 3.8.2
> openshot <at> 3.2.1 openconnect-sso <at> 0.8.0 kiwix-desktop <at> 2.3.1
> ruby-autoprefixer-rails <at> 10.4.13.0 mullvadbrowser <at> 14.0.3
> torbrowser <at> 14.0.3 tree-sitter-julia <at> 0.19.0 tree-sitter-clojure <at> 0.0.11
> tree-sitter-rust <at> 0.20.4 tree-sitter-ocaml <at> 0.20.1
> tree-sitter-java <at> 0.20.1 tree-sitter-erlang <at> 0.4.0-0.57e6951
> tree-sitter-prisma <at> 1.4.0 tree-sitter-bibtex <at> 0.1.0-0.ccfd77d
> tree-sitter-css <at> 0.19.0 tree-sitter-dockerfile <at> 0.1.2
> tree-sitter-scala <at> 0.20.2 tree-sitter-c-sharp <at> 0.20.0
> tree-sitter-scheme <at> 0.2.0-0.67b90a3 tree-sitter-vhdl <at> 0.1.1-0.a3b2d84
> tree-sitter-markdown-gfm <at> 0.7.1 tree-sitter-verilog <at> 1.0.0-0.075ebfc
> tree-sitter-go <at> 0.20.0 tree-sitter-json <at> 0.20.0 tree-sitter-html <at> 0.19.0
> tree-sitter-matlab <at> 1.0.2-0.79d8b25 tree-sitter-cpp <at> 0.20.3
> tree-sitter-r <at> 0.0.1-0.80efda5 tree-sitter-ungrammar <at> 0.0.2-0.debd26f
> tree-sitter-haskell <at> 0.14.0-0.3bdba07
> tree-sitter-plantuml <at> 1.0.0-0.bea443e tree-sitter-elm <at> 5.6.3
> tree-sitter-nix <at> 0.0.0 tree-sitter-racket <at> 0.1.0-0.1a5df02
> tree-sitter-ron <at> 0.2.0 tree-sitter-bash <at> 0.20.4 tree-sitter-gomod <at> 1.0.0
> tree-sitter-cmake <at> 0.4.1 tree-sitter-elixir <at> 0.19.0-0.b20eaa7
> emacs-devicetree-ts-mode <at> 0.3 tree-sitter-kotlin <at> 0.3.6
> tree-sitter-hcl <at> 1.1.0 emacs-jsdoc <at> 0.3 python-textual <at> 0.50.1
> tree-sitter-markdown <at> 0.1.1 tree-sitter-latex <at> 0.3.0
> tree-sitter-awk <at> 0.6.2 tree-sitter-org <at> 1.3.1-0.081179c
> emacs-combobulate <at> 0.1-1.c7e4670 tree-sitter-kdl <at> 1.1.0
> tree-sitter-tlaplus <at> 1.0.8 tree-sitter-meson <at> 1.2-0.3d6dfbd
> tree-sitter-lua <at> 0.0.19 tree-sitter-heex <at> 0.6.0
> tree-sitter-ruby <at> 0.19.0-0.206c707 tree-sitter-php <at> 0.19.0-0.f860e59
> pigx <at> 0.0.3 laminar <at> 1.3 r-zra <at> 0.2 r-aasea <at> 1.1.0 r-pcaexplorer <at> 3.0.0
> r-mlinterfaces <at> 1.86.0 r-tidyposterior <at> 1.0.1 markdeep <at> 1.16 mate <at> 1.28.2
> gr-satellites <at> 4.6.0 gqrx <at> 2.17.6 urh <at> 2.9.8 gnss-sdr <at> 0.0.19
> gr-dsd <at> 1.0.0-0.f9b9936 vlang <at> 0.2.4 r-shinydashboardplus <at> 2.0.5
> archivebox <at> 0.6.2 node-openzwave-shared <at> 1.7.2
>
> This would be quite a disruptive change to push to the master branch.
> Is there anyone who can help get these patches pre-baked in CI before
> merging?  That would be much appreciated!

Agreed! Ludo, does your offer to pre-bake the substitutes for the Node
version bump still stand?
Thanks!
- Jelle






Information forwarded to guix-patches <at> gnu.org:
bug#75384; Package guix-patches. (Mon, 27 Jan 2025 13:27:02 GMT) Full text and rfc822 format available.

Message #26 received at 75384 <at> debbugs.gnu.org (full text, mbox):

From: Ricardo Wurmus <rekado <at> elephly.net>
To: 75384 <at> debbugs.gnu.org
Subject: [PATCH 0/4] Bump node-lts to 22.12.0
Date: Mon, 27 Jan 2025 14:25:43 +0100
As discussed on IRC, I have created a jobset on ci.guix.gnu.org for the
"node-team" branch, which now builds this change for x86_64.

-- 
Ricardo




Reply sent to Jelle Licht <jlicht <at> fsfe.org>:
You have taken responsibility. (Tue, 11 Feb 2025 13:18:02 GMT) Full text and rfc822 format available.

Notification sent to jlicht <at> fsfe.org:
bug acknowledged by developer. (Tue, 11 Feb 2025 13:18:03 GMT) Full text and rfc822 format available.

Message #31 received at 75384-done <at> debbugs.gnu.org (full text, mbox):

From: Jelle Licht <jlicht <at> fsfe.org>
To: Ricardo Wurmus <rekado <at> elephly.net>, 75384-done <at> debbugs.gnu.org
Subject: Re: [bug#75384] [PATCH 0/4] Bump node-lts to 22.12.0
Date: Tue, 11 Feb 2025 14:17:53 +0100
Ricardo Wurmus <rekado <at> elephly.net> writes:

> As discussed on IRC, I have created a jobset on ci.guix.gnu.org for the
> "node-team" branch, which now builds this change for x86_64.

Merged + Closed after rebasing it several times on master and seeing no new regressions.
Thanks for the reviews and any other assistance all!
 - Jelle




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Wed, 12 Mar 2025 11:24:29 GMT) Full text and rfc822 format available.

This bug report was last modified 100 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.