* [bug#50612] [PATCH 0/2] Update esbuild & x/sys dependency
@ 2021-09-16 1:18 Ryan Prior via Guix-patches via
2021-09-16 1:29 ` [bug#50612] [PATCH 1/2] gnu: go-golang-x-sys: Update to latest Ryan Prior via Guix-patches via
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Ryan Prior via Guix-patches via @ 2021-09-16 1:18 UTC (permalink / raw)
To: 50612
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
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#50612] [PATCH 1/2] gnu: go-golang-x-sys: Update to latest.
2021-09-16 1:18 [bug#50612] [PATCH 0/2] Update esbuild & x/sys dependency Ryan Prior via Guix-patches via
@ 2021-09-16 1:29 ` Ryan Prior via Guix-patches via
2021-09-16 1:29 ` [bug#50612] [PATCH 2/2] gnu: esbuild: Update to 0.12.28 Ryan Prior via Guix-patches via
2021-11-28 15:58 ` [bug#50612] [PATCH] gnu: esbuild: Update to 0.14.0 Ryan Prior via Guix-patches via
2021-12-01 16:32 ` bug#50612: [PATCH 0/2] Update esbuild & x/sys dependency Nicolas Goaziou
2 siblings, 1 reply; 5+ messages in thread
From: Ryan Prior via Guix-patches via @ 2021-09-16 1:29 UTC (permalink / raw)
To: 50612
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
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#50612] [PATCH 2/2] gnu: esbuild: Update to 0.12.28.
2021-09-16 1:29 ` [bug#50612] [PATCH 1/2] gnu: go-golang-x-sys: Update to latest Ryan Prior via Guix-patches via
@ 2021-09-16 1:29 ` Ryan Prior via Guix-patches via
0 siblings, 0 replies; 5+ messages in thread
From: Ryan Prior via Guix-patches via @ 2021-09-16 1:29 UTC (permalink / raw)
To: 50612
* 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
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#50612] [PATCH] gnu: esbuild: Update to 0.14.0.
2021-09-16 1:18 [bug#50612] [PATCH 0/2] Update esbuild & x/sys dependency Ryan Prior via Guix-patches via
2021-09-16 1:29 ` [bug#50612] [PATCH 1/2] gnu: go-golang-x-sys: Update to latest Ryan Prior via Guix-patches via
@ 2021-11-28 15:58 ` Ryan Prior via Guix-patches via
2021-12-01 16:32 ` bug#50612: [PATCH 0/2] Update esbuild & x/sys dependency Nicolas Goaziou
2 siblings, 0 replies; 5+ messages in thread
From: Ryan Prior via Guix-patches via @ 2021-11-28 15:58 UTC (permalink / raw)
To: 50612
* 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
^ permalink raw reply related [flat|nested] 5+ messages in thread
* bug#50612: [PATCH 0/2] Update esbuild & x/sys dependency
2021-09-16 1:18 [bug#50612] [PATCH 0/2] Update esbuild & x/sys dependency Ryan Prior via Guix-patches via
2021-09-16 1:29 ` [bug#50612] [PATCH 1/2] gnu: go-golang-x-sys: Update to latest Ryan Prior via Guix-patches via
2021-11-28 15:58 ` [bug#50612] [PATCH] gnu: esbuild: Update to 0.14.0 Ryan Prior via Guix-patches via
@ 2021-12-01 16:32 ` Nicolas Goaziou
2 siblings, 0 replies; 5+ messages in thread
From: Nicolas Goaziou @ 2021-12-01 16:32 UTC (permalink / raw)
To: Ryan Prior via Guix-patches via; +Cc: Ryan Prior, 50612-done
Hello,
Ryan Prior via Guix-patches via <guix-patches@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
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2021-12-01 16:33 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-09-16 1:18 [bug#50612] [PATCH 0/2] Update esbuild & x/sys dependency Ryan Prior via Guix-patches via
2021-09-16 1:29 ` [bug#50612] [PATCH 1/2] gnu: go-golang-x-sys: Update to latest Ryan Prior via Guix-patches via
2021-09-16 1:29 ` [bug#50612] [PATCH 2/2] gnu: esbuild: Update to 0.12.28 Ryan Prior via Guix-patches via
2021-11-28 15:58 ` [bug#50612] [PATCH] gnu: esbuild: Update to 0.14.0 Ryan Prior via Guix-patches via
2021-12-01 16:32 ` bug#50612: [PATCH 0/2] Update esbuild & x/sys dependency Nicolas Goaziou
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).