update to 0.2.0

'OK' and 'Rem?' markers are also enabled for pkg_all_conflicts
  Minor fix in pkg_all_conflicts
This commit is contained in:
Aleksey Cheusov 2008-11-03 21:59:38 +00:00 committed by Thomas Klausner
parent 9da40e9d62
commit f4eff9fe31
2 changed files with 5 additions and 4 deletions

View file

@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.1.1.1 2008/11/01 17:30:19 cheusov Exp $
# $NetBSD: Makefile,v 1.2 2008/11/03 21:59:38 cheusov Exp $
DISTNAME= pkg_conflicts-0.1.0
DISTNAME= pkg_conflicts-0.2.0
CATEGORIES= pkgtools
MASTER_SITES= # empty
DISTFILES= # empty

View file

@ -168,14 +168,15 @@ check_conflicts (){
header_msg = sprintf(" -------- %s --------", $2)
printed = 0
prev = $2
next
}
function print_header(){
if (!printed) print header_msg
printed = 1
}
# $1 == 1 { print_header(); print "Rem?: ", $3 }
$1 == 1 { print_header(); print "Rem?: ", $3 }
$1 == 2 { print_header(); print "Missed:", $3 }
# $1 == 3 { print_header(); print "OK: ", $3 }
$1 == 3 { print_header(); print "OK: ", $3 }
'
}