Package: guix-patches;
Reported by: Nicolas Graves <ngraves <at> ngraves.fr>
Date: Sun, 24 Sep 2023 12:49:01 UTC
Severity: normal
Tags: patch
Done: Sharlatan Hellseher <sharlatanus <at> gmail.com>
Bug is archived. No further changes may be made.
Message #47 received at 66180 <at> debbugs.gnu.org (full text, mbox):
From: Nicolas Graves <ngraves <at> ngraves.fr> To: 66180 <at> debbugs.gnu.org Cc: ngraves <at> ngraves.fr Subject: [PATCH 09/19] gnu: node-irc and node-irc-colors: Move in alphabetical order. Date: Sun, 24 Sep 2023 14:50:35 +0200
* gnu/packages/node-xyz.scm (node-irc and node-irc-colors): Move packages in alphabetical order. --- gnu/packages/node-xyz.scm | 118 +++++++++++++++++++------------------- 1 file changed, 59 insertions(+), 59 deletions(-) diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm index 28f9f1f6a7..d9cfd110a4 100644 --- a/gnu/packages/node-xyz.scm +++ b/gnu/packages/node-xyz.scm @@ -357,6 +357,65 @@ (define-public node-inherits defaulting to Node's implementation otherwise.") (license license:isc))) +(define-public node-irc-colors + (package + (name "node-irc-colors") + (version "1.5.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fent/irc-colors.js") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0q3y34rbnlc55jcakmdxkicwazyvyph9r6gaf6hi8k7wj2nfwfli")))) + (build-system node-build-system) + (arguments + '(#:phases + (modify-phases %standard-phases + (add-after 'patch-dependencies 'delete-dependencies + (lambda args + (delete-dependencies `("istanbul" "vows"))))) + #:tests? #f)) + (home-page "https://github.com/fent/irc-colors.js") + (synopsis "Node.js module providing color and formatting for IRC") + (description "@code{node-irc-colors} is a Node.js module that +allows you to easily use colored output and formatting in IRC bots. +It contains functions for colours as well as more complex formatting +such as rainbows.") + (license license:expat))) + +(define-public node-irc + (package + (name "node-irc") + (version "0.5.2") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/martynsmith/node-irc") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1ln4qfx20jbwg4cp8lp0vf27m5281z2sz16d15xd6150n26cbi4x")))) + (build-system node-build-system) + (arguments + '(#:phases + (modify-phases %standard-phases + (add-after 'patch-dependencies 'delete-dependencies + (lambda args + (delete-dependencies + `("ansi-color" "faucet" "jscs" "tape"))))) + #:tests? #f)) + (inputs + (list node-irc-colors)) + (home-page "https://github.com/martynsmith/node-irc") + (synopsis "IRC client library for Node.js") + (description "@code{node-irc} is an IRC client library for Node.js. +It has functions for joining, parting, talking, and many other IRC commands.") + (license license:gpl3+))) + (define-public node-long-stack-traces (package (name "node-long-stack-traces") @@ -823,65 +882,6 @@ (define-public node-wrappy (description "@code{wrappy} is a utility for Node.js to wrap callbacks.") (license license:isc))) -(define-public node-irc-colors - (package - (name "node-irc-colors") - (version "1.5.0") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fent/irc-colors.js") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "0q3y34rbnlc55jcakmdxkicwazyvyph9r6gaf6hi8k7wj2nfwfli")))) - (build-system node-build-system) - (arguments - '(#:phases - (modify-phases %standard-phases - (add-after 'patch-dependencies 'delete-dependencies - (lambda args - (delete-dependencies `("istanbul" "vows"))))) - #:tests? #f)) - (home-page "https://github.com/fent/irc-colors.js") - (synopsis "Node.js module providing color and formatting for IRC") - (description "@code{node-irc-colors} is a Node.js module that -allows you to easily use colored output and formatting in IRC bots. -It contains functions for colours as well as more complex formatting -such as rainbows.") - (license license:expat))) - -(define-public node-irc - (package - (name "node-irc") - (version "0.5.2") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/martynsmith/node-irc") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "1ln4qfx20jbwg4cp8lp0vf27m5281z2sz16d15xd6150n26cbi4x")))) - (build-system node-build-system) - (arguments - '(#:phases - (modify-phases %standard-phases - (add-after 'patch-dependencies 'delete-dependencies - (lambda args - (delete-dependencies - `("ansi-color" "faucet" "jscs" "tape"))))) - #:tests? #f)) - (inputs - (list node-irc-colors)) - (home-page "https://github.com/martynsmith/node-irc") - (synopsis "IRC client library for Node.js") - (description "@code{node-irc} is an IRC client library for Node.js. -It has functions for joining, parting, talking, and many other IRC commands.") - (license license:gpl3+))) - (define-public node-nan (package (name "node-nan") -- 2.41.0
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.