From owner-svn-ports-head@freebsd.org Sat Nov 10 22:19:05 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E0441110C676; Sat, 10 Nov 2018 22:19:04 +0000 (UTC) (envelope-from gerald@pfeifer.com) Received: from hamza.pair.com (hamza.pair.com [IPv6:2607:f440::d144:58f]) (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 124EB7E859; Sat, 10 Nov 2018 22:19:04 +0000 (UTC) (envelope-from gerald@pfeifer.com) Received: from hamza.pair.com (localhost [127.0.0.1]) by hamza.pair.com (Postfix) with ESMTP id 53D8A33E01; Sat, 10 Nov 2018 17:18:57 -0500 (EST) Received: from anthias (d91-128-244-185.cust.tele2.at [91.128.244.185]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by hamza.pair.com (Postfix) with ESMTPSA id 6D54E33DD8; Sat, 10 Nov 2018 17:18:56 -0500 (EST) Date: Sat, 10 Nov 2018 23:18:54 +0100 (CET) From: Gerald Pfeifer To: Baptiste Daroussin , portmgr@FreeBSD.org cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r484628 - in head: . Mk Templates accessibility/speech-dispatcher archivers/fastjar archivers/gcpio archivers/gtar archivers/gzip archivers/lzip archivers/lzlib archivers/plzip archiver... In-Reply-To: <201811101812.wAAICwTS081936@repo.freebsd.org> Message-ID: References: <201811101812.wAAICwTS081936@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Rspamd-Queue-Id: 124EB7E859 X-Spamd-Result: default: False [-1.93 / 200.00]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; NEURAL_HAM_MEDIUM(-0.95)[-0.946,0]; FROM_HAS_DN(0.00)[]; TO_DN_SOME(0.00)[]; R_SPF_ALLOW(-0.20)[+a:ainaz.pair.com]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MIME_GOOD(-0.10)[text/plain]; DMARC_NA(0.00)[pfeifer.com]; NEURAL_HAM_LONG(-0.98)[-0.982,0]; RCPT_COUNT_FIVE(0.00)[5]; RCVD_COUNT_THREE(0.00)[3]; NEURAL_SPAM_SHORT(0.33)[0.328,0]; MX_GOOD(-0.01)[mailwash29.pair.com]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; RCVD_TLS_LAST(0.00)[]; ASN(0.00)[asn:7859, ipnet:2607:f440::/32, country:US]; IP_SCORE(-0.02)[country: US(-0.09)]; RECEIVED_SPAMHAUS_PBL(0.00)[185.244.128.91.zen.spamhaus.org : 127.0.0.11] X-Rspamd-Server: mx1.freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 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: Sat, 10 Nov 2018 22:19:05 -0000 On Sat, 10 Nov 2018, Baptiste Daroussin wrote: > Author: bapt > URL: https://svnweb.freebsd.org/changeset/ports/484628 > > Log: > Install texinfo files (GNU info) into ${PREFIX}/share/info : > Other benefit than consistency are less patching: all build tools but > cmake are expecting info files to be under share/info and cmake (patched here) > was having an exception for BSD so the patch makes FreeBSD case less > specific for them > > Bump revision of all impacted ports > > PR: 232907 > exp-run by: antoine > Differential Revision: https://reviews.freebsd.org/D17816 After this change I am now getting the following for all my lang/gcc* ports when subjecting them to my usual testing (which installs into a non-standard and fresh/empty prefix): ====> Checking for pkg-plist issues (check-plist) ===> Parsing plist ===> Checking for items in STAGEDIR missing from pkg-plist Error: Orphaned: share/info/gcc7/dir ===> Checking for items in pkg-plist which are not in STAGEDIR ===> Error: Plist issues found. ===> Warning: Test was done with PREFIX != LOCALBASE ===> Warning: The port may not be properly installing into PREFIX *** Error code 1 Stop. make: stopped in /home/gerald/ports/lang/gcc7-devel The patch below addresses this. Okay to commit? Gerald @FreeBSD.org Index: Mk/Scripts/check-stagedir.sh =================================================================== --- Mk/Scripts/check-stagedir.sh (revision 484633) +++ Mk/Scripts/check-stagedir.sh (working copy) @@ -154,7 +154,7 @@ */.svn/*|'@dir '*/.svn) ;; */.svnignore) ;; */CVS/*|'@dir '*/CVS) ;; - */info/dir|info/dir|info/*/dir) ;; + */info/dir|info/dir|info/*/dir|share/info/*/dir) ;; share/fonts/*/fonts.dir) ;; share/fonts/*/fonts.scale) ;; share/applications/mimeinfo.cache) ;;