Import of pkgsrc-2014Q1

This commit is contained in:
2014-04-17 16:38:45 +02:00
parent 785076ae39
commit 9a8c06dafb
19365 changed files with 828089 additions and 278039 deletions

View File

@@ -1,7 +1,7 @@
#!@PERL@ -w
# -*- perl -*-
#
# $NetBSD: finddepends,v 1.7 2013/03/17 15:27:18 obache Exp $
# $NetBSD: finddepends,v 1.8 2013/10/21 10:43:28 wiz Exp $
#
# Copyright (c) 2006 The NetBSD Foundation, Inc.
#
@@ -108,6 +108,8 @@ print "\n";
@makefiles = <$PKGSRCDIR/*/*/Makefile*>;
@optionfiles = <$PKGSRCDIR/*/*/options.mk>;
push(@makefiles, @optionfiles);
@optionfiles = <$PKGSRCDIR/*/*/mozilla-common.mk>;
push(@makefiles, @optionfiles);
for $makefile (@makefiles) {
# print "* reading $makefile\n";

View File

@@ -1,4 +1,4 @@
.\" $NetBSD: revbump.1,v 1.15 2013/05/18 13:22:57 wiz Exp $
.\" $NetBSD: revbump.1,v 1.16 2013/10/21 10:43:28 wiz Exp $
.\"
.\" Copyright (c) 2003, 2004, 2005, 2006, 2010, 2012, 2013 The NetBSD Foundation, Inc.
.\"
@@ -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 May 18, 2013
.Dd October 21, 2013
.Dt REVBUMP 1
.Os
.Sh NAME
@@ -87,21 +87,21 @@ would be:
cd /usr/pkgsrc
finddepends category/package \*[Gt] allbump
grep buildlink3.mk allbump | sed 's/.buildlink3.mk//' \*[Gt] bl3bump
grep Makefile.common allbump > commonbump
grep -e Makefile.common -e mozilla-common.mk allbump > commonbump
[read commonbump and replace entries with all packages including the
corresponding Makefile.common file]
corresponding Makefile.common or mozilla-common.mk file]
cat allbump commonbump | sed 's,/[^/]*$,,' | sort -u \*[Gt] makebump
revbump \*[Lt] makebump \*[Gt] makebump.manual
[if a package is listed in makebump.manual outside a line
"Updated ... from ... to ...", handle the PKGREVISION bump manually]
blbump \*[Lt] bl3bump \*[Gt] bl3bump.manual
[handle the *ABI_DEPENDS* bumps in bl3bump.manual manually, usually none]
cvs diff `cat makebump`
cvs diff `cat makebump` | less
[look for PYPKGPREFIX -\*[Gt] py27
and RUBY_PKGPREFIX -\*[Gt] ruby19 expansions
in buildlink files and any unrelated diffs you have in your
local tree, and fix them]
cvs diff `cat bl3bump makebump`
cvs diff `cat bl3bump makebump` | less
cvs commit `cat bl3bump makebump`
rm allbump bl3bump* makebump* commonbump
.Ed