Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] nodejs: update to 15.0.0
@ 2020-10-20 15:33 smorimoto
  2020-10-20 15:34 ` smorimoto
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: smorimoto @ 2020-10-20 15:33 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 319 bytes --]

There is a new pull request by smorimoto against master on the void-packages repository

https://github.com/smorimoto/void-packages nodejs-15.0.0
https://github.com/void-linux/void-packages/pull/25754

nodejs: update to 15.0.0


A patch file from https://github.com/void-linux/void-packages/pull/25754.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-nodejs-15.0.0-25754.patch --]
[-- Type: text/x-diff, Size: 3048 bytes --]

From 0a3c104cfb3c194b6b1f7755089ec592a198809a Mon Sep 17 00:00:00 2001
From: Sora Morimoto <sora@morimoto.io>
Date: Wed, 21 Oct 2020 00:32:59 +0900
Subject: [PATCH] nodejs: update to 15.0.0

Signed-off-by: Sora Morimoto <sora@morimoto.io>
---
 srcpkgs/nodejs/patches/python3.9.patch | 35 --------------------------
 srcpkgs/nodejs/template                |  6 ++---
 2 files changed, 3 insertions(+), 38 deletions(-)
 delete mode 100644 srcpkgs/nodejs/patches/python3.9.patch

diff --git a/srcpkgs/nodejs/patches/python3.9.patch b/srcpkgs/nodejs/patches/python3.9.patch
deleted file mode 100644
index c6902083209..00000000000
--- a/srcpkgs/nodejs/patches/python3.9.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From c8b950a7afcc3e7c222bb94fabccc7e2fb447457 Mon Sep 17 00:00:00 2001
-From: cclauss <cclauss@me.com>
-Date: Tue, 6 Oct 2020 17:51:24 +0200
-Subject: [PATCH] build: gitHub actions: Python 3.9 and actions/setup-python@v2
-
-PR-URL: https://github.com/nodejs/node/pull/35521
-Reviewed-By: Richard Lau <rlau@redhat.com>
-Reviewed-By: Shelley Vohr <codebytere@gmail.com>
-Reviewed-By: Rich Trott <rtrott@gmail.com>
-Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
-Reviewed-By: Myles Borins <myles.borins@gmail.com>
-
-Modified by fosslinux to remove .github stuff.
-
-diff --git configure configure
-index 7e8c4cff832..07581d9c5a4 100755
---- configure
-+++ configure
-@@ -5,6 +5,7 @@
- # as is the fact that the ] goes on a new line.
- _=[ 'exec' '/bin/sh' '-c' '''
- test ${FORCE_PYTHON2} && exec python2 "$0" "$@"  # workaround for gclient
-+command -v python3.9 >/dev/null && exec python3.9 "$0" "$@"
- command -v python3.8 >/dev/null && exec python3.8 "$0" "$@"
- command -v python3.7 >/dev/null && exec python3.7 "$0" "$@"
- command -v python3.6 >/dev/null && exec python3.6 "$0" "$@"
-@@ -19,7 +20,7 @@ import sys
- from distutils.spawn import find_executable
- 
- print('Node.js configure: Found Python {0}.{1}.{2}...'.format(*sys.version_info))
--acceptable_pythons = ((3, 8), (3, 7), (3, 6), (3, 5), (2, 7))
-+acceptable_pythons = ((3, 9), (3, 8), (3, 7), (3, 6), (3, 5), (2, 7))
- if sys.version_info[:2] in acceptable_pythons:
-   import configure
- else:
diff --git a/srcpkgs/nodejs/template b/srcpkgs/nodejs/template
index 91f2889fd52..0ed9016aa73 100644
--- a/srcpkgs/nodejs/template
+++ b/srcpkgs/nodejs/template
@@ -1,7 +1,7 @@
 # Template file for 'nodejs'
 pkgname=nodejs
-version=14.13.1
-revision=1
+version=15.0.0
+revision=0
 wrksrc="node-v${version}"
 # Need these for host v8 for torque, see https://github.com/nodejs/node/pull/21079
 hostmakedepends="which pkg-config python3 zlib-devel $(vopt_if icu icu-devel)
@@ -17,7 +17,7 @@ maintainer="Enno Boland <gottox@voidlinux.org>"
 license="MIT"
 homepage="https://nodejs.org/"
 distfiles="${homepage}/dist/v${version}/node-v${version}.tar.gz"
-checksum=f0080d3284ea1585e255a3f459ce151e8106a33f4ce8bed0da15ff99c6a082a5
+checksum=72f6234594877ab212c43a76f2f5b05d409d7c025e0eb36d675d9acfd0d3f2d8
 python_version=3
 
 build_options="ssl libuv http_parser icu nghttp2 cares"

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

* Re: nodejs: update to 15.0.0
  2020-10-20 15:33 [PR PATCH] nodejs: update to 15.0.0 smorimoto
@ 2020-10-20 15:34 ` smorimoto
  2020-10-20 17:51 ` [PR PATCH] [Updated] " smorimoto
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: smorimoto @ 2020-10-20 15:34 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 255 bytes --]

New comment by smorimoto on void-packages repository

https://github.com/void-linux/void-packages/pull/25754#issuecomment-712940455

Comment:
`patches/python3.9.patch` should be unnecessary since v15.x: https://github.com/nodejs/node/blob/v15.x/configure

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

* Re: [PR PATCH] [Updated] nodejs: update to 15.0.0
  2020-10-20 15:33 [PR PATCH] nodejs: update to 15.0.0 smorimoto
  2020-10-20 15:34 ` smorimoto
@ 2020-10-20 17:51 ` smorimoto
  2020-10-23  9:42 ` smorimoto
  2020-12-06  8:27 ` [PR PATCH] [Closed]: " smorimoto
  3 siblings, 0 replies; 5+ messages in thread
From: smorimoto @ 2020-10-20 17:51 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 324 bytes --]

There is an updated pull request by smorimoto against master on the void-packages repository

https://github.com/smorimoto/void-packages nodejs-15.0.0
https://github.com/void-linux/void-packages/pull/25754

nodejs: update to 15.0.0


A patch file from https://github.com/void-linux/void-packages/pull/25754.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-nodejs-15.0.0-25754.patch --]
[-- Type: text/x-diff, Size: 2959 bytes --]

From 8e6db99b38acac2b3ec4ec047358275c34fa2b42 Mon Sep 17 00:00:00 2001
From: Sora Morimoto <sora@morimoto.io>
Date: Wed, 21 Oct 2020 02:50:49 +0900
Subject: [PATCH] nodejs: update to 15.0.0

Signed-off-by: Sora Morimoto <sora@morimoto.io>
---
 srcpkgs/nodejs/patches/python3.9.patch | 35 --------------------------
 srcpkgs/nodejs/template                |  4 +--
 2 files changed, 2 insertions(+), 37 deletions(-)
 delete mode 100644 srcpkgs/nodejs/patches/python3.9.patch

diff --git a/srcpkgs/nodejs/patches/python3.9.patch b/srcpkgs/nodejs/patches/python3.9.patch
deleted file mode 100644
index c69020832091..000000000000
--- a/srcpkgs/nodejs/patches/python3.9.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From c8b950a7afcc3e7c222bb94fabccc7e2fb447457 Mon Sep 17 00:00:00 2001
-From: cclauss <cclauss@me.com>
-Date: Tue, 6 Oct 2020 17:51:24 +0200
-Subject: [PATCH] build: gitHub actions: Python 3.9 and actions/setup-python@v2
-
-PR-URL: https://github.com/nodejs/node/pull/35521
-Reviewed-By: Richard Lau <rlau@redhat.com>
-Reviewed-By: Shelley Vohr <codebytere@gmail.com>
-Reviewed-By: Rich Trott <rtrott@gmail.com>
-Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
-Reviewed-By: Myles Borins <myles.borins@gmail.com>
-
-Modified by fosslinux to remove .github stuff.
-
-diff --git configure configure
-index 7e8c4cff832..07581d9c5a4 100755
---- configure
-+++ configure
-@@ -5,6 +5,7 @@
- # as is the fact that the ] goes on a new line.
- _=[ 'exec' '/bin/sh' '-c' '''
- test ${FORCE_PYTHON2} && exec python2 "$0" "$@"  # workaround for gclient
-+command -v python3.9 >/dev/null && exec python3.9 "$0" "$@"
- command -v python3.8 >/dev/null && exec python3.8 "$0" "$@"
- command -v python3.7 >/dev/null && exec python3.7 "$0" "$@"
- command -v python3.6 >/dev/null && exec python3.6 "$0" "$@"
-@@ -19,7 +20,7 @@ import sys
- from distutils.spawn import find_executable
- 
- print('Node.js configure: Found Python {0}.{1}.{2}...'.format(*sys.version_info))
--acceptable_pythons = ((3, 8), (3, 7), (3, 6), (3, 5), (2, 7))
-+acceptable_pythons = ((3, 9), (3, 8), (3, 7), (3, 6), (3, 5), (2, 7))
- if sys.version_info[:2] in acceptable_pythons:
-   import configure
- else:
diff --git a/srcpkgs/nodejs/template b/srcpkgs/nodejs/template
index 91f2889fd52c..74189e808e26 100644
--- a/srcpkgs/nodejs/template
+++ b/srcpkgs/nodejs/template
@@ -1,6 +1,6 @@
 # Template file for 'nodejs'
 pkgname=nodejs
-version=14.13.1
+version=15.0.0
 revision=1
 wrksrc="node-v${version}"
 # Need these for host v8 for torque, see https://github.com/nodejs/node/pull/21079
@@ -17,7 +17,7 @@ maintainer="Enno Boland <gottox@voidlinux.org>"
 license="MIT"
 homepage="https://nodejs.org/"
 distfiles="${homepage}/dist/v${version}/node-v${version}.tar.gz"
-checksum=f0080d3284ea1585e255a3f459ce151e8106a33f4ce8bed0da15ff99c6a082a5
+checksum=72f6234594877ab212c43a76f2f5b05d409d7c025e0eb36d675d9acfd0d3f2d8
 python_version=3
 
 build_options="ssl libuv http_parser icu nghttp2 cares"

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

* Re: [PR PATCH] [Updated] nodejs: update to 15.0.0
  2020-10-20 15:33 [PR PATCH] nodejs: update to 15.0.0 smorimoto
  2020-10-20 15:34 ` smorimoto
  2020-10-20 17:51 ` [PR PATCH] [Updated] " smorimoto
@ 2020-10-23  9:42 ` smorimoto
  2020-12-06  8:27 ` [PR PATCH] [Closed]: " smorimoto
  3 siblings, 0 replies; 5+ messages in thread
From: smorimoto @ 2020-10-23  9:42 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 324 bytes --]

There is an updated pull request by smorimoto against master on the void-packages repository

https://github.com/smorimoto/void-packages nodejs-15.0.0
https://github.com/void-linux/void-packages/pull/25754

nodejs: update to 15.0.0


A patch file from https://github.com/void-linux/void-packages/pull/25754.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-nodejs-15.0.0-25754.patch --]
[-- Type: text/x-diff, Size: 4054 bytes --]

From 8e6db99b38acac2b3ec4ec047358275c34fa2b42 Mon Sep 17 00:00:00 2001
From: Sora Morimoto <sora@morimoto.io>
Date: Wed, 21 Oct 2020 02:50:49 +0900
Subject: [PATCH 1/2] nodejs: update to 15.0.0

Signed-off-by: Sora Morimoto <sora@morimoto.io>
---
 srcpkgs/nodejs/patches/python3.9.patch | 35 --------------------------
 srcpkgs/nodejs/template                |  4 +--
 2 files changed, 2 insertions(+), 37 deletions(-)
 delete mode 100644 srcpkgs/nodejs/patches/python3.9.patch

diff --git a/srcpkgs/nodejs/patches/python3.9.patch b/srcpkgs/nodejs/patches/python3.9.patch
deleted file mode 100644
index c6902083209..00000000000
--- a/srcpkgs/nodejs/patches/python3.9.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From c8b950a7afcc3e7c222bb94fabccc7e2fb447457 Mon Sep 17 00:00:00 2001
-From: cclauss <cclauss@me.com>
-Date: Tue, 6 Oct 2020 17:51:24 +0200
-Subject: [PATCH] build: gitHub actions: Python 3.9 and actions/setup-python@v2
-
-PR-URL: https://github.com/nodejs/node/pull/35521
-Reviewed-By: Richard Lau <rlau@redhat.com>
-Reviewed-By: Shelley Vohr <codebytere@gmail.com>
-Reviewed-By: Rich Trott <rtrott@gmail.com>
-Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
-Reviewed-By: Myles Borins <myles.borins@gmail.com>
-
-Modified by fosslinux to remove .github stuff.
-
-diff --git configure configure
-index 7e8c4cff832..07581d9c5a4 100755
---- configure
-+++ configure
-@@ -5,6 +5,7 @@
- # as is the fact that the ] goes on a new line.
- _=[ 'exec' '/bin/sh' '-c' '''
- test ${FORCE_PYTHON2} && exec python2 "$0" "$@"  # workaround for gclient
-+command -v python3.9 >/dev/null && exec python3.9 "$0" "$@"
- command -v python3.8 >/dev/null && exec python3.8 "$0" "$@"
- command -v python3.7 >/dev/null && exec python3.7 "$0" "$@"
- command -v python3.6 >/dev/null && exec python3.6 "$0" "$@"
-@@ -19,7 +20,7 @@ import sys
- from distutils.spawn import find_executable
- 
- print('Node.js configure: Found Python {0}.{1}.{2}...'.format(*sys.version_info))
--acceptable_pythons = ((3, 8), (3, 7), (3, 6), (3, 5), (2, 7))
-+acceptable_pythons = ((3, 9), (3, 8), (3, 7), (3, 6), (3, 5), (2, 7))
- if sys.version_info[:2] in acceptable_pythons:
-   import configure
- else:
diff --git a/srcpkgs/nodejs/template b/srcpkgs/nodejs/template
index 91f2889fd52..74189e808e2 100644
--- a/srcpkgs/nodejs/template
+++ b/srcpkgs/nodejs/template
@@ -1,6 +1,6 @@
 # Template file for 'nodejs'
 pkgname=nodejs
-version=14.13.1
+version=15.0.0
 revision=1
 wrksrc="node-v${version}"
 # Need these for host v8 for torque, see https://github.com/nodejs/node/pull/21079
@@ -17,7 +17,7 @@ maintainer="Enno Boland <gottox@voidlinux.org>"
 license="MIT"
 homepage="https://nodejs.org/"
 distfiles="${homepage}/dist/v${version}/node-v${version}.tar.gz"
-checksum=f0080d3284ea1585e255a3f459ce151e8106a33f4ce8bed0da15ff99c6a082a5
+checksum=72f6234594877ab212c43a76f2f5b05d409d7c025e0eb36d675d9acfd0d3f2d8
 python_version=3
 
 build_options="ssl libuv http_parser icu nghttp2 cares"

From 734a50802fd15c32d12d771ee5ee4f5fcb269f7a Mon Sep 17 00:00:00 2001
From: Sora Morimoto <sora@morimoto.io>
Date: Fri, 23 Oct 2020 18:37:57 +0900
Subject: [PATCH 2/2] WIP

Signed-off-by: Sora Morimoto <sora@morimoto.io>
---
 srcpkgs/nodejs/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/nodejs/template b/srcpkgs/nodejs/template
index 74189e808e2..a422c142f14 100644
--- a/srcpkgs/nodejs/template
+++ b/srcpkgs/nodejs/template
@@ -1,6 +1,6 @@
 # Template file for 'nodejs'
 pkgname=nodejs
-version=15.0.0
+version=15.0.1
 revision=1
 wrksrc="node-v${version}"
 # Need these for host v8 for torque, see https://github.com/nodejs/node/pull/21079
@@ -17,7 +17,7 @@ maintainer="Enno Boland <gottox@voidlinux.org>"
 license="MIT"
 homepage="https://nodejs.org/"
 distfiles="${homepage}/dist/v${version}/node-v${version}.tar.gz"
-checksum=72f6234594877ab212c43a76f2f5b05d409d7c025e0eb36d675d9acfd0d3f2d8
+checksum=b9a00a4847863914ffe7751c2d81b67cb96a8f958cbc692f988c8c78db14ebec
 python_version=3
 
 build_options="ssl libuv http_parser icu nghttp2 cares"

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

* Re: [PR PATCH] [Closed]: nodejs: update to 15.0.0
  2020-10-20 15:33 [PR PATCH] nodejs: update to 15.0.0 smorimoto
                   ` (2 preceding siblings ...)
  2020-10-23  9:42 ` smorimoto
@ 2020-12-06  8:27 ` smorimoto
  3 siblings, 0 replies; 5+ messages in thread
From: smorimoto @ 2020-12-06  8:27 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 158 bytes --]

There's a closed pull request on the void-packages repository

nodejs: update to 15.0.0
https://github.com/void-linux/void-packages/pull/25754

Description:


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

end of thread, other threads:[~2020-12-06  8:27 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-20 15:33 [PR PATCH] nodejs: update to 15.0.0 smorimoto
2020-10-20 15:34 ` smorimoto
2020-10-20 17:51 ` [PR PATCH] [Updated] " smorimoto
2020-10-23  9:42 ` smorimoto
2020-12-06  8:27 ` [PR PATCH] [Closed]: " smorimoto

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 NNTP newsgroup(s).