Archived
1
0
Fork 0

gnu: pcre: Update to 8.45.

* gnu/packages/pcre.scm (pcre): Update to 8.45.
[source](uri): Change to official mirror; remove defunct.
[arguments]: Remove trailing #t.
This commit is contained in:
Marius Bakke 2021-06-20 14:33:03 +02:00
parent 3f7efaa54a
commit 81d0ac2da6
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -35,18 +35,14 @@
(define-public pcre (define-public pcre
(package (package
(name "pcre") (name "pcre")
(version "8.44") (version "8.45")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (list (uri (string-append "https://ftp.pcre.org/pub/pcre/pcre-"
(string-append "ftp://ftp.csx.cam.ac.uk" version ".tar.bz2"))
"/pub/software/programming/pcre/"
"pcre-" version ".tar.bz2")
(string-append "mirror://sourceforge/pcre/pcre/"
version "/pcre-" version ".tar.bz2")))
(sha256 (sha256
(base32 (base32
"0v9nk51wh55pcbnf2jr36yarz8ayajn6d7ywiq2wagivn9c8c40r")))) "1f7zichy6iimmkfrqdl575sdlm795cyc75szgg1vc2xvsbf6zbjd"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(outputs '("out" ;library & headers (outputs '("out" ;library & headers
"bin" ;depends on Readline (adds 20MiB to the closure) "bin" ;depends on Readline (adds 20MiB to the closure)
@ -75,8 +71,7 @@
(link lib (string-append static "/" (link lib (string-append static "/"
(basename lib))) (basename lib)))
(delete-file lib)) (delete-file lib))
(find-files source "\\.a$")) (find-files source "\\.a$"))))))))
#t))))))
(synopsis "Perl Compatible Regular Expressions") (synopsis "Perl Compatible Regular Expressions")
(description (description
"The PCRE library is a set of functions that implement regular expression "The PCRE library is a set of functions that implement regular expression