Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id B3DCC1A921F for ; Wed, 13 Apr 2022 22:02:38 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id E124884EDE; Wed, 13 Apr 2022 22:02:37 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2875984D38 for ; Wed, 13 Apr 2022 22:02:37 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id RphVOcflQ92x for ; Wed, 13 Apr 2022 22:02:36 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 9128E84CBC for ; Wed, 13 Apr 2022 22:02:36 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8AF91FB24; Wed, 13 Apr 2022 22:02:36 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1649887356201330" MIME-Version: 1.0 Date: Wed, 13 Apr 2022 22:02:36 +0000 From: "Roland Illig" Subject: CVS commit: pkgsrc/mk To: pkgsrc-changes@NetBSD.org Reply-To: rillig@netbsd.org X-Mailer: log_accum Message-Id: <20220413220236.8AF91FB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1649887356201330 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rillig Date: Wed Apr 13 22:02:36 UTC 2022 Modified Files: pkgsrc/mk: bsd.utils.mk pkgsrc/mk/depends: bsd.depends.mk Log Message: mk: rename show-depends-all to show-depends-recursive This avoids confusing the target with the similarly named show-all-depends, which lists makefile variables related to the depends phase. Suggested by J. Lewis Muir on pkgsrc-users. https://mail-index.netbsd.org/pkgsrc-users/2022/04/13/msg035470.html To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 pkgsrc/mk/bsd.utils.mk cvs rdiff -u -r1.31 -r1.32 pkgsrc/mk/depends/bsd.depends.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1649887356201330 Content-Disposition: inline Content-Length: 2166 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mk/bsd.utils.mk diff -u pkgsrc/mk/bsd.utils.mk:1.13 pkgsrc/mk/bsd.utils.mk:1.14 --- pkgsrc/mk/bsd.utils.mk:1.13 Sat Apr 9 00:46:12 2022 +++ pkgsrc/mk/bsd.utils.mk Wed Apr 13 22:02:36 2022 @@ -1,4 +1,4 @@ -# $NetBSD: bsd.utils.mk,v 1.13 2022/04/09 00:46:12 rillig Exp $ +# $NetBSD: bsd.utils.mk,v 1.14 2022/04/13 22:02:36 rillig Exp $ # # This Makefile fragment is included by bsd.pkg.mk and defines utility # and otherwise miscellaneous variables and targets. @@ -54,7 +54,7 @@ _PKG_PATHS_CMD= \ # # See also: # show-depends -# show-depends-all +# show-depends-recursive # # Keywords: depends dependencies .PHONY: show-depends-dirs show-depends-pkgpaths @@ -73,7 +73,7 @@ _DEPENDS_WALK_CMD= \ PKGSRCDIR=${PKGSRCDIR:Q} TEST=${TOOLS_TEST:Q} \ ${AWK} -f ${.CURDIR}/../../mk/scripts/depends-depth-first.awk -- -# show-depends-all: +# show-depends-recursive: # Lists the PKGPATH of all direct or indirect dependencies of the # current package. # @@ -86,6 +86,7 @@ _DEPENDS_WALK_CMD= \ # See also: # show-depends # show-depends-pkgpaths -# Keywords: depends dependencies recursive indirect -show-depends-all: .PHONY +# +# Keywords: depends dependencies recursive indirect transitive +show-depends-recursive: .PHONY ${RUN} ${_DEPENDS_WALK_CMD} ${PKGPATH} Index: pkgsrc/mk/depends/bsd.depends.mk diff -u pkgsrc/mk/depends/bsd.depends.mk:1.31 pkgsrc/mk/depends/bsd.depends.mk:1.32 --- pkgsrc/mk/depends/bsd.depends.mk:1.31 Sat Apr 9 00:46:12 2022 +++ pkgsrc/mk/depends/bsd.depends.mk Wed Apr 13 22:02:36 2022 @@ -1,4 +1,4 @@ -# $NetBSD: bsd.depends.mk,v 1.31 2022/04/09 00:46:12 rillig Exp $ +# $NetBSD: bsd.depends.mk,v 1.32 2022/04/13 22:02:36 rillig Exp $ # # This Makefile fragment is included by bsd.pkg.mk and provides all # variables and targets related to dependencies. @@ -140,7 +140,7 @@ depends-cookie: # # See also: # show-depends-pkgpaths Prints the PKGPATH of all direct dependencies. -# show-depends-all Prints the PKGPATH of all direct and +# show-depends-recursive Prints the PKGPATH of all direct and # indirect dependencies. # # Keywords: depends dependencies --_----------=_1649887356201330--