From owner-svn-ports-all@FreeBSD.ORG Tue Feb 19 16:27:18 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id A7FA4987; Tue, 19 Feb 2013 16:27:18 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 8199B1FF; Tue, 19 Feb 2013 16:27:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r1JGRIQd073018; Tue, 19 Feb 2013 16:27:18 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r1JGRHir073014; Tue, 19 Feb 2013 16:27:17 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201302191627.r1JGRHir073014@svn.freebsd.org> From: Martin Wilke Date: Tue, 19 Feb 2013 16:27:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r312585 - in head/devel: . ocaml-deriving-ocsigen X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Feb 2013 16:27:18 -0000 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 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 +# $FreeBSD$ + +PORTNAME= deriving-ocsigen +PORTVERSION= 0.3c +CATEGORIES= devel www +MASTER_SITES= http://ocsigen.org/download/ +PKGNAMEPREFIX= ocaml- + +MAINTAINER= jaapb@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 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