pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/pkgtools/pkg_chk Update pkg_chk to 2.0.10



details:   https://anonhg.NetBSD.org/pkgsrc/rev/9d23d2ad63ea
branches:  trunk
changeset: 324111:9d23d2ad63ea
user:      abs <abs%pkgsrc.org@localhost>
date:      Mon Oct 08 10:35:15 2018 +0000

description:
Update pkg_chk to 2.0.10

Output deprecated warnings to STDERR rather than STDOUT

diffstat:

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

diffs (38 lines):

diff -r 9ecce0ce9f87 -r 9d23d2ad63ea pkgtools/pkg_chk/Makefile
--- a/pkgtools/pkg_chk/Makefile Mon Oct 08 10:12:40 2018 +0000
+++ b/pkgtools/pkg_chk/Makefile Mon Oct 08 10:35:15 2018 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.87 2018/01/27 23:17:22 wiz Exp $
+# $NetBSD: Makefile,v 1.88 2018/10/08 10:35:15 abs Exp $
 
-PKGNAME=       pkg_chk-2.0.9
+PKGNAME=       pkg_chk-2.0.10
 CATEGORIES=    pkgtools
 
 OWNER=         abs%NetBSD.org@localhost
diff -r 9ecce0ce9f87 -r 9d23d2ad63ea pkgtools/pkg_chk/files/pkg_chk.sh
--- a/pkgtools/pkg_chk/files/pkg_chk.sh Mon Oct 08 10:12:40 2018 +0000
+++ b/pkgtools/pkg_chk/files/pkg_chk.sh Mon Oct 08 10:35:15 2018 +0000
@@ -1,6 +1,6 @@
 #!@SH@ -e
 #
-# $Id: pkg_chk.sh,v 1.73 2014/04/23 00:01:01 abs Exp $
+# $Id: pkg_chk.sh,v 1.74 2018/10/08 10:35:15 abs Exp $
 #
 # TODO: Make -g check dependencies and tsort
 # TODO: Make -g list user-installed packages first, followed by commented
@@ -809,12 +809,12 @@
        B ) opt_B=1 ;;
        b ) opt_b=1 ;;
        C ) opt_C="$OPTARG" ;;
-       c ) opt_a=1 ; opt_q=1 ; echo "-c is deprecated - use -a -q" ;;
+       c ) opt_a=1 ; opt_q=1 ; echo "** -c deprecated - use -a -q" 1>&2 ;;
        D ) opt_D="$OPTARG" ;;
        f ) opt_f=1 ;;
        g ) opt_g=1 ;;
        h ) opt_h=1 ;;
-       i ) opt_u=1 ; opt_q=1 ; echo "-i is deprecated - use -u -q" ;;
+       i ) opt_u=1 ; opt_q=1 ; echo "** -i deprecated - use -u -q" 1>&2 ;;
        k ) opt_k=1 ;;
        L ) opt_L="$OPTARG" ;;
        l ) opt_l=1 ;;



Home | Main Index | Thread Index | Old Index