[Midnightbsd-cvs] src: tools/tinderbox: Update tinderbox for MidnightBSD on CURRENT

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Thu Mar 6 15:23:48 EST 2008


Log Message:
-----------
Update tinderbox for MidnightBSD on CURRENT branch.

Modified Files:
--------------
    src/tools/tools/tinderbox:
        Makefile (r1.1.1.1 -> r1.2)
        tbmaster.pl (r1.1.1.1 -> r1.2)
        tinderbox.pl (r1.1.1.1 -> r1.2)
    src/tools/tools/tinderbox/etc:
        Makefile (r1.1.1.1 -> r1.2)
        current.rc (r1.1.1.1 -> r1.2)
        default.rc (r1.1.1.1 -> r1.2)
        update_current.rc (r1.1.1.1 -> r1.2)
    src/tools/tools/tinderbox/www:
        Makefile (r1.1.1.1 -> r1.2)
        index.cgi (r1.1.1.1 -> r1.2)

Removed Files:
-------------
    src/tools/tools/tinderbox:
        powerpc.diff
    src/tools/tools/tinderbox/etc:
        releng_4.rc
        releng_5.rc
        stable.rc
        update_releng_4.rc
        update_releng_5.rc
        update_stable.rc

-------------- next part --------------
Index: tinderbox.pl
===================================================================
RCS file: /home/cvs/src/tools/tools/tinderbox/tinderbox.pl,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -L tools/tools/tinderbox/tinderbox.pl -L tools/tools/tinderbox/tinderbox.pl -u -r1.1.1.1 -r1.2
--- tools/tools/tinderbox/tinderbox.pl
+++ tools/tools/tinderbox/tinderbox.pl
@@ -27,6 +27,7 @@
 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #
 # $FreeBSD: src/tools/tools/tinderbox/tinderbox.pl,v 1.42 2005/04/30 18:22:12 des Exp $
+# $MidnightBSD$
 #
 
 use 5.006_001;
@@ -254,7 +255,7 @@
 
 sub usage() {
 
-    print(STDERR "This is the FreeBSD tinderbox script, version $VERSION.
+    print(STDERR "This is the BSD tinderbox script, version $VERSION.
 $COPYRIGHT
 
 Usage:
@@ -284,7 +285,6 @@
   lint                          Build the LINT kernel
   release                       Build a full release (run as root!)
 
-Report bugs to <des\@freebsd.org>.
 ");
     exit(1);
 }
@@ -306,7 +306,7 @@
     chomp($machine);
     $branch = "CURRENT";
     $jobs = 0;
-    $repository = "/home/ncvs";
+    $repository = "/home/cvs";
     $sandbox = "/tmp/tinderbox";
     $timeout = 0;
 
--- tools/tools/tinderbox/powerpc.diff
+++ /dev/null
@@ -1,59 +0,0 @@
-$FreeBSD: src/tools/tools/tinderbox/powerpc.diff,v 1.3 2003/09/09 07:01:13 des Exp $
-
-Index: contrib/gcc/config/rs6000/freebsd.h
-===================================================================
-RCS file: /home/ncvs/src/contrib/gcc/config/rs6000/freebsd.h,v
-retrieving revision 1.1.1.2
-diff -u -r1.1.1.2 freebsd.h
---- contrib/gcc/config/rs6000/freebsd.h	11 Jul 2003 03:40:53 -0000	1.1.1.2
-+++ contrib/gcc/config/rs6000/freebsd.h	9 Sep 2003 06:51:49 -0000
-@@ -43,6 +43,23 @@
- #undef  LINK_SHLIB_SPEC
- #define LINK_SHLIB_SPEC "%{shared:-shared} %{!shared: %{static:-static}}"
- 
-+/* We don't want _BIG_ENDIAN or _LITTLE_ENDIAN to be defined. */
-+#undef RS6000_CPU_CPP_ENDIAN_BUILTINS
-+#define RS6000_CPU_CPP_ENDIAN_BUILTINS()	\
-+  do						\
-+    {						\
-+      if (BYTES_BIG_ENDIAN)			\
-+	{					\
-+	  builtin_define ("__BIG_ENDIAN__");	\
-+	  builtin_assert ("machine=bigendian");	\
-+	}					\
-+      else					\
-+	{					\
-+	  builtin_define ("__LITTLE_ENDIAN__");	\
-+	  builtin_assert ("machine=littleendian"); \
-+	}					\
-+    }						\
-+  while (0)
- 
- /************************[  Target stuff  ]***********************************/
- 
-@@ -58,6 +75,9 @@
- 
- #undef  WCHAR_TYPE_SIZE
- #define WCHAR_TYPE_SIZE 32
-+
-+#undef  DEFAULT_SIGNED_CHAR
-+#define DEFAULT_SIGNED_CHAR 1
- 
- #undef  TARGET_VERSION
- #define TARGET_VERSION fprintf (stderr, " (FreeBSD/PowerPC ELF)");
-Index: contrib/gcc/config/rs6000/sysv4.h
-===================================================================
-RCS file: /home/ncvs/src/contrib/gcc/config/rs6000/sysv4.h,v
-retrieving revision 1.1.1.6
-diff -u -r1.1.1.6 sysv4.h
---- contrib/gcc/config/rs6000/sysv4.h	11 Jul 2003 03:40:53 -0000	1.1.1.6
-+++ contrib/gcc/config/rs6000/sysv4.h	9 Sep 2003 06:51:49 -0000
-@@ -21,8 +21,6 @@
- Boston, MA 02111-1307, USA.  */
- 
- 
--/* Header files should be C++ aware in general.  */
--#define NO_IMPLICIT_EXTERN_C
- 
- /* Yes!  We are ELF.  */
- #define	TARGET_OBJECT_FORMAT OBJECT_ELF
Index: tbmaster.pl
===================================================================
RCS file: /home/cvs/src/tools/tools/tinderbox/tbmaster.pl,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -L tools/tools/tinderbox/tbmaster.pl -L tools/tools/tinderbox/tbmaster.pl -u -r1.1.1.1 -r1.2
--- tools/tools/tinderbox/tbmaster.pl
+++ tools/tools/tinderbox/tbmaster.pl
@@ -27,6 +27,7 @@
 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #
 # $FreeBSD: src/tools/tools/tinderbox/tbmaster.pl,v 1.53 2005/03/03 07:18:01 des Exp $
+# $MidnightBSD$
 #
 
 use 5.006_001;
@@ -393,7 +394,7 @@
 ###
 sub usage() {
 
-    print(STDERR "This is the FreeBSD tinderbox manager, version $VERSION.
+    print(STDERR "This is the BSD tinderbox manager, version $VERSION.
 $COPYRIGHT
 
 Usage:
@@ -407,7 +408,6 @@
   -e, --etcdir=DIR              Configuration directory
   -l, --lockfile=FILE           Lock file name
 
-Report bugs to <des\@freebsd.org>.
 ");
     print(STDERR "usage: tbmaster\n");
     exit(1);
Index: Makefile
===================================================================
RCS file: /home/cvs/src/tools/tools/tinderbox/Makefile,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -L tools/tools/tinderbox/Makefile -L tools/tools/tinderbox/Makefile -u -r1.1.1.1 -r1.2
--- tools/tools/tinderbox/Makefile
+++ tools/tools/tinderbox/Makefile
@@ -1,3 +1,4 @@
+# $MidnightBSD$
 # $FreeBSD: src/tools/tools/tinderbox/Makefile,v 1.9 2003/08/01 07:24:30 des Exp $
 
 BINDIR		?= ${HOME}/bin
--- tools/tools/tinderbox/etc/releng_4.rc
+++ /dev/null
@@ -1,9 +0,0 @@
-#
-# RELENG_4 tinderbox setup
-#
-# $FreeBSD: src/tools/tools/tinderbox/etc/releng_4.rc,v 1.10 2005/02/06 13:56:12 des Exp $
-#
-
-branches	= RELENG_4_8, RELENG_4_10, RELENG_4_11
-platforms	= alpha, i386/i386, i386/pc98
-recipient	= %%SENDER%%,<stable at freebsd.org>,<%%arch%%@freebsd.org>
Index: default.rc
===================================================================
RCS file: /home/cvs/src/tools/tools/tinderbox/etc/default.rc,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -L tools/tools/tinderbox/etc/default.rc -L tools/tools/tinderbox/etc/default.rc -u -r1.1.1.1 -r1.2
--- tools/tools/tinderbox/etc/default.rc
+++ tools/tools/tinderbox/etc/default.rc
@@ -1,6 +1,7 @@
 #
 # Tinderbox defaults
 #
+# $MidnightBSD$
 # $FreeBSD: src/tools/tools/tinderbox/etc/default.rc,v 1.9 2005/04/30 18:26:05 des Exp $
 #
 
@@ -16,6 +17,6 @@
 #timeout 	= 7200
 
 # Reporting
-sender		= FreeBSD Tinderbox <tinderbox at freebsd.org>
+sender		= MidnightBSD Tinderbox <tinderbox at midnightbsd.org>
 recipient	= %%SENDER%%
 subject		= [%%COMMENT%%] failure on %%arch%%/%%machine%%
Index: update_current.rc
===================================================================
RCS file: /home/cvs/src/tools/tools/tinderbox/etc/update_current.rc,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -L tools/tools/tinderbox/etc/update_current.rc -L tools/tools/tinderbox/etc/update_current.rc -u -r1.1.1.1 -r1.2
--- tools/tools/tinderbox/etc/update_current.rc
+++ tools/tools/tinderbox/etc/update_current.rc
@@ -1,4 +1,5 @@
+# $MidnightBSD$
 # $FreeBSD: src/tools/tools/tinderbox/etc/update_current.rc,v 1.1 2004/06/14 11:36:00 des Exp $
 branches	= CURRENT
-platforms	= alpha, amd64, i386/i386, i386/pc98, ia64, powerpc, sparc64
+platforms	= amd64, i386/i386, sparc64
 targets		= update
--- tools/tools/tinderbox/etc/update_releng_5.rc
+++ /dev/null
@@ -1,4 +0,0 @@
-# $FreeBSD: src/tools/tools/tinderbox/etc/update_releng_5.rc,v 1.2 2004/11/11 18:37:39 des Exp $
-branches	= RELENG_5
-platforms	= alpha, amd64, i386/i386, i386/pc98, ia64, sparc64
-targets		= update
--- tools/tools/tinderbox/etc/update_stable.rc
+++ /dev/null
@@ -1,4 +0,0 @@
-# $FreeBSD: src/tools/tools/tinderbox/etc/update_stable.rc,v 1.1 2004/06/14 11:36:00 des Exp $
-branches	= RELENG_4
-platforms	= alpha, i386/i386, i386/pc98
-targets		= update
--- tools/tools/tinderbox/etc/stable.rc
+++ /dev/null
@@ -1,9 +0,0 @@
-#
-# STABLE tinderbox setup
-#
-# $FreeBSD: src/tools/tools/tinderbox/etc/stable.rc,v 1.3 2004/02/14 09:52:22 des Exp $
-#
-
-branches	= RELENG_4
-platforms	= alpha, i386/i386, i386/pc98
-recipient	= %%SENDER%%,<stable at freebsd.org>,<%%arch%%@freebsd.org>
Index: current.rc
===================================================================
RCS file: /home/cvs/src/tools/tools/tinderbox/etc/current.rc,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -L tools/tools/tinderbox/etc/current.rc -L tools/tools/tinderbox/etc/current.rc -u -r1.1.1.1 -r1.2
--- tools/tools/tinderbox/etc/current.rc
+++ tools/tools/tinderbox/etc/current.rc
@@ -1,11 +1,12 @@
 #
 # CURRENT tinderbox setup
 #
+# $MidnightBSD$
 # $FreeBSD: src/tools/tools/tinderbox/etc/current.rc,v 1.8 2004/03/16 00:24:54 des Exp $
 #
 
 branches	= CURRENT
-platforms	= alpha, amd64, i386/i386, i386/pc98, ia64, powerpc, sparc64
+platforms	= amd64, i386/i386, sparc64
 cflags		= -O2 -pipe
 coptflags	= %%CFLAGS%%
-recipient	= %%SENDER%%,<current at freebsd.org>,<%%arch%%@freebsd.org>
+recipient	= %%SENDER%%,<luke at midnightbsd.org>
--- tools/tools/tinderbox/etc/update_releng_4.rc
+++ /dev/null
@@ -1,4 +0,0 @@
-# $FreeBSD: src/tools/tools/tinderbox/etc/update_releng_4.rc,v 1.2 2005/02/06 13:56:12 des Exp $
-branches	= RELENG_4_8, RELENG_4_10, RELENG_4_11
-platforms	= alpha, i386/i386, i386/pc98
-targets		= update
Index: Makefile
===================================================================
RCS file: /home/cvs/src/tools/tools/tinderbox/etc/Makefile,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -L tools/tools/tinderbox/etc/Makefile -L tools/tools/tinderbox/etc/Makefile -u -r1.1.1.1 -r1.2
--- tools/tools/tinderbox/etc/Makefile
+++ tools/tools/tinderbox/etc/Makefile
@@ -1,10 +1,9 @@
+# $MidnightBSD$
 # $FreeBSD: src/tools/tools/tinderbox/etc/Makefile,v 1.9 2004/08/19 07:28:30 des Exp $
 
 ETCFILES	 =
 ETCFILES	+= default.rc
-ETCFILES	+= releng_4.rc update_releng_4.rc
-ETCFILES	+= releng_5.rc update_releng_5.rc
-ETCFILES	+= stable.rc update_stable.rc
+ETCFILES	+= releng_0_1.rc update_releng_0_1.rc
 ETCFILES	+= current.rc update_current.rc
 ETCDIR		?= ${HOME}/etc
 ETCOWN		?= ${USER}
--- tools/tools/tinderbox/etc/releng_5.rc
+++ /dev/null
@@ -1,9 +0,0 @@
-#
-# RELENG_5 tinderbox setup
-#
-# $FreeBSD: src/tools/tools/tinderbox/etc/releng_5.rc,v 1.8 2004/11/11 18:37:39 des Exp $
-#
-
-branches	= RELENG_5
-platforms	= alpha, amd64, i386/i386, i386/pc98, ia64, sparc64
-recipient	= %%SENDER%%,<stable at freebsd.org>,<%%arch%%@freebsd.org>
Index: index.cgi
===================================================================
RCS file: /home/cvs/src/tools/tools/tinderbox/www/index.cgi,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -L tools/tools/tinderbox/www/index.cgi -L tools/tools/tinderbox/www/index.cgi -u -r1.1.1.1 -r1.2
--- tools/tools/tinderbox/www/index.cgi
+++ tools/tools/tinderbox/www/index.cgi
@@ -27,6 +27,7 @@
 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #
 # $FreeBSD: src/tools/tools/tinderbox/www/index.cgi,v 1.25 2005/02/07 07:55:00 des Exp $
+# $MidnightBSD$
 #
 
 use 5.006_001;
@@ -169,14 +170,14 @@
      'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>
 <html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>
   <head>
-    <title>FreeBSD tinderbox logs</title>
+    <title>BSD tinderbox logs</title>
     <meta name='robots' content='nofollow' />
     <meta http-equiv='refresh' content='600' />
     <link rel='stylesheet' type='text/css' media='screen' href='tb.css' />
     <link rel='shortcut icon' type='image/png' href='daemon.png' />
   </head>
   <body>
-    <!-- h1>FreeBSD tinderbox logs</h1 -->
+    <!-- h1>BSD tinderbox logs</h1 -->
 
     <table border='1' cellpadding='3'>
 ";
Index: Makefile
===================================================================
RCS file: /home/cvs/src/tools/tools/tinderbox/www/Makefile,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -L tools/tools/tinderbox/www/Makefile -L tools/tools/tinderbox/www/Makefile -u -r1.1.1.1 -r1.2
--- tools/tools/tinderbox/www/Makefile
+++ tools/tools/tinderbox/www/Makefile
@@ -1,3 +1,4 @@
+# $MidnightBSD$
 # $FreeBSD: src/tools/tools/tinderbox/www/Makefile,v 1.6 2004/01/25 19:11:43 des Exp $
 
 CGI		 = index.cgi


More information about the Midnightbsd-cvs mailing list