From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggsout.gnu.org ([209.51.188.92]:58696 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gfvFc-0002hA-Ob for guix-patches@gnu.org; Sat, 05 Jan 2019 18:21:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gfvFX-0005Ap-RG for guix-patches@gnu.org; Sat, 05 Jan 2019 18:21:08 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:42228) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gfvFW-00059w-9I for guix-patches@gnu.org; Sat, 05 Jan 2019 18:21:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gfvFW-0005TK-0x for guix-patches@gnu.org; Sat, 05 Jan 2019 18:21:02 -0500 Subject: bug#33770: [PATCH] gnu: Add nip2. Resent-To: guix-patches@gnu.org Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <87o99eolyf.fsf@gnu.org> Date: Sun, 06 Jan 2019 00:20:33 +0100 In-Reply-To: (L. p. R. n. d. n.'s message of "Fri, 04 Jan 2019 20:57:40 +0100") Message-ID: <87h8emzo72.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: L p R n d n Cc: 33770-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi, L p R n d n skribis: > Hello, > > Thanks for the review! > > Here is a new version of the Nip2 patch. > For the source, I thought only Github "archives" urls where problematic?= =20 Oh you=E2=80=99re right, I was confused. > From 5c32d2e6c940e2d3aef91071417a9774ab7cfe4b Mon Sep 17 00:00:00 2001 > From: Lprndn > Date: Wed, 5 Dec 2018 19:03:13 +0100 > Subject: [PATCH] gnu: Add nip2. > > * gnu/packages/image-processing.scm (nip2): New variable. Applied with the tiny changes below (the configure phase would fail without libjpeg.) Thank you! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable diff --git a/gnu/packages/image-processing.scm b/gnu/packages/image-process= ing.scm index f9be2dcab8..9c2ec50bec 100644 --- a/gnu/packages/image-processing.scm +++ b/gnu/packages/image-processing.scm @@ -6,6 +6,7 @@ ;;; Copyright =C2=A9 2016 Eric Bavier ;;; Copyright =C2=A9 2018 Tobias Geerinckx-Rice ;;; Copyright =C2=A9 2018 Bj=C3=B6rn H=C3=B6fling +;;; Copyright =C2=A9 2018 Lprndn ;;; ;;; This file is part of GNU Guix. ;;; @@ -460,13 +461,13 @@ vision algorithms. It can be used to do things like: (base32 "08dxfds4n1vxdilxcw01741a2r6fxyhawi656b7f0hy6znnkbsbc")))) (build-system gnu-build-system) (arguments - `(#:tests? #t - #:phases + `(#:phases (modify-phases %standard-phases ;; test_conv.ws keep failing so disabling for now (add-after 'unpack 'disable-test-conv (lambda _ - (delete-file "test/workspaces/test_conv.ws"))) + (delete-file "test/workspaces/test_conv.ws") + #t)) (add-before 'check 'set-home (lambda _ (setenv "HOME" "/tmp") #t))))) @@ -477,6 +478,7 @@ vision algorithms. It can be used to do things like: ("gtk+-2" ,gtk+-2) ("libxml2" ,libxml2) ("libexif" ,libexif) + ("libjpeg" ,libjpeg) ;required by vips.pc ("librsvg" ,librsvg) ("fftw" ,fftw) ("libgsf" ,libgsf) @@ -494,7 +496,8 @@ vision algorithms. It can be used to do things like: ("pkg-config" ,pkg-config))) (home-page "https://github.com/libvips/nip2") (synopsis "Spreadsheet-like GUI for libvips") - (description "GUI for the VIPS image processing library. -It's a little like a spreadsheet: you create a set of formula connecting y= our -objects together, and on a change nip2 recalculates") + (description "This package provide a graphical user interface (GUI) for +the VIPS image processing library. It's a little like a spreadsheet: you +create a set of formula connecting your objects together, and on a change = nip2 +recalculates.") (license license:gpl2+))) --=-=-=--