From owner-freebsd-ports@freebsd.org Tue Oct 6 06:36:57 2020 Return-Path: Delivered-To: freebsd-ports@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 4693642A14E for ; Tue, 6 Oct 2020 06:36:57 +0000 (UTC) (envelope-from rfg@tristatelogic.com) Received: from outgoing.tristatelogic.com (segfault.tristatelogic.com [69.62.255.118]) by mx1.freebsd.org (Postfix) with ESMTP id 4C576c20WRz4385 for ; Tue, 6 Oct 2020 06:36:55 +0000 (UTC) (envelope-from rfg@tristatelogic.com) Received: by segfault.tristatelogic.com (Postfix, from userid 1237) id D035C4E74D; Mon, 5 Oct 2020 23:36:48 -0700 (PDT) From: "Ronald F. Guilmette" To: freebsd-ports@freebsd.org Subject: p5-HTML-Tree -- missing dependency MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <25053.1601966208.1@segfault.tristatelogic.com> Content-Transfer-Encoding: quoted-printable Date: Mon, 05 Oct 2020 23:36:48 -0700 Message-ID: <25054.1601966208@segfault.tristatelogic.com> X-Rspamd-Queue-Id: 4C576c20WRz4385 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org; dkim=none; dmarc=none; spf=pass (mx1.freebsd.org: domain of rfg@tristatelogic.com designates 69.62.255.118 as permitted sender) smtp.mailfrom=rfg@tristatelogic.com X-Spamd-Result: default: False [-2.41 / 15.00]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-0.96)[-0.960]; FROM_HAS_DN(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; R_SPF_ALLOW(-0.20)[+mx]; MIME_GOOD(-0.10)[text/plain]; TO_DN_NONE(0.00)[]; DMARC_NA(0.00)[tristatelogic.com]; RCPT_COUNT_ONE(0.00)[1]; NEURAL_HAM_LONG(-0.97)[-0.969]; NEURAL_HAM_SHORT(-0.18)[-0.183]; RCVD_COUNT_ZERO(0.00)[0]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:14051, ipnet:69.62.128.0/17, country:US]; MAILMAN_DEST(0.00)[freebsd-ports] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Oct 2020 06:36:57 -0000 Greetings, I have some old code I'm trying to get running again. It uses the Perl module HTML::TreeBuilder (aka www/p5-HTML-Tree). I did the following: # pkg install p5-HTML-Tree which completed with no problems, but now it appears that my installed version of HTML::TreeBuilder craps out at: /usr/local/lib/perl5/site_perl/HTML/TreeBuilder.pm line 59. Looking at that source line, I see the following: use HTML::Entities (); I have looked in my ports tree to see if an appropriate port/pkg might be available to satisfy this dependency, but all I am finding is these things, none of which appear to fit the bill: textproc/p5-HTML-Entities-ImodePictogram textproc/p5-HTML-Entities-Interpolate textproc/p5-HTML-Entities-Numbered textproc/p5-HTML-HTML5-Entities textproc/p5-MathML-Entities textproc/p5-XML-DoubleEncodedEntities textproc/p5-XML-Entities Shouldn't the installation of a particular pre-built package such as the p5-HTML-Tree force all of its dependencies to also be automagically installed? How do I fix this problem? The descr file associated with the textproc/p5-HTML-HTML5-Entities package says: HTML::HTML5::Entities is a pure Perl, drop-in replacement for HTML::Ent= ities, providing the character entities defined in HTML5. So should I just install that and then manually exit the source line quoted above so that it says instead: use HTML::HTML5::Entities (); ?