pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/pkgtools/pkg_chk Bump version to 1.94:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/bc19e53fc924
branches:  trunk
changeset: 542726:bc19e53fc924
user:      tron <tron%pkgsrc.org@localhost>
date:      Mon May 26 09:25:43 2008 +0000

description:
Bump version to 1.94:
Fix a bug exposed by the "set -e" improvements in NetBSD-current's
"/bin/sh" which would prevent the script from cleaning up its
temporary directory.

Change approved by David Brownlee.

diffstat:

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

diffs (34 lines):

diff -r bad9634e6a7d -r bc19e53fc924 pkgtools/pkg_chk/Makefile
--- a/pkgtools/pkg_chk/Makefile Mon May 26 02:13:14 2008 +0000
+++ b/pkgtools/pkg_chk/Makefile Mon May 26 09:25:43 2008 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.64 2008/05/24 19:15:36 abs Exp $
+# $NetBSD: Makefile,v 1.65 2008/05/26 09:25:43 tron Exp $
 
-DISTNAME=      pkg_chk-1.93
+DISTNAME=      pkg_chk-1.94
 CATEGORIES=    pkgtools
 MASTER_SITES=  # empty
 DISTFILES=     # empty
diff -r bad9634e6a7d -r bc19e53fc924 pkgtools/pkg_chk/files/pkg_chk.sh
--- a/pkgtools/pkg_chk/files/pkg_chk.sh Mon May 26 02:13:14 2008 +0000
+++ b/pkgtools/pkg_chk/files/pkg_chk.sh Mon May 26 09:25:43 2008 +0000
@@ -1,6 +1,6 @@
 #!@SH@ -e
 #
-# $Id: pkg_chk.sh,v 1.58 2008/05/21 20:52:31 dillo Exp $
+# $Id: pkg_chk.sh,v 1.59 2008/05/26 09:25:43 tron Exp $
 #
 # TODO: Make -g check dependencies and tsort
 # TODO: Make -g list user-installed packages first, followed by commented
@@ -922,8 +922,8 @@
     run_cmd "rm -f $PKGCHK_UPDATE_CONF"
 fi
 
-[ -n "$MISS_DONE" ] &&         msg "Missing:$MISS_DONE"
-[ -n "$INSTALL_DONE" ] &&      msg "Installed:$INSTALL_DONE"
+[ -z "$MISS_DONE" ] ||         msg "Missing:$MISS_DONE"
+[ -z "$INSTALL_DONE" ] ||      msg "Installed:$INSTALL_DONE"
 
 if [ -n "$FAIL_DONE" ] ; then
    msg "Failed:$FAIL_DONE"



Home | Main Index | Thread Index | Old Index