From owner-svn-ports-all@freebsd.org Fri Nov 20 13:20:27 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 05A9DA33109; Fri, 20 Nov 2015 13:20:27 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D0CEC1387; Fri, 20 Nov 2015 13:20:26 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tAKDKPvR083559; Fri, 20 Nov 2015 13:20:25 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tAKDKPIo083556; Fri, 20 Nov 2015 13:20:25 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201511201320.tAKDKPIo083556@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 20 Nov 2015 13:20:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r402072 - in head/devel: . ocaml-type_conv ocaml-typeconv 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.20 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: Fri, 20 Nov 2015 13:20:27 -0000 Author: sunpoet Date: Fri Nov 20 13:20:25 2015 New Revision: 402072 URL: https://svnweb.freebsd.org/changeset/ports/402072 Log: - Move devel/ocaml-typeconv to devel/ocaml-type_conv - Update to 113.00.02 - Add missing OPTIONS_DEFINE - Remove OCAML_PKGDIRS - Strip OCaml plugin files - Convert to new options target helper Changes: https://github.com/janestreet/type_conv/blob/master/CHANGES.md https://github.com/janestreet/type_conv/commits/master Added: head/devel/ocaml-type_conv/ - copied from r402071, head/devel/ocaml-typeconv/ Deleted: head/devel/ocaml-typeconv/ Modified: head/devel/Makefile head/devel/ocaml-type_conv/Makefile head/devel/ocaml-type_conv/distinfo Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Nov 20 12:05:08 2015 (r402071) +++ head/devel/Makefile Fri Nov 20 13:20:25 2015 (r402072) @@ -1561,7 +1561,7 @@ SUBDIR += ocaml-sdl SUBDIR += ocaml-sem SUBDIR += ocaml-sexplib - SUBDIR += ocaml-typeconv + SUBDIR += ocaml-type_conv SUBDIR += ocaml-ulex SUBDIR += ocaml-uutf SUBDIR += ocaml-xstr Modified: head/devel/ocaml-type_conv/Makefile ============================================================================== --- head/devel/ocaml-typeconv/Makefile Fri Nov 20 12:05:08 2015 (r402071) +++ head/devel/ocaml-type_conv/Makefile Fri Nov 20 13:20:25 2015 (r402072) @@ -1,12 +1,11 @@ # Created by: Stanislav Sedov # $FreeBSD$ -PORTNAME= type-conv -PORTVERSION= 109.60.01 +PORTNAME= type_conv +PORTVERSION= 113.00.02 CATEGORIES= devel -MASTER_SITES= https://ocaml.janestreet.com/ocaml-core/${PORTVERSION:R}.00/individual/ +MASTER_SITES= https://ocaml.janestreet.com/ocaml-core/${PORTVERSION:R}/files/ PKGNAMEPREFIX= ocaml- -DISTNAME= ${PORTNAME:S,-,_,}-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Type conversion routines for OCaml @@ -14,25 +13,25 @@ COMMENT= Type conversion routines for OC LICENSE= APACHE20 BSD3CLAUSE LICENSE_COMB= multi -USE_OCAML= yes -USE_OCAML_FINDLIB=yes -USE_OCAML_CAMLP4=yes -USE_OCAMLFIND_PLIST=yes -OCAML_PKGDIRS= ${PORTNAME:S,-,_,} +OPTIONS_DEFINE= DOCS -USES= gmake +CONFIGURE_ARGS= --disable-docs --prefix ${PREFIX} HAS_CONFIGURE= yes -CONFIGURE_ARGS= --prefix ${PREFIX} --disable-docs -MAKE_JOBS_UNSAFE=yes - -DOCSDIR= ${OCAML_DOCSDIR}/${PORTNAME:S,-,_,} +MAKE_JOBS_UNSAFE= yes +USE_OCAML= yes +USE_OCAML_CAMLP4= yes +USE_OCAML_FINDLIB= yes +USE_OCAMLFIND_PLIST= yes +USES= gmake +DOCSDIR= ${OCAML_DOCSDIR}/${PORTNAME} PORTDOCS= * post-install: - @${MKDIR} ${STAGEDIR}${DOCSDIR} -.for i in CHANGES.txt README.md - (cd ${WRKSRC} && ${INSTALL_DATA} ${i} ${STAGEDIR}${DOCSDIR}) -.endfor + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${OCAML_SITELIBDIR}/type_conv/pa_type_conv.cmxs + +post-install-DOCS-on: + ${MKDIR} ${STAGEDIR}${DOCSDIR}/ + cd ${WRKSRC}/ && ${INSTALL_DATA} CHANGES.md README.md ${STAGEDIR}${DOCSDIR}/ .include Modified: head/devel/ocaml-type_conv/distinfo ============================================================================== --- head/devel/ocaml-typeconv/distinfo Fri Nov 20 12:05:08 2015 (r402071) +++ head/devel/ocaml-type_conv/distinfo Fri Nov 20 13:20:25 2015 (r402072) @@ -1,2 +1,2 @@ -SHA256 (type_conv-109.60.01.tar.gz) = fd0b1aff77c665495b240d39b7b8ef09a4c50ab959807bc50ff8d1874cccfd52 -SIZE (type_conv-109.60.01.tar.gz) = 61606 +SHA256 (type_conv-113.00.02.tar.gz) = d305d0032be314916ac3ec37617e0c8d3aadab9bcee14e746e567d8405f5289c +SIZE (type_conv-113.00.02.tar.gz) = 64174