From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5051 invoked by alias); 16 Feb 2008 11:46:21 -0000 Received: (qmail 5041 invoked by uid 22791); 16 Feb 2008 11:46:20 -0000 X-Spam-Check-By: sourceware.org Received: from smtp804.mail.ird.yahoo.com (HELO smtp804.mail.ird.yahoo.com) (217.146.188.64) by sourceware.org (qpsmtpd/0.31) with SMTP; Sat, 16 Feb 2008 11:45:48 +0000 Received: (qmail 3256 invoked from network); 16 Feb 2008 11:45:46 -0000 Received: from unknown (HELO orthanc.middle-earth.co.uk) (hughes2002@btinternet.com@86.149.18.101 with plain) by smtp804.mail.ird.yahoo.com with SMTP; 16 Feb 2008 11:45:46 -0000 X-YMail-OSG: ypRPTQQVM1np6CtKTbfGH7MeQyefN8g4uEVSXU4E35uR6TLk2u2LONQ8exNQi_BJg2t.4EDR8SqQLZLhU8n5XpTrSyiwRS7JAIWY1nNkHY4TM7ga X-Yahoo-Newman-Property: ymail-3 Received: from rivendell.middle-earth.co.uk ([192.168.0.1] helo=localhost.localdomain ident=andrew) by orthanc.middle-earth.co.uk with smtp (Exim 4.63) (envelope-from ) id 1JQLGR-0002Zi-Dl for mauve-patches@sources.redhat.com; Sat, 16 Feb 2008 11:31:28 +0000 Received: by localhost.localdomain (sSMTP sendmail emulation); Sat, 16 Feb 2008 11:45:44 +0000 From: "Andrew John Hughes" Date: Sat, 16 Feb 2008 11:46:00 -0000 To: mauve-patches@sources.redhat.com Subject: [builder] FYI: Add Kaffe Message-ID: <20080216114544.GA26184@localhost.localdomain> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="BwCQnh7xodEAoBMC" Content-Disposition: inline User-Agent: Mutt/1.5.13 (2006-08-11) X-IsSubscribed: yes Mailing-List: contact mauve-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: mauve-patches-owner@sourceware.org X-SW-Source: 2008/txt/msg00011.txt.bz2 --BwCQnh7xodEAoBMC Content-Type: multipart/mixed; boundary="LQksG6bCIzRHxTLp" Content-Disposition: inline --LQksG6bCIzRHxTLp Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-length: 357 This adds a Kaffe build to builder. 2008-02-16 Andrew John Hughes * Build: Add Kaffe. * Kaffe: New build script for Kaffe. * StdBuild: Add Kaffe. * Update: Download Kaffe sources. --=20 Andrew :) Support Free Java! Contribute to GNU Classpath and the OpenJDK http://www.gnu.org/software/classpath http://openjdk.java.net --LQksG6bCIzRHxTLp Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="kaffe-01.diff" Content-Transfer-Encoding: quoted-printable Content-length: 2565 Index: Build =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /cvs/mauve/builder/scripts/Build,v retrieving revision 1.8 diff -u -3 -p -u -r1.8 Build --- Build 16 Feb 2008 11:30:47 -0000 1.8 +++ Build 16 Feb 2008 11:44:33 -0000 @@ -36,4 +36,6 @@ RunJapi # (See Everything) # JikesRVM =20 +Kaffe + exit 0 Index: Kaffe =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: Kaffe diff -N Kaffe --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ Kaffe 16 Feb 2008 11:44:33 -0000 @@ -0,0 +1,15 @@ +#! /bin/sh + +. $(dirname "$0")/Settings + +Status "building kaffe" + +cd $TOP/kaffe +rm -rf build install + +StdBuild --with-classpath-prefix=3D$TOP/classpath/install \ + --prefix=3D$TOP/kaffe/install=20 + +Report "kaffe build" $? build/Log.Std || exit 1 + +exit 0 Index: StdBuild =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /cvs/mauve/builder/scripts/StdBuild,v retrieving revision 1.4 diff -u -3 -p -u -r1.4 StdBuild --- StdBuild 13 Feb 2007 17:07:31 -0000 1.4 +++ StdBuild 16 Feb 2008 11:44:33 -0000 @@ -16,7 +16,7 @@ done =20 target=3D extra=3D -for d in trunk gcjx-branch gcj-eclipse devo gcc src rhug classpath gnu-cry= pto emacs kawa monotone jessie jamvm cacao; do +for d in trunk gcjx-branch gcj-eclipse devo gcc src rhug classpath gnu-cry= pto emacs kawa monotone jessie jamvm cacao kaffe; do if test -d $d; then here=3D$(pwd) src=3D$d Index: Update =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /cvs/mauve/builder/scripts/Update,v retrieving revision 1.6 diff -u -3 -p -u -r1.6 Update --- Update 16 Feb 2008 00:17:02 -0000 1.6 +++ Update 16 Feb 2008 11:44:33 -0000 @@ -69,3 +69,8 @@ cvs -d:pserver:anoncvs@cvs.savannah.nong Status "svn update jikesrvm" cd $TOP/jikesrvm svn co https://jikesrvm.svn.sourceforge.net/svnroot/jikesrvm/rvmroot/trunk= jikesrvm + +# Kaffe +Status "cvs update kaffe" +cd $TOP/kaffe +cvs -d:pserver:readonly@cvs.kaffe.org:/cvs/kaffe co kaffe --LQksG6bCIzRHxTLp-- --BwCQnh7xodEAoBMC Content-Type: application/pgp-signature; name="signature.asc" Content-Description: Digital signature Content-Disposition: inline Content-length: 189 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFHtszoAQUyfTZIWfoRAjg5AJ0bLV2e8lV7On2wfoQXNofeju4dxACaAoBe 8AUxLNObS13VE+bLPacWlY8= =7g6S -----END PGP SIGNATURE----- --BwCQnh7xodEAoBMC--