From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nikita Karetnikov Subject: GNU Wdiff: Testsuite fails Date: Mon, 04 Feb 2013 22:18:20 -0500 Message-ID: <87622730u8.fsf@karetnikov.org> Mime-Version: 1.0 Content-Type: multipart/signed; boundary="==-=-="; micalg=pgp-sha1; protocol="application/pgp-signature" Return-path: Received: from eggs.gnu.org ([208.118.235.92]:47448) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U2Z36-0001rN-Bo for bug-guix@gnu.org; Mon, 04 Feb 2013 22:18:27 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U2Z31-0007v1-Bk for bug-guix@gnu.org; Mon, 04 Feb 2013 22:18:20 -0500 Received: from [2a01:7e00::f03c:91ff:fedf:181] (port=36196 helo=cooksoni.karetnikov.org) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U2Z31-0007uR-5X for bug-guix@gnu.org; Mon, 04 Feb 2013 22:18:15 -0500 List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org To: bug-guix@gnu.org --==-=-= Content-Type: multipart/mixed; boundary="=-=-=" --=-=-= I'm facing a similar problem [1] with GNU Wdiff. 'testsuite.at' just calls 'wdiff.at'. But 'wdiff.at' fails. How can I fix this without touching 'wdiff.at'? [1] https://lists.gnu.org/archive/html/bug-guix/2013-02/msg00031.html --=-=-= Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename=wdiff.scm Content-Transfer-Encoding: quoted-printable ;;; GNU Guix --- Functional package management for GNU ;;; Copyright =C2=A9 2013 Nikita Karetnikov ;;; ;;; 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 . (define-module (gnu packages wdiff) #:use-module (guix licenses) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu) #:use-module (gnu packages base) #:use-module (gnu packages screen) #:use-module (gnu packages which)) (define-public wdiff (package (name "wdiff") (version "1.1.2") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/wdiff/wdiff-" version ".tar.gz")) (sha256 (base32 "0q78y5awvjjmsvizqilbpwany62shlmlq2ayxkjbygmdafpk1k8j")))) (build-system gnu-build-system) (inputs `(("diffutils" ,diffutils) ; XXX: Is it needed? ("screen" ,screen) ("which" ,which))) (home-page "https://www.gnu.org/software/wdiff/") (synopsis "GNU Wdiff, a tool for comparing files on a word by word basis") (description "GNU Wdiff is a front end to 'diff' for comparing files on a word per word basis. A word is anything between whitespace. This is useful for comparing two texts in which a few words have been changed and for which paragraphs have been refilled. It works by creating two temporary files, o= ne word per line, and then executes 'diff' on these files. It collects the 'diff' output and uses it to produce a nicer display of word differences between the original files.") (license gpl3+))) --=-=-=-- --==-=-= Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (GNU/Linux) iQIcBAEBAgAGBQJREHoNAAoJEM+IQzI9IQ381CQP/jQbfPQ4JI15xJO9GWlimYDs ClNiiAff+39uj6Ga8h3XbT55dkaV9dVAoEOwN+z+oFF1NbpklYH9EjT/3laRL58h 4wz0BwgPma+l2D11BPWTYCiX/xFygkvAJ1nu9c8si4OGVQE3UBQfxdOQJs5UQSKg XmK73RBot0Hf+maw7xmm505sq7PEoRcRAtzBEpeS2H2StABXsSchONswKPbF3Slf ec4RuYfGjOURLIy/RHrJjTTj6Vm889EtiJH1CvTO0SmcvxM2YIhKjZ59EnF6x2wl gewW5kCKm5ZVwkpU9HejBMIZk0Z+2eRyshPhOLc88goEXA4oml/DqXusiXdgn1Vh V/+FxoJX//xBfGV2kGkc2MicOmdEfHO6QfUiI+tUlCP2CIyRFeBiUboxhOIgNGLA JhFhYA55nMbN8Ob7qRz4gueVnioFAm86/IgTHdSEqqTLiKg8UJ0nr4Wp8RmBSRqG SL+qqBOzKnRj2BD+3L1xrmeaL9rM5W2+Ajjtzd83pO4sCdrtbRdATTuLMiAR9hYg ni/UDICOVPArfZL0tXuOYNNjStxLYxng7N7zTdyA+qA8DT7ImmOmlVYDXXBzC50a kDm0N2ToAqELdx9bDtE2DRJ7EdK8Gpx/VvWVaGyF3RwbbGoi+jz3U3THKkXsX6Y9 gFWkCgIQ8/KZBxpcRq7k =/EiM -----END PGP SIGNATURE----- --==-=-=--