unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Alex Kost <alezost@gmail.com>
To: Federico Beffa <beffa@ieee.org>
Cc: Guix-devel <guix-devel@gnu.org>
Subject: Re: [PATCH 2/2] gnu: netpbm: Fix location of X color name database.
Date: Sat, 14 May 2016 19:25:12 +0300	[thread overview]
Message-ID: <87lh3c38uv.fsf@gmail.com> (raw)
In-Reply-To: <CAKrPhPOmogM_TrirW36qRJg+nOo2avp1SY+0gTMPf3+PSX03fQ@mail.gmail.com> (Federico Beffa's message of "Fri, 13 May 2016 20:44:07 +0200")

Federico Beffa (2016-05-13 21:44 +0300) wrote:

> On Fri, May 13, 2016 at 7:10 PM, Andreas Enge <andreas@enge.fr> wrote:
>> Hello,
>>
>> On Fri, May 13, 2016 at 06:51:27PM +0200, Federico Beffa wrote:
>>> This fixes some of the provided programs like, e.g. 'pamtogif'.
>>
>> I think the common practice is to separate the switch to the %modify-phases
>> syntax and the real change into two commits; right now, the diff looks big,
>> but I imagine it must be rather trivial.
>
> Indeed the change is trivial.
>
> Regards,
> Fede
>
> From be37669b50c000ad45eb85075f32d4f23c26489d Mon Sep 17 00:00:00 2001
> From: Federico Beffa <beffa@fbengineering.ch>
> Date: Fri, 13 May 2016 15:32:49 +0200
> Subject: [PATCH 2/3] gnu: netpbm: Use 'modify-phases' syntax.
>
> * gnu/packages/netpbm.scm (netpbm)[arguments]: Do it.
> ---
>  gnu/packages/netpbm.scm | 86 ++++++++++++++++++++++++-------------------------
>  1 file changed, 42 insertions(+), 44 deletions(-)
>
> diff --git a/gnu/packages/netpbm.scm b/gnu/packages/netpbm.scm
> index 475635e..d7d8576 100644
> --- a/gnu/packages/netpbm.scm
> +++ b/gnu/packages/netpbm.scm
> @@ -99,50 +99,48 @@
>         ("python" ,python-wrapper)))
>     (arguments
>      `(#:phases
> -      (alist-replace
> -       'configure
> -       (lambda _
> -        (copy-file "config.mk.in" "config.mk")
> -        (chmod "config.mk" #o664)
> -        (let ((f (open-file "config.mk" "a")))
> -         (display "CC=gcc\n" f)
> -         (display "CFLAGS_SHLIB += -fPIC\n" f)
> -         (display "TIFFLIB = libtiff.so\n" f)
> -         (display "JPEGLIB = libjpeg.so\n" f)
> -         (display "ZLIB = libz.so\n" f)
> -         (display (string-append "LDFLAGS += -Wl,-rpath=" %output "/lib") f)
> -         (close-port f)))
> -      (alist-cons-before
> -       'check 'setup-check
> -       (lambda _
> -         ;; install temporarily into /tmp/netpbm
> -         (system* "make" "package")
> -         ;; remove test requiring X
> -         (substitute* "test/all-in-place.test" (("pamx") ""))
> -         ;; do not worry about non-existing file
> -         (substitute* "test/all-in-place.test" (("^rm ") "rm -f "))
> -         ;; remove four tests that fail for unknown reasons
> -         (substitute* "test/Test-Order"
> -           (("all-in-place.test") "")
> -           (("pnmpsnr.test") "")
> -           (("pnmremap1.test") "")
> -           (("gif-roundtrip.test") "")))
> -      (alist-replace
> -       'install
> -       (lambda* (#:key outputs make-flags #:allow-other-keys)
> -        (let ((out (assoc-ref outputs "out")))
> -         (apply system* "make" "package"
> -                        (string-append "pkgdir=" out) make-flags)
> -         ;; copy static library
> -         (copy-file (string-append out "/link/libnetpbm.a")
> -                    (string-append out "/lib/libnetpbm.a"))
> -         ;; remove superfluous folders and files
> -         (system* "rm" "-r" (string-append out "/link"))
> -         (system* "rm" "-r" (string-append out "/misc"))
> -         (with-directory-excursion out
> -           (for-each delete-file
> -                     '("config_template" "pkginfo" "README" "VERSION")))))
> -      %standard-phases)))))
> +      (modify-phases %standard-phases
> +       (replace 'configure
> +         (lambda* (#:key inputs outputs #:allow-other-keys)
> +           (copy-file "config.mk.in" "config.mk")
> +           (chmod "config.mk" #o664)
> +           (let ((f (open-file "config.mk" "a")))
> +             (display "CC=gcc\n" f)
> +             (display "CFLAGS_SHLIB += -fPIC\n" f)
> +             (display "TIFFLIB = libtiff.so\n" f)
> +             (display "JPEGLIB = libjpeg.so\n" f)
> +             (display "ZLIB = libz.so\n" f)
> +             (display (string-append "LDFLAGS += -Wl,-rpath=" %output "/lib") f)
> +             (close-port f))))
> +       (add-before 'check 'setup-check
> +         (lambda _
> +           ;; install temporarily into /tmp/netpbm
> +           (system* "make" "package")
> +           ;; remove test requiring X
> +           (substitute* "test/all-in-place.test" (("pamx") ""))
> +           ;; do not worry about non-existing file
> +           (substitute* "test/all-in-place.test" (("^rm ") "rm -f "))
> +           ;; remove four tests that fail for unknown reasons
> +           (substitute* "test/Test-Order"
> +             (("all-in-place.test") "")
> +             (("pnmpsnr.test") "")
> +             (("pnmremap1.test") "")
> +             (("gif-roundtrip.test") ""))))
> +       (replace 'install
> +         (lambda* (#:key outputs make-flags #:allow-other-keys)
> +           (let ((out (assoc-ref outputs "out")))
> +             (apply system* "make" "package"
> +                    (string-append "pkgdir=" out) make-flags)
> +             ;; copy static library
> +             (copy-file (string-append out "/link/libnetpbm.a")
> +                        (string-append out "/lib/libnetpbm.a"))
> +             ;; remove superfluous folders and files
> +             (system* "rm" "-r" (string-append out "/link"))
> +             (system* "rm" "-r" (string-append out "/misc"))
> +             (with-directory-excursion out
> +               (for-each delete-file
> +                         '("config_template" "pkginfo" "README"
> +                           "VERSION")))))))))

I think it would also be good to add #t to the end of all these phases
to make sure that when the phases succeed, they return non-false value.

-- 
Alex

  reply	other threads:[~2016-05-14 16:25 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-05-13 16:51 [PATCH 2/2] gnu: netpbm: Fix location of X color name database Federico Beffa
2016-05-13 17:10 ` Andreas Enge
2016-05-13 18:44   ` Federico Beffa
2016-05-14 16:25     ` Alex Kost [this message]
2016-05-15 20:04       ` Ludovic Courtès
2016-05-16 12:34         ` Federico Beffa
2016-05-16 12:33       ` Federico Beffa

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=87lh3c38uv.fsf@gmail.com \
    --to=alezost@gmail.com \
    --cc=beffa@ieee.org \
    --cc=guix-devel@gnu.org \
    /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).