summaryrefslogtreecommitdiff
path: root/pkgtools/revbump
diff options
context:
space:
mode:
authorhe <he@pkgsrc.org>2008-10-17 14:23:58 +0000
committerhe <he@pkgsrc.org>2008-10-17 14:23:58 +0000
commit97b3b7d7ed52735c4ee0a93b06d0121feaafb37a (patch)
tree66e9ae52ce635a0a0c7b85fac864375cfab52551 /pkgtools/revbump
parenta3f04ffb0eb56bae2e3e31faf3f857e86f3b9acd (diff)
downloadpkgsrc-97b3b7d7ed52735c4ee0a93b06d0121feaafb37a.tar.gz
Two minor fixes:
o Documentation fix: the blbump script does not print the names of the package directories it succeeded in bumping, only the ones which it failed to bump o Code fix: remove a pointless assignment / substitution in blbump
Diffstat (limited to 'pkgtools/revbump')
-rw-r--r--pkgtools/revbump/Makefile4
-rw-r--r--pkgtools/revbump/files/blbump3
-rw-r--r--pkgtools/revbump/files/blbump.14
3 files changed, 5 insertions, 6 deletions
diff --git a/pkgtools/revbump/Makefile b/pkgtools/revbump/Makefile
index cdeb02638f3..f887cc2bbcb 100644
--- a/pkgtools/revbump/Makefile
+++ b/pkgtools/revbump/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.13 2008/07/25 13:08:31 obache Exp $
+# $NetBSD: Makefile,v 1.14 2008/10/17 14:23:58 he Exp $
-DISTNAME= revbump-1.8
+DISTNAME= revbump-1.9
CATEGORIES= pkgtools
MASTER_SITES= # empty
DISTFILES= # empty
diff --git a/pkgtools/revbump/files/blbump b/pkgtools/revbump/files/blbump
index adb5d31b18a..0dd511bb470 100644
--- a/pkgtools/revbump/files/blbump
+++ b/pkgtools/revbump/files/blbump
@@ -1,7 +1,7 @@
#!@PERL@ -w
# -*- perl -*-
#
-# $NetBSD: blbump,v 1.4 2006/04/06 06:25:46 reed Exp $
+# $NetBSD: blbump,v 1.5 2008/10/17 14:23:58 he Exp $
#
# Copyright (c) 2003, 2004 The NetBSD Foundation, Inc.
#
@@ -142,7 +142,6 @@ foreach $pkg (@PACKAGES) {
print "$pkg\n";
} else {
print "$pkg\n" if blbump("$pkg") == 0;
- $pkg =~ /\/(.*)$/;
}
}
diff --git a/pkgtools/revbump/files/blbump.1 b/pkgtools/revbump/files/blbump.1
index 6ca74834ac5..52db3a84645 100644
--- a/pkgtools/revbump/files/blbump.1
+++ b/pkgtools/revbump/files/blbump.1
@@ -1,4 +1,4 @@
-.\" $NetBSD: blbump.1,v 1.4 2006/04/06 06:25:46 reed Exp $
+.\" $NetBSD: blbump.1,v 1.5 2008/10/17 14:23:58 he Exp $
.\"
.\" Copyright (c) 2003, 2004, 2005 The NetBSD Foundation, Inc.
.\"
@@ -63,7 +63,7 @@ is used instead of the default
.Pa /usr/pkgsrc .
.Pp
.Nm
-reports successful updates on stdout, and prints the package name
+prints the package name
(in
.Ar category/package
form) on stdout for each package where it failed.