diff options
Diffstat (limited to 'lib/jazzlib')
-rw-r--r-- | lib/jazzlib/index.html | 8 | ||||
-rwxr-xr-x | lib/jazzlib/makeJazzlibDist.sh | 12 |
2 files changed, 8 insertions, 12 deletions
diff --git a/lib/jazzlib/index.html b/lib/jazzlib/index.html index f4edec3da..72ac81613 100644 --- a/lib/jazzlib/index.html +++ b/lib/jazzlib/index.html @@ -25,7 +25,7 @@ resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file might be covered by the GNU General Public License. </pre> -<h3>Latest release is 0.06</h3> +<h3>Latest release is 0.07</h3> Download source or binary packages for all releases <a href="http://sourceforge.net/project/showfiles.php?group_id=16807">here</a>. <p> There is a md5sums file in each release that you can use to check the integrity of the files. The md5sums is also signed with my public key (finger jewel at debian.org), the signature is in md5sums.asc. @@ -34,14 +34,12 @@ There is a md5sums file in each release that you can use to check the integrity You should post a message to the jazzlib-developers list (<a href="http://lists.sourceforge.net/mailman/listinfo/jazzlib-developers">subscribe</a>, <a href="http://sourceforge.net/mailarchive/forum.php?forum=jazzlib-developers">archives</a>) to report a bug or contact the developers. <br> -<h1>The CVS repository for this project has moved</h1> -<h2>The code has been moved to the <a href="http://www.gnu.org/software/classpath/">classpath</a> <a href="http://savannah.gnu.org/cvs/?group_id=85">CVS repository</a>.</h2> -The SourceForge CVS repository will not be updated with any changes. +The <a href="http://savannah.gnu.org/cvs/?group_id=85">CVS repository</a> for this project is part of the <a href="http://www.gnu.org/software/classpath/">classpath</a> project. <p> The files in the SourceForge CVS repository should be considered to be of historical interest only. <p> John Leuner (jewel at pixie.co.za) <br> -27 January 2003 +13 May 2004 <hr> <A href="http://sourceforge.net"> <IMG src="http://sourceforge.net/sflogo.php?group_id=16807" width="88" height="31" border="0" alt="SourceForge Logo"></A> diff --git a/lib/jazzlib/makeJazzlibDist.sh b/lib/jazzlib/makeJazzlibDist.sh index a5066fda5..5c75960a2 100755 --- a/lib/jazzlib/makeJazzlibDist.sh +++ b/lib/jazzlib/makeJazzlibDist.sh @@ -12,7 +12,7 @@ echo "----- Edit this script to change the release number -----" echo "----- Do rm -rf dist when you're finished -----" echo "----- 30 May 2002 John Leuner <jewel@debian.org> -----" -RELEASE_NUMBER=06 +RELEASE_NUMBER=07 # $1 is the archive command, eg "tar czvf" or "zip" or "jar cf" # $2 is the archive suffix, eg ".zip" or ".tar.gz" @@ -56,7 +56,7 @@ case "$1" in popd #make binary distro second - cp *.class dist/java/util/zip + cp ../../../lib/java/util/zip/*.class dist/java/util/zip pushd dist foo=(java/util/zip/*.class) @@ -69,18 +69,16 @@ case "$1" in mkdir -p dist/java/util/zip mkdir -p dist/java/util/jar - - #make binary distro second - cp *.class dist/java/util/zip - cp ../jar/*.class dist/java/util/jar + cp ../../../lib/java/util/zip/*.class dist/java/util/zip + cp ../../../lib/java/util/zip/../jar/*.class dist/java/util/jar pushd dist cp ../../../../COPYING . foo=(java/util/zip/*.class) foo=($foo java/util/jar/*.class) - create_archive "jar cf" ".jar" "-binary" "-juz" "$foo" "md5sums md5sums.asc COPYING" + create_archive "fastjar cf" ".jar" "-binary" "-juz" "$foo" "md5sums md5sums.asc COPYING" popd ;; |