guix-commits
[Top][All Lists]
Advanced

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

05/10: gnu: cvs-fast-export: Update to 1.51.


From: guix-commits
Subject: 05/10: gnu: cvs-fast-export: Update to 1.51.
Date: Tue, 18 Feb 2020 12:26:47 -0500 (EST)

nckx pushed a commit to branch master
in repository guix.

commit d462bf0e4941ee73881d3a449081c4347e7c966c
Author: Tobias Geerinckx-Rice <address@hidden>
AuthorDate: Tue Feb 18 17:37:27 2020 +0100

    gnu: cvs-fast-export: Update to 1.51.
    
    * gnu/packages/version-control.scm (cvs-fast-export): Update to 1.51.
    [arguments]: Remove obsolete ‘remove-optimizations’ phase.
---
 gnu/packages/version-control.scm | 14 ++++----------
 1 file changed, 4 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index 8335e6c..c5d99b6 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -1564,26 +1564,20 @@ RCS, PRCS, and Aegis packages.")
 (define-public cvs-fast-export
   (package
     (name "cvs-fast-export")
-    (version "1.45")
+    (version "1.51")
     (source (origin
               (method url-fetch)
               (uri (string-append "http://www.catb.org/~esr/cvs-fast-export/";
                                   "cvs-fast-export-" version ".tar.gz"))
               (sha256
                (base32
-                "19pxg6p0pcgyd2fbnh3wy1kazv6vcfi5lzc2whhdi1w9kj4r9c4z"))))
+                "0nn5cf8syb5nbjvkn8w561pk25clv187h4hs9pnc700g9w56chzf"))))
     (build-system gnu-build-system)
     (arguments
      '(#:phases
        (modify-phases %standard-phases
-         (delete 'configure)            ; no configure script
-         (add-after 'unpack 'remove-optimizations
-           (lambda _
-             ;; Don't optimize for a specific processor architecture.
-             (substitute* "Makefile"
-               (("CFLAGS \\+= -march=native") ""))
-             #t)))
-       #:parallel-build? #f ; parallel a2x commands fail spectacularly
+         (delete 'configure))       ; no configure script
+       #:parallel-build? #f         ; parallel a2x commands fail spectacularly
        #:make-flags
        (list "CC=gcc" (string-append "prefix?=" (assoc-ref %outputs "out")))))
     (inputs `(("git" ,git)))



reply via email to

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