From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mathieu Lirzin Subject: Re: [PATCH] Add rapicorn. Date: Wed, 13 Apr 2016 22:09:42 +0200 Message-ID: <8760vll189.fsf@gnu.org> References: <87bn5dxpzo.fsf@elephly.net> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55300) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aqR6l-0006Ia-3j for guix-devel@gnu.org; Wed, 13 Apr 2016 16:09:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aqR6g-0001Zx-UW for guix-devel@gnu.org; Wed, 13 Apr 2016 16:09:50 -0400 In-Reply-To: <87bn5dxpzo.fsf@elephly.net> (Ricardo Wurmus's message of "Wed, 13 Apr 2016 21:34:03 +0200") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: Ricardo Wurmus Cc: guix-devel Hello, Ricardo Wurmus writes: > From f50b4c419437b4213a27ad52bd43cefe00e55d84 Mon Sep 17 00:00:00 2001 > From: Ricardo Wurmus > Date: Wed, 13 Apr 2016 08:56:16 +0200 > Subject: [PATCH 2/2] gnu: Add rapicorn. > > * gnu/packages/graphics.scm (rapicorn): New variable. > --- > gnu/packages/graphics.scm | 78 +++++++++++++++++++++++++++++++++++++++++= ++++++ > 1 file changed, 78 insertions(+) > > diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm > index da0fa54..ef1f0fd 100644 > --- a/gnu/packages/graphics.scm > +++ b/gnu/packages/graphics.scm [...] > @@ -271,6 +281,74 @@ visual effects work for film.") > (home-page "http://www.openimageio.org") > (license license:bsd-3))) >=20=20 > +(define-public rapicorn > + (package > + (name "rapicorn") > + (version "16.0.0") > + (source (origin > + (method url-fetch) > + (uri (string-append "https://testbit.eu/pub/dists/rapicorn= /" > + "rapicorn-" version ".tar.xz")) > + (sha256 > + (base32 > + "1y51yjrpsihas1jy905m9p3r8iiyhq6bwi2690c564i5dnix1f9d"))= )) > + (build-system gnu-build-system) > + (arguments > + `(;; FIXME: At least "testrcore1" fails. > + #:tests? #f > + #:phases > + (modify-phases %standard-phases > + (add-after 'unpack 'replace-/bin/ls > + (lambda _ > + (substitute* '("Makefile.decl" > + "tools/Makefile.in" > + "tests/Makefile.in" > + "aidacc/tests/Makefile.in" > + "aidacc/Makefile.in" > + "cython/Makefile.in" > + "res/Makefile.in" > + "ui/tests/Makefile.in" > + "ui/Makefile.in" > + "docs/tutorial/Makefile.in" > + "docs/mans/Makefile.in" > + "docs/Makefile.in" > + "docs/examples/Makefile.in" > + "docs/imports/Makefile.in" > + "Makefile.in" > + "pytests/Makefile.in" > + "examples/Makefile.in" > + "data/Makefile.in" > + "rcore/tests/Makefile.in" > + "rcore/Makefile.in") > + (("/bin/ls") (which "ls"))) Can you try to use =E2=80=98find-files=E2=80=99 for this substitution? Thanks, --=20 Mathieu Lirzin