pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/ocaml-reactiveData Updated devel/ocaml-reactiveD...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/229d1d69171e
branches:  trunk
changeset: 378988:229d1d69171e
user:      jaapb <jaapb%pkgsrc.org@localhost>
date:      Tue May 10 08:14:02 2022 +0000

description:
Updated devel/ocaml-reactiveData to version 0.3.

This adds support for the upcoming OCaml 5.0 and switches to dune for
building.

diffstat:

 devel/ocaml-reactiveData/Makefile      |  30 ++++--------------------------
 devel/ocaml-reactiveData/PLIST         |  10 +++++++++-
 devel/ocaml-reactiveData/buildlink3.mk |   4 ++--
 devel/ocaml-reactiveData/distinfo      |   8 ++++----
 4 files changed, 19 insertions(+), 33 deletions(-)

diffs (101 lines):

diff -r cf187d23ac77 -r 229d1d69171e devel/ocaml-reactiveData/Makefile
--- a/devel/ocaml-reactiveData/Makefile Tue May 10 08:11:15 2022 +0000
+++ b/devel/ocaml-reactiveData/Makefile Tue May 10 08:14:02 2022 +0000
@@ -1,40 +1,18 @@
-# $NetBSD: Makefile,v 1.15 2021/03/08 08:12:59 jaapb Exp $
+# $NetBSD: Makefile,v 1.16 2022/05/10 08:14:02 jaapb Exp $
 
-GITHUB_PROJECT=        reactiveData
-DISTNAME=      ${GITHUB_PROJECT}-0.2.2
+DISTNAME=      ${GITHUB_PROJECT}-0.3
 PKGNAME=       ocaml-${DISTNAME}
-PKGREVISION=   1
 CATEGORIES=    devel
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=ocsigen/}
+GITHUB_PROJECT=        reactiveData
 
 MAINTAINER=    jaapb%NetBSD.org@localhost
 HOMEPAGE=      https://github.com/ocsigen/reactiveData
 COMMENT=       Functional reactive programming library
 LICENSE=       gnu-lgpl-v2.1
 
-OCAML_USE_FINDLIB=     yes
+OCAML_USE_DUNE=        yes
 
 .include "../../mk/ocaml.mk"
-
-INSTALL_FILES= cma cmi mli
-.if ${OCAML_USE_OPT_COMPILER} == "yes"
-MAKE_ENV+=     NATIVE=true
-INSTALL_FILES+=        a cmx cmxa cmxs
-.else
-MAKE_ENV+=     NATIVE=false
-.endif
-BUILD_TARGET=  build
-
-INSTALLATION_DIRS+=    ${OCAML_SITELIBDIR}/reactiveData
-
-do-install:
-       ${INSTALL_DATA} ${WRKSRC}/_build/pkg/META \
-       ${DESTDIR}/${PREFIX}/${OCAML_SITELIBDIR}/reactiveData
-       for i in ${INSTALL_FILES}; do \
-               ${INSTALL_DATA} ${WRKSRC}/_build/src/reactiveData.$$i \
-               ${DESTDIR}/${PREFIX}/${OCAML_SITELIBDIR}/reactiveData; \
-       done
-
 .include "../../devel/ocaml-react/buildlink3.mk"
-.include "../../devel/ocamlbuild/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r cf187d23ac77 -r 229d1d69171e devel/ocaml-reactiveData/PLIST
--- a/devel/ocaml-reactiveData/PLIST    Tue May 10 08:11:15 2022 +0000
+++ b/devel/ocaml-reactiveData/PLIST    Tue May 10 08:14:02 2022 +0000
@@ -1,9 +1,17 @@
-@comment $NetBSD: PLIST,v 1.1 2015/01/20 15:19:54 jaapb Exp $
+@comment $NetBSD: PLIST,v 1.2 2022/05/10 08:14:02 jaapb Exp $
 ${OCAML_SITELIB}/reactiveData/META
+${OCAML_SITELIB}/reactiveData/dune-package
+${OCAML_SITELIB}/reactiveData/opam
 ${PLIST.ocaml-opt}${OCAML_SITELIB}/reactiveData/reactiveData.a
 ${OCAML_SITELIB}/reactiveData/reactiveData.cma
 ${OCAML_SITELIB}/reactiveData/reactiveData.cmi
+${OCAML_SITELIB}/reactiveData/reactiveData.cmt
+${OCAML_SITELIB}/reactiveData/reactiveData.cmti
 ${PLIST.ocaml-opt}${OCAML_SITELIB}/reactiveData/reactiveData.cmx
 ${PLIST.ocaml-opt}${OCAML_SITELIB}/reactiveData/reactiveData.cmxa
 ${PLIST.ocaml-opt}${OCAML_SITELIB}/reactiveData/reactiveData.cmxs
+${OCAML_SITELIB}/reactiveData/reactiveData.ml
 ${OCAML_SITELIB}/reactiveData/reactiveData.mli
+share/doc/reactiveData/CHANGES.md
+share/doc/reactiveData/LICENSE
+share/doc/reactiveData/README.md
diff -r cf187d23ac77 -r 229d1d69171e devel/ocaml-reactiveData/buildlink3.mk
--- a/devel/ocaml-reactiveData/buildlink3.mk    Tue May 10 08:11:15 2022 +0000
+++ b/devel/ocaml-reactiveData/buildlink3.mk    Tue May 10 08:14:02 2022 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.5 2019/03/05 17:14:52 jaapb Exp $
+# $NetBSD: buildlink3.mk,v 1.6 2022/05/10 08:14:02 jaapb Exp $
 
 BUILDLINK_TREE+=       ocaml-reactiveData
 
@@ -6,7 +6,7 @@
 OCAML_REACTIVEDATA_BUILDLINK3_MK:=
 
 BUILDLINK_API_DEPENDS.ocaml-reactiveData+=     ocaml-reactiveData>=0.2.1
-BUILDLINK_ABI_DEPENDS.ocaml-reactiveData+=     ocaml-reactiveData>=0.2.2
+BUILDLINK_ABI_DEPENDS.ocaml-reactiveData+=     ocaml-reactiveData>=0.3
 BUILDLINK_PKGSRCDIR.ocaml-reactiveData?=       ../../devel/ocaml-reactiveData
 
 .include "../../devel/ocaml-react/buildlink3.mk"
diff -r cf187d23ac77 -r 229d1d69171e devel/ocaml-reactiveData/distinfo
--- a/devel/ocaml-reactiveData/distinfo Tue May 10 08:11:15 2022 +0000
+++ b/devel/ocaml-reactiveData/distinfo Tue May 10 08:14:02 2022 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.7 2021/10/26 10:15:55 nia Exp $
+$NetBSD: distinfo,v 1.8 2022/05/10 08:14:02 jaapb Exp $
 
-BLAKE2s (reactiveData-0.2.2.tar.gz) = 3b2fa789ec2b2eaa9c7e396b8424d1f1ac51b5b07e57bfb87587922719d41297
-SHA512 (reactiveData-0.2.2.tar.gz) = 56c03d528feec769718c92075c49759dac287b93fe97d816da5cfadb26836d3855176cd81d4cec4441591dd9314e881045912a37edf584ad149ebd048016a4bf
-Size (reactiveData-0.2.2.tar.gz) = 23512 bytes
+BLAKE2s (reactiveData-0.3.tar.gz) = 0334fe430e1c0b4b7efc83f9f64a6cc05c990ef4b2004d4a282594219250dd90
+SHA512 (reactiveData-0.3.tar.gz) = ed3e1057f457b4c76060a7f6aad2a555b5a2baebe3d2b8938f2e6f5acad448d09a20b7b82fe8bb3ebb97e5c5946d70214d5bd062311af564752e40b880f75603
+Size (reactiveData-0.3.tar.gz) = 12559 bytes



Home | Main Index | Thread Index | Old Index