pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/ocaml-ppx_module_timer



Module Name:    pkgsrc
Committed By:   jaapb
Date:           Wed Mar 13 11:53:56 UTC 2019

Added Files:
        pkgsrc/devel/ocaml-ppx_module_timer: DESCR Makefile PLIST buildlink3.mk
            distinfo

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


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 pkgsrc/devel/ocaml-ppx_module_timer/DESCR \
    pkgsrc/devel/ocaml-ppx_module_timer/Makefile \
    pkgsrc/devel/ocaml-ppx_module_timer/PLIST \
    pkgsrc/devel/ocaml-ppx_module_timer/buildlink3.mk \
    pkgsrc/devel/ocaml-ppx_module_timer/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Added files:

Index: pkgsrc/devel/ocaml-ppx_module_timer/DESCR
diff -u /dev/null pkgsrc/devel/ocaml-ppx_module_timer/DESCR:1.1
--- /dev/null   Wed Mar 13 11:53:56 2019
+++ pkgsrc/devel/ocaml-ppx_module_timer/DESCR   Wed Mar 13 11:53:56 2019
@@ -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.
Index: pkgsrc/devel/ocaml-ppx_module_timer/Makefile
diff -u /dev/null pkgsrc/devel/ocaml-ppx_module_timer/Makefile:1.1
--- /dev/null   Wed Mar 13 11:53:56 2019
+++ pkgsrc/devel/ocaml-ppx_module_timer/Makefile        Wed Mar 13 11:53:56 2019
@@ -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"
Index: pkgsrc/devel/ocaml-ppx_module_timer/PLIST
diff -u /dev/null pkgsrc/devel/ocaml-ppx_module_timer/PLIST:1.1
--- /dev/null   Wed Mar 13 11:53:56 2019
+++ pkgsrc/devel/ocaml-ppx_module_timer/PLIST   Wed Mar 13 11:53:56 2019
@@ -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
Index: pkgsrc/devel/ocaml-ppx_module_timer/buildlink3.mk
diff -u /dev/null pkgsrc/devel/ocaml-ppx_module_timer/buildlink3.mk:1.1
--- /dev/null   Wed Mar 13 11:53:56 2019
+++ pkgsrc/devel/ocaml-ppx_module_timer/buildlink3.mk   Wed Mar 13 11:53:56 2019
@@ -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
Index: pkgsrc/devel/ocaml-ppx_module_timer/distinfo
diff -u /dev/null pkgsrc/devel/ocaml-ppx_module_timer/distinfo:1.1
--- /dev/null   Wed Mar 13 11:53:56 2019
+++ pkgsrc/devel/ocaml-ppx_module_timer/distinfo        Wed Mar 13 11:53:56 2019
@@ -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