From owner-svn-ports-head@freebsd.org Tue Nov 17 10:28:10 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 441D12D735F; Tue, 17 Nov 2020 10:28:10 +0000 (UTC) (envelope-from lbartoletti@FreeBSD.org) Received: from smtp.freebsd.org (smtp.freebsd.org [96.47.72.83]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Cb2G21XY0z4S74; Tue, 17 Nov 2020 10:28:10 +0000 (UTC) (envelope-from lbartoletti@FreeBSD.org) Received: from iMac-de-Loic.local (unknown [IPv6:2a01:e34:ef45:d440:3801:5f1f:ce8d:d139]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) (Authenticated sender: lbartoletti) by smtp.freebsd.org (Postfix) with ESMTPSA id 99787C119; Tue, 17 Nov 2020 10:28:09 +0000 (UTC) (envelope-from lbartoletti@FreeBSD.org) Subject: Re: svn commit: r555543 - in head: astro/merkaartor astro/qmapshack cad/sumo converters/osm2pgsql databases/grass7 databases/postgis24 databases/postgis25 databases/postgis30 databases/spatialite datab... To: Christoph Moench-Tegeder Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <202011170923.0AH9NxfB024611@repo.freebsd.org> From: =?UTF-8?Q?Lo=c3=afc_Bartoletti?= Message-ID: <64dd3dd5-ee75-9449-7208-2b207d006497@FreeBSD.org> Date: Tue, 17 Nov 2020 11:28:06 +0100 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:78.0) Gecko/20100101 Thunderbird/78.4.3 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Content-Language: fr X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Nov 2020 10:28:10 -0000 You're right, sorry. I missed a conflict on my patch. I'm double-checking my port and correcting it as soon as possible. Thanks Loïc Le 17/11/2020 à 11:12, Christoph Moench-Tegeder a écrit : > ## Loïc Bartoletti (lbartoletti@FreeBSD.org): > >> Log: >> graphics/proj: Update to 7.1.1 > Your commit in graphics/proj does not match the patches in PR 219603, > e.g. the LIB_DEPENDS changes are missing, the OPTIONS are not there > and DATA_DISTFILES is not defined. The build fails in configure > with "Package 'libtiff-4', required by 'virtual:world', not found", > which clearly show that the LIB_DEPENDS changes in the PR were not > optional. > > Compare: >> - Add curl and tiff dependencies since proj can read datum grids from remote >> COG (Cloud Optimized Geotiff) > and: >> Modified: head/graphics/proj/Makefile >> ============================================================================== >> --- head/graphics/proj/Makefile Tue Nov 17 08:49:03 2020 (r555542) >> +++ head/graphics/proj/Makefile Tue Nov 17 09:23:58 2020 (r555543) >> @@ -2,14 +2,15 @@ >> # $FreeBSD$ >> >> PORTNAME= proj >> -PORTVERSION= 6.3.1 >> +PORTVERSION= 7.1.1 >> PORTEPOCH= 1 >> CATEGORIES= graphics geography >> MASTER_SITES= https://download.osgeo.org/proj/ >> -DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DATUM_GRID_FILES} >> +DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ >> + ${DATUM_GRID_FILES} >> EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} >> >> -MAINTAINER= wen@FreeBSD.org >> +MAINTAINER= lbartoletti@FreeBSD.org >> COMMENT= Cartographic Projections library >> >> LICENSE= MIT >> @@ -36,8 +37,14 @@ post-extract: >> .for f in ${DATUM_GRID_FILES} >> @${TAR} -xf ${DISTDIR}/${f} -C ${WRKSRC}/datum >> .endfor >> +post-extract-DATA-on: >> + ${MKDIR} ${WRKSRC}/proj_data >> + @${TAR} -xf ${DISTDIR}/${DATA_DISTFILES} -C ${WRKSRC}/proj_data >> >> post-install: >> cd ${WRKSRC}/datum && ${INSTALL_DATA} * ${STAGEDIR}${DATADIR} >> + >> +post-install-DATA-on: >> + cd ${WRKSRC}/proj_data && ${INSTALL_DATA} * ${STAGEDIR}${DATADIR} >> >> .include > > Regards, > Christoph >