pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc Add a marker for bootstrap packages to allow special c...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/94659f09a84a
branches:  trunk
changeset: 543532:94659f09a84a
user:      joerg <joerg%pkgsrc.org@localhost>
date:      Thu Jun 19 18:36:51 2008 +0000

description:
Add a marker for bootstrap packages to allow special cases them during
bulk builds.

diffstat:

 archivers/pax/Makefile               |  3 ++-
 bootstrap/bootstrap                  |  6 +++++-
 devel/bmake/Makefile                 |  3 ++-
 lang/nawk/Makefile                   |  4 +++-
 mk/pbulk/pbulk-index.mk              |  3 ++-
 net/tnftp/Makefile                   |  3 ++-
 pkgtools/bootstrap-extras/Makefile   |  3 ++-
 pkgtools/bootstrap-mk-files/Makefile |  3 ++-
 pkgtools/pkg_install/Makefile        |  3 ++-
 shells/pdksh/Makefile                |  3 ++-
 sysutils/install-sh/Makefile         |  3 ++-
 textproc/nbsed/Makefile              |  3 ++-
 12 files changed, 28 insertions(+), 12 deletions(-)

diffs (210 lines):

diff -r e034f7c494a0 -r 94659f09a84a archivers/pax/Makefile
--- a/archivers/pax/Makefile    Thu Jun 19 18:14:57 2008 +0000
+++ b/archivers/pax/Makefile    Thu Jun 19 18:36:51 2008 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.35 2008/03/06 04:45:58 jlam Exp $
+# $NetBSD: Makefile,v 1.36 2008/06/19 18:36:51 joerg Exp $
 
 DISTNAME=              pax-20080110
 CATEGORIES=            archivers
@@ -10,6 +10,7 @@
 COMMENT=               POSIX standard archiver with many extensions
 
 PKG_DESTDIR_SUPPORT=   user-destdir
+BOOTSTRAP_PKG= yes
 
 USE_FEATURES=          nbcompat
 
diff -r e034f7c494a0 -r 94659f09a84a bootstrap/bootstrap
--- a/bootstrap/bootstrap       Thu Jun 19 18:14:57 2008 +0000
+++ b/bootstrap/bootstrap       Thu Jun 19 18:36:51 2008 +0000
@@ -1,6 +1,6 @@
 #! /bin/sh
 
-# $NetBSD: bootstrap,v 1.131 2008/06/17 12:11:59 sketch Exp $
+# $NetBSD: bootstrap,v 1.132 2008/06/19 18:36:51 joerg Exp $
 #
 #
 # Copyright (c) 2001-2002 Alistair G. Crooks.  All rights reserved.
@@ -1056,6 +1056,10 @@
        run_cmd "(cd $pkgsrcdir/$1 && $bmake -DPKG_PRESERVE MAKECONF=${BOOTSTRAP_MKCONF} install)"
 }
 
+#
+# Please make sure that the following packages and
+# only the following packages set BOOTSTRAP_PKG=yes.
+#
 echo_msg "Installing packages"
 build_package "pkgtools/bootstrap-mk-files"
 case "$need_bsd_install" in
diff -r e034f7c494a0 -r 94659f09a84a devel/bmake/Makefile
--- a/devel/bmake/Makefile      Thu Jun 19 18:14:57 2008 +0000
+++ b/devel/bmake/Makefile      Thu Jun 19 18:36:51 2008 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.43 2008/05/23 18:06:44 tnn Exp $
+# $NetBSD: Makefile,v 1.44 2008/06/19 18:36:51 joerg Exp $
 #
 
 DISTNAME=      bmake-20080215
@@ -17,6 +17,7 @@
 DEPENDS+=      bootstrap-mk-files-[0-9]*:../../pkgtools/bootstrap-mk-files
 
 PKG_DESTDIR_SUPPORT=   user-destdir
+BOOTSTRAP_PKG= yes
 
 WRKSRC=                ${WRKDIR}/bmake
 NO_CHECKSUM=   yes
diff -r e034f7c494a0 -r 94659f09a84a lang/nawk/Makefile
--- a/lang/nawk/Makefile        Thu Jun 19 18:14:57 2008 +0000
+++ b/lang/nawk/Makefile        Thu Jun 19 18:36:51 2008 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.31 2008/03/04 16:38:12 jlam Exp $
+# $NetBSD: Makefile,v 1.32 2008/06/19 18:36:51 joerg Exp $
 
 DISTNAME=      nawk-20050424
 CATEGORIES=    lang
@@ -12,6 +12,8 @@
 PKG_INSTALLATION_TYPES=        overwrite pkgviews
 PKG_DESTDIR_SUPPORT=   user-destdir
 
+BOOTSTRAP_PKG= yes
+
 CFLAGS+=       ${CPPFLAGS}
 MAKE_FLAGS+=   CC=${CC:Q} CFLAGS=${CFLAGS:M*:Q}
 
diff -r e034f7c494a0 -r 94659f09a84a mk/pbulk/pbulk-index.mk
--- a/mk/pbulk/pbulk-index.mk   Thu Jun 19 18:14:57 2008 +0000
+++ b/mk/pbulk/pbulk-index.mk   Thu Jun 19 18:36:51 2008 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: pbulk-index.mk,v 1.8 2008/04/18 12:24:21 joerg Exp $
+#      $NetBSD: pbulk-index.mk,v 1.9 2008/06/19 18:36:51 joerg Exp $
 
 # This Makefile fragment is included by bsd.pkg.mk and provides all
 # variables and targets related to the parallel bulk build
@@ -93,6 +93,7 @@
        @echo "CATEGORIES="${CATEGORIES:Q}
        @echo "MAINTAINER="${MAINTAINER:Q}
        @echo "USE_DESTDIR="${_USE_DESTDIR:Q}
+       @echo "BOOTSTRAP_PKG="${BOOTSTRAP_PKG}
 .if defined(_PBULK_MULTI_NEEDED)
        @printf "MULTI_VERSION="
 .for _t in ${_PBULK_MULTI_NEEDED}
diff -r e034f7c494a0 -r 94659f09a84a net/tnftp/Makefile
--- a/net/tnftp/Makefile        Thu Jun 19 18:14:57 2008 +0000
+++ b/net/tnftp/Makefile        Thu Jun 19 18:36:51 2008 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.24 2008/05/28 13:36:18 tnn Exp $
+# $NetBSD: Makefile,v 1.25 2008/06/19 18:36:51 joerg Exp $
 
 DISTNAME=              tnftp-20070806
 SVR4_PKGNAME=          tnftp
@@ -15,6 +15,7 @@
 COMMENT=               The enhanced FTP client in NetBSD
 
 PKG_DESTDIR_SUPPORT=   user-destdir
+BOOTSTRAP_PKG= yes
 
 GNU_CONFIGURE=         yes
 NO_CHECKSUM=           yes
diff -r e034f7c494a0 -r 94659f09a84a pkgtools/bootstrap-extras/Makefile
--- a/pkgtools/bootstrap-extras/Makefile        Thu Jun 19 18:14:57 2008 +0000
+++ b/pkgtools/bootstrap-extras/Makefile        Thu Jun 19 18:36:51 2008 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.6 2008/06/19 18:12:18 joerg Exp $
+# $NetBSD: Makefile,v 1.7 2008/06/19 18:36:51 joerg Exp $
 
 DISTNAME=      bootstrap-extra-files-20070702
 CATEGORIES=    pkgtools
@@ -9,6 +9,7 @@
 COMMENT=       Extra bootstrap files and scripts for ${OPSYS}
 
 PKG_DESTDIR_SUPPORT=   user-destdir
+BOOTSTRAP_PKG= yes
 
 NO_CHECKSUM=   yes
 NO_MTREE=      yes
diff -r e034f7c494a0 -r 94659f09a84a pkgtools/bootstrap-mk-files/Makefile
--- a/pkgtools/bootstrap-mk-files/Makefile      Thu Jun 19 18:14:57 2008 +0000
+++ b/pkgtools/bootstrap-mk-files/Makefile      Thu Jun 19 18:36:51 2008 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.11 2008/04/15 16:49:56 joerg Exp $
+# $NetBSD: Makefile,v 1.12 2008/06/19 18:36:51 joerg Exp $
 
 DISTNAME=      bootstrap-mk-files-20080415
 CATEGORIES=    pkgtools
@@ -14,6 +14,7 @@
 PKG_DESTDIR_SUPPORT=   user-destdir
 
 NO_PKGTOOLS_REQD_CHECK=        # defined
+BOOTSTRAP_PKG= yes
 
 NO_CHECKSUM=   yes
 NO_MTREE=      yes
diff -r e034f7c494a0 -r 94659f09a84a pkgtools/pkg_install/Makefile
--- a/pkgtools/pkg_install/Makefile     Thu Jun 19 18:14:57 2008 +0000
+++ b/pkgtools/pkg_install/Makefile     Thu Jun 19 18:36:51 2008 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.154 2008/06/08 21:04:30 he Exp $
+# $NetBSD: Makefile,v 1.155 2008/06/19 18:36:51 joerg Exp $
 
 # Notes to package maintainers:
 #
@@ -17,6 +17,7 @@
 #LICENSE=              modified-bsd
 
 PKG_DESTDIR_SUPPORT=   user-destdir
+BOOTSTRAP_PKG= yes
 
 CONFLICTS+=            audit-packages-[0-9]*
 
diff -r e034f7c494a0 -r 94659f09a84a shells/pdksh/Makefile
--- a/shells/pdksh/Makefile     Thu Jun 19 18:14:57 2008 +0000
+++ b/shells/pdksh/Makefile     Thu Jun 19 18:36:51 2008 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.16 2008/05/31 16:51:10 tnn Exp $
+# $NetBSD: Makefile,v 1.17 2008/06/19 18:36:51 joerg Exp $
 #
 
 DISTNAME=      pdksh-5.2.14
@@ -17,6 +17,7 @@
 
 PKG_DESTDIR_SUPPORT=   user-destdir
 PKG_INSTALLATION_TYPES=        overwrite pkgviews
+BOOTSTRAP_PKG= yes
 
 NO_CHECKSUM=           yes
 GNU_CONFIGURE=         yes
diff -r e034f7c494a0 -r 94659f09a84a sysutils/install-sh/Makefile
--- a/sysutils/install-sh/Makefile      Thu Jun 19 18:14:57 2008 +0000
+++ b/sysutils/install-sh/Makefile      Thu Jun 19 18:36:51 2008 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.4 2008/05/24 13:30:36 tnn Exp $
+# $NetBSD: Makefile,v 1.5 2008/06/19 18:36:51 joerg Exp $
 
 DISTNAME=      install-sh-20070712
 CATEGORIES=    sysutils
@@ -9,6 +9,7 @@
 COMMENT=       install script compatible with the BSD install program
 
 PKG_DESTDIR_SUPPORT=   user-destdir
+BOOTSTRAP_PKG= yes
 USE_TOOLS+=    sed
 NO_CHECKSUM=   yes
 NO_MTREE=      yes
diff -r e034f7c494a0 -r 94659f09a84a textproc/nbsed/Makefile
--- a/textproc/nbsed/Makefile   Thu Jun 19 18:14:57 2008 +0000
+++ b/textproc/nbsed/Makefile   Thu Jun 19 18:36:51 2008 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.18 2008/06/19 18:14:57 joerg Exp $
+# $NetBSD: Makefile,v 1.19 2008/06/19 18:36:52 joerg Exp $
 
 DISTNAME=              nbsed-20040821
 PKGREVISION=           1
@@ -11,6 +11,7 @@
 COMMENT=               NetBSD-current's sed(1)
 
 PKG_DESTDIR_SUPPORT=   user-destdir
+BOOTSTRAP_PKG= yes
 
 NO_CHECKSUM=           yes
 NO_MTREE=              yes



Home | Main Index | Thread Index | Old Index