pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/pkgtools/pkg_chk Updated pkgtools/pkg_chk to 1.99



details:   https://anonhg.NetBSD.org/pkgsrc/rev/7acc03755601
branches:  trunk
changeset: 392623:7acc03755601
user:      abs <abs%pkgsrc.org@localhost>
date:      Mon May 04 22:45:16 2009 +0000

description:
Updated pkgtools/pkg_chk to 1.99

Add missing ^ to one PKGPATH= regex to ensure we do not pick up PREV_PKGPATH
or similar

diffstat:

 pkgtools/pkg_chk/Makefile         |  4 ++--
 pkgtools/pkg_chk/files/pkg_chk.sh |  4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diffs (32 lines):

diff -r 24a4690cf313 -r 7acc03755601 pkgtools/pkg_chk/Makefile
--- a/pkgtools/pkg_chk/Makefile Mon May 04 22:30:04 2009 +0000
+++ b/pkgtools/pkg_chk/Makefile Mon May 04 22:45:16 2009 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.72 2009/04/09 00:48:12 joerg Exp $
+# $NetBSD: Makefile,v 1.73 2009/05/04 22:45:16 abs Exp $
 
-DISTNAME=      pkg_chk-1.98
+DISTNAME=      pkg_chk-1.99
 CATEGORIES=    pkgtools
 MASTER_SITES=  # empty
 DISTFILES=     # empty
diff -r 24a4690cf313 -r 7acc03755601 pkgtools/pkg_chk/files/pkg_chk.sh
--- a/pkgtools/pkg_chk/files/pkg_chk.sh Mon May 04 22:30:04 2009 +0000
+++ b/pkgtools/pkg_chk/files/pkg_chk.sh Mon May 04 22:45:16 2009 +0000
@@ -1,6 +1,6 @@
 #!@SH@ -e
 #
-# $Id: pkg_chk.sh,v 1.63 2009/03/25 00:00:52 abs Exp $
+# $Id: pkg_chk.sh,v 1.64 2009/05/04 22:45:16 abs Exp $
 #
 # TODO: Make -g check dependencies and tsort
 # TODO: Make -g list user-installed packages first, followed by commented
@@ -488,7 +488,7 @@
 
 pkgdirs_from_installed()
     {
-    ${PKG_INFO} -Bqa | ${AWK} -F= '/PKGPATH=/{print $2}' | ${SORT}
+    ${PKG_INFO} -Bqa | ${AWK} -F= '/^PKGPATH=/{print $2}' | ${SORT}
     }
 
 msg()



Home | Main Index | Thread Index | Old Index