From nobody Thu Mar 02 17:07:52 2023 X-Original-To: freebsd-ports@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4PSHc95GNJz3w31Z for ; Thu, 2 Mar 2023 17:08:09 +0000 (UTC) (envelope-from janm@transactionware.com) Received: from mail3.transactionware.com (mail.transactionware.com [203.14.245.7]) by mx1.freebsd.org (Postfix) with SMTP id 4PSHc90HkXz4lCG for ; Thu, 2 Mar 2023 17:08:08 +0000 (UTC) (envelope-from janm@transactionware.com) Authentication-Results: mx1.freebsd.org; none Received: (qmail 25720 invoked by uid 907); 2 Mar 2023 17:08:07 -0000 Received: from i5E8640CB.versanet.de (HELO smtpclient.apple) (94.134.64.203) (smtp-auth username janm, mechanism plain) by mail3.transactionware.com (qpsmtpd/0.84) with (ECDHE-RSA-AES256-GCM-SHA384 encrypted) ESMTPSA; Fri, 03 Mar 2023 04:08:07 +1100 Content-Type: text/plain; charset=utf-8 List-Id: Porting software to FreeBSD List-Archive: https://lists.freebsd.org/archives/freebsd-ports List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org Mime-Version: 1.0 (Mac OS X Mail 16.0 \(3731.400.51.1.1\)) Subject: Re: Possible regression in "make all-depends-list" From: Jan Martin Mikkelsen In-Reply-To: Date: Thu, 2 Mar 2023 18:07:52 +0100 Cc: freebsd-ports@freebsd.org Content-Transfer-Encoding: quoted-printable Message-Id: References: <3EE35107-6152-4144-AFBC-CBD61EECB1AF@transactionware.com> To: Gleb Popov X-Mailer: Apple Mail (2.3731.400.51.1.1) X-Rspamd-Queue-Id: 4PSHc90HkXz4lCG X-Spamd-Bar: ---- X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:17559, ipnet:203.14.245.0/24, country:AU] X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-ThisMailContainsUnwantedMimeParts: N On 2. Mar 2023, at 17:38, Gleb Popov wrote: >=20 > On Thu, Mar 2, 2023 at 6:35=E2=80=AFPM Jan Martin Mikkelsen > wrote: >>=20 >> Running =E2=80=9Cmake all-depends-list=E2=80=9D on the hs-pandoc port = shows none of the dependencies listed in the USE_CABAL variable in the = Makefile. In the 2022Q2 branch, these dependencies were included. >=20 > USE_CABAL dependencies aren't port dependencies. These deps are > compiled statically into the port, so from Ports Framework perspective > they are part of source files that make up the software being built. Thanks, I misdiagnosed that one. The problem was some files were = discarded because of a bad checksum due to a Unicode translation issue. = (Byte order marks added to a UTF8 file.) >> Running =E2=80=9Cmake all-depends-list=E2=80=9D on x11-wm/xfce4 shows = x11-servers/xorg-server as a dependency, but it does not include all of = the dependencies for xorg-server. For example: >>=20 >> xfce4 $ echo $PORTSDIR >> /data/scratch/janm/p4/ports-2023.1/ports >> xfce4 $ make all-depends-list | egrep 'xorg-server|libxcvt' >> /data/scratch/janm/p4/ports-2023.1/ports/x11-servers/xorg-server >> xfce4 $ cd ../../x11-servers/xorg-server >> xorg-server $ make all-depends-list | egrep 'xorg-server|libxcvt' >> /data/scratch/janm/p4/ports-2023.1/ports/x11/libxcvt >>=20 >> In the 2022Q2 branch the dependencies were included. This case still seems to be a regression, as far as I can see. Regards, Jan M.=