donaldp 02/04/06 18:51:13
Modified: bzip2 project.properties
bzip2/examples/basic Bzip2Compress.java Bzip2Uncompress.java
bzip2/src/conf MANIFEST.MF
bzip2/src/java/org/apache/excalibur/bzip2
BZip2Constants.java CBZip2InputStream.java
CBZip2OutputStream.java CRC.java
bzip2/src/test/org/apache/excalibur/bzip2/test
BzipTestCase.java
Removed: bzip2/src/java/org/apache/avalon/excalibur/bzip2
BZip2Constants.java CBZip2InputStream.java
CBZip2OutputStream.java CRC.java
bzip2/src/test/org/apache/avalon/excalibur/bzip2/test
BzipTestCase.java asf-logo-huge.tar
asf-logo-huge.tar.bz2
Log:
Repackage and make sure that the manifest conforms to extension spec
Revision Changes Path
1.4 +1 -0 jakarta-avalon-excalibur/bzip2/project.properties
Index: project.properties
===================================================================
RCS file: /home/cvs/jakarta-avalon-excalibur/bzip2/project.properties,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- project.properties 4 Apr 2002 15:12:48 -0000 1.3
+++ project.properties 7 Apr 2002 02:51:11 -0000 1.4
@@ -2,4 +2,5 @@
Name=Excalibur BZip2
dir-name=bzip2
version=1.0a
+package-version=0.99
year=2000-2002
1.2 +2 -2
jakarta-avalon-excalibur/bzip2/examples/basic/Bzip2Compress.java
Index: Bzip2Compress.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/bzip2/examples/basic/Bzip2Compress.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Bzip2Compress.java 24 Mar 2002 09:06:35 -0000 1.1
+++ Bzip2Compress.java 7 Apr 2002 02:51:11 -0000 1.2
@@ -12,13 +12,13 @@
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
-import org.apache.avalon.excalibur.bzip2.CBZip2OutputStream;
+import org.apache.excalibur.bzip2.CBZip2OutputStream;
/**
* This simple example shows how to use the Bzip2 classes to compress a file.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
- * @version $Revision: 1.1 $ $Date: 2002/03/24 09:06:35 $
+ * @version $Revision: 1.2 $ $Date: 2002/04/07 02:51:11 $
*/
public class Bzip2Compress
{
1.2 +2 -2
jakarta-avalon-excalibur/bzip2/examples/basic/Bzip2Uncompress.java
Index: Bzip2Uncompress.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/bzip2/examples/basic/Bzip2Uncompress.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Bzip2Uncompress.java 24 Mar 2002 09:06:35 -0000 1.1
+++ Bzip2Uncompress.java 7 Apr 2002 02:51:11 -0000 1.2
@@ -12,13 +12,13 @@
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
-import org.apache.avalon.excalibur.bzip2.CBZip2InputStream;
+import org.apache.excalibur.bzip2.CBZip2InputStream;
/**
* This simple example shows how to use the Bzip2 classes to uncompress a
file.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
- * @version $Revision: 1.1 $ $Date: 2002/03/24 09:06:35 $
+ * @version $Revision: 1.2 $ $Date: 2002/04/07 02:51:11 $
*/
public class Bzip2Uncompress
{
1.2 +1 -1 jakarta-avalon-excalibur/bzip2/src/conf/MANIFEST.MF
Index: MANIFEST.MF
===================================================================
RCS file: /home/cvs/jakarta-avalon-excalibur/bzip2/src/conf/MANIFEST.MF,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- MANIFEST.MF 31 Mar 2002 07:43:06 -0000 1.1
+++ MANIFEST.MF 7 Apr 2002 02:51:11 -0000 1.2
@@ -2,5 +2,5 @@
Specification-Vendor: Apache Software Foundation
Specification-Version: 1.0
Implementation-Vendor: Apache Software Foundation
-Implementation-Version: @version@
+Implementation-Version: @package-version@
1.2 +1 -1
jakarta-avalon-excalibur/bzip2/src/java/org/apache/excalibur/bzip2/BZip2Constants.java
Index: BZip2Constants.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/bzip2/src/java/org/apache/excalibur/bzip2/BZip2Constants.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- BZip2Constants.java 24 Mar 2002 07:02:31 -0000 1.1
+++ BZip2Constants.java 7 Apr 2002 02:51:11 -0000 1.2
@@ -5,7 +5,7 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
-package org.apache.avalon.excalibur.bzip2;
+package org.apache.excalibur.bzip2;
/**
* Base class for both the compress and decompress classes. Holds common
arrays,
1.5 +1 -1
jakarta-avalon-excalibur/bzip2/src/java/org/apache/excalibur/bzip2/CBZip2InputStream.java
Index: CBZip2InputStream.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/bzip2/src/java/org/apache/excalibur/bzip2/CBZip2InputStream.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- CBZip2InputStream.java 26 Mar 2002 10:45:23 -0000 1.4
+++ CBZip2InputStream.java 7 Apr 2002 02:51:11 -0000 1.5
@@ -5,7 +5,7 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
-package org.apache.avalon.excalibur.bzip2;
+package org.apache.excalibur.bzip2;
import java.io.IOException;
import java.io.InputStream;
1.5 +1 -1
jakarta-avalon-excalibur/bzip2/src/java/org/apache/excalibur/bzip2/CBZip2OutputStream.java
Index: CBZip2OutputStream.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/bzip2/src/java/org/apache/excalibur/bzip2/CBZip2OutputStream.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- CBZip2OutputStream.java 26 Mar 2002 10:45:23 -0000 1.4
+++ CBZip2OutputStream.java 7 Apr 2002 02:51:11 -0000 1.5
@@ -5,7 +5,7 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
-package org.apache.avalon.excalibur.bzip2;
+package org.apache.excalibur.bzip2;
import java.io.IOException;
import java.io.OutputStream;
1.3 +1 -1
jakarta-avalon-excalibur/bzip2/src/java/org/apache/excalibur/bzip2/CRC.java
Index: CRC.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/bzip2/src/java/org/apache/excalibur/bzip2/CRC.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- CRC.java 24 Mar 2002 09:33:06 -0000 1.2
+++ CRC.java 7 Apr 2002 02:51:11 -0000 1.3
@@ -5,7 +5,7 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
-package org.apache.avalon.excalibur.bzip2;
+package org.apache.excalibur.bzip2;
/**
* A simple class the hold and calculate the CRC for sanity checking of the
1.2 +4 -4
jakarta-avalon-excalibur/bzip2/src/test/org/apache/excalibur/bzip2/test/BzipTestCase.java
Index: BzipTestCase.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/bzip2/src/test/org/apache/excalibur/bzip2/test/BzipTestCase.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- BzipTestCase.java 24 Mar 2002 07:02:31 -0000 1.1
+++ BzipTestCase.java 7 Apr 2002 02:51:13 -0000 1.2
@@ -5,7 +5,7 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
-package org.apache.avalon.excalibur.bzip2.test;
+package org.apache.excalibur.bzip2.test;
import java.io.BufferedInputStream;
import java.io.File;
@@ -15,15 +15,15 @@
import java.io.InputStream;
import java.io.OutputStream;
import junit.framework.TestCase;
-import org.apache.avalon.excalibur.bzip2.CBZip2InputStream;
-import org.apache.avalon.excalibur.bzip2.CBZip2OutputStream;
+import org.apache.excalibur.bzip2.CBZip2InputStream;
+import org.apache.excalibur.bzip2.CBZip2OutputStream;
/**
* A test the stress tested the BZip implementation to verify
* that it behaves correctly.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
- * @version $Revision: 1.1 $ $Date: 2002/03/24 07:02:31 $
+ * @version $Revision: 1.2 $ $Date: 2002/04/07 02:51:13 $
*/
public class BzipTestCase
extends TestCase
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>