From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 1 18:10:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 240F81065750 for ; Mon, 1 Oct 2012 18:10:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EFFF98FC1E for ; Mon, 1 Oct 2012 18:10:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q91IA96D014000 for ; Mon, 1 Oct 2012 18:10:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q91IA9LL013997; Mon, 1 Oct 2012 18:10:09 GMT (envelope-from gnats) Resent-Date: Mon, 1 Oct 2012 18:10:09 GMT Resent-Message-Id: <201210011810.q91IA9LL013997@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0FA42106564A for ; Mon, 1 Oct 2012 18:01:44 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa102lp.auone-net.jp (msa102lp.auone-net.jp [222.3.140.165]) by mx1.freebsd.org (Postfix) with ESMTP id D51598FC08 for ; Mon, 1 Oct 2012 18:01:43 +0000 (UTC) Received: from localhost.localdomain (ZT037251.ppp.dion.ne.jp [59.128.37.251]) by msa102lp.auone-net.jp (au one net msa) with ESMTP id D413D4AC037 for ; Tue, 2 Oct 2012 03:01:41 +0900 (JST) Message-Id: <20121002025353.4c56c386484b99799f1d94dc@yahoo.com> Date: Tue, 2 Oct 2012 02:53:53 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172234: devel/ocaml-typeconv: Update to version 108.07.00 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Oct 2012 18:10:10 -0000 >Number: 172234 >Category: ports >Synopsis: devel/ocaml-typeconv: Update to version 108.07.00 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Oct 01 18:10:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 108.07.00 >How-To-Repeat: >Fix: diff -urN /usr/ports/devel/ocaml-typeconv/Makefile devel/ocaml-typeconv/Makefile --- /usr/ports/devel/ocaml-typeconv/Makefile 2012-09-21 15:52:44.000000000 +0900 +++ devel/ocaml-typeconv/Makefile 2012-09-28 18:57:41.000000000 +0900 @@ -1,39 +1,44 @@ -# New ports collection makefile for: ocaml-type-conv -# Date created: 2008-04-08 -# Whom: Stanislav Sedov -# +# Created by: Stanislav Sedov # $FreeBSD: ports/devel/ocaml-typeconv/Makefile,v 1.4 2012/09/21 06:52:44 bapt Exp $ -# PORTNAME= type-conv -PORTVERSION= 1.0.0 -PORTREVISION= 1 +PORTVERSION= 108.07.00 CATEGORIES= devel -MASTER_SITES= http://janestcapital.com/ocaml/ +MASTER_SITES= https://ocaml.janestreet.com/ocaml-core/%SUBDIR%/ +MASTER_SITE_SUBDIR= ${PORTVERSION}/individual +DISTNAME= ${PORTNAME:S,-,_,}-${PORTVERSION} PKGNAMEPREFIX= ocaml- MAINTAINER= ports@FreeBSD.org COMMENT= Type conversion routines for OCaml -DEPRECATED= No more public distfiles -EXPIRATION_DATE= 2012-10-20 +LICENSE= BSD -USE_GMAKE= yes USE_OCAML= yes USE_OCAML_FINDLIB=yes +USE_OCAMLFIND_PLIST=yes +OCAML_PKGDIRS= ${PORTNAME:S,-,_,} -SA_DIR= ${LOCALBASE}/${OCAML_SITELIBDIR} +HAS_CONFIGURE= yes +CONFIGURE_ARGS= --prefix ${PREFIX} --disable-docs +MAKE_JOBS_UNSAFE=yes -.include +DOCSDIR= ${OCAML_DOCSDIR}/${PORTNAME:S,-,_,} -post-extract: -# For nonstandard prefixes -.if !exists(${OCAMLFIND_DESTDIR}) - ${MKDIR} ${OCAMLFIND_DESTDIR} +PORTDOCS= * + +.include + +.if ${PORT_OPTIONS:MDOCS} +PLIST_DIRSTRY= ${OCAML_DOCSDIR:S,^${PREFIX}/,,} .endif post-install: - @${FIND} ${OCAMLFIND_DESTDIR}/${PORTNAME} -type f | \ - ${SED} "s,^${PREFIX}/,," >> ${TMPPLIST} +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} +.for i in CHANGES.txt README.md + (cd ${WRKSRC} && ${INSTALL_DATA} ${i} ${DOCSDIR}) +.endfor +.endif -.include +.include diff -urN /usr/ports/devel/ocaml-typeconv/distinfo devel/ocaml-typeconv/distinfo --- /usr/ports/devel/ocaml-typeconv/distinfo 2011-07-03 23:56:34.000000000 +0900 +++ devel/ocaml-typeconv/distinfo 2012-09-28 18:04:11.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (type-conv-1.0.0.tar.gz) = 3435f00c1c56c9a4ba7a4281fd9f7eec5ee2cda75806498a11974a379e3f1870 -SIZE (type-conv-1.0.0.tar.gz) = 22456 +SHA256 (type_conv-108.07.00.tar.gz) = a8f0f230633dbcb77bd8d5ee1c5f47c57385a6c09d5c3ac1fb02449077772c7d +SIZE (type_conv-108.07.00.tar.gz) = 57195 diff -urN /usr/ports/devel/ocaml-typeconv/pkg-descr devel/ocaml-typeconv/pkg-descr --- /usr/ports/devel/ocaml-typeconv/pkg-descr 2008-04-08 21:15:02.000000000 +0900 +++ devel/ocaml-typeconv/pkg-descr 2012-09-28 18:00:25.000000000 +0900 @@ -4,4 +4,4 @@ these preprocessors simultaneously. Author: Markus Mottl -WWW: http://www.janestcapital.com/ocaml/index.html +WWW: http://ocaml.janestcapital.com/ >Release-Note: >Audit-Trail: >Unformatted: