From nobody Thu Mar 02 15:35:03 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 4PSFY54QdTz3vxBj for ; Thu, 2 Mar 2023 15:35:21 +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 4PSFY4289Pz4Q1g for ; Thu, 2 Mar 2023 15:35:20 +0000 (UTC) (envelope-from janm@transactionware.com) Authentication-Results: mx1.freebsd.org; dkim=none; spf=none (mx1.freebsd.org: domain of janm@transactionware.com has no SPF policy when checking 203.14.245.7) smtp.mailfrom=janm@transactionware.com; dmarc=none Received: (qmail 19425 invoked by uid 907); 2 Mar 2023 15:35:18 -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 02:35:18 +1100 From: Jan Martin Mikkelsen Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable 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: Possible regression in "make all-depends-list" Message-Id: <3EE35107-6152-4144-AFBC-CBD61EECB1AF@transactionware.com> Date: Thu, 2 Mar 2023 16:35:03 +0100 To: freebsd-ports@freebsd.org X-Mailer: Apple Mail (2.3731.400.51.1.1) X-Spamd-Result: default: False [-1.50 / 15.00]; AUTH_NA(1.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_SHORT(-1.00)[-0.998]; MV_CASE(0.50)[]; MIME_GOOD(-0.10)[text/plain]; RCVD_NO_TLS_LAST(0.10)[]; R_SPF_NA(0.00)[no SPF record]; RCVD_VIA_SMTP_AUTH(0.00)[]; R_DKIM_NA(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; ASN(0.00)[asn:17559, ipnet:203.14.245.0/24, country:AU]; MIME_TRACE(0.00)[0:+]; MLMMJ_DEST(0.00)[freebsd-ports@freebsd.org]; RCPT_COUNT_ONE(0.00)[1]; DMARC_NA(0.00)[transactionware.com]; ARC_NA(0.00)[]; RCVD_COUNT_TWO(0.00)[2]; FROM_HAS_DN(0.00)[]; TO_DN_NONE(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MID_RHS_MATCH_FROM(0.00)[] X-Rspamd-Queue-Id: 4PSFY4289Pz4Q1g X-Spamd-Bar: - X-ThisMailContainsUnwantedMimeParts: N Hi, The behaviour of =E2=80=9Cmake all-depends-list=E2=80=9D seems to have = changed between the 2022Q2 branch and now. There are two cases that I see: 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. 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: 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 In the 2022Q2 branch the dependencies were included. This seems like a regression in the all-depends-list target. Am I = missing something? Thanks, Jan M.