pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/devel/ocaml-ppx_typerep_conv Added devel/ocaml-ppx_typ...
details: https://anonhg.NetBSD.org/pkgsrc/rev/dc481a55e29b
branches: trunk
changeset: 331439:dc481a55e29b
user: jaapb <jaapb%pkgsrc.org@localhost>
date: Tue Mar 19 10:32:11 2019 +0000
description:
Added devel/ocaml-ppx_typerep_conv, automatic runtime type generation
diffstat:
devel/ocaml-ppx_typerep_conv/DESCR | 1 +
devel/ocaml-ppx_typerep_conv/Makefile | 22 ++++++++++++++++++++++
devel/ocaml-ppx_typerep_conv/PLIST | 17 +++++++++++++++++
devel/ocaml-ppx_typerep_conv/buildlink3.mk | 13 +++++++++++++
devel/ocaml-ppx_typerep_conv/distinfo | 6 ++++++
5 files changed, 59 insertions(+), 0 deletions(-)
diffs (79 lines):
diff -r 76f1595da487 -r dc481a55e29b devel/ocaml-ppx_typerep_conv/DESCR
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/ocaml-ppx_typerep_conv/DESCR Tue Mar 19 10:32:11 2019 +0000
@@ -0,0 +1,1 @@
+Automatic generation of runtime types from type definitions.
diff -r 76f1595da487 -r dc481a55e29b devel/ocaml-ppx_typerep_conv/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/ocaml-ppx_typerep_conv/Makefile Tue Mar 19 10:32:11 2019 +0000
@@ -0,0 +1,22 @@
+# $NetBSD: Makefile,v 1.1 2019/03/19 10:32:11 jaapb Exp $
+
+GITHUB_PROJECT= ppx_typerep_conv
+GITHUB_TAG= v${PKGVERSION_NOREV}
+DISTNAME= ${GITHUB_PROJECT}-0.12.0
+PKGNAME= ocaml-${DISTNAME}
+CATEGORIES= devel
+MASTER_SITES= ${MASTER_SITE_GITHUB:=janestreet/}
+
+MAINTAINER= jaapb%NetBSD.org@localhost
+HOMEPAGE= https://github.com/typerep_convstreet/ppx_typerep_conv/
+COMMENT= Generation of runtime types from type declarations in OCaml
+LICENSE= mit
+
+USE_LANGUAGES= # none
+OCAML_USE_DUNE= yes
+
+.include "../../devel/ocaml-base/buildlink3.mk"
+.include "../../devel/ocaml-ppxlib/buildlink3.mk"
+.include "../../devel/ocaml-typerep/buildlink3.mk"
+.include "../../mk/ocaml.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r 76f1595da487 -r dc481a55e29b devel/ocaml-ppx_typerep_conv/PLIST
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/ocaml-ppx_typerep_conv/PLIST Tue Mar 19 10:32:11 2019 +0000
@@ -0,0 +1,17 @@
+@comment $NetBSD: PLIST,v 1.1 2019/03/19 10:32:11 jaapb Exp $
+${OCAML_SITELIB}/ppx_typerep_conv/META
+${OCAML_SITELIB}/ppx_typerep_conv/dune-package
+${OCAML_SITELIB}/ppx_typerep_conv/opam
+${PLIST.ocaml-opt}${OCAML_SITELIB}/ppx_typerep_conv/ppx_typerep_conv.a
+${OCAML_SITELIB}/ppx_typerep_conv/ppx_typerep_conv.cma
+${OCAML_SITELIB}/ppx_typerep_conv/ppx_typerep_conv.cmi
+${OCAML_SITELIB}/ppx_typerep_conv/ppx_typerep_conv.cmt
+${OCAML_SITELIB}/ppx_typerep_conv/ppx_typerep_conv.cmti
+${PLIST.ocaml-opt}${OCAML_SITELIB}/ppx_typerep_conv/ppx_typerep_conv.cmx
+${PLIST.ocaml-opt}${OCAML_SITELIB}/ppx_typerep_conv/ppx_typerep_conv.cmxa
+${PLIST.ocaml-opt}${OCAML_SITELIB}/ppx_typerep_conv/ppx_typerep_conv.cmxs
+${OCAML_SITELIB}/ppx_typerep_conv/ppx_typerep_conv.ml
+${OCAML_SITELIB}/ppx_typerep_conv/ppx_typerep_conv.mli
+share/doc/ppx_typerep_conv/CHANGES.md
+share/doc/ppx_typerep_conv/LICENSE.md
+share/doc/ppx_typerep_conv/README.md
diff -r 76f1595da487 -r dc481a55e29b devel/ocaml-ppx_typerep_conv/buildlink3.mk
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/ocaml-ppx_typerep_conv/buildlink3.mk Tue Mar 19 10:32:11 2019 +0000
@@ -0,0 +1,13 @@
+# $NetBSD: buildlink3.mk,v 1.1 2019/03/19 10:32:11 jaapb Exp $
+
+BUILDLINK_TREE+= ocaml-ppx_typerep_conv
+
+.if !defined(OCAML_PPX_TYPEREP_CONV_BUILDLINK3_MK)
+OCAML_PPX_TYPEREP_CONV_BUILDLINK3_MK:=
+
+BUILDLINK_API_DEPENDS.ocaml-ppx_typerep_conv+= ocaml-ppx_typerep_conv>=0.12.0
+BUILDLINK_PKGSRCDIR.ocaml-ppx_typerep_conv?= ../../devel/ocaml-ppx_typerep_conv
+
+.endif # OCAML_PPX_TYPEREP_CONV_BUILDLINK3_MK
+
+BUILDLINK_TREE+= -ocaml-ppx_typerep_conv
diff -r 76f1595da487 -r dc481a55e29b devel/ocaml-ppx_typerep_conv/distinfo
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/ocaml-ppx_typerep_conv/distinfo Tue Mar 19 10:32:11 2019 +0000
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2019/03/19 10:32:11 jaapb Exp $
+
+SHA1 (ppx_typerep_conv-0.12.0.tar.gz) = ad0c1133d30f973aa64b7735549803728e938099
+RMD160 (ppx_typerep_conv-0.12.0.tar.gz) = 819a0b296484c8f7a59fb0cfd21f458aff80b16f
+SHA512 (ppx_typerep_conv-0.12.0.tar.gz) = 309cfe2ac18b66553e0b620466505a959a302be41b463ae4dbc4b4136c12917b47682bc65fe427dfe1d54424ecb26b920c98711ec01e332d54634c26b5c76651
+Size (ppx_typerep_conv-0.12.0.tar.gz) = 9377 bytes
Home |
Main Index |
Thread Index |
Old Index