pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/devel/ocaml-sexp_pretty Created package devel/ocaml-se...
details: https://anonhg.NetBSD.org/pkgsrc/rev/5914ce04e64d
branches: trunk
changeset: 378726:5914ce04e64d
user: jaapb <jaapb%pkgsrc.org@localhost>
date: Thu May 05 08:46:43 2022 +0000
description:
Created package devel/ocaml-sexp_pretty, version 0.15.0.
This is a pretty-printing library for S-expressions.
diffstat:
devel/ocaml-sexp_pretty/DESCR | 2 ++
devel/ocaml-sexp_pretty/Makefile | 24 ++++++++++++++++++++++++
devel/ocaml-sexp_pretty/PLIST | 30 ++++++++++++++++++++++++++++++
devel/ocaml-sexp_pretty/buildlink3.mk | 13 +++++++++++++
devel/ocaml-sexp_pretty/distinfo | 5 +++++
5 files changed, 74 insertions(+), 0 deletions(-)
diffs (94 lines):
diff -r a510870e65a9 -r 5914ce04e64d devel/ocaml-sexp_pretty/DESCR
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/ocaml-sexp_pretty/DESCR Thu May 05 08:46:43 2022 +0000
@@ -0,0 +1,2 @@
+A library for pretty-printing s-expressions, using better indentation rules
+than the default pretty printer in Sexplib.
diff -r a510870e65a9 -r 5914ce04e64d devel/ocaml-sexp_pretty/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/ocaml-sexp_pretty/Makefile Thu May 05 08:46:43 2022 +0000
@@ -0,0 +1,24 @@
+# $NetBSD: Makefile,v 1.1 2022/05/05 08:46:43 jaapb Exp $
+
+DISTNAME= ${GITHUB_PROJECT}-0.15.0
+PKGNAME= ocaml-${DISTNAME}
+CATEGORIES= devel
+MASTER_SITES= ${MASTER_SITE_GITHUB:=janestreet/}
+GITHUB_PROJECT= sexp_pretty
+GITHUB_TAG= v${PKGVERSION_NOREV}
+
+MAINTAINER= jaapb%NetBSD.org@localhost
+HOMEPAGE= https://github.com/janestreet/sexp_pretty/
+COMMENT= Pretty printer for S-Expressions
+LICENSE= mit
+
+OCAML_USE_DUNE= yes
+
+BUILD_TARGET= default
+
+.include "../../devel/ocaml-base/buildlink3.mk"
+.include "../../devel/ocaml-ppx_base/buildlink3.mk"
+.include "../../devel/ocaml-sexplib/buildlink3.mk"
+.include "../../devel/ocaml-re/buildlink3.mk"
+.include "../../mk/ocaml.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r a510870e65a9 -r 5914ce04e64d devel/ocaml-sexp_pretty/PLIST
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/ocaml-sexp_pretty/PLIST Thu May 05 08:46:43 2022 +0000
@@ -0,0 +1,30 @@
+@comment $NetBSD: PLIST,v 1.1 2022/05/05 08:46:43 jaapb Exp $
+${OCAML_SITELIB}/sexp_pretty/META
+${OCAML_SITELIB}/sexp_pretty/config.ml
+${OCAML_SITELIB}/sexp_pretty/config.mli
+${OCAML_SITELIB}/sexp_pretty/dune-package
+${OCAML_SITELIB}/sexp_pretty/opam
+${PLIST.ocaml-opt}${OCAML_SITELIB}/sexp_pretty/sexp_pretty.a
+${OCAML_SITELIB}/sexp_pretty/sexp_pretty.cma
+${OCAML_SITELIB}/sexp_pretty/sexp_pretty.cmi
+${OCAML_SITELIB}/sexp_pretty/sexp_pretty.cmt
+${OCAML_SITELIB}/sexp_pretty/sexp_pretty.cmti
+${PLIST.ocaml-opt}${OCAML_SITELIB}/sexp_pretty/sexp_pretty.cmx
+${PLIST.ocaml-opt}${OCAML_SITELIB}/sexp_pretty/sexp_pretty.cmxa
+${PLIST.ocaml-opt}${OCAML_SITELIB}/sexp_pretty/sexp_pretty.cmxs
+${OCAML_SITELIB}/sexp_pretty/sexp_pretty.ml
+${OCAML_SITELIB}/sexp_pretty/sexp_pretty.mli
+${OCAML_SITELIB}/sexp_pretty/sexp_pretty__.cmi
+${OCAML_SITELIB}/sexp_pretty/sexp_pretty__.cmt
+${PLIST.ocaml-opt}${OCAML_SITELIB}/sexp_pretty/sexp_pretty__.cmx
+${OCAML_SITELIB}/sexp_pretty/sexp_pretty__.ml
+${OCAML_SITELIB}/sexp_pretty/sexp_pretty__Config.cmi
+${OCAML_SITELIB}/sexp_pretty/sexp_pretty__Config.cmt
+${OCAML_SITELIB}/sexp_pretty/sexp_pretty__Config.cmti
+${PLIST.ocaml-opt}${OCAML_SITELIB}/sexp_pretty/sexp_pretty__Config.cmx
+${OCAML_SITELIB}/sexp_pretty/sexp_pretty__Sexp_pretty_intf.cmi
+${OCAML_SITELIB}/sexp_pretty/sexp_pretty__Sexp_pretty_intf.cmt
+${PLIST.ocaml-opt}${OCAML_SITELIB}/sexp_pretty/sexp_pretty__Sexp_pretty_intf.cmx
+${OCAML_SITELIB}/sexp_pretty/sexp_pretty_intf.ml
+share/doc/sexp_pretty/LICENSE.md
+share/doc/sexp_pretty/README.org
diff -r a510870e65a9 -r 5914ce04e64d devel/ocaml-sexp_pretty/buildlink3.mk
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/ocaml-sexp_pretty/buildlink3.mk Thu May 05 08:46:43 2022 +0000
@@ -0,0 +1,13 @@
+# $NetBSD: buildlink3.mk,v 1.1 2022/05/05 08:46:43 jaapb Exp $
+
+BUILDLINK_TREE+= ocaml-sexp_pretty
+
+.if !defined(OCAML_SEXP_PRETTY_BUILDLINK3_MK)
+OCAML_SEXP_PRETTY_BUILDLINK3_MK:=
+
+BUILDLINK_API_DEPENDS.ocaml-sexp_pretty+= ocaml-sexp_pretty>=0.15.0
+BUILDLINK_PKGSRCDIR.ocaml-sexp_pretty?= ../../devel/ocaml-sexp_pretty
+
+.endif # OCAML_SEXP_PRETTY_BUILDLINK3_MK
+
+BUILDLINK_TREE+= -ocaml-sexp_pretty
diff -r a510870e65a9 -r 5914ce04e64d devel/ocaml-sexp_pretty/distinfo
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/ocaml-sexp_pretty/distinfo Thu May 05 08:46:43 2022 +0000
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1 2022/05/05 08:46:43 jaapb Exp $
+
+BLAKE2s (sexp_pretty-0.15.0.tar.gz) = 93196029665895c36debdeb0aee7aeba375ab4a79ca5e3347e4a41b31745d254
+SHA512 (sexp_pretty-0.15.0.tar.gz) = bc2a7aecfc3ae379a56e8940b9cc80ece686009c9f67233e7993e25ebbe251d62559601923db718a0f967cf42fc84024597c069659842760bb2ac5ce0eab8df2
+Size (sexp_pretty-0.15.0.tar.gz) = 22407 bytes
Home |
Main Index |
Thread Index |
Old Index