From owner-svn-ports-all@FreeBSD.ORG Fri May 9 13:09:23 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 56A12B23; Fri, 9 May 2014 13:09:23 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 2860A25A; Fri, 9 May 2014 13:09:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s49D9NFa051793; Fri, 9 May 2014 13:09:23 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s49D9Md1051790; Fri, 9 May 2014 13:09:22 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201405091309.s49D9Md1051790@svn.freebsd.org> From: John Marino Date: Fri, 9 May 2014 13:09:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r353458 - head/devel/ocaml-pomap 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.18 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, 09 May 2014 13:09:23 -0000 Author: marino Date: Fri May 9 13:09:22 2014 New Revision: 353458 URL: http://svnweb.freebsd.org/changeset/ports/353458 QAT: https://qat.redports.org/buildarchive/r353458/ Log: devel/ocaml-pomap: Update version 3.0.1 => 3.0.3 to unbreak and stage This port apparently broke when Ocaml was updated to 4.0.1. Add stage support as part of the upgrade which restores the build. Also remove author line from pkg-descr. Modified: head/devel/ocaml-pomap/Makefile head/devel/ocaml-pomap/distinfo head/devel/ocaml-pomap/pkg-descr Modified: head/devel/ocaml-pomap/Makefile ============================================================================== --- head/devel/ocaml-pomap/Makefile Fri May 9 12:56:57 2014 (r353457) +++ head/devel/ocaml-pomap/Makefile Fri May 9 13:09:22 2014 (r353458) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pomap -PORTVERSION= 3.0.1 +PORTVERSION= 3.0.3 CATEGORIES= devel MASTER_SITES= http://cdn.bitbucket.org/mmottl/pomap/downloads/ PKGNAMEPREFIX= ocaml- @@ -29,7 +29,6 @@ EXAMPLESDIR= ${OCAML_EXAMPLESDIR}/${PORT PORTDOCS= * PORTEXAMPLES= * -NO_STAGE= yes .include .if ${PORT_OPTIONS:MDOCS} @@ -42,14 +41,15 @@ PLIST_DIRSTRY+= ${OCAML_EXAMPLESDIR:S,^$ post-install: .if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for i in AUTHORS.txt CHANGES.txt README.md - (cd ${WRKSRC} && ${INSTALL_DATA} ${i} ${DOCSDIR}) + (cd ${WRKSRC} && ${INSTALL_DATA} ${i} ${STAGEDIR}${DOCSDIR}) .endfor .endif .if ${PORT_OPTIONS:MEXAMPLES} - @${MKDIR} ${EXAMPLESDIR} - @(cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${EXAMPLESDIR}) + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + @(cd ${WRKSRC}/examples && \ + ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}) .endif .include Modified: head/devel/ocaml-pomap/distinfo ============================================================================== --- head/devel/ocaml-pomap/distinfo Fri May 9 12:56:57 2014 (r353457) +++ head/devel/ocaml-pomap/distinfo Fri May 9 13:09:22 2014 (r353458) @@ -1,2 +1,2 @@ -SHA256 (pomap-3.0.1.tar.gz) = 1afbedafedb6922937cb58b3bbef057e69f2908cac899288257ba608fbf534ce -SIZE (pomap-3.0.1.tar.gz) = 69989 +SHA256 (pomap-3.0.3.tar.gz) = ff35571fb06230d4448ec61d57dc46d38019ceba1e650600c7eedf26590a5256 +SIZE (pomap-3.0.3.tar.gz) = 73040 Modified: head/devel/ocaml-pomap/pkg-descr ============================================================================== --- head/devel/ocaml-pomap/pkg-descr Fri May 9 12:56:57 2014 (r353457) +++ head/devel/ocaml-pomap/pkg-descr Fri May 9 13:09:22 2014 (r353458) @@ -3,5 +3,4 @@ ordered elements. Whereas a total order element is lower, equal or greater than another one, partial orders also allow for a "don-t know" case. -Author: Markus Mottl WWW: https://bitbucket.org/mmottl/pomap