diff options
author | wiz <wiz@pkgsrc.org> | 2021-06-24 21:40:06 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2021-06-24 21:40:06 +0000 |
commit | 9ab0947edaf33b512e0d1f376a4561b0a2c27d8a (patch) | |
tree | 6f902b8773668d6dbfb43737dad1b0481f92ffe5 /archivers/libzip/Makefile | |
parent | aed60fd5ba478b9469d840ff76c45948b535f645 (diff) | |
download | pkgsrc-9ab0947edaf33b512e0d1f376a4561b0a2c27d8a.tar.gz |
libzip: update to 1.8.0.
Add one post-release patch.
1.8.0 [2021-06-18]
==================
* Add support for zstd (Zstandard) compression.
* Add support for lzma (ID 14) compression.
* Add `zip_source_window_create()`.
* Add `zip_source_zip_create()` variant to `zip_source_zip()`.
* Allow method specific `comp_flags` in `zip_set_file_compression()`.
* Allow `zip_source_tell()` on sources that don't support seeking and `zip_ftell()` on compressed data.
* Provide more details for consistency check errors.
* Improve output of `zipcmp`.
* In `zipcmp`, don’t ignore empty directories when comparing directory listing.
* Treat empty string as no password given in `zip_file_set_encryption()`, `zip_fopen_encrypted()`, and `zip_set_default_password()`.
Diffstat (limited to 'archivers/libzip/Makefile')
-rw-r--r-- | archivers/libzip/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/archivers/libzip/Makefile b/archivers/libzip/Makefile index cd98da72812..77291e7d7ca 100644 --- a/archivers/libzip/Makefile +++ b/archivers/libzip/Makefile @@ -1,12 +1,11 @@ -# $NetBSD: Makefile,v 1.54 2021/05/24 19:49:02 wiz Exp $ +# $NetBSD: Makefile,v 1.55 2021/06/24 21:40:06 wiz Exp $ -DISTNAME= libzip-1.7.3 -PKGREVISION= 3 +DISTNAME= libzip-1.8.0 CATEGORIES= archivers devel MASTER_SITES= https://libzip.org/download/ MASTER_SITES+= ${MASTER_SITE_GITHUB:=nih-at/} -EXTRACT_SUFX= .tar.xz GITHUB_RELEASE= v${PKGVERSION_NOREV} +EXTRACT_SUFX= .tar.xz MAINTAINER= wiz@NetBSD.org HOMEPAGE= https://www.libzip.org/ @@ -25,4 +24,5 @@ MAKE_ENV+= LD_LIBRARY_PATH=${WRKSRC}/lib .include "../../devel/zlib/buildlink3.mk" .include "../../archivers/bzip2/buildlink3.mk" .include "../../archivers/xz/buildlink3.mk" +.include "../../archivers/zstd/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |