From owner-svn-ports-all@freebsd.org Sun Feb 21 09:19:11 2021 Return-Path: Delivered-To: svn-ports-all@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 0F4415510A9; Sun, 21 Feb 2021 09:19:11 +0000 (UTC) (envelope-from gerald@pfeifer.com) Received: from hamza.pair.com (hamza.pair.com [209.68.5.143]) (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 did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4Dk0B62BHVz4R7g; Sun, 21 Feb 2021 09:19:10 +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 9CA8D33EB9; Sun, 21 Feb 2021 04:19:09 -0500 (EST) Received: from [192.168.1.5] (77.118.111.172.wireless.dyn.drei.com [77.118.111.172]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by hamza.pair.com (Postfix) with ESMTPSA id A924633E7F; Sun, 21 Feb 2021 04:19:08 -0500 (EST) Date: Sun, 21 Feb 2021 10:19:04 +0100 (CET) From: Gerald Pfeifer To: Kurt Jaeger , Olivier Certner cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r565330 - in head: . www www/palemoon www/palemoon/files In-Reply-To: <202102151919.11FJJMGp064158@repo.freebsd.org> Message-ID: <7595c273-707c-85f-4241-4ed264a257b9@pfeifer.com> References: <202102151919.11FJJMGp064158@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Rspamd-Queue-Id: 4Dk0B62BHVz4R7g X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org; dkim=none; dmarc=none; spf=pass (mx1.freebsd.org: domain of gerald@pfeifer.com designates 209.68.5.143 as permitted sender) smtp.mailfrom=gerald@pfeifer.com X-Spamd-Result: default: False [-2.86 / 15.00]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; FREEFALL_USER(0.00)[gerald]; FROM_HAS_DN(0.00)[]; TO_DN_SOME(0.00)[]; R_SPF_ALLOW(-0.20)[+a:hamza.pair.com:c]; MID_RHS_MATCH_FROM(0.00)[]; MIME_GOOD(-0.10)[text/plain]; DMARC_NA(0.00)[pfeifer.com]; RBL_DBL_DONT_QUERY_IPS(0.00)[209.68.5.143:from]; RCPT_COUNT_FIVE(0.00)[5]; SPAMHAUS_ZRD(0.00)[209.68.5.143:from:127.0.2.255]; RCVD_COUNT_THREE(0.00)[3]; TO_MATCH_ENVRCPT_SOME(0.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_SHORT(-0.56)[-0.557]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; FREEMAIL_TO(0.00)[FreeBSD.org,free.fr]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:7859, ipnet:209.68.0.0/18, country:US]; RCVD_TLS_LAST(0.00)[]; MAILMAN_DEST(0.00)[svn-ports-all,svn-ports-head] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.34 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: Sun, 21 Feb 2021 09:19:11 -0000 On Mon, 15 Feb 2021, Kurt Jaeger wrote: > Author: pi > Date: Mon Feb 15 19:19:22 2021 > New Revision: 565330 > URL: https://svnweb.freebsd.org/changeset/ports/565330 > > Log: > New port: www/palemoon Ui, that looks like a tricky one to maintain! > +# 9 is the last version endorsed upstream (and was the default in ports when > +# this was written). Version bumps *MUST* be validated by the maintainer (after > +# thorough testing, and following upstream's recommendations. Hence > +# hardcoded. (For the record, building with clang produces malfunctioning > +# executables.) > + > +# NOTE: We make sure that there are no runtime dependencies to GCC and > +# libstdc++. See [GCC-no-rdep-*] tags below. This should rather be solved in > +# the ports infrastructure proper (see PR 211154, which is a step towards that; > +# however, it still doesn't remove -rpath and doesn't provide the option to > +# link C++ code against base's libc++). > +USE_GCC= 9 Given the other changes to use libc++ and avoid -rpath style dependencies, would it make sense (and work) to use USE_GCC= 9:build instead? That is, ensure GCC is not registered as a run-time dependency (and users can install a palemoon package without pulling in GCC)? That alone would be a nice improvement, and if it works, I may have another idea to make your lives easier. :-) Gerald PS: Olivier, if this successfully works for you, I can commit such a change.