pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/devel/ocaml-ppx_ignore_instrumentation Created new pac...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/16b939461726
branches:  trunk
changeset: 378653:16b939461726
user:      jaapb <jaapb%pkgsrc.org@localhost>
date:      Thu May 05 06:01:03 2022 +0000

description:
Created new package devel/ocaml-ppx_ignore_instrumentation, v0.15.0.

This package ignores specific instrumentation extensions. Needed as a
dependency for the new version of devel/ocaml-ppx_jane

diffstat:

 devel/ocaml-ppx_ignore_instrumentation/DESCR         |   5 +++++
 devel/ocaml-ppx_ignore_instrumentation/Makefile      |  20 ++++++++++++++++++++
 devel/ocaml-ppx_ignore_instrumentation/PLIST         |  17 +++++++++++++++++
 devel/ocaml-ppx_ignore_instrumentation/buildlink3.mk |  14 ++++++++++++++
 devel/ocaml-ppx_ignore_instrumentation/distinfo      |   5 +++++
 5 files changed, 61 insertions(+), 0 deletions(-)

diffs (81 lines):

diff -r 856509203c0c -r 16b939461726 devel/ocaml-ppx_ignore_instrumentation/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/ocaml-ppx_ignore_instrumentation/DESCR      Thu May 05 06:01:03 2022 +0000
@@ -0,0 +1,5 @@
+A PPX that removes the AST nodes for instrumentation extensions,
+like [%probe], that are currently internal to Jane Street.
+
+Instrumentation extensions don't have semantic effects during
+normal execution so are safe to ignore.
diff -r 856509203c0c -r 16b939461726 devel/ocaml-ppx_ignore_instrumentation/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/ocaml-ppx_ignore_instrumentation/Makefile   Thu May 05 06:01:03 2022 +0000
@@ -0,0 +1,20 @@
+# $NetBSD: Makefile,v 1.1 2022/05/05 06:01:03 jaapb Exp $
+
+DISTNAME=      ${GITHUB_PROJECT}-0.15.0
+PKGNAME=       ocaml-${DISTNAME}
+CATEGORIES=    devel
+MASTER_SITES=  ${MASTER_SITE_GITHUB:=janestreet/}
+GITHUB_PROJECT=        ppx_ignore_instrumentation
+GITHUB_TAG=    v${PKGVERSION_NOREV}
+
+MAINTAINER=    jaapb%NetBSD.org@localhost
+HOMEPAGE=      https://github.com/janestreet/ppx_ignore_instrumentatio/
+COMMENT=       Removes AST nodes for instrumentation extensions
+LICENSE=       mit
+
+USE_LANGUAGES= # none
+OCAML_USE_DUNE=        yes
+
+.include "../../devel/ocaml-ppxlib/buildlink3.mk"
+.include "../../mk/ocaml.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r 856509203c0c -r 16b939461726 devel/ocaml-ppx_ignore_instrumentation/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/ocaml-ppx_ignore_instrumentation/PLIST      Thu May 05 06:01:03 2022 +0000
@@ -0,0 +1,17 @@
+@comment $NetBSD: PLIST,v 1.1 2022/05/05 06:01:03 jaapb Exp $
+${OCAML_SITELIB}/ppx_ignore_instrumentation/META
+${OCAML_SITELIB}/ppx_ignore_instrumentation/dune-package
+${OCAML_SITELIB}/ppx_ignore_instrumentation/opam
+${OCAML_SITELIB}/ppx_ignore_instrumentation/ppx.exe
+${PLIST.ocaml-opt}${OCAML_SITELIB}/ppx_ignore_instrumentation/ppx_ignore_instrumentation.a
+${OCAML_SITELIB}/ppx_ignore_instrumentation/ppx_ignore_instrumentation.cma
+${OCAML_SITELIB}/ppx_ignore_instrumentation/ppx_ignore_instrumentation.cmi
+${OCAML_SITELIB}/ppx_ignore_instrumentation/ppx_ignore_instrumentation.cmt
+${OCAML_SITELIB}/ppx_ignore_instrumentation/ppx_ignore_instrumentation.cmti
+${PLIST.ocaml-opt}${OCAML_SITELIB}/ppx_ignore_instrumentation/ppx_ignore_instrumentation.cmx
+${PLIST.ocaml-opt}${OCAML_SITELIB}/ppx_ignore_instrumentation/ppx_ignore_instrumentation.cmxa
+${PLIST.ocaml-opt}${OCAML_SITELIB}/ppx_ignore_instrumentation/ppx_ignore_instrumentation.cmxs
+${OCAML_SITELIB}/ppx_ignore_instrumentation/ppx_ignore_instrumentation.ml
+${OCAML_SITELIB}/ppx_ignore_instrumentation/ppx_ignore_instrumentation.mli
+share/doc/ppx_ignore_instrumentation/LICENSE.md
+share/doc/ppx_ignore_instrumentation/README.md
diff -r 856509203c0c -r 16b939461726 devel/ocaml-ppx_ignore_instrumentation/buildlink3.mk
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/ocaml-ppx_ignore_instrumentation/buildlink3.mk      Thu May 05 06:01:03 2022 +0000
@@ -0,0 +1,14 @@
+# $NetBSD: buildlink3.mk,v 1.1 2022/05/05 06:01:03 jaapb Exp $
+
+BUILDLINK_TREE+=       ocaml-ppx_ignore_instrumentation
+
+.if !defined(OCAML_PPX_IGNORE_INSTRUMENTATION_BUILDLINK3_MK)
+OCAML_PPX_IGNORE_INSTRUMENTATION_BUILDLINK3_MK:=
+
+BUILDLINK_API_DEPENDS.ocaml-ppx_ignore_instrumentation+=       ocaml-ppx_ignore_instrumentation>=0.15.0
+BUILDLINK_PKGSRCDIR.ocaml-ppx_ignore_instrumentation?=         ../../devel/ocaml-ppx_ignore_instrumentation
+
+.include "../../devel/ocaml-ppxlib/buildlink3.mk"
+.endif # OCAML_PPX_IGNORE_INSTRUMENTATION_BUILDLINK3_MK
+
+BUILDLINK_TREE+=       -ocaml-ppx_ignore_instrumentation
diff -r 856509203c0c -r 16b939461726 devel/ocaml-ppx_ignore_instrumentation/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/ocaml-ppx_ignore_instrumentation/distinfo   Thu May 05 06:01:03 2022 +0000
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1 2022/05/05 06:01:03 jaapb Exp $
+
+BLAKE2s (ppx_ignore_instrumentation-0.15.0.tar.gz) = 75ca510513aa07bd28ca25d402d5e31850b74f4deaeb206159f9e4d4ee57a8eb
+SHA512 (ppx_ignore_instrumentation-0.15.0.tar.gz) = ec411cb7a191fcb36f9a29f8ff3839db6f4031e30fa3444896a07235950ca04562a701b3bc7bc5df95e3ff82cfe8996be75bd5dce4bcce8a491898df1bffc50d
+Size (ppx_ignore_instrumentation-0.15.0.tar.gz) = 3679 bytes



Home | Main Index | Thread Index | Old Index