unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Jelle Licht <jlicht@fsfe.org>
To: Leo Famulari <leo@famulari.name>
Cc: guix-devel@gnu.org
Subject: Re: [PATCH v2] gnu: node: Update to 6.3.1.
Date: Tue, 09 Aug 2016 15:13:31 +0200	[thread overview]
Message-ID: <87bn12nkzo.fsf@fsfe.org> (raw)
In-Reply-To: <20160808211834.GD22268@jasmine>

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


Leo Famulari <leo@famulari.name> writes:

> On Sun, Aug 07, 2016 at 02:45:20PM +0200, Jelle Licht wrote:
>> Leo Famulari <leo@famulari.name> writes:
>> >> -         (replace 'patch-shebangs
>> >> -           (lambda* (#:key outputs #:allow-other-keys #:rest all)
>> >> -             ;; Work around <http://bugs.gnu.org/23723>.
>> >> -             (let* ((patch  (assoc-ref %standard-phases 'patch-shebangs))
>> >> -                    (npm    (string-append (assoc-ref outputs "out")
>> >> -                                           "/bin/npm"))
>> >> +         (add-after 'patch-shebangs 'patch-npm-shebang
>> >> +           (lambda* (#:key outputs #:allow-other-keys)
>> >> +             (let* ((bindir (string-append (assoc-ref outputs "out")
>> >> +                                           "/bin"))
>> >> +                    (npm    (string-append bindir "/npm"))
>> >>                      (target (readlink npm)))
>> >> -               (and (apply patch all)
>> >> -                    (with-directory-excursion (dirname npm)
>> >> -                      ;; Turn NPM into a symlink to TARGET again, which 'npm'
>> >> -                      ;; relies on for the resolution of relative file names
>> >> -                      ;; in JS files.
>> >> -                      (delete-file target)
>> >> -                      (rename-file npm target)
>> >> -                      (symlink target npm)
>> >> -                      #t))))))))
>> >> +               (with-directory-excursion bindir
>> >> +                 (patch-shebang target (list bindir))
>> >> +                 #t)))))))
>> >
>> > Will you mention these changes in the commit message?
>> What do you mean by this exactly? The short of it is that a change to
>> the patch-shebangs phase was merged by way of the core-updates merge,
>> which no longer necessitated this workaround.
>
> The commit log should mention all changes made in the commit. So, I
> think the commit message should have a line like this:
>
> [arguments]: Disable more tests. Update code that does foo.
>
> ... where foo is the diff quoted above.

Attached you will find the updated version of this patch. Please let me
know what you think.

- Jelle

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: gnu: node: Update to 6.3.1. --]
[-- Type: text/x-diff, Size: 3751 bytes --]

From 798d0888cc57a18ab31fa546a94932476e39088e Mon Sep 17 00:00:00 2001
From: Jelle Licht <jlicht@fsfe.org>
Date: Fri, 5 Aug 2016 12:51:15 +0200
Subject: [PATCH] gnu: node: Update to 6.3.1.
To: guix-devel@gnu.org

Remove <https://debbugs.gnu.org/23744> and
<https://debbugs.gnu.org/23723> workaround.

* gnu/packages/node.scm (node): Update to 6.3.1.
  (node)[arguments]: Disabled more tests. Remove custom 'patch-shebangs'
  phase. Manually patch npm script shebang in new 'patch-npm-shebang'
  phase.
---
 gnu/packages/node.scm | 32 ++++++++++++++------------------
 1 file changed, 14 insertions(+), 18 deletions(-)

diff --git a/gnu/packages/node.scm b/gnu/packages/node.scm
index 887ef93..4c98799 100644
--- a/gnu/packages/node.scm
+++ b/gnu/packages/node.scm
@@ -37,14 +37,14 @@
 (define-public node
   (package
     (name "node")
-    (version "6.0.0")
+    (version "6.3.1")
     (source (origin
               (method url-fetch)
               (uri (string-append "http://nodejs.org/dist/v" version
                                   "/node-v" version ".tar.gz"))
               (sha256
                (base32
-                "0cpw7ng193jgfbw2g1fd0kcglmjjkbj4xb89g00z8zz0lj0nvdbd"))))
+                "1xh883fbhyhgna1vi8xmd6klg4r186lb1h1xr08hn89wy7f48q9z"))))
     (build-system gnu-build-system)
     (arguments
      ;; TODO: Package http_parser and add --shared-http-parser.
@@ -78,7 +78,10 @@
              ;; FIXME: These tests fail in the build container, but they don't
              ;; seem to be indicative of real problems in practice.
              (for-each delete-file
-                       '("test/parallel/test-cluster-master-error.js"
+                       '("test/parallel/test-https-connect-address-family.js"
+                         "test/parallel/test-tls-connect-address-family.js"
+                         "test/parallel/test-dgram-membership.js"
+                         "test/parallel/test-cluster-master-error.js"
                          "test/parallel/test-cluster-master-kill.js"
                          "test/parallel/test-npm-install.js"
                          "test/parallel/test-stdout-close-unref.js"
@@ -101,22 +104,15 @@
                              (string-append (assoc-ref inputs "python")
                                             "/bin/python")
                              "configure" flags)))))
-         (replace 'patch-shebangs
-           (lambda* (#:key outputs #:allow-other-keys #:rest all)
-             ;; Work around <http://bugs.gnu.org/23723>.
-             (let* ((patch  (assoc-ref %standard-phases 'patch-shebangs))
-                    (npm    (string-append (assoc-ref outputs "out")
-                                           "/bin/npm"))
+         (add-after 'patch-shebangs 'patch-npm-shebang
+           (lambda* (#:key outputs #:allow-other-keys)
+             (let* ((bindir (string-append (assoc-ref outputs "out")
+                                           "/bin"))
+                    (npm    (string-append bindir "/npm"))
                     (target (readlink npm)))
-               (and (apply patch all)
-                    (with-directory-excursion (dirname npm)
-                      ;; Turn NPM into a symlink to TARGET again, which 'npm'
-                      ;; relies on for the resolution of relative file names
-                      ;; in JS files.
-                      (delete-file target)
-                      (rename-file npm target)
-                      (symlink target npm)
-                      #t))))))))
+               (with-directory-excursion bindir
+                 (patch-shebang target (list bindir))
+                 #t)))))))
     (native-inputs
      `(("python" ,python-2)
        ("perl" ,perl)
-- 
2.9.2


  reply	other threads:[~2016-08-09 13:13 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-08-05 11:02 [PATCH v2] gnu: node: Update to 6.3.1 Jelle Licht
2016-08-07  3:00 ` Leo Famulari
2016-08-07 12:45   ` Jelle Licht
2016-08-08 21:18     ` Leo Famulari
2016-08-09 13:13       ` Jelle Licht [this message]
2016-08-09 13:18         ` Thompson, David
2016-08-12 17:25         ` Leo Famulari
2016-08-19 10:40           ` Pjotr Prins
2016-08-19 11:04             ` No package from hydra Pjotr Prins
2016-08-19 12:13               ` Pjotr Prins
2016-08-19 12:15                 ` Pjotr Prins
2016-08-19 12:19                   ` Pjotr Prins
2016-08-19 15:23                     ` Pjotr Prins
2016-08-19 16:03                       ` David Craven
2016-08-30  6:18                     ` Danny Milosavljevic
2016-08-30  8:29                       ` No package from hydra - a proposal for software discovery Pjotr Prins
     [not found]             ` <CAPsKtfLKa9489C6=F1=328y-iZF+wAXJvkdg_HXkA8wSjteu_Q@mail.gmail.com>
2016-08-19 12:16               ` [PATCH v2] gnu: node: Update to 6.3.1 Jelle Licht
2016-08-19 13:39                 ` Jelle Licht
2016-08-19 19:16                   ` Christopher Allan Webber

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

  List information: https://guix.gnu.org/

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

  git send-email \
    --in-reply-to=87bn12nkzo.fsf@fsfe.org \
    --to=jlicht@fsfe.org \
    --cc=guix-devel@gnu.org \
    --cc=leo@famulari.name \
    /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 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).