guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: twolame: Make the test suite compatible with Perl 5.24.


From: Leo Famulari
Subject: 01/01: gnu: twolame: Make the test suite compatible with Perl 5.24.
Date: Mon, 24 Oct 2016 20:19:34 +0000 (UTC)

lfam pushed a commit to branch core-updates
in repository guix.

commit 469142805925e4cdaf8bb6969cd3f101666fa745
Author: Leo Famulari <address@hidden>
Date:   Mon Oct 24 01:49:27 2016 -0400

    gnu: twolame: Make the test suite compatible with Perl 5.24.
    
    * gnu/packages/audio.scm (twolame)[source]: Add snippet to fix test.
---
 gnu/packages/audio.scm |   10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index db32b6f..8ec8330 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -2134,7 +2134,15 @@ conversion.  It may be used, for example, to resample 
PCM-encoded audio.")
        (uri (string-append "mirror://sourceforge/twolame/twolame/" version
                            "/twolame-" version ".tar.gz"))
        (sha256
-        (base32 "0ahiqqng5pidwhj1wzph4vxxgxxgcfa3gl0gywipzx2ii7s35wwq"))))
+        (base32 "0ahiqqng5pidwhj1wzph4vxxgxxgcfa3gl0gywipzx2ii7s35wwq"))
+       (modules '((guix build utils)))
+       ;; The tests break with Perl 5.24:
+       ;; https://github.com/njh/twolame/issues/21
+       ;; TODO: Remove this snippet when upgrading twolame.
+       (snippet
+        '(begin
+           (substitute* "tests/test.pl" (("\\(@_\\)") "($_[0])"))
+           #t))))
     (build-system gnu-build-system)
     (inputs
      `(("libsndfile" ,libsndfile)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]