From 31eeb2bd0be1838b8917d97abac2fbdf49cf873a Mon Sep 17 00:00:00 2001 From: CentOS Buildsys Date: Jun 28 2013 13:26:00 +0000 Subject: import bea-stax-1.2.0-8.el7.src.rpm --- diff --git a/.bea-stax.metadata b/.bea-stax.metadata new file mode 100644 index 0000000..bcbd4b0 --- /dev/null +++ b/.bea-stax.metadata @@ -0,0 +1 @@ +98fe1a253d5b63033589b1f53fcf130813ceb088 SOURCES/stax-src-1.2.0.zip diff --git a/README.md b/README.md deleted file mode 100644 index 0e7897f..0000000 --- a/README.md +++ /dev/null @@ -1,5 +0,0 @@ -The master branch has no content - -Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6 - -If you find this file in a distro specific branch, it means that no content has been checked in yet diff --git a/SOURCES/stax-1.2.0.pom b/SOURCES/stax-1.2.0.pom new file mode 100644 index 0000000..486ba39 --- /dev/null +++ b/SOURCES/stax-1.2.0.pom @@ -0,0 +1,99 @@ + + 4.0.0 + stax + stax + StAX reference implementation + 1.2.0 + This is the reference implementation of the StAX API + http://stax.codehaus.org/ + + http://jira.codehaus.org/browse/STAX + + + + + +
dev@stax.codehaus.org
+
+
+
+
+ 2002 + + + StAX Builders List + stax_builders-subscribe@yahoogroups.com + stax_builders-unsubscribe@yahoogroups.com + http://groups.yahoo.com/group/stax_builders/ + + + + + aslom + Aleksander Slominski + + Indiana University + + + chris + Chris Fry + + + + + + src + test + + + src/conf + + **/* + + + + + + test + + **/*.properties + **/*.xml + + + + + + surefire + + + **/*Test.* + + + + + + + + stax + stax-api + 1.0.1 + + + junit + junit + 3.8.1 + + + + + default + Default Repository + file:///home/projects/stax/dist + + + default + Default Site + scp://stax.codehaus.org//home/projects/stax/public_html/maven + + +
diff --git a/SOURCES/stax-api-1.0.1.pom b/SOURCES/stax-api-1.0.1.pom new file mode 100644 index 0000000..d81321f --- /dev/null +++ b/SOURCES/stax-api-1.0.1.pom @@ -0,0 +1,44 @@ + + 4.0.0 + stax + stax-api + StAX API + 1.0.1 + StAX API is the standard java XML processing API defined by JSR-173 + http://stax.codehaus.org/ + + http://jira.codehaus.org/browse/STAX + + + + + +
dev@stax.codehaus.org
+
+
+
+
+ 2005 + + + StAX Builders List + stax_builders-subscribe@yahoogroups.com + stax_builders-unsubscribe@yahoogroups.com + http://groups.yahoo.com/group/stax_builders/ + + + + + aslom + Aleksander Slominski + + Indiana University + + + chris + Chris Fry + + + + +
diff --git a/SPECS/bea-stax.spec b/SPECS/bea-stax.spec new file mode 100644 index 0000000..2e5925b --- /dev/null +++ b/SPECS/bea-stax.spec @@ -0,0 +1,193 @@ +# 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. +# + +%global mainver 1.2.0 +%global apiver 1.0.1 + +Summary: Streaming API for XML +URL: http://stax.codehaus.org/Home +Source0: http://dist.codehaus.org/stax/distributions/stax-src-1.2.0.zip +Source1: http://dist.codehaus.org/stax/jars/stax-1.2.0.pom +Source2: http://dist.codehaus.org/stax/jars/stax-api-1.0.1.pom +Name: bea-stax +Version: %{mainver} +Release: 8%{?dist} +License: ASL 1.1 and ASL 2.0 +Group: Development/Libraries/Java +BuildArch: noarch + +BuildRequires: jpackage-utils +BuildRequires: ant +BuildRequires: xerces-j2,xalan-j2 +BuildRequires: java-devel +Requires: jpackage-utils + +%description +The Streaming API for XML (StAX) is a groundbreaking +new Java API for parsing and writing XML easily and +efficiently. + +%package api +Summary: The StAX API +Group: Development/Documentation +Requires: jpackage-utils + +%description api +%{summary} + +%package javadoc +Summary: Javadoc for %{name} +Group: Development/Documentation +Requires: jpackage-utils + +%description javadoc +%{summary} + +%prep +%setup -q -c -n %{name}-%{version} + +# Convert CR+LF to LF +%{__sed} -i 's/\r//' ASF2.0.txt + +%build +export CLASSPATH=`pwd`/build/stax-api-%{apiver}.jar +ant all javadoc + +%install +# jar +install -Dpm 0644 build/stax-api-%{apiver}.jar %{buildroot}%{_javadir}/%{name}-api.jar +install -Dpm 0644 build/stax-%{version}-dev.jar %{buildroot}%{_javadir}/%{name}.jar +# the following symlink can be removed once no package needs "bea-stax-ri" +ln -s %{name}.jar %{buildroot}%{_javadir}/%{name}-ri.jar + +# javadoc +install -d -m 755 %{buildroot}%{_javadocdir}/%{name} +cp -pr build/javadoc/* %{buildroot}%{_javadocdir}/%{name} + +# pom +install -Dpm 644 %{SOURCE1} %{buildroot}%{_mavenpomdir}/JPP-%{name}.pom +install -Dpm 644 %{SOURCE2} %{buildroot}%{_mavenpomdir}/JPP-%{name}-api.pom + +%add_maven_depmap JPP-%{name}.pom %{name}.jar +%add_maven_depmap -f api -a "javax.xml.stream:stax-api" JPP-%{name}-api.pom %{name}-api.jar + +%files +%doc ASF2.0.txt +%{_javadir}/%{name}.jar +%{_javadir}/%{name}-ri.jar +%{_mavenpomdir}/JPP-%{name}.pom +%{_mavendepmapfragdir}/%{name} + + +%files api +%doc ASF2.0.txt +%{_javadir}/%{name}-api.jar +%{_mavenpomdir}/JPP-%{name}-api.pom +%{_mavendepmapfragdir}/%{name}-api + +%files javadoc +%doc ASF2.0.txt +%doc %{_javadocdir}/* + +%changelog +* Fri Jun 28 2013 Mikolaj Izdebski - 1.2.0-8 +- Rebuild to regenerate API documentation +- Resolves: CVE-2013-1571 + +* Wed Feb 13 2013 Fedora Release Engineering - 1.2.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Wed Nov 28 2012 Mikolaj Izdebski - 1.2.0-6 +- Remove unneeded patch + +* Wed Nov 14 2012 Jaromir Capik - 1.2.0-5 +- ASL 1.1 was missing + +* Wed Jul 18 2012 Fedora Release Engineering - 1.2.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Thu Jan 12 2012 Fedora Release Engineering - 1.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Thu Sep 29 2011 Jaromir Capik - 1.2.0-2 +- Symlink "-ri" created for backward compatibility + +* Thu Sep 29 2011 Jaromir Capik - 1.2.0-1 +- Update to 1.2.0 +- Introduction of POM files and depmaps + +* Mon Feb 07 2011 Fedora Release Engineering - 0:1.2.0-0.8.rc1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Thu Oct 7 2010 Alexander Kurtakov 0:1.2.0-0.7.rc1 +- BR java 1.6.0. + +* Thu Oct 7 2010 Alexander Kurtakov 0:1.2.0-0.6.rc1 +- Drop gcj support. + +* Fri Jul 24 2009 Fedora Release Engineering - 0:1.2.0-0.5.rc1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Mon Feb 23 2009 Fedora Release Engineering - 0:1.2.0-0.4.rc1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Wed Jul 9 2008 Tom "spot" Callaway - 0:1.2.0-0.3.rc1 +- drop repotag +- fix license + +* Tue Feb 19 2008 Fedora Release Engineering - 0:1.2.0-0.2.rc1.2jpp.1 +- Autorebuild for GCC 4.3 + +* Mon Feb 12 2007 Vivek Lakshmanan 0:1.2.0-0.1.rc1.2jpp.1.fc7 +- Use new naming convention +- Add ASF2.0.txt as doc for api and main package +- Remove post/postun magic for javadoc +- Add BR on ant, xerces-j2 and xalan-j2 +- Add conditional patch to make the package build under ecj/gcj + +* Wed Jan 18 2006 Fernando Nasser 0:1.2.0-0.rc1.2jpp +- First JPP 1.7 build + +* Wed Jan 18 2006 Deepak Bhole 0:1.2.0-0.rc1.1jpp +- Change source zip, and build the ri jars +- Use setup macro in prep +- First version all under APL +- New package name +- Demo still not yet available under the APL; will be in an update + +* Tue Apr 26 2005 Fernando Nasser 0:1.0-2jpp_2rh +- First Red Hat build + +* Wed Oct 20 2004 David Walluck 0:1.0-2jpp +- fix build + +* Thu Sep 09 2004 Ralph Apel 0:1.0-1jpp +- First JPackage build +- Note: there is a stax project starting at codehaus