diff options
-rw-r--r-- | pkgtools/revbump/Makefile | 4 | ||||
-rw-r--r-- | pkgtools/revbump/files/revbump.1 | 30 |
2 files changed, 17 insertions, 17 deletions
diff --git a/pkgtools/revbump/Makefile b/pkgtools/revbump/Makefile index 9eda06383d1..76f36f46610 100644 --- a/pkgtools/revbump/Makefile +++ b/pkgtools/revbump/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.16 2010/01/18 06:51:14 wiz Exp $ +# $NetBSD: Makefile,v 1.17 2010/06/20 19:29:50 wiz Exp $ -DISTNAME= revbump-2.0 +DISTNAME= revbump-2.1 CATEGORIES= pkgtools MASTER_SITES= # empty DISTFILES= # empty diff --git a/pkgtools/revbump/files/revbump.1 b/pkgtools/revbump/files/revbump.1 index dbef08a1d82..f4beaf2f32e 100644 --- a/pkgtools/revbump/files/revbump.1 +++ b/pkgtools/revbump/files/revbump.1 @@ -1,6 +1,6 @@ -.\" $NetBSD: revbump.1,v 1.9 2010/01/18 06:51:14 wiz Exp $ +.\" $NetBSD: revbump.1,v 1.10 2010/06/20 19:29:50 wiz Exp $ .\" -.\" Copyright (c) 2003, 2004, 2005, 2006 The NetBSD Foundation, Inc. +.\" Copyright (c) 2003, 2004, 2005, 2006, 2010 The NetBSD Foundation, Inc. .\" .\" This code was originally contributed to the NetBSD Foundation, Inc. .\" by Julio Merino <jmmv@NetBSD.org> and Thomas Klausner <wiz@NetBSD.org>. @@ -31,7 +31,7 @@ .\" OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN .\" IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.Dd January 18, 2010 +.Dd June 20, 2010 .Dt REVBUMP 1 .Os .Sh NAME @@ -87,23 +87,23 @@ would be: cd /usr/pkgsrc finddepends category/package \*[Gt] allbump grep buildlink3.mk allbump | sed 's/.buildlink3.mk//' \*[Gt] bl3bump -grep -v buildlink3.mk allbump | sed 's/.Makefile$//' \*[Gt] makebump +grep Makefile.common allbump > commonbump +[read commonbump and replace entries with all packages including the + corresponding Makefile.common file] +cat allbump commonbump | sed 's,/[^/]*$,,' | sort -u \*[Gt] makebump revbump \*[Lt] makebump \*[Gt] makebump.manual -[handle the PKGREVISION bumps in makebump.manual manually; - this will include any Makefile.common files - the files that include - them will currently need to be found manually] +[handle the PKGREVISION bumps in makebump.manual manually] blbump \*[Lt] bl3bump \*[Gt] bl3bump.manual -[handle the *ABI_DEPENDS* bumps in bl3bump.manual manually] -cvs diff `cat allbump` -[look for PYPKGPREFIX -\*[Gt] py25 expansions +[handle the *ABI_DEPENDS* bumps in bl3bump.manual manually, usually none] +cvs diff `cat allbump commonbump` +[look for PYPKGPREFIX -\*[Gt] py26 expansions in buildlink files and any unrelated diffs you have in your local tree, and fix them] lintpkgsrc -d -[fix broken dependencies noted by this (usually meta-pkg/kde3, - subversion, nessus)] -cvs diff `cat allbump` -cvs commit `cat allbump` -rm allbump bl3bump* makebump* +[fix broken dependencies noted by this (usually subversion)] +cvs diff `cat allbump commonbump` +cvs commit `cat allbump commonbump` +rm allbump bl3bump* makebump* commonbump .Ed .Sh SEE ALSO .Xr blbump 1 , |