Tue May 3 09:27:10 2022 UTC ()
Updated archivers/ocaml-zip to version 1.11.

This includes a lot of minor changes and bugfixes, including better
support for newer OCaml versions.


(jaapb)
diff -r1.26 -r1.27 pkgsrc/archivers/ocaml-zip/Makefile
diff -r1.6 -r1.7 pkgsrc/archivers/ocaml-zip/PLIST
diff -r1.6 -r1.7 pkgsrc/archivers/ocaml-zip/buildlink3.mk
diff -r1.13 -r1.14 pkgsrc/archivers/ocaml-zip/distinfo

cvs diff -r1.26 -r1.27 pkgsrc/archivers/ocaml-zip/Makefile (expand / switch to unified diff)

--- pkgsrc/archivers/ocaml-zip/Makefile 2021/03/08 08:12:46 1.26
+++ pkgsrc/archivers/ocaml-zip/Makefile 2022/05/03 09:27:09 1.27
@@ -1,22 +1,21 @@ @@ -1,22 +1,21 @@
1# $NetBSD: Makefile,v 1.26 2021/03/08 08:12:46 jaapb Exp $ 1# $NetBSD: Makefile,v 1.27 2022/05/03 09:27:09 jaapb Exp $
2# 2#
3 3
4VERSION= 1.07 4VERSION= 1.11
5GITHUB_PROJECT= camlzip 5GITHUB_PROJECT= camlzip
6GITHUB_TAG= rel${VERSION:S/.//} 6GITHUB_TAG= rel${VERSION:S/.//}
7DISTNAME= ${GITHUB_PROJECT}-${VERSION} 7DISTNAME= ${GITHUB_PROJECT}-${VERSION}
8PKGNAME= ocaml-zip-${VERSION} 8PKGNAME= ocaml-zip-${VERSION}
9PKGREVISION= 6 
10CATEGORIES= archivers 9CATEGORIES= archivers
11MASTER_SITES= ${MASTER_SITE_GITHUB:=xavierleroy/} 10MASTER_SITES= ${MASTER_SITE_GITHUB:=xavierleroy/}
12LICENSE= gnu-lgpl-v2.1 11LICENSE= gnu-lgpl-v2.1
13 12
14MAINTAINER= jaapb@NetBSD.org 13MAINTAINER= jaapb@NetBSD.org
15HOMEPAGE= https://github.com/xavierleroy/camlzip 14HOMEPAGE= https://github.com/xavierleroy/camlzip
16COMMENT= OCaml library to manipulate ZIP/GZIP/JAR archives 15COMMENT= OCaml library to manipulate ZIP/GZIP/JAR archives
17 16
18BUILD_TARGET= all 17BUILD_TARGET= all
19INSTALL_TARGET= install-findlib 18INSTALL_TARGET= install-findlib
20USE_TOOLS+= gmake 19USE_TOOLS+= gmake
21OCAML_USE_FINDLIB= yes 20OCAML_USE_FINDLIB= yes
22 21

cvs diff -r1.6 -r1.7 pkgsrc/archivers/ocaml-zip/PLIST (expand / switch to unified diff)

--- pkgsrc/archivers/ocaml-zip/PLIST 2017/07/11 10:00:51 1.6
+++ pkgsrc/archivers/ocaml-zip/PLIST 2022/05/03 09:27:09 1.7
@@ -1,18 +1,24 @@ @@ -1,18 +1,24 @@
1@comment $NetBSD: PLIST,v 1.6 2017/07/11 10:00:51 jaapb Exp $ 1@comment $NetBSD: PLIST,v 1.7 2022/05/03 09:27:09 jaapb Exp $
2${OCAML_SITELIB}/camlzip/META 2${OCAML_SITELIB}/camlzip/META
3${OCAML_SITELIB}/zip/META 3${OCAML_SITELIB}/zip/META
4${OCAML_SITELIB}/zip/dllcamlzip.so 4${OCAML_SITELIB}/zip/dllcamlzip.so
5${OCAML_SITELIB}/zip/gzip.cmi 5${OCAML_SITELIB}/zip/gzip.cmi
 6${OCAML_SITELIB}/zip/gzip.cmt
 7${OCAML_SITELIB}/zip/gzip.cmti
6${PLIST.ocaml-opt}${OCAML_SITELIB}/zip/gzip.cmx 8${PLIST.ocaml-opt}${OCAML_SITELIB}/zip/gzip.cmx
7${OCAML_SITELIB}/zip/gzip.mli 9${OCAML_SITELIB}/zip/gzip.mli
8${PLIST.ocaml-opt}${OCAML_SITELIB}/zip/libcamlzip.a 10${PLIST.ocaml-opt}${OCAML_SITELIB}/zip/libcamlzip.a
9${PLIST.ocaml-opt}${OCAML_SITELIB}/zip/zip.a 11${PLIST.ocaml-opt}${OCAML_SITELIB}/zip/zip.a
10${OCAML_SITELIB}/zip/zip.cma 12${OCAML_SITELIB}/zip/zip.cma
11${OCAML_SITELIB}/zip/zip.cmi 13${OCAML_SITELIB}/zip/zip.cmi
 14${OCAML_SITELIB}/zip/zip.cmt
 15${OCAML_SITELIB}/zip/zip.cmti
12${PLIST.ocaml-opt}${OCAML_SITELIB}/zip/zip.cmx 16${PLIST.ocaml-opt}${OCAML_SITELIB}/zip/zip.cmx
13${PLIST.ocaml-opt}${OCAML_SITELIB}/zip/zip.cmxa 17${PLIST.ocaml-opt}${OCAML_SITELIB}/zip/zip.cmxa
14${PLIST.ocaml-opt}${OCAML_SITELIB}/zip/zip.cmxs 18${PLIST.ocaml-opt}${OCAML_SITELIB}/zip/zip.cmxs
15${OCAML_SITELIB}/zip/zip.mli 19${OCAML_SITELIB}/zip/zip.mli
16${OCAML_SITELIB}/zip/zlib.cmi 20${OCAML_SITELIB}/zip/zlib.cmi
 21${OCAML_SITELIB}/zip/zlib.cmt
 22${OCAML_SITELIB}/zip/zlib.cmti
17${PLIST.ocaml-opt}${OCAML_SITELIB}/zip/zlib.cmx 23${PLIST.ocaml-opt}${OCAML_SITELIB}/zip/zlib.cmx
18${OCAML_SITELIB}/zip/zlib.mli 24${OCAML_SITELIB}/zip/zlib.mli

cvs diff -r1.6 -r1.7 pkgsrc/archivers/ocaml-zip/buildlink3.mk (expand / switch to unified diff)

--- pkgsrc/archivers/ocaml-zip/buildlink3.mk 2018/07/19 15:15:20 1.6
+++ pkgsrc/archivers/ocaml-zip/buildlink3.mk 2022/05/03 09:27:09 1.7
@@ -1,15 +1,15 @@ @@ -1,15 +1,15 @@
1# $NetBSD: buildlink3.mk,v 1.6 2018/07/19 15:15:20 jaapb Exp $ 1# $NetBSD: buildlink3.mk,v 1.7 2022/05/03 09:27:09 jaapb Exp $
2 2
3BUILDLINK_TREE+= ocaml-zip 3BUILDLINK_TREE+= ocaml-zip
4 4
5.if !defined(OCAML_ZIP_BUILDLINK3_MK) 5.if !defined(OCAML_ZIP_BUILDLINK3_MK)
6OCAML_ZIP_BUILDLINK3_MK:= 6OCAML_ZIP_BUILDLINK3_MK:=
7 7
8BUILDLINK_API_DEPENDS.ocaml-zip+= ocaml-zip>=1.05nb6 8BUILDLINK_API_DEPENDS.ocaml-zip+= ocaml-zip>=1.05nb6
9BUILDLINK_ABI_DEPENDS.ocaml-zip+= ocaml-zip>=1.07nb4 9BUILDLINK_ABI_DEPENDS.ocaml-zip+= ocaml-zip>=1.11
10BUILDLINK_PKGSRCDIR.ocaml-zip?= ../../archivers/ocaml-zip 10BUILDLINK_PKGSRCDIR.ocaml-zip?= ../../archivers/ocaml-zip
11 11
12.include "../../devel/zlib/buildlink3.mk" 12.include "../../devel/zlib/buildlink3.mk"
13.endif # OCAML_ZIP_BUILDLINK3_MK 13.endif # OCAML_ZIP_BUILDLINK3_MK
14 14
15BUILDLINK_TREE+= -ocaml-zip 15BUILDLINK_TREE+= -ocaml-zip

cvs diff -r1.13 -r1.14 pkgsrc/archivers/ocaml-zip/distinfo (expand / switch to unified diff)

--- pkgsrc/archivers/ocaml-zip/distinfo 2021/10/26 09:57:11 1.13
+++ pkgsrc/archivers/ocaml-zip/distinfo 2022/05/03 09:27:09 1.14
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.13 2021/10/26 09:57:11 nia Exp $ 1$NetBSD: distinfo,v 1.14 2022/05/03 09:27:09 jaapb Exp $
2 2
3BLAKE2s (camlzip-1.07.tar.gz) = f5d75f3e1716febe1e2d4dcf86940031d6d1f46ad00d2792b268fc173e3266e6 3BLAKE2s (camlzip-1.11.tar.gz) = 5f349eebac193485d2e9c06b34663640a89032ad0f0df31c28da1526577ac86c
4SHA512 (camlzip-1.07.tar.gz) = b92e9db002b9b398fd132c6ecd8098fac4cc7ddb3f770cc412990dcdf4bd62ba358c762d31fb0b5cd6b32f20d3bf4b3410ca6e86c511a438b92ece940f9831bd 4SHA512 (camlzip-1.11.tar.gz) = 4d69ef900437e66e00cd345497ec70f407f28cd8344ee5f2fad685d3bfe356924597d1854b752f2841b4007f96d6e0307cfae7e13cfb6f74951ae3eba5198a06
5Size (camlzip-1.07.tar.gz) = 26652 bytes 5Size (camlzip-1.11.tar.gz) = 28483 bytes