GNU bug report logs - #50612
[PATCH 0/2] Update esbuild & x/sys dependency

Previous Next

Package: guix-patches;

Reported by: Ryan Prior <rprior <at> protonmail.com>

Date: Thu, 16 Sep 2021 01:20:02 UTC

Severity: normal

Tags: patch

Done: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>

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 50612 in the body.
You can then email your comments to 50612 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 guix-patches <at> gnu.org:
bug#50612; Package guix-patches. (Thu, 16 Sep 2021 01:20:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Ryan Prior <rprior <at> protonmail.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Thu, 16 Sep 2021 01:20:02 GMT) Full text and rfc822 format available.

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

From: Ryan Prior <rprior <at> protonmail.com>
To: guix-patches <at> gnu.org
Subject: [PATCH 0/2] Update esbuild & x/sys dependency
Date: Thu, 16 Sep 2021 01:18:54 +0000
Hi guix! This update to esbuild requires a recent x/sys, which is a dependency of a lot of other packages. I'm not sure how to go about building all its dependent packages but I'll look into that and send a follow-up if I learn anything useful.

Cheers,
Ryan

Ryan Prior (2):
  gnu: go-golang-x-sys: Update to latest.
  gnu: esbuild: Update to 0.12.28.

 gnu/packages/golang.scm | 6 +++---
 gnu/packages/web.scm    | 4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

--
2.33.0






Information forwarded to guix-patches <at> gnu.org:
bug#50612; Package guix-patches. (Thu, 16 Sep 2021 01:30:01 GMT) Full text and rfc822 format available.

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

From: Ryan Prior <rprior <at> protonmail.com>
To: 50612 <at> debbugs.gnu.org
Subject: [PATCH 1/2] gnu: go-golang-x-sys: Update to latest.
Date: Thu, 16 Sep 2021 01:29:32 +0000
Recent x/sys is required for esbuild.

* gnu/packages/golang.scm (go-golang-x-sys): Update to latest.
---
 gnu/packages/golang.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index f02d0aa9df..42030d54ef 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -2502,8 +2502,8 @@ packages.")
       (license license:bsd-3))))

 (define-public go-golang-org-x-sys
-  (let ((commit "05986578812163b26672dabd9b425240ae2bb0ad")
-        (revision "7"))
+  (let ((commit "ed5796bab16455f104b6a384d51b7f9990cb9806")
+        (revision "8"))
     (package
       (name "go-golang-org-x-sys")
       (version (git-version "0.0.0" revision commit))
@@ -2515,7 +2515,7 @@ packages.")
                 (file-name (git-file-name name version))
                 (sha256
                  (base32
-                  "1q2rxb6z5l6pmlckjsz2l0b8lw7bqgk6frhzbmi1dv0y5irb2ka7"))))
+                  "081vs5bg91mwg5bdmlcvy2qyrvg766aicj47smcwfk4bbh0nc0qa"))))
       (build-system go-build-system)
       (arguments
        `(#:import-path "golang.org/x/sys"
--
2.33.0






Information forwarded to guix-patches <at> gnu.org:
bug#50612; Package guix-patches. (Thu, 16 Sep 2021 01:30:02 GMT) Full text and rfc822 format available.

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

From: Ryan Prior <rprior <at> protonmail.com>
To: 50612 <at> debbugs.gnu.org
Subject: [PATCH 2/2] gnu: esbuild: Update to 0.12.28.
Date: Thu, 16 Sep 2021 01:29:36 +0000
* gnu/packages/web.scm (esbuild): Update to 0.12.28.
---
 gnu/packages/web.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 09b57712c0..7cea044e93 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -1654,7 +1654,7 @@ used to validate and fix HTML data.")
 (define-public esbuild
   (package
     (name "esbuild")
-    (version "0.12.9")
+    (version "0.12.28")
     (source
      (origin
        (method git-fetch)
@@ -1663,7 +1663,7 @@ used to validate and fix HTML data.")
              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "10bz1xq2frdja7mbx04m009svg8b5rj7vfq3sc2gc88n31v21b1j"))
+        (base32 "1rjsbqshkx930cw07v63g4blzbd9zcm6jbb5yv9k86i59gprh8s8"))
        (modules '((guix build utils)))
        (snippet
         '(begin
--
2.33.0






Information forwarded to guix-patches <at> gnu.org:
bug#50612; Package guix-patches. (Sun, 28 Nov 2021 15:59:02 GMT) Full text and rfc822 format available.

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

From: Ryan Prior <rprior <at> protonmail.com>
To: 50612 <at> debbugs.gnu.org
Subject: [PATCH] gnu: esbuild: Update to 0.14.0.
Date: Sun, 28 Nov 2021 15:58:06 +0000
* gnu/packages/web.scm (esbuild): Update to 0.14.0.
---
 gnu/packages/web.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 0c5e191018..829ca0ac47 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -1654,7 +1654,7 @@ (module "tidy")
 (define-public esbuild
   (package
     (name "esbuild")
-    (version "0.12.28")
+    (version "0.14.0")
     (source
      (origin
        (method git-fetch)
@@ -1663,7 +1663,7 @@ (define-public esbuild
              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "1rjsbqshkx930cw07v63g4blzbd9zcm6jbb5yv9k86i59gprh8s8"))
+        (base32 "09r1xy0kk6c9cpz6q0mxr4why373pwxbm439z2ihq3k1d5kk7x4w"))
        (modules '((guix build utils)))
        (snippet
         '(begin
--
2.33.1






Information forwarded to guix-patches <at> gnu.org:
bug#50612; Package guix-patches. (Wed, 01 Dec 2021 16:33:02 GMT) Full text and rfc822 format available.

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

From: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
To: Ryan Prior via Guix-patches via <guix-patches <at> gnu.org>
Cc: Ryan Prior <rprior <at> protonmail.com>, 50612-done <at> debbugs.gnu.org
Subject: Re: [bug#50612] [PATCH 0/2] Update esbuild & x/sys dependency
Date: Wed, 01 Dec 2021 17:32:20 +0100
Hello,

Ryan Prior via Guix-patches via <guix-patches <at> gnu.org> writes:

> Hi guix! This update to esbuild requires a recent x/sys, which is
> a dependency of a lot of other packages. I'm not sure how to go about
> building all its dependent packages but I'll look into that and send
> a follow-up if I learn anything useful.

Thanks. I pushed this to staging branch.  I also merged both updates
into a single commit.

Regards,
-- 
Nicolas Goaziou




Reply sent to Nicolas Goaziou <mail <at> nicolasgoaziou.fr>:
You have taken responsibility. (Wed, 01 Dec 2021 16:33:02 GMT) Full text and rfc822 format available.

Notification sent to Ryan Prior <rprior <at> protonmail.com>:
bug acknowledged by developer. (Wed, 01 Dec 2021 16:33:02 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Thu, 30 Dec 2021 12:24:06 GMT) Full text and rfc822 format available.

This bug report was last modified 2 years and 79 days ago.

Previous Next


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