gnu: libtar: Update to 1.2.20 [fixes CVE-2013-4397, CVE-2013-4420].

* gnu/packages/compression.scm (libtar): Update to 1.2.20.
[source]: Add Debian mirror.
[arguments]: Add 'autoconf phase.
[native-inputs]: Add autoconf, automake, libtool.
[inputs]: Add zlib.
[home-page]: Point to temporary home.
This commit is contained in:
Efraim Flashner 2016-05-29 22:46:29 +03:00
parent 43ec6ca06e
commit 89d80159b1
No known key found for this signature in database
GPG Key ID: F4C1D3917EACEE93

View File

@ -110,22 +110,37 @@ utility. Instead of being written in Java, FastJar is written in C.")
(define-public libtar (define-public libtar
(package (package
(name "libtar") (name "libtar")
(version "1.2.11") (version "1.2.20")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append (uri (list
"ftp://ftp.feep.net/pub/software/libtar/libtar-" (string-append
version ".tar.gz")) "ftp://ftp.feep.net/pub/software/libtar/libtar-"
version ".tar.gz")
(string-append
"mirror://debian/pool/main/libt/libtar/libtar_"
version ".orig.tar.gz")))
(sha256 (sha256
(base32 (base32
"1f3vx1wa69a6c5y0z0aakd81gygirdcm0vimazg433q8nyvfybja")))) "02cihzl77ia0dcz7z2cga2412vyhhs5pa2355q4wpwbyga2lrwjh"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments `(#:tests? #f)) ;no "check" target (arguments
`(#:tests? #f ;no "check" target
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'autoconf
(lambda _ (zero? (system* "sh" "autoreconf" "-vfi")))))))
(native-inputs
`(("autoconf" ,autoconf)
("automake" ,automake)
("libtool" ,libtool)))
(inputs
`(("zlib" ,zlib)))
(synopsis "C library for manipulating POSIX tar files") (synopsis "C library for manipulating POSIX tar files")
(description (description
"libtar is a C library for manipulating POSIX tar files. It handles "libtar is a C library for manipulating POSIX tar files. It handles
adding and extracting files to/from a tar archive.") adding and extracting files to/from a tar archive.")
(home-page "http://www.feep.net/libtar/") (home-page "https://repo.or.cz/libtar.git")
(license license:bsd-3))) (license license:bsd-3)))
(define-public gzip (define-public gzip