diff options
author | Marius Bakke <mbakke@fastmail.com> | 2018-03-20 00:56:04 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2018-03-20 00:56:04 +0100 |
commit | 3f986ff657a8ea4f46dc0312df7ff0eeeb98c6ee (patch) | |
tree | 72b0b582c42219920d36bace00bebd0d60665670 /gnu | |
parent | 712be306a810cb1eb493926da9721e49af56e63c (diff) | |
download | patches-3f986ff657a8ea4f46dc0312df7ff0eeeb98c6ee.tar patches-3f986ff657a8ea4f46dc0312df7ff0eeeb98c6ee.tar.gz |
gnu: zziplib: Update to 0.13.69.
* gnu/packages/compression.scm (zziplib): Update to 0.13.69.
[home-page]: Use new GitHub home.
[source](uri): Adjust accordingly.
[arguments]: Remove.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/compression.scm | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm index f92239d505..071aecb0f8 100644 --- a/gnu/packages/compression.scm +++ b/gnu/packages/compression.scm @@ -1807,16 +1807,15 @@ recreates the stored directory structure by default.") (define-public zziplib (package (name "zziplib") - (version "0.13.68") + (version "0.13.69") + (home-page "https://github.com/gdraheim/zziplib") (source (origin (method url-fetch) - (uri (string-append "mirror://sourceforge/zziplib/zziplib13/" - version "/zziplib-" - version ".tar.bz2")) + (uri (string-append home-page "/archive/v" version ".tar.gz")) (sha256 (base32 - "1s0wz1hf2q4qxcp4lkg4rzpbz2814xagmvlyicqdj0ww0cvxv036")))) + "0i052a7shww0fzsxrdp3rd7g4mbzx7324a8ysbc0br7frpblcql4")))) (build-system gnu-build-system) (inputs `(("zlib" ,zlib))) @@ -1826,12 +1825,6 @@ recreates the stored directory structure by default.") ;; http://forums.gentoo.org/viewtopic-t-863161-start-0.html ("python" ,python-2) ("zip" ,zip))) ; to create test files - (arguments - ;; XXX: "make check" is broken, and the alternative (test/zziptests.py) - ;; requires network access. See <https://github.com/gdraheim/zziplib/issues/20> - ;; and <https://github.com/gdraheim/zziplib/issues/24>. - `(#:tests? #f)) - (home-page "http://zziplib.sourceforge.net/") (synopsis "Library for accessing zip files") (description "ZZipLib is a library based on zlib for accessing zip files.") |