From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Wurmus Subject: Re: [PATCH] Add vcflib. Date: Wed, 20 Apr 2016 15:08:44 +0200 Message-ID: References: <878u1aa62m.fsf@gnu.org> 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]:33910) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1asrsH-0006bS-F3 for guix-devel@gnu.org; Wed, 20 Apr 2016 09:09:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1asrsC-0000EE-FE for guix-devel@gnu.org; Wed, 20 Apr 2016 09:08:57 -0400 In-Reply-To: <878u1aa62m.fsf@gnu.org> 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: Roel Janssen Cc: guix-devel@gnu.org Roel Janssen writes: > From 3ed14719121a952fca48a8ad3426588ebb58a130 Mon Sep 17 00:00:00 2001 > From: Roel Janssen > Date: Tue, 22 Mar 2016 15:57:33 +0100 > Subject: [PATCH 7/8] gnu: Add intervaltree. > * gnu/packages/bioinformatics.scm (intervaltree): New variable. > --- > gnu/packages/bioinformatics.scm | 32 ++++++++++++++++++++++++++++++++ > 1 file changed, 32 insertions(+) > diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformat= ics.scm > index 9cbde46..5a0eb16 100644 > --- a/gnu/packages/bioinformatics.scm > +++ b/gnu/packages/bioinformatics.scm > @@ -4985,3 +4985,35 @@ automatically handles index file generation and = use.") > ;; this program is a submodule, is licensed MIT, which is the sa= me as > ;; the Expat license. > (license (list license:gpl2 license:expat))))) > + > +(define-public intervaltree > + (let ((commit "dbb4c513d1ad3baac516fc1484c995daf9b42838")) > + (package > + (name "intervaltree") > + (version (string-append "0-1." (string-take commit 7))) > + (source (origin > + (method url-fetch) > + (uri (string-append > + "https://github.com/ekg/intervaltree/archive/" commit ".= tar.gz")) > + (file-name (string-append name "-" version ".tar.gz")) > + (sha256 > + (base32 "19prwpn2wxsrijp5svfqvfcxl5nj7zdhm3jycd5kqhl9nifpmcks= ")))) > + (build-system gnu-build-system) > + (arguments > + `(#:phases > + (modify-phases %standard-phases > + (delete 'configure) ; There is no configure phase. > + (replace 'check > + (lambda _ > + (zero? (system* "./interval_tree_test")))) The indentation looks wrong here. Could you please double-check that you=E2=80=99re not using tabs? > + (replace 'install > + (lambda* (#:key outputs #:allow-other-keys) > + (let ((include (string-append (assoc-ref outputs "out") > + "/include/intervaltree"))= ) > + (install-file "IntervalTree.h" include))))))) > + (home-page "https://github.com/ekg/intervaltree/") > + (synopsis "Minimal C++ interval tree implementation") > + (description "This library provides a basic implementation of an= interval > +tree using C++ templates, allowing the insertion of arbitrary types in= to the > +tree.") > + (license license:expat)))) The rest looks good to me. ~~ Ricardo