# 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. # # We don't want to build with maven %define _without_maven 1 # If you don't want to build with maven, and use straight ant instead, # give rpmbuild option '--without maven' %define with_maven %{!?_without_maven:1}%{?_without_maven:0} %define without_maven %{?_without_maven:1}%{!?_without_maven:0} # If you don't want the manual to be built, give rpmbuild option # '--without manual' %define with_manual %{!?_without_manual:1}%{?_without_manual:0} %define without_manual %{?_without_manual:1}%{!?_without_manual:0} Name: jaxen Version: 1.1.1 Release: 1.1%{?dist} Epoch: 0 Summary: An XPath engine written in Java License: BSD Url: http://jaxen.codehaus.org/ Group: Development/Libraries Source0: http://dist.codehaus.org/jaxen/distributions/jaxen-%{version}-src.tar.gz %if %{with_maven} Source1: pom-maven2jpp-depcat.xsl Source2: pom-maven2jpp-newdepmap.xsl Source3: pom-maven2jpp-mapdeps.xsl Source4: jaxen-1.1-b7-jpp-depmap.xml Source5: jaxen-1.1-b7-build.xml %endif Requires: dom4j >= 0:1.6.1 Requires: jdom >= 0:1.0-0.rc1.1jpp Requires: xalan-j2 Requires: xerces-j2 Requires: xom BuildRequires: ant >= 0:1.6, jpackage-utils >= 0:1.6, junit, ant-junit BuildRequires: java-devel %if %{with_maven} BuildRequires: maven >= 0:1.1, saxon, saxon-scripts BuildRequires: maven-plugin-changes >= 0:1.1 BuildRequires: maven-plugin-file-activity >= 0:1.1 BuildRequires: maven-plugin-developer-activity >= 0:1.1 BuildRequires: maven-plugin-license >= 0:1.1 BuildRequires: maven-plugin-jdepend >= 0:1.1 BuildRequires: maven-plugin-tasklist >= 0:1.1 %endif BuildRequires: dom4j >= 0:1.6.1 BuildRequires: jdom >= 0:1.0-0.rc1.1jpp BuildRequires: xalan-j2 BuildRequires: xerces-j2 BuildRequires: xom Provides: jaxen-bootstrap <= %{version}-%{release} Obsoletes: jaxen-bootstrap <= %{version}-%{release} BuildArch: noarch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %description Jaxen is an XPath engine written in Java to work against a variety of XML based object models such as DOM, dom4j and JDOM together with Java Beans. %if %{with_maven} %if %{with_manual} %package manual Summary: Documents for %{name} Group: Development/Documentation %description manual %{summary}. %endif %endif %package demo Summary: Samples for %{name} Group: Development/Documentation Requires: jaxen = 0:%{version}-%{release} %description demo %{summary}. %package javadoc Summary: Javadoc for %{name} Group: Development/Documentation %description javadoc %{summary}. %prep # If you dont want to build with maven, give rpmbuild option '--without # maven' # If you dont want the manual to be built, give rpmbuild option # '--without manual' %setup -q -n %{name}-%{version} find . -name "*.jar" -exec rm -f {} \; %if %{with_maven} export DEPCAT=$(pwd)/jaxen-1.1-b7-depcat.new.xml echo '' > $DEPCAT echo '' >> $DEPCAT for p in $(find . -name project.xml); do pushd $(dirname $p) /usr/bin/saxon project.xml %{SOURCE1} >> $DEPCAT popd done echo >> $DEPCAT echo '' >> $DEPCAT /usr/bin/saxon $DEPCAT %{SOURCE2} > jaxen-1.1-b7-depmap.new.xml %else mkdir -p target/lib pushd target/lib build-jar-repository . dom4j-1.6.1.jar jdom-1.0.jar xom-1.0.jar ln -s %{_javadir}/xerces-j2.jar xercesImpl-2.6.2.jar popd %endif %build %if %{with_maven} for p in $(find . -name project.xml); do pushd $(dirname $p) cp project.xml project.xml.orig /usr/bin/saxon -o project.xml project.xml.orig %{SOURCE3} map=%{SOURCE4} popd done mkdir .maven %if %{with_manual} maven \ -Dmaven.repo.remote=file:/usr/share/maven/repository \ -Dmaven.home.local=$(pwd)/.maven \ jar javadoc xdoc %else maven \ -Dmaven.repo.remote=file:/usr/share/maven/repository \ -Dmaven.home.local=$(pwd)/.maven \ jar javadoc %endif %else ant -Dnoget=true jar javadoc %endif %install rm -rf $RPM_BUILD_ROOT # jars install -d -m 755 $RPM_BUILD_ROOT%{_javadir} install -m 644 target/%{name}-%{version}.jar \ $RPM_BUILD_ROOT%{_javadir}/%{name}-%{version}.jar (cd $RPM_BUILD_ROOT%{_javadir} && for jar in *-%{version}*; do \ ln -sf ${jar} ${jar/-%{version}/}; done) # javadoc install -d -m 755 $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version} %if %{with_maven} cp -pr target/docs/apidocs/* $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version} rm -rf target/docs/apidocs %else cp -pr dist/docs/api/* $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version} %endif ln -s %{name}-%{version} $RPM_BUILD_ROOT%{_javadocdir}/%{name} # manual %if %{with_maven} %if %{with_manual} install -d -m 755 $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version} cp -pr target/docs/* $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version} %endif %endif # demo install -d -m 755 $RPM_BUILD_ROOT%{_datadir}/%{name}-%{version}/samples cp -pr src/java/samples/* $RPM_BUILD_ROOT%{_datadir}/%{name}-%{version}/samples %clean rm -rf $RPM_BUILD_ROOT %files %defattr(0644,root,root,0755) %doc LICENSE.txt %{_javadir}/* %if %{with_maven} %if %{with_manual} %files manual %defattr(0644,root,root,0755) %doc %{_docdir}/%{name}-%{version} %endif %endif %files javadoc %defattr(0644,root,root,0755) %doc %{_javadocdir}/* %files demo %defattr(0644,root,root,0755) %{_datadir}/%{name}-%{version} %changelog * Tue Nov 25 2008 Devrim GUNDUZ - 0:1.1.1-1 - Update to 1.1.1, to fix #465987 . * Wed Jul 9 2008 Tom "spot" Callaway - 0:1.1-1.3 - drop repotag * Tue Feb 20 2007 Vivek Lakshmanan 0:1.1-1jpp.2.fc7 - Add build-requires on ant-junit * Mon Feb 19 2007 Andrew Overholt 0:1.1-1jpp.1 - Add explicit version-release on Provides and Obsoletes - Untabify - Remove %%ghost on versioned javadoc dir - Just include %%{_javadocdir}/* for javadoc package * Wed Feb 14 2007 Andrew Overholt 0:1.1-1jpp.1 - Bump to 1.1 final - Make release Xjpp.Y%{?dist} - Remove Distribution, Vendor - Fix Group - Remove cleaning of buildroot from beginning of %%prep - Add cleaning of buildroot to beginning of %%install - Remove %%section free - Use Fedora buildroot * Sun Feb 26 2006 Fernando Nasser - 0:1.1-0.b7.4jpp - Rebuild for JPP 1.7 * Wed Feb 15 2006 Ralph Apel 0:1.1-0.b7.3jpp - Insert Copyright notice * Mon Feb 13 2006 Ralph Apel 0:1.1-0.b7.2jpp - Adapt to maven-1.1 - Create option to build without maven * Wed Aug 17 2005 Ralph Apel 0:1.1-0.b7.1jpp - Upgrade to 1.1-beta-7 - Now mavenized - Requiring dom4j >= 1.6.1 - rpmbuild option to inhibit build of manual (needs newer maven) * Thu Sep 09 2004 Ralph Apel 0:1.1-0.b2.1jpp - Upgrade to 1.1-beta-2 - Drop saxpath requirement as saxpath is now included in jaxen * Sun Aug 23 2004 Randy Watler - 0:1.0-4jpp - Rebuild with ant-1.6.2 * Mon Jan 19 2004 Ralph Apel 0:1.0-3jpp - build against dom4j-1.4-1jpp - introduce manual and demo subpackages - patch org.jaxen.dom4j.DocumentNavigatorTest - include LICENSE in main package - run tests during build * Thu Jan 15 2004 Ralph Apel 0:1.0-2jpp - activate support for dom4j by renaming lib/dom4j-core.jar to .zip * Sun May 04 2003 David Walluck 0:1.0-1jpp - release