pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/devel/ocaml-compiler-libs Updated devel/ocaml-compiler...
details: https://anonhg.NetBSD.org/pkgsrc/rev/718304f584be
branches: trunk
changeset: 409007:718304f584be
user: jaapb <jaapb%pkgsrc.org@localhost>
date: Tue Jan 14 22:14:42 2020 +0000
description:
Updated devel/ocaml-compiler-libs to version 0.12.0.
This mostly involves changing the build system from jbuilder to dune.
diffstat:
devel/ocaml-compiler-libs/Makefile | 5 ++---
devel/ocaml-compiler-libs/PLIST | 12 ++++++++++--
devel/ocaml-compiler-libs/buildlink3.mk | 4 ++--
devel/ocaml-compiler-libs/distinfo | 10 +++++-----
4 files changed, 19 insertions(+), 12 deletions(-)
diffs (80 lines):
diff -r cd6b6ce9f279 -r 718304f584be devel/ocaml-compiler-libs/Makefile
--- a/devel/ocaml-compiler-libs/Makefile Tue Jan 14 22:14:20 2020 +0000
+++ b/devel/ocaml-compiler-libs/Makefile Tue Jan 14 22:14:42 2020 +0000
@@ -1,10 +1,9 @@
-# $NetBSD: Makefile,v 1.10 2019/03/05 17:38:30 jaapb Exp $
+# $NetBSD: Makefile,v 1.11 2020/01/14 22:14:42 jaapb Exp $
-VERSION= 0.11.0
+VERSION= 0.12.1
GITHUB_PROJECT= ocaml-compiler-libs
GITHUB_TAG= v${VERSION}
DISTNAME= ${GITHUB_PROJECT}-${VERSION}
-PKGREVISION= 4
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_GITHUB:=janestreet/}
diff -r cd6b6ce9f279 -r 718304f584be devel/ocaml-compiler-libs/PLIST
--- a/devel/ocaml-compiler-libs/PLIST Tue Jan 14 22:14:20 2020 +0000
+++ b/devel/ocaml-compiler-libs/PLIST Tue Jan 14 22:14:42 2020 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.3 2019/03/05 17:38:30 jaapb Exp $
+@comment $NetBSD: PLIST,v 1.4 2020/01/14 22:14:42 jaapb Exp $
${OCAML_SITELIB}/ocaml-compiler-libs/META
${PLIST.ocaml-opt}${OCAML_SITELIB}/ocaml-compiler-libs/bytecomp/ocaml_bytecomp.a
${OCAML_SITELIB}/ocaml-compiler-libs/bytecomp/ocaml_bytecomp.cma
@@ -18,6 +18,14 @@
${OCAML_SITELIB}/ocaml-compiler-libs/common/ocaml_common.ml
${OCAML_SITELIB}/ocaml-compiler-libs/dune-package
${OCAML_SITELIB}/ocaml-compiler-libs/opam
+${PLIST.ocaml-opt}${OCAML_SITELIB}/ocaml-compiler-libs/optcomp/ocaml_optcomp.a
+${OCAML_SITELIB}/ocaml-compiler-libs/optcomp/ocaml_optcomp.cma
+${OCAML_SITELIB}/ocaml-compiler-libs/optcomp/ocaml_optcomp.cmi
+${OCAML_SITELIB}/ocaml-compiler-libs/optcomp/ocaml_optcomp.cmt
+${PLIST.ocaml-opt}${OCAML_SITELIB}/ocaml-compiler-libs/optcomp/ocaml_optcomp.cmx
+${PLIST.ocaml-opt}${OCAML_SITELIB}/ocaml-compiler-libs/optcomp/ocaml_optcomp.cmxa
+${PLIST.ocaml-opt}${OCAML_SITELIB}/ocaml-compiler-libs/optcomp/ocaml_optcomp.cmxs
+${OCAML_SITELIB}/ocaml-compiler-libs/optcomp/ocaml_optcomp.ml
${PLIST.ocaml-opt}${OCAML_SITELIB}/ocaml-compiler-libs/shadow/ocaml_shadow.a
${OCAML_SITELIB}/ocaml-compiler-libs/shadow/ocaml_shadow.cma
${OCAML_SITELIB}/ocaml-compiler-libs/shadow/ocaml_shadow.cmi
@@ -34,5 +42,5 @@
${PLIST.ocaml-opt}${OCAML_SITELIB}/ocaml-compiler-libs/toplevel/ocaml_toplevel.cmxa
${PLIST.ocaml-opt}${OCAML_SITELIB}/ocaml-compiler-libs/toplevel/ocaml_toplevel.cmxs
${OCAML_SITELIB}/ocaml-compiler-libs/toplevel/ocaml_toplevel.ml
-share/doc/ocaml-compiler-libs/LICENSE.txt
+share/doc/ocaml-compiler-libs/LICENSE.md
share/doc/ocaml-compiler-libs/README.org
diff -r cd6b6ce9f279 -r 718304f584be devel/ocaml-compiler-libs/buildlink3.mk
--- a/devel/ocaml-compiler-libs/buildlink3.mk Tue Jan 14 22:14:20 2020 +0000
+++ b/devel/ocaml-compiler-libs/buildlink3.mk Tue Jan 14 22:14:42 2020 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.6 2019/03/05 17:38:30 jaapb Exp $
+# $NetBSD: buildlink3.mk,v 1.7 2020/01/14 22:14:42 jaapb Exp $
BUILDLINK_TREE+= ocaml-compiler-libs
@@ -6,7 +6,7 @@
OCAML_COMPILER_LIBS_BUILDLINK3_MK:=
BUILDLINK_API_DEPENDS.ocaml-compiler-libs+= ocaml-compiler-libs>=0.9.0
-BUILDLINK_ABI_DEPENDS.ocaml-compiler-libs+= ocaml-compiler-libs>=0.11.0nb4
+BUILDLINK_ABI_DEPENDS.ocaml-compiler-libs+= ocaml-compiler-libs>=0.12.1
BUILDLINK_PKGSRCDIR.ocaml-compiler-libs?= ../../devel/ocaml-compiler-libs
.endif # OCAML_COMPILER_LIBS_BUILDLINK3_MK
diff -r cd6b6ce9f279 -r 718304f584be devel/ocaml-compiler-libs/distinfo
--- a/devel/ocaml-compiler-libs/distinfo Tue Jan 14 22:14:20 2020 +0000
+++ b/devel/ocaml-compiler-libs/distinfo Tue Jan 14 22:14:42 2020 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.2 2018/05/09 14:42:48 jaapb Exp $
+$NetBSD: distinfo,v 1.3 2020/01/14 22:14:42 jaapb Exp $
-SHA1 (ocaml-compiler-libs-0.11.0.tar.gz) = 8b8275a30ff8095d5f5d18dd5869ccff411844c9
-RMD160 (ocaml-compiler-libs-0.11.0.tar.gz) = 3f960135e58dbea2d79f3d92e3e58cf25803b1cc
-SHA512 (ocaml-compiler-libs-0.11.0.tar.gz) = 93acbb58b71b93901b90fce14957e4d8249a5268e5db1f34294a237bc8451ebe5cf3995d8f64172d332efdd7399380670eb33a3f5ccf143066fc34ce534359e9
-Size (ocaml-compiler-libs-0.11.0.tar.gz) = 6965 bytes
+SHA1 (ocaml-compiler-libs-0.12.1.tar.gz) = 2cf410247c584c27ae51f1205507bc6d0f9ed838
+RMD160 (ocaml-compiler-libs-0.12.1.tar.gz) = 52108127f4b67ca5dad88873cf2f01c6dcb7bc79
+SHA512 (ocaml-compiler-libs-0.12.1.tar.gz) = f4358ab6a1be8405b077d690ca636cc0af9507fdc7836609e0ddc1f841488f24cb9741869f1ea95ca3dff82f25f60dcf907f4f7c049bdf282c1936f3fefd6808
+Size (ocaml-compiler-libs-0.12.1.tar.gz) = 4790 bytes
Home |
Main Index |
Thread Index |
Old Index