From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21143 invoked by alias); 11 Mar 2008 23:08:54 -0000 Received: (qmail 21134 invoked by uid 22791); 11 Mar 2008 23:08:54 -0000 X-Spam-Check-By: sourceware.org Received: from smtp811.mail.ird.yahoo.com (HELO smtp811.mail.ird.yahoo.com) (217.146.188.71) by sourceware.org (qpsmtpd/0.31) with SMTP; Tue, 11 Mar 2008 23:08:10 +0000 Received: (qmail 24212 invoked from network); 11 Mar 2008 23:08:07 -0000 Received: from unknown (HELO orthanc.middle-earth.co.uk) (hughes2002@btinternet.com@86.139.58.88 with plain) by smtp811.mail.ird.yahoo.com with SMTP; 11 Mar 2008 23:08:07 -0000 X-YMail-OSG: DVQKJ.IVM1kxZtPww0tPbCzMkv86pr9sxRHlNXXOSpZDhXfk513KdA9Si4xX5gK_PLEHuU4UATupVVnLYPeXGAjrizedlimW5.EY4JFquFw_5AE6 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 1JZDJU-0001g3-1a for mauve-patches@sources.redhat.com; Tue, 11 Mar 2008 22:51:17 +0000 Received: by localhost.localdomain (sSMTP sendmail emulation); Tue, 11 Mar 2008 23:08:05 +0000 From: "Andrew John Hughes" Date: Tue, 11 Mar 2008 23:08:00 -0000 To: mauve-patches@sources.redhat.com Subject: [builder] FYI: Add GJDoc Message-ID: <20080311230805.GA13375@localhost.localdomain> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="+g7M9IMkV8truYOl" 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/msg00018.txt.bz2 --+g7M9IMkV8truYOl Content-Type: multipart/mixed; boundary="pf9I7BMVVzbSWLtt" Content-Disposition: inline --pf9I7BMVVzbSWLtt Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-length: 520 This adds GJDoc to builder. Once we have this working successfully, we can then generate Classpath documentation. ChangeLog: 2008-03-11 Andrew John Hughes * Build: Add GJDoc. * GJDoc: Build script for GJDoc. * Update: Update GJDoc. --=20 Andrew :) Support Free Java! Contribute to GNU Classpath and the OpenJDK http://www.gnu.org/software/classpath http://openjdk.java.net PGP Key: 94EFD9D8 (http://subkeys.pgp.net) Fingerprint =3D F8EF F1EA 401E 2E60 15FA 7927 142C 2591 94EF D9D8 --pf9I7BMVVzbSWLtt Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="gjdoc-01.diff" Content-Transfer-Encoding: quoted-printable Content-length: 1909 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.9 diff -u -3 -p -u -r1.9 Build --- Build 16 Feb 2008 11:46:03 -0000 1.9 +++ Build 11 Mar 2008 23:06:34 -0000 @@ -16,6 +16,7 @@ StdBuild Report "gcc build" $? build/Log.Std || exit 1 =20 # Order matters here. +GJDoc Classpath Jamvm JamvmRelease Index: GJDoc =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: GJDoc diff -N GJDoc --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ GJDoc 11 Mar 2008 23:06:34 -0000 @@ -0,0 +1,20 @@ +#! /bin/sh + +# Build GJDoc + +. $(dirname "$0")/Settings + +cd $TOP/gjdoc + +Status "building gjdoc" +( +# GJDoc +rm -rf build install +mkdir build install +cd build +set -e +exec > Log 2>&1 +../gjdoc/configure --prefix=3D$(cd ../install && pwd) && +make all install distcheck +) +Report "gjdoc build" $? build/Log 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.7 diff -u -3 -p -u -r1.7 Update --- Update 16 Feb 2008 11:46:03 -0000 1.7 +++ Update 11 Mar 2008 23:06:34 -0000 @@ -74,3 +74,10 @@ svn co https://jikesrvm.svn.sourceforge. Status "cvs update kaffe" cd $TOP/kaffe cvs -d:pserver:readonly@cvs.kaffe.org:/cvs/kaffe co kaffe + +# GJDoc +Status "cvs update gjdoc" +cd $TOP/gjdoc +cvs -d :pserver:anonymous@cvs.savannah.gnu.org:/cvsroot/classpath co gjdoc +cd gjdoc +./autogen.sh --pf9I7BMVVzbSWLtt-- --+g7M9IMkV8truYOl 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) iD8DBQFH1xDVFCwlkZTv2dgRAmXzAKCAVHPkl9fy4pfSZ+PNUynmyqIZngCgkoxt tDFkKXu+FUAqIH9xrlDWsRw= =P/KS -----END PGP SIGNATURE----- --+g7M9IMkV8truYOl--