guix-commits
[Top][All Lists]
Advanced

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

02/20: gnu: the-silver-searcher: Update to 1.0.2.


From: Tobias Geerinckx-Rice
Subject: 02/20: gnu: the-silver-searcher: Update to 1.0.2.
Date: Tue, 24 Jan 2017 23:11:46 +0000 (UTC)

nckx pushed a commit to branch master
in repository guix.

commit 392f32665578bf83b2ed82fc2fb944b4bb4c6730
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Tue Jan 24 15:31:20 2017 +0100

    gnu: the-silver-searcher: Update to 1.0.2.
    
    * gnu/packages/code.scm (the-silver-searcher): Update to 1.0.2.
    [source]: Use signed tarball from home-page.  Remove file-name.
    [native-inputs]: Remove autoconf, automake, and libtool, as well as...
    [arguments]: ...the ‘autoconf’ phase since we're now building a release.
---
 gnu/packages/code.scm |   23 ++++-------------------
 1 file changed, 4 insertions(+), 19 deletions(-)

diff --git a/gnu/packages/code.scm b/gnu/packages/code.scm
index f5aa7f4..061ec27 100644
--- a/gnu/packages/code.scm
+++ b/gnu/packages/code.scm
@@ -190,37 +190,22 @@ COCOMO model or user-provided parameters.")
 (define-public the-silver-searcher
   (package
     (name "the-silver-searcher")
-    (version "0.32.0")
+    (version "1.0.2")
     (source (origin
               (method url-fetch)
               (uri (string-append
-                    "https://github.com/ggreer/the_silver_searcher/archive/";
+                    "http://geoff.greer.fm/ag/releases/the_silver_searcher-";
                     version ".tar.gz"))
               (sha256
                (base32
-                "1k543cjpignwvy8avhchz8pkqrqcgcryps36ycy8mz2w5rbhicn5"))
-              (file-name (string-append name "-" version ".tar.gz"))))
+                "0v54himv65w294l0k4lhdyc6kvpgijn8b9g5356479fzy7hphjkg"))))
     (build-system gnu-build-system)
     (native-inputs
-     `(("autoconf" ,autoconf)
-       ("automake" ,automake)
-       ("libtool" ,libtool)
-       ("pkg-config" ,pkg-config)))
+     `(("pkg-config" ,pkg-config)))
     (inputs
      `(("pcre" ,pcre)
        ("xz" ,xz)
        ("zlib" ,zlib)))
-    (arguments
-     `(#:phases
-       ;; There is no configure yet, so let's create it, but let configure and
-       ;; make do the work in later phases.
-       (alist-cons-before 'configure 'autoconf
-                          (lambda _
-                            (substitute* "build.sh"
-                              (("./configure") "true")
-                              (("make -j4") "true"))
-                            (zero? (system* "sh" "build.sh")))
-                          %standard-phases)))
     (home-page "http://geoff.greer.fm/ag/";)
     (synopsis "Fast code searching tool")
     (description



reply via email to

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