Received: by mail.netbsd.org (Postfix, from userid 605) id 918E784D96; Mon, 8 Oct 2018 10:35:17 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 858FB84D3F for ; Mon, 8 Oct 2018 10:35:16 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 72fgCDMQKd6h for ; Mon, 8 Oct 2018 10:35:15 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id CF77A84CEA for ; Mon, 8 Oct 2018 10:35:15 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C9410FBEE; Mon, 8 Oct 2018 10:35:15 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1538994915287680" MIME-Version: 1.0 Date: Mon, 8 Oct 2018 10:35:15 +0000 From: "David Brownlee" Subject: CVS commit: pkgsrc/pkgtools/pkg_chk To: pkgsrc-changes@NetBSD.org Reply-To: abs@netbsd.org X-Mailer: log_accum Message-Id: <20181008103515.C9410FBEE@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1538994915287680 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" 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. --_----------=_1538994915287680 Content-Disposition: inline Content-Length: 1589 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii 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 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 ;; --_----------=_1538994915287680--