mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: gnurl: Update to 7.55.1-4.
* gnu/packages/gnunet.scm (gnurl): Update to 7.55.1-4. (native-inputs): Remove 'autoconf' and 'automake'. (arguments)[phases]: Remove 'autoconf' phase. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
a0b80a5718
commit
a35e00336b
1 changed files with 3 additions and 9 deletions
|
@ -186,14 +186,14 @@ (define-public libmicrohttpd
|
||||||
(define-public gnurl
|
(define-public gnurl
|
||||||
(package
|
(package
|
||||||
(name "gnurl")
|
(name "gnurl")
|
||||||
(version "7.55.1-3")
|
(version "7.55.1-4")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://gnunet.org/sites/default/files/"
|
(uri (string-append "https://gnunet.org/sites/default/files/"
|
||||||
name "-" version ".tar.bz2"))
|
name "-" version ".tar.bz2"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1p2qdh44hgsxjlzh4d3n51xr66cg2z517vpr818flvcrmpq2vxpq"))))
|
"09c1bfwiwxqlh0dl839lslwhvkf98bvpyg9x4pcn3sagz0i8hxfl"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(outputs '("out"
|
(outputs '("out"
|
||||||
"doc")) ; 1.5 MiB of man3 pages
|
"doc")) ; 1.5 MiB of man3 pages
|
||||||
|
@ -201,9 +201,7 @@ (define-public gnurl
|
||||||
("libidn" ,libidn)
|
("libidn" ,libidn)
|
||||||
("zlib" ,zlib)))
|
("zlib" ,zlib)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("autoconf" ,autoconf)
|
`(("libtool" ,libtool)
|
||||||
("automake" ,automake)
|
|
||||||
("libtool" ,libtool)
|
|
||||||
("groff" ,groff)
|
("groff" ,groff)
|
||||||
("perl" ,perl)
|
("perl" ,perl)
|
||||||
("pkg-config" ,pkg-config)
|
("pkg-config" ,pkg-config)
|
||||||
|
@ -234,10 +232,6 @@ (define-public gnurl
|
||||||
(rename-file (string-append out "/share/man/man3")
|
(rename-file (string-append out "/share/man/man3")
|
||||||
(string-append doc "/share/man/man3"))
|
(string-append doc "/share/man/man3"))
|
||||||
#t)))
|
#t)))
|
||||||
(add-after 'unpack 'autoconf
|
|
||||||
;; Clear artifacts left (shebangs) from release preparation.
|
|
||||||
(lambda _
|
|
||||||
(zero? (system* "sh" "buildconf"))))
|
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda _
|
(lambda _
|
||||||
;; It is unclear why test1026 fails, however the content of it
|
;; It is unclear why test1026 fails, however the content of it
|
||||||
|
|
Loading…
Reference in a new issue