summaryrefslogtreecommitdiff
path: root/archivers/libzip
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2022-06-13 15:45:22 +0000
committerwiz <wiz@pkgsrc.org>2022-06-13 15:45:22 +0000
commite921892649bc6ae7b59988c2cf7c0f6923d39751 (patch)
tree6e3aefcd2376341c7b7ace7923bab4e4d59c60f1 /archivers/libzip
parent2df63ff4380ec9068ac6fa6f51025fdd912092d3 (diff)
downloadpkgsrc-e921892649bc6ae7b59988c2cf7c0f6923d39751.tar.gz
libzip: update to 1.9.0.
1.9.0 [2022-06-13] ================== * Add `zip_file_is_seekable()`. * Improve compatibility with WinAES. * Fix encoding handling in `zip_name_locate()`. * Add option to `zipcmp` to output summary of changes. * Various bug fixes and documentation improvements.
Diffstat (limited to 'archivers/libzip')
-rw-r--r--archivers/libzip/Makefile5
-rw-r--r--archivers/libzip/PLIST4
-rw-r--r--archivers/libzip/distinfo9
-rw-r--r--archivers/libzip/patches/patch-CMakeLists.txt14
4 files changed, 8 insertions, 24 deletions
diff --git a/archivers/libzip/Makefile b/archivers/libzip/Makefile
index 9e9c3e03ff9..eabfba398da 100644
--- a/archivers/libzip/Makefile
+++ b/archivers/libzip/Makefile
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.57 2021/12/08 16:01:42 adam Exp $
+# $NetBSD: Makefile,v 1.58 2022/06/13 15:45:22 wiz Exp $
-DISTNAME= libzip-1.8.0
-PKGREVISION= 2
+DISTNAME= libzip-1.9.0
CATEGORIES= archivers devel
MASTER_SITES= https://libzip.org/download/
MASTER_SITES+= ${MASTER_SITE_GITHUB:=nih-at/}
diff --git a/archivers/libzip/PLIST b/archivers/libzip/PLIST
index d1e5d8105a8..7988486a705 100644
--- a/archivers/libzip/PLIST
+++ b/archivers/libzip/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.17 2021/06/24 21:40:06 wiz Exp $
+@comment $NetBSD: PLIST,v 1.18 2022/06/13 15:45:22 wiz Exp $
bin/zipcmp
bin/zipmerge
bin/ziptool
@@ -10,7 +10,7 @@ lib/cmake/libzip/libzip-targets-noconfig.cmake
lib/cmake/libzip/libzip-targets.cmake
lib/libzip.so
lib/libzip.so.5
-lib/libzip.so.5.4
+lib/libzip.so.5.5
lib/pkgconfig/libzip.pc
man/man1/zipcmp.1
man/man1/zipmerge.1
diff --git a/archivers/libzip/distinfo b/archivers/libzip/distinfo
index e877e3d99a6..1d3843ae6ac 100644
--- a/archivers/libzip/distinfo
+++ b/archivers/libzip/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.41 2021/10/26 09:57:09 nia Exp $
+$NetBSD: distinfo,v 1.42 2022/06/13 15:45:22 wiz Exp $
-BLAKE2s (libzip-1.8.0.tar.xz) = 77edd0b85fae3236982c65c85b1834bf628e40676a9e4fe4870ae77ce9c66747
-SHA512 (libzip-1.8.0.tar.xz) = fe94a26a2797dff7c9b27334f29982f8e523dd5095bf32ebcadc6443726864f0ff7b2e8bf243e52cad8f79297bc7a87d73fdbc35edae4ffc8ab6aa0bcc93b03e
-Size (libzip-1.8.0.tar.xz) = 760604 bytes
-SHA1 (patch-CMakeLists.txt) = 17745d56f98cd4a6298c54b8562b463207c5a7ee
+BLAKE2s (libzip-1.9.0.tar.xz) = 4aa8786c7380da893acc2efdad88f4fc87c018690ee435a3aba224b9ded89748
+SHA512 (libzip-1.9.0.tar.xz) = dd0c7046f5b1faf00690774572982e870edaa1819563f9ebf7caf823c9c5718623576a7135a64c9acfed9cefac5601cf944b7aa0b623986f5c85743f3014b349
+Size (libzip-1.9.0.tar.xz) = 763704 bytes
diff --git a/archivers/libzip/patches/patch-CMakeLists.txt b/archivers/libzip/patches/patch-CMakeLists.txt
deleted file mode 100644
index ccda1da7b8e..00000000000
--- a/archivers/libzip/patches/patch-CMakeLists.txt
+++ /dev/null
@@ -1,14 +0,0 @@
-$NetBSD: patch-CMakeLists.txt,v 1.1 2021/06/24 21:40:06 wiz Exp $
-
-Upstream commit ca61524e05d785f0d14f40802c6a1a54a46b74bb
-
---- CMakeLists.txt.orig 2021-06-18 16:08:29.000000000 +0000
-+++ CMakeLists.txt
-@@ -299,6 +299,7 @@ foreach(LIB ${LIBS_PRIVATE})
- endforeach()
- string(REGEX REPLACE "-lBZip2::BZip2" "-lbz2" LIBS ${LIBS})
- string(REGEX REPLACE "-lLibLZMA::LibLZMA" "-llzma" LIBS ${LIBS})
-+string(REGEX REPLACE "-lZstd::Zstd" "-lzstd" LIBS ${LIBS})
- string(REGEX REPLACE "-lOpenSSL::Crypto" "-lssl -lcrypto" LIBS ${LIBS})
- string(REGEX REPLACE "-lZLIB::ZLIB" "-lz" LIBS ${LIBS})
- string(REGEX REPLACE "-lGnuTLS::GnuTLS" "-lgnutls" LIBS ${LIBS})