pkgsrc-Changes archive

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

CVS commit: pkgsrc/pkgtools/pkg_chk



Module Name:    pkgsrc
Committed By:   abs
Date:           Mon Oct  8 10:35:15 UTC 2018

Modified Files:
        pkgsrc/pkgtools/pkg_chk: Makefile
        pkgsrc/pkgtools/pkg_chk/files: pkg_chk.sh

Log Message:
Update pkg_chk to 2.0.10

Output deprecated warnings to STDERR rather than STDOUT


To generate a diff of this commit:
cvs rdiff -u -r1.87 -r1.88 pkgsrc/pkgtools/pkg_chk/Makefile
cvs rdiff -u -r1.73 -r1.74 pkgsrc/pkgtools/pkg_chk/files/pkg_chk.sh

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/pkgtools/pkg_chk/Makefile
diff -u pkgsrc/pkgtools/pkg_chk/Makefile:1.87 pkgsrc/pkgtools/pkg_chk/Makefile:1.88
--- pkgsrc/pkgtools/pkg_chk/Makefile:1.87       Sat Jan 27 23:17:22 2018
+++ pkgsrc/pkgtools/pkg_chk/Makefile    Mon Oct  8 10:35:15 2018
@@ -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

Index: pkgsrc/pkgtools/pkg_chk/files/pkg_chk.sh
diff -u pkgsrc/pkgtools/pkg_chk/files/pkg_chk.sh:1.73 pkgsrc/pkgtools/pkg_chk/files/pkg_chk.sh:1.74
--- pkgsrc/pkgtools/pkg_chk/files/pkg_chk.sh:1.73       Wed Apr 23 00:01:01 2014
+++ pkgsrc/pkgtools/pkg_chk/files/pkg_chk.sh    Mon Oct  8 10:35:15 2018
@@ -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 @@ while getopts BC:D:L:P:U:abcfghiklNnpqrs
        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