svn commit: r312585 - in head/devel: . ocaml-deriving-ocsigen

Martin Wilke miwi at FreeBSD.org
Tue Feb 19 16:27:18 UTC 2013


Author: miwi
Date: Tue Feb 19 16:27:17 2013
New Revision: 312585
URL: http://svnweb.freebsd.org/changeset/ports/312585

Log:
  Extension to OCaml for deriving functions from type declarations. Includes
  derivers for pretty-printing, type-safe marshalling with structure-sharing,
  dynamic typing, equality, and more. This is a version of the deriving library
  adapted for use with Ocsigen.
  
  WWW: http://github.com/hnrgrgr/deriving
  
  PR:		ports/176162
  Submitted by:	Jaap Boender <jaapb at kerguelen.org>

Added:
  head/devel/ocaml-deriving-ocsigen/
  head/devel/ocaml-deriving-ocsigen/Makefile   (contents, props changed)
  head/devel/ocaml-deriving-ocsigen/distinfo   (contents, props changed)
  head/devel/ocaml-deriving-ocsigen/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Tue Feb 19 16:26:03 2013	(r312584)
+++ head/devel/Makefile	Tue Feb 19 16:27:17 2013	(r312585)
@@ -1286,6 +1286,7 @@
     SUBDIR += ocaml-cfg
     SUBDIR += ocaml-classes
     SUBDIR += ocaml-cppo
+    SUBDIR += ocaml-deriving-ocsigen
     SUBDIR += ocaml-equeue
     SUBDIR += ocaml-event
     SUBDIR += ocaml-extlib

Added: head/devel/ocaml-deriving-ocsigen/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/ocaml-deriving-ocsigen/Makefile	Tue Feb 19 16:27:17 2013	(r312585)
@@ -0,0 +1,20 @@
+# Created by: Jaap Boender <jaapb at kerguelen.org>
+# $FreeBSD$
+
+PORTNAME=	deriving-ocsigen
+PORTVERSION=	0.3c
+CATEGORIES=	devel www
+MASTER_SITES=	http://ocsigen.org/download/
+PKGNAMEPREFIX=	ocaml-
+
+MAINTAINER=	jaapb at kerguelen.org
+COMMENT=	Function derivation library
+
+USE_OCAML=		yes
+USE_OCAML_FINDLIB=	yes
+USE_OCAMLFIND_PLIST=	yes
+USE_OCAML_LDCONFIG=	yes
+
+USE_GMAKE=	yes
+
+.include <bsd.port.mk>

Added: head/devel/ocaml-deriving-ocsigen/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/ocaml-deriving-ocsigen/distinfo	Tue Feb 19 16:27:17 2013	(r312585)
@@ -0,0 +1,2 @@
+SHA256 (deriving-ocsigen-0.3c.tar.gz) = eb6e7e647b6f2effcc65c9b32076fbc12e366e16035447a762a93e5e1cba94c7
+SIZE (deriving-ocsigen-0.3c.tar.gz) = 61242

Added: head/devel/ocaml-deriving-ocsigen/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/ocaml-deriving-ocsigen/pkg-descr	Tue Feb 19 16:27:17 2013	(r312585)
@@ -0,0 +1,6 @@
+Extension to OCaml for deriving functions from type declarations. Includes
+derivers for pretty-printing, type-safe marshalling with structure-sharing,
+dynamic typing, equality, and more. This is a version of the deriving library
+adapted for use with Ocsigen.
+
+WWW: http://github.com/hnrgrgr/deriving


More information about the svn-ports-head mailing list