pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/devel/ocaml-ppx_module_timer Added devel/ocaml-ppx_mod...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/340b3c5b91b8
branches:  trunk
changeset: 320949:340b3c5b91b8
user:      jaapb <jaapb%pkgsrc.org@localhost>
date:      Wed Mar 13 11:53:56 2019 +0000

description:
Added devel/ocaml-ppx_module_timer, recording module startup times.

diffstat:

 devel/ocaml-ppx_module_timer/DESCR         |   4 ++++
 devel/ocaml-ppx_module_timer/Makefile      |  24 ++++++++++++++++++++++++
 devel/ocaml-ppx_module_timer/PLIST         |  26 ++++++++++++++++++++++++++
 devel/ocaml-ppx_module_timer/buildlink3.mk |  13 +++++++++++++
 devel/ocaml-ppx_module_timer/distinfo      |   6 ++++++
 5 files changed, 73 insertions(+), 0 deletions(-)

diffs (93 lines):

diff -r 639950f1bb89 -r 340b3c5b91b8 devel/ocaml-ppx_module_timer/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/ocaml-ppx_module_timer/DESCR        Wed Mar 13 11:53:56 2019 +0000
@@ -0,0 +1,4 @@
+A ppx extension to record module startup times.
+
+Modules using ppx_module_timer now have instrumentation to record their startup
+time.
diff -r 639950f1bb89 -r 340b3c5b91b8 devel/ocaml-ppx_module_timer/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/ocaml-ppx_module_timer/Makefile     Wed Mar 13 11:53:56 2019 +0000
@@ -0,0 +1,24 @@
+# $NetBSD: Makefile,v 1.1 2019/03/13 11:53:56 jaapb Exp $
+
+GITHUB_PROJECT=        ppx_module_timer
+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/janestreet/ppx_module_timer/
+COMMENT=       PPX rewriter that records top-level module startup times
+LICENSE=       mit
+
+USE_LANGUAGES= # none
+OCAML_USE_DUNE=        yes
+
+.include "../../devel/ocaml-base/buildlink3.mk"
+.include "../../devel/ocaml-ppx_base/buildlink3.mk"
+.include "../../devel/ocaml-ppxlib/buildlink3.mk"
+.include "../../devel/ocaml-stdio/buildlink3.mk"
+.include "../../time/ocaml-time_now/buildlink3.mk"
+.include "../../mk/ocaml.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r 639950f1bb89 -r 340b3c5b91b8 devel/ocaml-ppx_module_timer/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/ocaml-ppx_module_timer/PLIST        Wed Mar 13 11:53:56 2019 +0000
@@ -0,0 +1,26 @@
+@comment $NetBSD: PLIST,v 1.1 2019/03/13 11:53:56 jaapb Exp $
+${OCAML_SITELIB}/ppx_module_timer/META
+${OCAML_SITELIB}/ppx_module_timer/dune-package
+${OCAML_SITELIB}/ppx_module_timer/opam
+${PLIST.ocaml-opt}${OCAML_SITELIB}/ppx_module_timer/ppx_module_timer.a
+${OCAML_SITELIB}/ppx_module_timer/ppx_module_timer.cma
+${OCAML_SITELIB}/ppx_module_timer/ppx_module_timer.cmi
+${OCAML_SITELIB}/ppx_module_timer/ppx_module_timer.cmt
+${OCAML_SITELIB}/ppx_module_timer/ppx_module_timer.cmti
+${PLIST.ocaml-opt}${OCAML_SITELIB}/ppx_module_timer/ppx_module_timer.cmx
+${PLIST.ocaml-opt}${OCAML_SITELIB}/ppx_module_timer/ppx_module_timer.cmxa
+${PLIST.ocaml-opt}${OCAML_SITELIB}/ppx_module_timer/ppx_module_timer.cmxs
+${OCAML_SITELIB}/ppx_module_timer/ppx_module_timer.ml
+${OCAML_SITELIB}/ppx_module_timer/ppx_module_timer.mli
+${PLIST.ocaml-opt}${OCAML_SITELIB}/ppx_module_timer/runtime/ppx_module_timer_runtime.a
+${OCAML_SITELIB}/ppx_module_timer/runtime/ppx_module_timer_runtime.cma
+${OCAML_SITELIB}/ppx_module_timer/runtime/ppx_module_timer_runtime.cmi
+${OCAML_SITELIB}/ppx_module_timer/runtime/ppx_module_timer_runtime.cmt
+${OCAML_SITELIB}/ppx_module_timer/runtime/ppx_module_timer_runtime.cmti
+${PLIST.ocaml-opt}${OCAML_SITELIB}/ppx_module_timer/runtime/ppx_module_timer_runtime.cmx
+${PLIST.ocaml-opt}${OCAML_SITELIB}/ppx_module_timer/runtime/ppx_module_timer_runtime.cmxa
+${PLIST.ocaml-opt}${OCAML_SITELIB}/ppx_module_timer/runtime/ppx_module_timer_runtime.cmxs
+${OCAML_SITELIB}/ppx_module_timer/runtime/ppx_module_timer_runtime.ml
+${OCAML_SITELIB}/ppx_module_timer/runtime/ppx_module_timer_runtime.mli
+share/doc/ppx_module_timer/LICENSE.md
+share/doc/ppx_module_timer/README.md
diff -r 639950f1bb89 -r 340b3c5b91b8 devel/ocaml-ppx_module_timer/buildlink3.mk
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/ocaml-ppx_module_timer/buildlink3.mk        Wed Mar 13 11:53:56 2019 +0000
@@ -0,0 +1,13 @@
+# $NetBSD: buildlink3.mk,v 1.1 2019/03/13 11:53:56 jaapb Exp $
+
+BUILDLINK_TREE+=       ocaml-ppx_module_timer
+
+.if !defined(OCAML_PPX_MODULE_TIMER_BUILDLINK3_MK)
+OCAML_PPX_MODULE_TIMER_BUILDLINK3_MK:=
+
+BUILDLINK_API_DEPENDS.ocaml-ppx_module_timer+= ocaml-ppx_module_timer>=0.12.0
+BUILDLINK_PKGSRCDIR.ocaml-ppx_module_timer?=   ../../devel/ocaml-ppx_module_timer
+
+.endif # OCAML_PPX_MODULE_TIMER_BUILDLINK3_MK
+
+BUILDLINK_TREE+=       -ocaml-ppx_module_timer
diff -r 639950f1bb89 -r 340b3c5b91b8 devel/ocaml-ppx_module_timer/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/ocaml-ppx_module_timer/distinfo     Wed Mar 13 11:53:56 2019 +0000
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2019/03/13 11:53:56 jaapb Exp $
+
+SHA1 (ppx_module_timer-0.12.0.tar.gz) = 5db57a5330b76613a78b5d01d331e1064fcee588
+RMD160 (ppx_module_timer-0.12.0.tar.gz) = 862e4bb7dd99e73fd6108474d34b794645bc2e79
+SHA512 (ppx_module_timer-0.12.0.tar.gz) = 1cbddad452d14ec1b8af9a9d330d09e01dca59502399d53f8c246570860ae631c22e6c49d300a1e92ca503665aa8ba62a49f6a9446d0d7176d5064a593b892e1
+Size (ppx_module_timer-0.12.0.tar.gz) = 5678 bytes



Home | Main Index | Thread Index | Old Index