[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#51838] [PATCH v2 12/26] gnu: node-llparse-bootstrap: Use #:absent-d
From: |
Philip McGrath |
Subject: |
[bug#51838] [PATCH v2 12/26] gnu: node-llparse-bootstrap: Use #:absent-dependencies. |
Date: |
Fri, 19 Nov 2021 23:33:52 -0500 |
gnu/packages/node.scm (node-llparse-bootstrap)[arguments]: Add
`#:absent-dependencies`. Stop deleting the `'configure` phase.
Add a new phase `#:delete-package-lock` to remove the
problematic "package-lock.json".
---
gnu/packages/node.scm | 17 ++++++++++++++++-
1 file changed, 16 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/node.scm b/gnu/packages/node.scm
index 298b9376a8..6d48816c77 100644
--- a/gnu/packages/node.scm
+++ b/gnu/packages/node.scm
@@ -609,9 +609,24 @@ (define-public node-llparse-bootstrap
(arguments
`(#:node ,node-bootstrap
#:tests? #f
+ #:absent-dependencies
+ `("@types/debug"
+ "@types/mocha"
+ "@types/node"
+ "esm"
+ "llparse-test-fixture"
+ "mocha"
+ "ts-node"
+ "tslint"
+ "typescript")
#:phases
(modify-phases %standard-phases
- (delete 'configure)
+ (add-before 'configure 'remove-package-lock
+ ;; Having package-lock.json seems to cause npm
+ ;; to look for things on the internet in the configure phase,
+ ;; even if we have them properly installed.
+ (lambda args
+ (delete-file-recursively "package-lock.json")))
(replace 'build
(lambda* (#:key inputs #:allow-other-keys)
(let ((esbuild (string-append (assoc-ref inputs "esbuild")
--
2.32.0
- [bug#51838] [PATCH v2 02/26] gnu: node: Update to 10.24.1 for bootstrapping., (continued)
- [bug#51838] [PATCH v2 02/26] gnu: node: Update to 10.24.1 for bootstrapping., Philip McGrath, 2021/11/19
- [bug#51838] [PATCH v2 09/26] gnu: node-debug-bootstrap: Use #:absent-dependencies., Philip McGrath, 2021/11/19
- [bug#51838] [PATCH v2 19/26] gnu: Add node-inherits., Philip McGrath, 2021/11/19
- [bug#51838] [PATCH v2 15/26] gnu: node-once: Use #:absent-dependencies., Philip McGrath, 2021/11/19
- [bug#51838] [PATCH v2 13/26] gnu: node-semver: Use #:absent-dependencies., Philip McGrath, 2021/11/19
- [bug#51838] [PATCH v2 10/26] gnu: node-llparse-builder-bootstrap: Use #:absent-dependencies., Philip McGrath, 2021/11/19
- [bug#51838] [PATCH v2 10/26] gnu: node-llparse-builder-bootstrap: Use #:absent-dependencies., Liliana Marie Prikler, 2021/11/20
- [bug#51838] [PATCH v2 10/26] gnu: node-llparse-builder-bootstrap: Use #:absent-dependencies., Philip McGrath, 2021/11/20
- [bug#51838] [PATCH v2 10/26] gnu: node-llparse-builder-bootstrap: Use #:absent-dependencies., Jelle Licht, 2021/11/23
- [bug#51838] [PATCH v2 20/26] gnu: Add node-safe-buffer., Philip McGrath, 2021/11/19
- [bug#51838] [PATCH v2 12/26] gnu: node-llparse-bootstrap: Use #:absent-dependencies.,
Philip McGrath <=
- [bug#51838] [PATCH v2 18/26] guix: node-build-system: Add optional #:libuv? argument., Philip McGrath, 2021/11/19
- [bug#51838] [PATCH v2 18/26] guix: node-build-system: Add optional #:libuv? argument., Liliana Marie Prikler, 2021/11/20
- [bug#51838] [PATCH v2 18/26] guix: node-build-system: Add optional #:libuv? argument., Philip McGrath, 2021/11/20
- [bug#51838] [PATCH v2 14/26] gnu: node-wrappy: Use #:absent-dependencies., Philip McGrath, 2021/11/19
- [bug#51838] [PATCH v2 21/26] gnu: Add node-string-decoder., Philip McGrath, 2021/11/19
- [bug#51838] [PATCH v2 22/26] gnu: Add node-readable-stream., Philip McGrath, 2021/11/19
- [bug#51838] [PATCH v2 24/26] gnu: Add node-openzwave-shared., Philip McGrath, 2021/11/19
- [bug#51838] [PATCH v2 25/26] gnu: Add node-addon-api., Philip McGrath, 2021/11/19
- [bug#51838] [PATCH v2 17/26] gnu: node-irc: Use #:absent-dependencies., Philip McGrath, 2021/11/19
- [bug#51838] [PATCH v2 26/26] gnu: Add node-sqlite3., Philip McGrath, 2021/11/19