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.
This commit is contained in:
parent
8d9ac92622
commit
6c277c8999
|
@ -9,6 +9,7 @@
|
||||||
;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr>
|
;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr>
|
||||||
;;; Copyright © 2016 Sou Bunnbu <iyzsong@gmail.com>
|
;;; Copyright © 2016 Sou Bunnbu <iyzsong@gmail.com>
|
||||||
;;; Copyright © 2016 Jelle Licht <jlicht@fsfe.org>
|
;;; Copyright © 2016 Jelle Licht <jlicht@fsfe.org>
|
||||||
|
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -355,29 +356,19 @@ for efficient socket-like bidirectional reliable communication channels.")
|
||||||
(define-public libpsl
|
(define-public libpsl
|
||||||
(package
|
(package
|
||||||
(name "libpsl")
|
(name "libpsl")
|
||||||
(version "0.7.1")
|
(version "0.13.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://github.com/rockdaboot/libpsl/"
|
(uri (string-append "https://github.com/rockdaboot/libpsl/"
|
||||||
"archive/libpsl-" version ".tar.gz"))
|
"releases/download/libpsl-" version
|
||||||
|
"/libpsl-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1k0klj668c9v0r4993vfs3kq773mzdz61vsigqw6v1mjcwnf1si3"))))
|
"0afn2c4s2m65xifa5sfdll0s2gyqbh2q9k9nq4nsmx1b6c2i3i7x"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs `(("icu4c" ,icu4c)))
|
(inputs
|
||||||
;; The release tarball lacks the generated files.
|
`(("icu4c" ,icu4c)
|
||||||
(native-inputs `(("autoconf" ,autoconf)
|
("python-2" ,python-2)))
|
||||||
("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)))
|
|
||||||
(home-page "https://github.com/rockdaboot/libpsl")
|
(home-page "https://github.com/rockdaboot/libpsl")
|
||||||
(synopsis "C library for the Publix Suffix List")
|
(synopsis "C library for the Publix Suffix List")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in New Issue