From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Mar 19 15:10:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 27924B20 for ; Tue, 19 Mar 2013 15:10:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 0C5E0DDC for ; Tue, 19 Mar 2013 15:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2JFA0dE038407 for ; Tue, 19 Mar 2013 15:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2JFA0Xm038406; Tue, 19 Mar 2013 15:10:00 GMT (envelope-from gnats) Resent-Date: Tue, 19 Mar 2013 15:10:00 GMT Resent-Message-Id: <201303191510.r2JFA0Xm038406@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, Hirohisa Yamaguchi Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 699048C0 for ; Tue, 19 Mar 2013 15:08:40 +0000 (UTC) (envelope-from umq@ueo.co.jp) Received: from msa03a.plala.or.jp (msa03.plala.or.jp [58.93.240.3]) by mx1.freebsd.org (Postfix) with ESMTP id 00356DC5 for ; Tue, 19 Mar 2013 15:08:38 +0000 (UTC) Received: from terpsichore.kaumoge.org ([125.205.160.110]) by msa03b.plala.or.jp with ESMTP id <20130319150202.NCFG25053.msa03b.plala.or.jp@terpsichore.kaumoge.org>; Wed, 20 Mar 2013 00:02:02 +0900 Received: from calliope.kaumoge.org (calliope.kaumoge.org [192.168.24.120]) by terpsichore.kaumoge.org (8.14.5/8.14.5/20101205) with ESMTP id r2JF201j024354; Wed, 20 Mar 2013 00:02:01 +0900 (JST) (envelope-from umq@ueo.co.jp) Message-Id: <86vc8nfn6f.wl%umq@ueo.co.jp> Date: Wed, 20 Mar 2013 00:02:00 +0900 From: Hirohisa Yamaguchi To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/177112: [maintainer] devel/ocaml-camlp5 update to 6.08 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Mar 2013 15:10:01 -0000 >Number: 177112 >Category: ports >Synopsis: [maintainer] devel/ocaml-camlp5 update to 6.08 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Mar 19 15:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Hirohisa Yamaguchi >Release: FreeBSD 9.0-RELEASE-p3 amd64 >Organization: >Environment: System: FreeBSD calliope.****.org 9.0-RELEASE-p3 FreeBSD 9.0-RELEASE-p3 #0: Tue Jun 12 02:52:29 UTC 2012 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: The new version of devel/ocaml-camlp5 6.08 is now available Changes: http://pauillac.inria.fr/~ddr/camlp5/CHANGES >How-To-Repeat: N/A >Fix: The patch follows: Index: devel/ocaml-camlp5/Makefile =================================================================== --- devel/ocaml-camlp5/Makefile (revision 314641) +++ devel/ocaml-camlp5/Makefile (working copy) @@ -1,13 +1,8 @@ -# ex:ts=8 -# Ports collection makefile for: camlp5 -# Date created: Mar 23 2008 -# Whom: Hirohisa Yamaguchi -# +# Created by: Hirohisa Yamaguchi # $FreeBSD$ -# PORTNAME= camlp5 -PORTVERSION= 6.07.p${PATCHLEVEL} +PORTVERSION= 6.08.p${PATCHLEVEL} CATEGORIES= devel MASTER_SITES= http://cristal.inria.fr/~ddr/camlp5/distrib/src/ \ http://pauillac.inria.fr/~ddr/camlp5/distrib/src/ @@ -28,13 +23,21 @@ patch-${PORTVERSION:R}-%d \ ${PATCHLEVEL} 1 ${PATCHLEVEL} +OPTIONS_SINGLE= MODE +OPTIONS_SINGLE_MODE= TRANSITIONAL STRICT +OPTIONS_DEFAULT= STRICT +TRANSITIONAL_DESC= Compatible syntax tree with old versions +STRICT_DESC= New syntax tree quotations kit + USE_OCAML= yes HAS_CONFIGURE= yes MAKE_JOBS_UNSAFE= yes -.if defined(WITH_TRANSITIONAL) || !defined(WITH_STRICT) +.include + +.if ${PORT_OPTIONS:MTRANSITIONAL} CONFIGURE_ARGS= --transitional --prefix ${PREFIX} -.else +.elif ${PORT_OPTIONS:MSTRICT} CONFIGURE_ARGS= --strict --prefix ${PREFIX} .endif ALL_TARGET= world.opt Index: devel/ocaml-camlp5/distinfo =================================================================== --- devel/ocaml-camlp5/distinfo (revision 314641) +++ devel/ocaml-camlp5/distinfo (working copy) @@ -1,4 +1,4 @@ -SHA256 (ocaml-camlp5/camlp5-6.07.tgz) = be8282958acd8af8cc7c8c1065bfee12e1dac27b5eef76f54376d795fb16b689 -SIZE (ocaml-camlp5/camlp5-6.07.tgz) = 682883 -SHA256 (ocaml-camlp5/patch-6.07-1) = a2c77cb617bf5f212bcd344b7e4e3c55cc9ae2a44af82dd86359a209184f4d57 -SIZE (ocaml-camlp5/patch-6.07-1) = 1008 +SHA256 (ocaml-camlp5/camlp5-6.08.tgz) = ebc39e2aa193ce76f967cae30d5c6682f3274be11c68d36224d55d94d172d375 +SIZE (ocaml-camlp5/camlp5-6.08.tgz) = 683400 +SHA256 (ocaml-camlp5/patch-6.08-1) = 9c53bb21404632897ec17e188661417705e5543b38ecc624bf4f604a6c1265b8 +SIZE (ocaml-camlp5/patch-6.08-1) = 10719 >Release-Note: >Audit-Trail: >Unformatted: