pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/mk



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.

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



Home | Main Index | Thread Index | Old Index