pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/mk/flavor/pkg Don't warn that the "check", "info" or "...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/37672c3acbbd
branches:  trunk
changeset: 535496:37672c3acbbd
user:      tron <tron%pkgsrc.org@localhost>
date:      Mon Nov 19 14:59:40 2007 +0000

description:
Don't warn that the "check", "info" or "list' target will be removed.
They are still in use and not really hard to maintain.

diffstat:

 mk/flavor/pkg/utility.mk |  32 ++++++++++++++++----------------
 1 files changed, 16 insertions(+), 16 deletions(-)

diffs (46 lines):

diff -r 1ccab7ddfa23 -r 37672c3acbbd mk/flavor/pkg/utility.mk
--- a/mk/flavor/pkg/utility.mk  Mon Nov 19 13:47:00 2007 +0000
+++ b/mk/flavor/pkg/utility.mk  Mon Nov 19 14:59:40 2007 +0000
@@ -1,4 +1,19 @@
-# $NetBSD: utility.mk,v 1.8 2007/11/10 23:44:01 rillig Exp $
+# $NetBSD: utility.mk,v 1.9 2007/11/19 14:59:40 tron Exp $
+
+# The 'info' target can be used to display information about a package.
+.PHONY: info
+info:
+       ${_PKG_SILENT}${_PKG_DEBUG}${PKG_INFO} "${PKGWILDCARD}"
+
+# The 'check' target can be used to check an installed package.
+.PHONY: check
+check:
+       ${_PKG_SILENT}${_PKG_DEBUG}${PKG_ADMIN} check "${PKGWILDCARD}"
+
+# The 'list' target can be used to list the files installed by a package.
+.PHONY: list
+list:
+       ${_PKG_SILENT}${_PKG_DEBUG}${PKG_INFO} -L "${PKGWILDCARD}"
 
 ######################################################################
 ###
@@ -6,21 +21,6 @@
 ###
 ######################################################################
 
-# The 'info' target can be used to display information about a package.
-.PHONY: info
-info: _about-to-be-removed
-       ${_PKG_SILENT}${_PKG_DEBUG}${PKG_INFO} "${PKGWILDCARD}"
-
-# The 'check' target can be used to check an installed package.
-.PHONY: check
-check: _about-to-be-removed
-       ${_PKG_SILENT}${_PKG_DEBUG}${PKG_ADMIN} check "${PKGWILDCARD}"
-
-# The 'list' target can be used to list the files installed by a package.
-.PHONY: list
-list: _about-to-be-removed
-       ${_PKG_SILENT}${_PKG_DEBUG}${PKG_INFO} -L "${PKGWILDCARD}"
-
 # show-downlevel:
 #      Lists the packages whose installed version does not match the
 #      current version in pkgsrc.



Home | Main Index | Thread Index | Old Index