From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45553) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fnAbC-0008Bf-V4 for guix-patches@gnu.org; Tue, 07 Aug 2018 18:37:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fnAb9-0007fO-Q9 for guix-patches@gnu.org; Tue, 07 Aug 2018 18:37:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:38981) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fnAb9-0007fG-Lc for guix-patches@gnu.org; Tue, 07 Aug 2018 18:37:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fnAb7-0005sA-VS for guix-patches@gnu.org; Tue, 07 Aug 2018 18:37:03 -0400 Subject: [bug#32391] [PATCH] gnu: Add VBinDiff. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45397) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fnAau-000840-TU for guix-patches@gnu.org; Tue, 07 Aug 2018 18:36:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fnAar-0007Jj-Po for guix-patches@gnu.org; Tue, 07 Aug 2018 18:36:48 -0400 Received: from wout2-smtp.messagingengine.com ([64.147.123.25]:55915) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fnAar-0007BZ-IY for guix-patches@gnu.org; Tue, 07 Aug 2018 18:36:45 -0400 Received: from jasmine.lan (unknown [128.64.129.14]) by mail.messagingengine.com (Postfix) with ESMTPA id 0F81F10269 for ; Tue, 7 Aug 2018 18:36:42 -0400 (EDT) From: Leo Famulari Date: Tue, 7 Aug 2018 18:36:31 -0400 Message-Id: <157723ba601d5a3cb6cc8fdf985bb060de0dc2be.1533681381.git.leo@famulari.name> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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: 32391@debbugs.gnu.org I'm not sure which module to put this in! * gnu/packages/patchutils.scm (vbindiff): New variable. --- gnu/packages/patchutils.scm | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/gnu/packages/patchutils.scm b/gnu/packages/patchutils.scm index 224b0e8d6..55f4fd510 100644 --- a/gnu/packages/patchutils.scm +++ b/gnu/packages/patchutils.scm @@ -1,6 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2014 Eric Bavier -;;; Copyright © 2015 Leo Famulari +;;; Copyright © 2015, 2018 Leo Famulari ;;; Copyright © 2018 Tobias Geerinckx-Rice ;;; ;;; This file is part of GNU Guix. @@ -32,9 +32,10 @@ #:use-module (gnu packages file) #:use-module (gnu packages gawk) #:use-module (gnu packages less) + #:use-module (gnu packages mail) + #:use-module (gnu packages ncurses) #:use-module (gnu packages perl) #:use-module (gnu packages python) - #:use-module (gnu packages mail) #:use-module (gnu packages xml)) (define-public patchutils @@ -209,3 +210,24 @@ list, and commands that can search that database. It allows users to track the status of a patch, apply patches, and search for patches---all that from the command-line or from Emacs via its Notmuch integration.") (license gpl2+)))) + +(define-public vbindiff + (package + (name "vbindiff") + (version "3.0_beta5") + (source (origin + (method url-fetch) + (uri (string-append "https://www.cjmweb.net/vbindiff/vbindiff-" + version ".tar.gz")) + (sha256 + (base32 + "1f1kj4jki08bnrwpzi663mjfkrx4wnfpzdfwd2qgijlkx5ysjkgh")))) + (build-system gnu-build-system) + (inputs + `(("ncurses" ,ncurses))) + (home-page "https://www.cjmweb.net/vbindiff/") + (synopsis "Console-based tool for comparing binary data") + (description "Visual Binary Diff (VBinDiff) displays files in hexadecimal +and ASCII (or EBCDIC). It can also display two files at once, and highlight the +differences between them. It works well with large files (up to 4 GiB).") + (license gpl2+))) -- 2.18.0