guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: libpsl: Update to 0.13.0.


From: Efraim Flashner
Subject: 01/01: gnu: libpsl: Update to 0.13.0.
Date: Sun, 03 Apr 2016 20:38:23 +0000

efraim pushed a commit to branch master
in repository guix.

commit 6c277c8999014f06c296106101efd0923d7476fe
Author: Efraim Flashner <address@hidden>
Date:   Sun Apr 3 23:35:29 2016 +0300

    gnu: libpsl: Update to 0.13.0.
    
    * gnu/packages/web.scm (libpsl): Update to 0.13.0.
    [arguments]: Remove bootstrap phase.
    [inputs]: Add python-2.
    [native-inputs]: Remove autoconf, automake, gettext, which, libtool,
    pkg-config.
---
 gnu/packages/web.scm |   25 ++++++++-----------------
 1 files changed, 8 insertions(+), 17 deletions(-)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 6dabc06..1f13474 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -9,6 +9,7 @@
 ;;; Copyright © 2015 Eric Dvorsak <address@hidden>
 ;;; Copyright © 2016 Sou Bunnbu <address@hidden>
 ;;; Copyright © 2016 Jelle Licht <address@hidden>
+;;; Copyright © 2016 Efraim Flashner <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -355,29 +356,19 @@ for efficient socket-like bidirectional reliable 
communication channels.")
 (define-public libpsl
   (package
     (name "libpsl")
-    (version "0.7.1")
+    (version "0.13.0")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://github.com/rockdaboot/libpsl/";
-                                  "archive/libpsl-" version ".tar.gz"))
+                                  "releases/download/libpsl-" version
+                                  "/libpsl-" version ".tar.gz"))
               (sha256
                (base32
-                "1k0klj668c9v0r4993vfs3kq773mzdz61vsigqw6v1mjcwnf1si3"))))
+                "0afn2c4s2m65xifa5sfdll0s2gyqbh2q9k9nq4nsmx1b6c2i3i7x"))))
     (build-system gnu-build-system)
-    (inputs `(("icu4c" ,icu4c)))
-    ;; The release tarball lacks the generated files.
-    (native-inputs `(("autoconf" ,autoconf)
-                     ("automake" ,automake)
-                     ("gettext"  ,gnu-gettext)
-                     ("which"    ,which)
-                     ("libtool"  ,libtool)
-                     ("pkg-config" ,pkg-config)))
-    (arguments
-     `(#:phases (alist-cons-after
-                 'unpack 'bootstrap
-                 (lambda _
-                   (zero? (system* "sh" "autogen.sh")))
-                 %standard-phases)))
+    (inputs
+     `(("icu4c" ,icu4c)
+       ("python-2" ,python-2)))
     (home-page "https://github.com/rockdaboot/libpsl";)
     (synopsis "C library for the Publix Suffix List")
     (description



reply via email to

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