unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Eric Bavier <ericbavier@gmail.com>
To: guix-devel@gnu.org
Cc: Eric Bavier <bavier@member.fsf.org>
Subject: [PATCH 02/14] gnu: Add delta.
Date: Sun,  7 Dec 2014 15:51:42 -0600	[thread overview]
Message-ID: <1417989115-32107-3-git-send-email-bavier@member.fsf.org> (raw)
In-Reply-To: <1417989115-32107-1-git-send-email-bavier@member.fsf.org>

* gnu/packages/debug.scm: New file.
* gnu-system.am (GNU_SYSTEM_MODULES): Add it.
---
 gnu-system.am          |    1 +
 gnu/packages/debug.scm |   74 ++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 75 insertions(+)
 create mode 100644 gnu/packages/debug.scm

diff --git a/gnu-system.am b/gnu-system.am
index ac0bfa1..9f77456 100644
--- a/gnu-system.am
+++ b/gnu-system.am
@@ -72,6 +72,7 @@ GNU_SYSTEM_MODULES =				\
   gnu/packages/databases.scm			\
   gnu/packages/datamash.scm			\
   gnu/packages/dc.scm				\
+  gnu/packages/debug.scm			\
   gnu/packages/dejagnu.scm			\
   gnu/packages/dictionaries.scm			\
   gnu/packages/disk.scm				\
diff --git a/gnu/packages/debug.scm b/gnu/packages/debug.scm
new file mode 100644
index 0000000..578703d
--- /dev/null
+++ b/gnu/packages/debug.scm
@@ -0,0 +1,74 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (gnu packages debug)
+  #:use-module (guix packages)
+  #:use-module (guix licenses)
+  #:use-module (guix download)
+  #:use-module (guix build-system gnu)
+  #:use-module (gnu packages)
+  #:use-module (gnu packages perl))
+
+(define-public delta
+  (package
+    (name "delta")
+    (version "2006.08.03")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (list
+            (string-append "http://ftp.de.debian.org/debian/pool/main/d/delta/"
+                           "delta_" version ".orig.tar.gz")
+            ;; This uri seems to send guix download into an infinite loop
+            (string-append "http://delta.tigris.org/files/documents/3103/"
+                           "33566/delta-" version ".tar.gz")))
+      (sha256
+       (base32
+        "184wh35pf2ddx97319s6sgkzpz48xxkbwzcjpycv009bm53lh61q"))))
+    (build-system gnu-build-system)
+    (inputs
+     `(("perl" ,perl)))
+    (arguments
+     `(#:phases
+       (alist-replace
+        'install
+        (lambda* (#:key outputs #:allow-other-keys)
+          ;; Makefile contains no install target
+          (let* ((out (assoc-ref outputs "out"))
+                 (bin (string-append out "/bin"))
+                 (doc (string-append out "/share/doc/delta-" ,version)))
+            (begin
+              (mkdir-p bin)
+              (mkdir-p doc)
+              (for-each (lambda (h)
+                          (copy-file h (string-append doc "/" (basename h))))
+                        `("License.txt" ,@(find-files "www" ".*\\.html")))
+              (for-each (lambda (b)
+                          (copy-file b (string-append bin "/" b)))
+                        `("delta" "multidelta" "topformflat")))))
+        (alist-delete 'configure %standard-phases))))
+    (home-page "http://delta.tigris.org/")
+    (synopsis "Heuristical file minimizer")
+    (description
+     "Delta assists you in minimizing \"interesting\" files subject to a test
+of their interestingness.  A common such situation is when attempting to
+isolate a small failure-inducing substring of a large input that causes your
+program to exhibit a bug.")
+    ;; See License.txt, which is a bsd-3 license, despite the project's
+    ;; home-page pointing to a bsd-2 license.
+    (license bsd-3)))
-- 
1.7.9.5

  parent reply	other threads:[~2014-12-07 21:50 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-12-07 21:51 [PATCH 00/14]: gnu: Add c-reduce Eric Bavier
2014-12-07 21:51 ` [PATCH 01/14] gnu: Add astyle Eric Bavier
2014-12-08 20:43   ` Ludovic Courtès
2014-12-07 21:51 ` Eric Bavier [this message]
2014-12-08 20:45   ` [PATCH 02/14] gnu: Add delta Ludovic Courtès
2014-12-07 21:51 ` [PATCH 03/14] gnu: Add perl-benchmark-timer Eric Bavier
2014-12-08 20:47   ` Ludovic Courtès
2014-12-07 21:51 ` [PATCH 04/14] gnu: Add perl-exporter-lite Eric Bavier
2014-12-08 20:47   ` Ludovic Courtès
2014-12-07 21:51 ` [PATCH 05/14] gnu: Add perl-probe-perl Eric Bavier
2014-12-08 20:48   ` Ludovic Courtès
2014-12-07 21:51 ` [PATCH 06/14] gnu: Add perl-ipc-run3 Eric Bavier
2014-12-08 20:48   ` Ludovic Courtès
2014-12-07 21:51 ` [PATCH 07/14] gnu: Add perl-test-script Eric Bavier
2014-12-08 20:49   ` Ludovic Courtès
2014-12-07 21:51 ` [PATCH 08/14] gnu: Add perl-file-which Eric Bavier
2014-12-08 20:49   ` Ludovic Courtès
2014-12-07 21:51 ` [PATCH 09/14] gnu: Add perl-getopt-tabular Eric Bavier
2014-12-08 20:49   ` Ludovic Courtès
2014-12-07 21:51 ` [PATCH 10/14] gnu: Add perl-regexp-common Eric Bavier
2014-12-08 20:50   ` Ludovic Courtès
2014-12-07 21:51 ` [PATCH 11/14] gnu: Add perl-sys-cpu Eric Bavier
2014-12-08 20:51   ` Ludovic Courtès
2014-12-07 21:51 ` [PATCH 12/14] gnu: Add NCSA license Eric Bavier
2014-12-08 20:52   ` Ludovic Courtès
2014-12-07 21:51 ` [PATCH 13/14] gnu: Add llvm and clang Eric Bavier
2014-12-08 20:55   ` Ludovic Courtès
2014-12-09 17:21     ` Eric Bavier
2014-12-09 20:26       ` Ludovic Courtès
2014-12-07 21:51 ` [PATCH 14/14] gnu: Add c-reduce Eric Bavier
2014-12-08 20:56   ` Ludovic Courtès

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=1417989115-32107-3-git-send-email-bavier@member.fsf.org \
    --to=ericbavier@gmail.com \
    --cc=bavier@member.fsf.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).