all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Nicolas Graves via Guix-patches via <guix-patches@gnu.org>
To: 66180@debbugs.gnu.org
Cc: ngraves@ngraves.fr
Subject: [bug#66180] [PATCH 13/19] gnu: node-file-uri-to-path: Move package in alphabetical order.
Date: Sun, 24 Sep 2023 14:50:39 +0200	[thread overview]
Message-ID: <a00f194f5e5d72d07538262c77995eee962b42e7.1695559845.git.ngraves@ngraves.fr> (raw)
In-Reply-To: <28369246c2163cab7579f033071c85fbc6d0768b.1695559845.git.ngraves@ngraves.fr>

* gnu/packages/node-xyz.scm (node-file-uri-to-path): Move package in alphabetical order.
---
 gnu/packages/node-xyz.scm | 108 +++++++++++++++++++-------------------
 1 file changed, 54 insertions(+), 54 deletions(-)

diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm
index cefc826c8d..0924788bee 100644
--- a/gnu/packages/node-xyz.scm
+++ b/gnu/packages/node-xyz.scm
@@ -359,6 +359,60 @@ (define-public node-far
 codes.")
     (license license:expat)))
 
+(define-public node-file-uri-to-path
+  (package
+    (name "node-file-uri-to-path")
+    (version "2.0.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/TooTallNate/file-uri-to-path")
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "08l779az44czm12xdhgcrnzpqw34s59hbrlfphs7g9y2k26drqav"))))
+    (native-inputs
+     (list esbuild))
+    (build-system node-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (add-after 'patch-dependencies 'delete-dependencies
+           (lambda args
+             (delete-dependencies `("@types/mocha"
+                                    "@types/node"
+                                    "@typescript-eslint/eslint-plugin"
+                                    "@typescript-eslint/parser"
+                                    "cpy-cli"
+                                    "eslint"
+                                    "eslint-config-airbnb"
+                                    "eslint-config-prettier"
+                                    "eslint-import-resolver-typescript"
+                                    "eslint-plugin-import"
+                                    "eslint-plugin-jsx-a11y"
+                                    "eslint-plugin-react"
+                                    "mocha"
+                                    "rimraf"
+                                    "typescript"))))
+         (replace 'build
+           (lambda* (#:key inputs native-inputs #:allow-other-keys)
+             (copy-recursively "src" "dist")
+             (invoke (search-input-file (or native-inputs inputs)
+                                        "/bin/esbuild")
+                     "dist/index.ts"
+                     "--outfile=dist/src/index.js"
+                     "--format=cjs"
+                     "--sourcemap"
+                     "--platform=node"))))
+       #:tests? #f))
+    (home-page "https://github.com/TooTallNate/file-uri-to-path")
+    (synopsis "Convert a @code{file:} URI to a file path")
+    (description "This package provides a function to convert a @code{file:}
+URI to a file path.  It accepts a @code{file:} URI and returns a file path
+suitable for use with the @code{fs} module functions.")
+    (license license:expat)))
+
 (define-public node-global-gradle-clean
   (package
     (name "node-global-gradle-clean")
@@ -1132,60 +1186,6 @@ (define-public node-wrappy
     (description "@code{wrappy} is a utility for Node.js to wrap callbacks.")
     (license license:isc)))
 
-(define-public node-file-uri-to-path
-  (package
-    (name "node-file-uri-to-path")
-    (version "2.0.0")
-    (source
-     (origin
-       (method git-fetch)
-       (uri (git-reference
-             (url "https://github.com/TooTallNate/file-uri-to-path")
-             (commit version)))
-       (file-name (git-file-name name version))
-       (sha256
-        (base32 "08l779az44czm12xdhgcrnzpqw34s59hbrlfphs7g9y2k26drqav"))))
-    (native-inputs
-     (list esbuild))
-    (build-system node-build-system)
-    (arguments
-     `(#:phases
-       (modify-phases %standard-phases
-         (add-after 'patch-dependencies 'delete-dependencies
-           (lambda args
-             (delete-dependencies `("@types/mocha"
-                                    "@types/node"
-                                    "@typescript-eslint/eslint-plugin"
-                                    "@typescript-eslint/parser"
-                                    "cpy-cli"
-                                    "eslint"
-                                    "eslint-config-airbnb"
-                                    "eslint-config-prettier"
-                                    "eslint-import-resolver-typescript"
-                                    "eslint-plugin-import"
-                                    "eslint-plugin-jsx-a11y"
-                                    "eslint-plugin-react"
-                                    "mocha"
-                                    "rimraf"
-                                    "typescript"))))
-         (replace 'build
-           (lambda* (#:key inputs native-inputs #:allow-other-keys)
-             (copy-recursively "src" "dist")
-             (invoke (search-input-file (or native-inputs inputs)
-                                        "/bin/esbuild")
-                     "dist/index.ts"
-                     "--outfile=dist/src/index.js"
-                     "--format=cjs"
-                     "--sourcemap"
-                     "--platform=node"))))
-       #:tests? #f))
-    (home-page "https://github.com/TooTallNate/file-uri-to-path")
-    (synopsis "Convert a @code{file:} URI to a file path")
-    (description "This package provides a function to convert a @code{file:}
-URI to a file path.  It accepts a @code{file:} URI and returns a file path
-suitable for use with the @code{fs} module functions.")
-    (license license:expat)))
-
 (define-public node-segfault-handler
   (package
     (name "node-segfault-handler")
-- 
2.41.0





  parent reply	other threads:[~2023-09-24 12:52 UTC|newest]

Thread overview: 47+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-09-24 12:47 [bug#66180] [PATCH 00/19] Sort packages in node-xyz.scm Nicolas Graves via Guix-patches via
2023-09-24 12:50 ` [bug#66180] [PATCH 01/19] gnu: node-bindings: Move package in alphabetical order Nicolas Graves via Guix-patches via
2023-09-24 12:50   ` [bug#66180] [PATCH 02/19] gnu: node-util-deprecate: " Nicolas Graves via Guix-patches via
2023-09-24 12:50   ` [bug#66180] [PATCH 03/19] gnu: node-once: " Nicolas Graves via Guix-patches via
2023-09-24 12:50   ` [bug#66180] [PATCH 04/19] gnu: node-ieee754: " Nicolas Graves via Guix-patches via
2023-09-24 12:50   ` [bug#66180] [PATCH 05/19] gnu: node-inherits: " Nicolas Graves via Guix-patches via
2023-09-24 12:50   ` [bug#66180] [PATCH 06/19] gnu: node-safe-buffer: " Nicolas Graves via Guix-patches via
2023-09-24 12:50   ` [bug#66180] [PATCH 07/19] gnu: node-string-decoder: " Nicolas Graves via Guix-patches via
2023-09-24 12:50   ` [bug#66180] [PATCH 08/19] gnu: node-readable-stream: " Nicolas Graves via Guix-patches via
2023-09-24 12:50   ` [bug#66180] [PATCH 09/19] gnu: node-irc and node-irc-colors: Move " Nicolas Graves via Guix-patches via
2023-09-24 12:50   ` [bug#66180] [PATCH 10/19] gnu: node-nan: Move package " Nicolas Graves via Guix-patches via
2023-09-24 12:50   ` [bug#66180] [PATCH 11/19] gnu: node-addon-api: " Nicolas Graves via Guix-patches via
2023-09-24 12:50   ` [bug#66180] [PATCH 12/19] gnu: node-sqlite3: " Nicolas Graves via Guix-patches via
2023-09-24 12:50   ` Nicolas Graves via Guix-patches via [this message]
2023-09-24 12:50   ` [bug#66180] [PATCH 14/19] gnu: node-segfault-handler: " Nicolas Graves via Guix-patches via
2023-09-24 12:50   ` [bug#66180] [PATCH 15/19] gnu: node-ms: " Nicolas Graves via Guix-patches via
2023-09-24 12:50   ` [bug#66180] [PATCH 16/19] gnu: node-debug: " Nicolas Graves via Guix-patches via
2023-09-24 12:50   ` [bug#66180] [PATCH 17/19] gnu: node-serialport packages: Move packages " Nicolas Graves via Guix-patches via
2023-09-24 12:50   ` [bug#66180] [PATCH 18/19] gnu: node-semver: Move package " Nicolas Graves via Guix-patches via
2023-09-24 12:50   ` [bug#66180] [PATCH 19/19] gnu: packages: node-xyz: Add alphatical order header Nicolas Graves via Guix-patches via
2024-02-04 12:40 ` [bug#66180] [PATCH v2 01/20] gnu: node-bindings: Move package in alphabetical order Nicolas Graves via Guix-patches via
2024-02-04 12:40   ` [bug#66180] [PATCH v2 02/20] gnu: node-util-deprecate: " Nicolas Graves via Guix-patches via
2024-02-04 12:40   ` [bug#66180] [PATCH v2 03/20] gnu: node-once: " Nicolas Graves via Guix-patches via
2024-02-04 12:40   ` [bug#66180] [PATCH v2 04/20] gnu: node-ieee754: " Nicolas Graves via Guix-patches via
2024-02-04 12:40   ` [bug#66180] [PATCH v2 05/20] gnu: node-inherits: " Nicolas Graves via Guix-patches via
2024-02-04 12:40   ` [bug#66180] [PATCH v2 06/20] gnu: node-safe-buffer: " Nicolas Graves via Guix-patches via
2024-02-04 12:40   ` [bug#66180] [PATCH v2 07/20] gnu: node-string-decoder: " Nicolas Graves via Guix-patches via
2024-02-04 12:40   ` [bug#66180] [PATCH v2 08/20] gnu: node-readable-stream: " Nicolas Graves via Guix-patches via
2024-02-04 12:40   ` [bug#66180] [PATCH v2 09/20] gnu: node-irc and node-irc-colors: Move " Nicolas Graves via Guix-patches via
2024-02-04 12:40   ` [bug#66180] [PATCH v2 10/20] gnu: node-nan: Move package " Nicolas Graves via Guix-patches via
2024-02-04 12:40   ` [bug#66180] [PATCH v2 11/20] gnu: node-addon-api: " Nicolas Graves via Guix-patches via
2024-02-04 12:40   ` [bug#66180] [PATCH v2 12/20] gnu: node-sqlite3: " Nicolas Graves via Guix-patches via
2024-02-04 12:40   ` [bug#66180] [PATCH v2 13/20] gnu: node-file-uri-to-path: " Nicolas Graves via Guix-patches via
2024-02-04 12:40   ` [bug#66180] [PATCH v2 14/20] gnu: node-segfault-handler: " Nicolas Graves via Guix-patches via
2024-02-04 12:40   ` [bug#66180] [PATCH v2 15/20] gnu: node-ms: " Nicolas Graves via Guix-patches via
2024-02-04 12:40   ` [bug#66180] [PATCH v2 16/20] gnu: node-debug: " Nicolas Graves via Guix-patches via
2024-02-04 12:40   ` [bug#66180] [PATCH v2 17/20] gnu: packages: node-xyz: Add alphatical order header Nicolas Graves via Guix-patches via
2024-02-04 12:40   ` [bug#66180] [PATCH v2 18/20] gnu: node-semver: Move package in alphabetical order Nicolas Graves via Guix-patches via
2024-02-04 12:40   ` [bug#66180] [PATCH v2 19/20] gnu: node-path-key: " Nicolas Graves via Guix-patches via
2024-02-04 12:40   ` [bug#66180] [PATCH v2 20/20] gnu: node-serialport-*: Move packages " Nicolas Graves via Guix-patches via
2024-02-10 16:16 ` [bug#66180] [PATCH 00/19] Sort packages in node-xyz.scm Sharlatan Hellseher
2024-02-18 12:02   ` ngraves--- via Guix-patches via
2024-02-18 12:02   ` ngraves--- via Guix-patches via
2024-02-18 13:06 ` bug#66180: " Sharlatan Hellseher
2024-02-18 14:23   ` [bug#66180] " Nicolas Graves via Guix-patches via
2024-02-18 14:29     ` Nicolas Graves via Guix-patches via
2024-02-18 14:48       ` Sharlatan Hellseher

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=a00f194f5e5d72d07538262c77995eee962b42e7.1695559845.git.ngraves@ngraves.fr \
    --to=guix-patches@gnu.org \
    --cc=66180@debbugs.gnu.org \
    --cc=ngraves@ngraves.fr \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.