Compare commits
3 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e4be243011 | ||
|
|
a11068ec99 | ||
|
|
fe6034ebd2 |
12 changed files with 601 additions and 1 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
ws-jaxme-0.5-docs.tar.gz
|
||||
ws-jaxme-0.5.1-src.tar.gz
|
||||
|
|
@ -1 +0,0 @@
|
|||
No packages in Fedora are using wx-jaxme any-more, retire it
|
||||
2
sources
Normal file
2
sources
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
c22a1c7267520c7dfab916825a63218b ws-jaxme-0.5-docs.tar.gz
|
||||
9709c7fb68880d494c3c347c3faa74c8 ws-jaxme-0.5.1-src.tar.gz
|
||||
7
ws-jaxme-0.5.1-create_sql.patch
Normal file
7
ws-jaxme-0.5.1-create_sql.patch
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
--- src/js/org/apache/ws/jaxme/js/junit/create.sql.sav 2006-05-04 12:51:33.000000000 +0200
|
||||
+++ src/js/org/apache/ws/jaxme/js/junit/create.sql 2006-05-04 12:51:54.000000000 +0200
|
||||
@@ -1,3 +1,4 @@
|
||||
CREATE CACHED TABLE MAIN ( ID BIGINT NOT NULL, NAME VARCHAR(60) NOT NULL, VER INT NOT NULL, SIG BINARY(16) NOT NULL, DATE DATE NOT NULL, PRIMARY KEY (ID, VER));
|
||||
CREATE CACHED TABLE SUB ( MTID BIGINT NOT NULL, MTVER INT NOT NULL, ADDRESS VARCHAR(60) NOT NULL, ID VARCHAR(32) NOT NULL, EMAIL VARCHAR(60), PRIMARY KEY (ID), FOREIGN KEY (MTID, MTVER) REFERENCES MAIN (ID, VER));
|
||||
CREATE CACHED TABLE SUBSUB ( ID VARCHAR(32) NOT NULL, MTID BIGINT NOT NULL, MTVER INT NOT NULL, SSTID VARCHAR(32) NOT NULL, MTTS TIMESTAMP NOT NULL, PRIMARY KEY (ID), FOREIGN KEY (MTID, MTVER) REFERENCES MAIN (ID, VER), FOREIGN KEY (SSTID) REFERENCES SUB (ID));
|
||||
+SHUTDOWN;
|
||||
92
ws-jaxme-ant-scripts.patch
Normal file
92
ws-jaxme-ant-scripts.patch
Normal file
|
|
@ -0,0 +1,92 @@
|
|||
--- ./ant/js.xml.sav 2005-08-12 03:39:29.000000000 -0400
|
||||
+++ ./ant/js.xml 2007-02-12 12:31:25.000000000 -0500
|
||||
@@ -34,15 +34,15 @@
|
||||
<property name="src.js" location="${basedir}/src/js"/>
|
||||
|
||||
<path id="js.class.path">
|
||||
- <pathelement location="${preqs}/log4j-1.2.8.jar"/>
|
||||
- <pathelement location="${preqs}/ant-1.5.4.jar"/>
|
||||
+ <pathelement location="${preqs}/log4j.jar"/>
|
||||
+ <pathelement location="${preqs}/ant.jar"/>
|
||||
<pathelement location="${preqs}/junit.jar"/>
|
||||
<pathelement location="${preqs}/antlr.jar"/>
|
||||
</path>
|
||||
|
||||
<path id="js.test.path">
|
||||
<path refid="js.class.path"/>
|
||||
- <pathelement location="${preqs}/hsqldb-1.7.1.jar"/>
|
||||
+ <pathelement location="${preqs}/hsqldb.jar"/>
|
||||
<pathelement location="${dist}/jaxmejs-${version}.jar"/>
|
||||
<pathelement location="${build.js.test.classes}"/>
|
||||
</path>
|
||||
@@ -129,6 +129,7 @@
|
||||
</target>
|
||||
|
||||
<target name="JS.generate.version" depends="JS.generate.db">
|
||||
+
|
||||
<versionGenerator
|
||||
driver="${jdbc.driver}"
|
||||
url="${jdbc.url}"
|
||||
--- ./ant/pm.xml.sav 2005-08-12 03:39:29.000000000 -0400
|
||||
+++ ./ant/pm.xml 2007-02-12 12:31:25.000000000 -0500
|
||||
@@ -37,11 +37,11 @@
|
||||
<pathelement location="${dist}/jaxmexs-${version}.jar"/>
|
||||
<pathelement location="${dist}/jaxme2-${version}.jar"/>
|
||||
<pathelement location="${preqs}/beaver.jar"/>
|
||||
- <pathelement location="${preqs}/hsqldb-1.7.1.jar"/>
|
||||
+ <pathelement location="${preqs}/hsqldb.jar"/>
|
||||
<pathelement location="${preqs}/ant.jar"/>
|
||||
- <pathelement location="${preqs}/xml-apis.jar"/>
|
||||
- <pathelement location="${preqs}/xercesImpl.jar"/>
|
||||
- <pathelement location="${preqs}/xmldb-api-20021118.jar"/>
|
||||
+ <pathelement location="${preqs}/xml-commons-apis.jar"/>
|
||||
+ <pathelement location="${preqs}/xerces-j2.jar"/>
|
||||
+ <pathelement location="${preqs}/xmldb-api.jar"/>
|
||||
<!-- These aren't in the CVS and aren't necessary for the build -->
|
||||
<pathelement location="${preqs}/TaminoAPI4J.jar"/>
|
||||
<pathelement location="${preqs}/TaminoJCA.jar"/>
|
||||
--- ./ant/jm.xml.sav 2005-08-12 03:39:29.000000000 -0400
|
||||
+++ ./ant/jm.xml 2007-02-12 12:31:41.000000000 -0500
|
||||
@@ -34,9 +34,10 @@
|
||||
<pathelement location="${dist}/jaxmejs-${version}.jar"/>
|
||||
<pathelement location="${dist}/jaxmexs-${version}.jar"/>
|
||||
<pathelement location="${preqs}/ant.jar"/>
|
||||
- <pathelement location="${preqs}/xml-apis.jar"/>
|
||||
+ <pathelement location="${preqs}/xml-commons-apis.jar"/>
|
||||
<pathelement location="${preqs}/beaver.jar"/>
|
||||
<pathelement location="${preqs}/antlr.jar"/>
|
||||
+ <pathelement location="${preqs}/commons-codec.jar"/>
|
||||
</path>
|
||||
|
||||
<path id="jaxme.test.path">
|
||||
--- ./ant/xs.xml.sav 2005-08-12 03:39:29.000000000 -0400
|
||||
+++ ./ant/xs.xml 2007-02-12 12:31:25.000000000 -0500
|
||||
@@ -23,7 +23,7 @@
|
||||
<property name="src.xs" location="${basedir}/src/xs"/>
|
||||
|
||||
<path id="xs.class.path">
|
||||
- <pathelement location="${preqs}/xml-apis.jar"/>
|
||||
+ <pathelement location="${preqs}/xml-commons-apis.jar"/>
|
||||
<pathelement location="${preqs}/junit.jar"/>
|
||||
<pathelement location="${dist}/jaxmeapi-${version}.jar"/>
|
||||
</path>
|
||||
@@ -48,7 +48,7 @@
|
||||
<path id="xs.test.path">
|
||||
<path refid="xs.class.path"/>
|
||||
<pathelement location="${dist}/jaxmexs-${version}.jar"/>
|
||||
- <pathelement location="${preqs}/xercesImpl.jar"/>
|
||||
+ <pathelement location="${preqs}/xerces-j2.jar"/>
|
||||
</path>
|
||||
<runtests reportsdir="${build.xs.reports}" classpathref="xs.test.path">
|
||||
<tests>
|
||||
--- ./ant/api.xml.sav 2005-08-12 03:39:29.000000000 -0400
|
||||
+++ ./ant/api.xml 2007-02-12 12:31:25.000000000 -0500
|
||||
@@ -25,7 +25,7 @@
|
||||
</target>
|
||||
|
||||
<path id="api.class.path">
|
||||
- <pathelement location="${preqs}/xml-apis.jar"/>
|
||||
+ <pathelement location="${preqs}/xml-commons-apis.jar"/>
|
||||
</path>
|
||||
|
||||
<target name="API.compile" depends="init">
|
||||
11
ws-jaxme-bind-MANIFEST.MF
Normal file
11
ws-jaxme-bind-MANIFEST.MF
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
Manifest-Version: 1.0
|
||||
Bundle-SymbolicName: javax.xml.bind
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-Localization: plugin
|
||||
Bundle-Version: 2.0.0.v20080604-1500
|
||||
Bundle-Vendor: %providerName
|
||||
Export-Package: javax.xml.bind;version="2.0.0",javax.xml.bind.annotati
|
||||
on;version="2.0.0",javax.xml.bind.annotation.adapters;version="2.0.0"
|
||||
,javax.xml.bind.attachment;version="2.0.0",javax.xml.bind.helpers;ver
|
||||
sion="2.0.0",javax.xml.bind.util;version="2.0.0"
|
||||
29
ws-jaxme-catalog.patch
Normal file
29
ws-jaxme-catalog.patch
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
--- ./ant/docs.xml.sav 2006-05-19 20:00:29.000000000 -0400
|
||||
+++ ./ant/docs.xml 2006-05-19 20:01:01.000000000 -0400
|
||||
@@ -165,7 +165,9 @@
|
||||
force="${force}"
|
||||
style="${docbookxsl.home}/html/chunk.xsl">
|
||||
<xmlcatalog>
|
||||
- <dtd publicid="-//OASIS//DTD DocBook XML V4.1.2//EN" location="${docbook.home}/docbookx.dtd"/>
|
||||
+ <catalogpath>
|
||||
+ <pathelement location="/usr/share/sgml/docbook/xmlcatalog"/>
|
||||
+ </catalogpath>
|
||||
</xmlcatalog>
|
||||
</style>
|
||||
</target>
|
||||
@@ -180,10 +182,12 @@
|
||||
force="${force}"
|
||||
style="${docbookxsl.home}/html/chunk.xsl">
|
||||
<xmlcatalog>
|
||||
- <dtd publicid="-//OASIS//DTD DocBook XML V4.1.2//EN" location="${docbook.home}/docbookx.dtd"/>
|
||||
+ <catalogpath>
|
||||
+ <pathelement location="/usr/share/sgml/docbook/xmlcatalog"/>
|
||||
+ </catalogpath>
|
||||
</xmlcatalog>
|
||||
<factory name="org.apache.xalan.processor.TransformerFactoryImpl"/>
|
||||
</style>
|
||||
</target>
|
||||
</project>
|
||||
-
|
||||
\ No newline at end of file
|
||||
+
|
||||
11
ws-jaxme-docs_xml.patch
Normal file
11
ws-jaxme-docs_xml.patch
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
--- ./ant/docs.xml.sav 2006-05-19 19:59:02.000000000 -0400
|
||||
+++ ./ant/docs.xml 2006-05-19 19:59:07.000000000 -0400
|
||||
@@ -69,7 +69,7 @@
|
||||
<fail>Missing DocBook, terminating.</fail>
|
||||
</target>
|
||||
|
||||
- <target name="Docs.all" depends="javadoc,docbook.html,old.releases,forrest,replace"
|
||||
+ <target name="Docs.all" depends="javadoc,docbook.html,old.releases"
|
||||
description="Generates the documentation"/>
|
||||
|
||||
<target name="javadoc" depends="all"
|
||||
176
ws-jaxme-jdk16.patch
Normal file
176
ws-jaxme-jdk16.patch
Normal file
|
|
@ -0,0 +1,176 @@
|
|||
--- ws-jaxme/src/jaxme/org/apache/ws/jaxme/impl/JMMarshallerImpl.java.orig 2008-07-08 11:31:43.000000000 -0400
|
||||
+++ ws-jaxme/src/jaxme/org/apache/ws/jaxme/impl/JMMarshallerImpl.java 2008-07-09 05:54:23.000000000 -0400
|
||||
@@ -21,16 +21,22 @@
|
||||
import java.io.OutputStreamWriter;
|
||||
import java.io.UnsupportedEncodingException;
|
||||
import java.io.Writer;
|
||||
+import java.io.File;
|
||||
|
||||
import javax.xml.bind.JAXBException;
|
||||
import javax.xml.bind.MarshalException;
|
||||
import javax.xml.bind.Marshaller;
|
||||
import javax.xml.bind.PropertyException;
|
||||
+import javax.xml.bind.attachment.AttachmentMarshaller;
|
||||
+import javax.xml.bind.annotation.adapters.XmlAdapter;
|
||||
import javax.xml.namespace.QName;
|
||||
import javax.xml.transform.Result;
|
||||
import javax.xml.transform.dom.DOMResult;
|
||||
import javax.xml.transform.sax.SAXResult;
|
||||
import javax.xml.transform.stream.StreamResult;
|
||||
+import javax.xml.stream.XMLStreamWriter;
|
||||
+import javax.xml.stream.XMLEventWriter;
|
||||
+import javax.xml.validation.Schema;
|
||||
|
||||
import org.apache.ws.jaxme.*;
|
||||
import org.apache.ws.jaxme.JMElement;
|
||||
@@ -430,4 +436,55 @@
|
||||
public Node getNode(java.lang.Object contentTree) throws JAXBException {
|
||||
throw new UnsupportedOperationException("JaxMe doesn't support live DOM views");
|
||||
}
|
||||
+
|
||||
+
|
||||
+// added to support JDK6
|
||||
+
|
||||
+ public void marshal(Object jaxbElement, File output) throws JAXBException {
|
||||
+ throw new UnsupportedOperationException();
|
||||
+ }
|
||||
+
|
||||
+ public void marshal(Object jaxbElement, XMLStreamWriter writer) throws JAXBException {
|
||||
+ throw new UnsupportedOperationException();
|
||||
+ }
|
||||
+
|
||||
+ public void marshal(Object jaxbElement, XMLEventWriter writer) throws JAXBException {
|
||||
+ throw new UnsupportedOperationException();
|
||||
+ }
|
||||
+
|
||||
+ public void setAdapter(XmlAdapter adapter) {
|
||||
+ throw new UnsupportedOperationException();
|
||||
+ }
|
||||
+
|
||||
+ public void setAdapter(Class type, XmlAdapter adapter) {
|
||||
+ throw new UnsupportedOperationException();
|
||||
+ }
|
||||
+
|
||||
+ public XmlAdapter getAdapter(Class type) {
|
||||
+ throw new UnsupportedOperationException();
|
||||
+ }
|
||||
+
|
||||
+ public void setAttachmentMarshaller(AttachmentMarshaller am) {
|
||||
+ throw new UnsupportedOperationException();
|
||||
+ }
|
||||
+
|
||||
+ public AttachmentMarshaller getAttachmentMarshaller() {
|
||||
+ throw new UnsupportedOperationException();
|
||||
+ }
|
||||
+
|
||||
+ public void setSchema(Schema schema) {
|
||||
+ throw new UnsupportedOperationException();
|
||||
+ }
|
||||
+
|
||||
+ public Schema getSchema() {
|
||||
+ throw new UnsupportedOperationException();
|
||||
+ }
|
||||
+
|
||||
+ public void setListener(Listener listener) {
|
||||
+ throw new UnsupportedOperationException();
|
||||
+ }
|
||||
+
|
||||
+ public Listener getListener() {
|
||||
+ throw new UnsupportedOperationException();
|
||||
+ }
|
||||
}
|
||||
--- ws-jaxme/src/jaxme/org/apache/ws/jaxme/impl/JMUnmarshallerImpl.java.orig 2008-07-08 11:34:58.000000000 -0400
|
||||
+++ ws-jaxme/src/jaxme/org/apache/ws/jaxme/impl/JMUnmarshallerImpl.java 2008-07-09 05:52:39.000000000 -0400
|
||||
@@ -26,6 +26,10 @@
|
||||
import javax.xml.bind.JAXBException;
|
||||
import javax.xml.bind.UnmarshalException;
|
||||
import javax.xml.bind.UnmarshallerHandler;
|
||||
+import javax.xml.bind.JAXBElement;
|
||||
+import javax.xml.bind.Unmarshaller;
|
||||
+import javax.xml.bind.attachment.AttachmentUnmarshaller;
|
||||
+import javax.xml.bind.annotation.adapters.XmlAdapter;
|
||||
import javax.xml.parsers.ParserConfigurationException;
|
||||
import javax.xml.parsers.SAXParser;
|
||||
import javax.xml.parsers.SAXParserFactory;
|
||||
@@ -33,6 +37,9 @@
|
||||
import javax.xml.transform.dom.DOMSource;
|
||||
import javax.xml.transform.sax.SAXSource;
|
||||
import javax.xml.transform.stream.StreamSource;
|
||||
+import javax.xml.stream.XMLStreamReader;
|
||||
+import javax.xml.stream.XMLEventReader;
|
||||
+import javax.xml.validation.Schema;
|
||||
|
||||
import org.apache.ws.jaxme.JMUnmarshaller;
|
||||
import org.apache.ws.jaxme.util.DOMSerializer;
|
||||
@@ -177,4 +184,71 @@
|
||||
public UnmarshallerHandler getUnmarshallerHandler() {
|
||||
return new JMUnmarshallerHandlerImpl(this);
|
||||
}
|
||||
+
|
||||
+
|
||||
+// added to support JDK6
|
||||
+
|
||||
+ public Object unmarshal(Reader reader) throws JAXBException {
|
||||
+ throw new UnsupportedOperationException();
|
||||
+ }
|
||||
+
|
||||
+ public JAXBElement unmarshal(Node node, Class declaredType) throws JAXBException {
|
||||
+ throw new UnsupportedOperationException();
|
||||
+ }
|
||||
+
|
||||
+ public JAXBElement unmarshal(Source source, Class declaredType) throws JAXBException {
|
||||
+ throw new UnsupportedOperationException();
|
||||
+ }
|
||||
+
|
||||
+ public Object unmarshal(XMLStreamReader reader) throws JAXBException {
|
||||
+ throw new UnsupportedOperationException();
|
||||
+ }
|
||||
+
|
||||
+ public JAXBElement unmarshal(XMLStreamReader reader, Class declaredType) throws JAXBException {
|
||||
+ throw new UnsupportedOperationException();
|
||||
+ }
|
||||
+
|
||||
+ public Object unmarshal(XMLEventReader reader) throws JAXBException {
|
||||
+ throw new UnsupportedOperationException();
|
||||
+ }
|
||||
+
|
||||
+ public JAXBElement unmarshal(XMLEventReader reader, Class declaredType) throws JAXBException {
|
||||
+ throw new UnsupportedOperationException();
|
||||
+ }
|
||||
+
|
||||
+ public void setSchema(Schema schema) {
|
||||
+ throw new UnsupportedOperationException();
|
||||
+ }
|
||||
+
|
||||
+ public Schema getSchema() {
|
||||
+ throw new UnsupportedOperationException();
|
||||
+ }
|
||||
+
|
||||
+ public void setAdapter(XmlAdapter adapter) {
|
||||
+ throw new UnsupportedOperationException();
|
||||
+ }
|
||||
+
|
||||
+ public void setAdapter(Class type, XmlAdapter adapter) {
|
||||
+ throw new UnsupportedOperationException();
|
||||
+ }
|
||||
+
|
||||
+ public XmlAdapter getAdapter(Class type) {
|
||||
+ throw new UnsupportedOperationException();
|
||||
+ }
|
||||
+
|
||||
+ public void setAttachmentUnmarshaller(AttachmentUnmarshaller au) {
|
||||
+ throw new UnsupportedOperationException();
|
||||
+ }
|
||||
+
|
||||
+ public AttachmentUnmarshaller getAttachmentUnmarshaller() {
|
||||
+ throw new UnsupportedOperationException();
|
||||
+ }
|
||||
+
|
||||
+ public void setListener(Listener listener) {
|
||||
+ throw new UnsupportedOperationException();
|
||||
+ }
|
||||
+
|
||||
+ public Listener getListener() {
|
||||
+ throw new UnsupportedOperationException();
|
||||
+ }
|
||||
}
|
||||
11
ws-jaxme-system-dtd.patch
Normal file
11
ws-jaxme-system-dtd.patch
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
--- ws-jaxme/src/documentation/manual/jaxme2.xml.orig 2008-08-15 13:21:21.882649810 -0400
|
||||
+++ ws-jaxme/src/documentation/manual/jaxme2.xml 2008-08-15 13:21:44.684648635 -0400
|
||||
@@ -17,7 +17,7 @@
|
||||
|
||||
-->
|
||||
<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
|
||||
- "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [
|
||||
+ "@DOCBOOKX_DTD@" [
|
||||
<!ENTITY address SYSTEM "address.xml">
|
||||
<!ENTITY addressxsd SYSTEM "addressxsd.xml">
|
||||
<!ENTITY faq SYSTEM "faq.xml">
|
||||
28
ws-jaxme-use-commons-codec.patch
Normal file
28
ws-jaxme-use-commons-codec.patch
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
--- ./src/jaxme/org/apache/ws/jaxme/util/Base64Binary.java.sav 2007-02-12 12:33:45.000000000 -0500
|
||||
+++ ./src/jaxme/org/apache/ws/jaxme/util/Base64Binary.java 2007-02-12 12:35:20.000000000 -0500
|
||||
@@ -18,8 +18,7 @@
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
-import sun.misc.BASE64Decoder;
|
||||
-import sun.misc.BASE64Encoder;
|
||||
+import org.apache.commons.codec.binary.Base64;
|
||||
|
||||
|
||||
/** A utility class for working with base64 encoding.
|
||||
@@ -37,13 +36,13 @@
|
||||
* base64 encoded byte array.
|
||||
*/
|
||||
public static byte[] decode(String pValue) throws IOException {
|
||||
- return (new BASE64Decoder()).decodeBuffer(pValue);
|
||||
+ return (new Base64()).decode(pValue.getBytes());
|
||||
}
|
||||
|
||||
/** Converts the base64 encoded byte array <code>pValue</code>
|
||||
* into a string.
|
||||
*/
|
||||
public static String encode(byte[] pValue) {
|
||||
- return (new BASE64Encoder()).encode(pValue);
|
||||
+ return new String((new Base64()).encodeBase64(pValue));
|
||||
}
|
||||
}
|
||||
232
ws-jaxme.spec
Normal file
232
ws-jaxme.spec
Normal file
|
|
@ -0,0 +1,232 @@
|
|||
# Copyright (c) 2000-2005, JPackage Project
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
# modification, are permitted provided that the following conditions
|
||||
# are met:
|
||||
#
|
||||
# 1. Redistributions of source code must retain the above copyright
|
||||
# notice, this list of conditions and the following disclaimer.
|
||||
# 2. Redistributions in binary form must reproduce the above copyright
|
||||
# notice, this list of conditions and the following disclaimer in the
|
||||
# documentation and/or other materials provided with the
|
||||
# distribution.
|
||||
# 3. Neither the name of the JPackage Project nor the names of its
|
||||
# contributors may be used to endorse or promote products derived
|
||||
# from this software without specific prior written permission.
|
||||
#
|
||||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
#
|
||||
|
||||
%define base_name jaxme
|
||||
|
||||
Name: ws-jaxme
|
||||
Version: 0.5.1
|
||||
Release: 3.4%{?dist}
|
||||
Epoch: 0
|
||||
Summary: Open source implementation of JAXB
|
||||
|
||||
Group: Development/Libraries/Java
|
||||
License: ASL 2.0
|
||||
URL: http://ws.apache.org/jaxme/
|
||||
# svn export http://svn.apache.org/repos/asf/webservices/jaxme/tags/R0_5_1/ ws-jaxme-0.5.1
|
||||
# tar czf ws-jaxme-0.5.1-src.tar.gz ws-jaxme
|
||||
Source0: ws-jaxme-0.5.1-src.tar.gz
|
||||
Source1: ws-jaxme-bind-MANIFEST.MF
|
||||
# generated docs with forrest-0.5.1
|
||||
Patch0: ws-jaxme-docs_xml.patch
|
||||
Patch1: ws-jaxme-catalog.patch
|
||||
Patch2: ws-jaxme-system-dtd.patch
|
||||
Patch3: ws-jaxme-jdk16.patch
|
||||
Patch4: ws-jaxme-ant-scripts.patch
|
||||
Patch5: ws-jaxme-use-commons-codec.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
BuildArch: noarch
|
||||
BuildRequires: jpackage-utils >= 0:1.6
|
||||
BuildRequires: java-devel >= 1.6.0
|
||||
BuildRequires: ant >= 0:1.6
|
||||
BuildRequires: ant-apache-resolver
|
||||
BuildRequires: ant-trax >= 0:1.6
|
||||
BuildRequires: antlr
|
||||
BuildRequires: jaxp_transform_impl
|
||||
BuildRequires: jakarta-commons-codec
|
||||
BuildRequires: junit
|
||||
BuildRequires: hsqldb
|
||||
BuildRequires: log4j
|
||||
BuildRequires: xalan-j2
|
||||
BuildRequires: xmldb-api
|
||||
BuildRequires: xmldb-api-sdk
|
||||
BuildRequires: xerces-j2
|
||||
BuildRequires: xml-commons-apis
|
||||
BuildRequires: xml-commons-resolver
|
||||
BuildRequires: docbook-style-xsl
|
||||
BuildRequires: docbook-dtds
|
||||
Requires: antlr
|
||||
Requires: jaxp_transform_impl
|
||||
Requires: jakarta-commons-codec
|
||||
Requires: junit
|
||||
Requires: hsqldb
|
||||
Requires: log4j
|
||||
Requires: xalan-j2
|
||||
Requires: xmldb-api
|
||||
Requires: xmldb-api-sdk
|
||||
Requires: xerces-j2
|
||||
Requires: xml-commons-apis
|
||||
Requires: jpackage-utils
|
||||
Requires(postun): jpackage-utils
|
||||
|
||||
%description
|
||||
A Java/XML binding compiler takes as input a schema
|
||||
description (in most cases an XML schema, but it may
|
||||
be a DTD, a RelaxNG schema, a Java class inspected
|
||||
via reflection, or a database schema). The output is
|
||||
a set of Java classes:
|
||||
* A Java bean class matching the schema description.
|
||||
(If the schema was obtained via Java reflection,
|
||||
the original Java bean class.)
|
||||
* Read a conforming XML document and convert it into
|
||||
the equivalent Java bean.
|
||||
* Vice versa, marshal the Java bean back into the
|
||||
original XML document.
|
||||
|
||||
%package javadoc
|
||||
Summary: Javadoc for %{name}
|
||||
Group: Documentation
|
||||
Requires: jpackage-utils
|
||||
Requires(postun): jpackage-utils
|
||||
|
||||
%description javadoc
|
||||
%{summary}.
|
||||
|
||||
%package manual
|
||||
Summary: Documents for %{name}
|
||||
Group: Documentation
|
||||
|
||||
%description manual
|
||||
%{summary}.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{name}
|
||||
for j in $(find . -name "*.jar"); do
|
||||
mv $j $j.no
|
||||
done
|
||||
|
||||
%patch0 -p0
|
||||
%patch1 -p0
|
||||
%patch2 -p1
|
||||
DOCBOOKX_DTD=`%{_bindir}/xmlcatalog %{_datadir}/sgml/docbook/xmlcatalog "-//OASIS//DTD DocBook XML V4.5//EN" 2>/dev/null`
|
||||
%{__perl} -pi -e 's|@DOCBOOKX_DTD@|$DOCBOOKX_DTD|' src/documentation/manual/jaxme2.xml
|
||||
%patch3 -p1
|
||||
%patch4 -b .sav
|
||||
%patch5 -b .sav
|
||||
|
||||
%build
|
||||
export OPT_JAR_LIST="xalan-j2 ant/ant-trax xalan-j2-serializer xml-commons-resolver ant/ant-apache-resolver"
|
||||
export CLASSPATH=$(build-classpath antlr hsqldb commons-codec junit log4j xmldb-api xerces-j2 xml-commons-jaxp-1.3-apis)
|
||||
ant all Docs.all \
|
||||
-Dbuild.sysclasspath=first \
|
||||
-Ddocbook.home=%{_datadir}/sgml/docbook \
|
||||
-Ddocbookxsl.home=%{_datadir}/sgml/docbook/xsl-stylesheets
|
||||
|
||||
mkdir -p META-INF
|
||||
cp -p %{SOURCE1} META-INF/MANIFEST.MF
|
||||
touch META-INF/MANIFEST.MF
|
||||
zip -u dist/jaxmeapi-%{version}.jar META-INF/MANIFEST.MF
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
install -dm 755 $RPM_BUILD_ROOT%{_javadir}/%{base_name}
|
||||
for jar in dist/*.jar; do
|
||||
install -m 644 ${jar} $RPM_BUILD_ROOT%{_javadir}/%{base_name}/
|
||||
done
|
||||
(cd $RPM_BUILD_ROOT%{_javadir}/%{base_name} &&
|
||||
for jar in *-%{version}*;
|
||||
do ln -sf ${jar} `echo $jar| sed "s|-%{version}||g"`;
|
||||
done
|
||||
)
|
||||
|
||||
(cd $RPM_BUILD_ROOT%{_javadir}/%{base_name} &&
|
||||
for jar in *.jar;
|
||||
do ln -sf ${jar} ws-${jar};
|
||||
done
|
||||
)
|
||||
|
||||
#javadoc
|
||||
install -dm 755 $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version}
|
||||
cp -pr build/docs/src/documentation/content/apidocs \
|
||||
$RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version}
|
||||
ln -s %{name}-%{version} $RPM_BUILD_ROOT%{_javadocdir}/%{name}
|
||||
rm -rf build/docs/src/documentation/content/apidocs
|
||||
|
||||
#manual
|
||||
install -dm 755 $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}
|
||||
cp -pr build/docs/src/documentation/content/* $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}
|
||||
install -pm 644 LICENSE $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc %{_docdir}/%{name}-%{version}/LICENSE
|
||||
%{_javadir}/%{base_name}
|
||||
|
||||
%files javadoc
|
||||
%defattr(-,root,root,-)
|
||||
%doc %{_javadocdir}/%{name}-%{version}
|
||||
%doc %{_javadocdir}/%{name}
|
||||
|
||||
%files manual
|
||||
%defattr(-,root,root,-)
|
||||
%doc %{_docdir}/%{name}-%{version}
|
||||
|
||||
%changelog
|
||||
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:0.5.1-3.4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||
|
||||
* Wed Oct 22 2008 Alexander Kurtakov <akurtako@redhat.com> - 0:0.5.1-2.3
|
||||
- BR docbook-style-xsl.
|
||||
- BR ant-apache-resolver.
|
||||
|
||||
* Wed Oct 22 2008 Alexander Kurtakov <akurtako@redhat.com> - 0:0.5.1-2.3
|
||||
- Partial sync with jpackage to get build fixes.
|
||||
- Add osgi manifest to jaxmeapi.jar.
|
||||
|
||||
* Thu Jul 10 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0:0.5.1-2.2
|
||||
- drop repotag
|
||||
- fix license tag
|
||||
|
||||
* Mon Feb 12 2007 Deepak Bhole <dbhole@redhat.com> - 0:0.5.1-2jpp.1
|
||||
- Update as per Fedora guidelines.
|
||||
|
||||
* Wed May 04 2006 Ralph Apel <r.apel at r-apel.de> - 0:0.5.1-1jpp
|
||||
- First JPP-1.7 release
|
||||
|
||||
* Tue Dec 20 2005 Ralph Apel <r.apel at r-apel.de> - 0:0.5-1jpp
|
||||
- Upgrade to 0.5
|
||||
|
||||
* Thu Sep 09 2004 Ralph Apel <r.apel at r-apel.de> - 0:0.3.1-1jpp
|
||||
- Fix version in changelog
|
||||
- Upgrade to 0.3.1
|
||||
|
||||
* Fri Aug 30 2004 Ralph Apel <r.apel at r-apel.de> - 0:2.0-0.b1.4jpp
|
||||
- Build with ant-1.6.2
|
||||
|
||||
* Fri Aug 06 2004 Ralph Apel <r.apel at r-apel.de> - 0:2.0-0.b1.3jpp
|
||||
- Void change
|
||||
|
||||
* Tue Jun 01 2004 Randy Watler <rwatler at finali.com> - 0:2.0-0.b1.2jpp
|
||||
- Upgrade to Ant 1.6.X
|
||||
|
||||
* Fri Mar 04 2004 Ralph Apel <r.apel at r-apel.de> - 0:2.0-0.b1.1jpp
|
||||
- First JPackage release
|
||||
Loading…
Add table
Add a link
Reference in a new issue