werken-xpath/werken-xpath.spec

146 lines
4.8 KiB
RPMSpec

#
# spec file for package werken-xpath (Version 0.9.4)
#
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
%define dotname werken.xpath
%define section free
Name: werken-xpath
Version: 0.9.4
Release: 2
Summary: XPath implementation using JDOM
License: Apache Software License-like
Source0: %{dotname}-%{version}-beta-src.tar.bz2
Source1: %{name}-%{version}.pom
Patch0: %{name}-ElementNamespaceContext.patch
Patch1: %{name}-Partition.patch
Patch2: %{name}-ParentStep.patch
Patch3: %{name}-NodeTypeStep.patch
Patch4: %{name}-UnAbbrStep.patch
Patch5: %{name}-StringFunction.patch
Patch6: %{name}-Test.patch
Patch7: %{name}-Driver.patch
Patch8: %{name}-runtests_sh.patch
Url: http://sourceforge.net/projects/werken-xpath/
Requires: jdom
BuildRequires: ant >= 1.6
BuildRequires: antlr
BuildRequires: jdom
BuildRequires: xerces-j2
BuildRequires: xml-commons-apis
BuildRequires: jpackage-utils >= 1.7.2
Group: Development/Libraries/Java
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Provides: werken.xpath = %{version}-%{release}
Obsoletes: werken.xpath <= 0.9.4
Requires(post): jpackage-utils >= 1.7.2
Requires(postun): jpackage-utils >= 1.7.2
%description
werken.xpath is an implementation of the W3C XPath Recommendation, on
top of the JDOM library. It takes as input a XPath expression, and a
JDOM tree, and returns a NodeSet (java.util.List) of selected
elements. Is is being used in the development of the
as-yet-unreleased werken.xslt (eXtensible Stylesheet Language) and the
werken.canonical (XML canonicalization) packages.
%package javadoc
License: Apache Software License-like
Summary: Javadoc for %{name}
Group: Development/Documentation
BuildRequires: java-javadoc
Requires(post): /bin/rm /bin/ln
Requires(postun): /bin/rm
Provides: werken.xpath-javadoc = %{version}-%{release}
Obsoletes: werken.xpath-javadoc <= 0.9.4
%description javadoc
werken.xpath is an implementation of the W3C XPath Recommendation, on
top of the JDOM library. It takes as input a XPath expression, and a
JDOM tree, and returns a NodeSet (java.util.List) of selected
elements. Is is being used in the development of the
as-yet-unreleased werken.xslt (eXtensible Stylesheet Language) and the
werken.canonical (XML canonicalization) packages.
%prep
%setup -q -n %{dotname}
%patch0 -b .sav
%patch1 -b .sav
%patch2 -b .sav
%patch3 -b .sav
%patch4 -b .sav
%patch5 -b .sav
%patch6 -b .sav
%patch7 -b .sav
%patch8 -b .sav
# remove all binary libs
for j in $(find . -name "*.jar"); do
mv $j $j.no
done
#pushd lib
#ln -sf $(build-classpath antlr) antlr-runtime.jar
#ln -sf $(build-classpath jdom) jdom.jar
#ln -sf $(build-classpath xerces-j2) xerces.jar
#popd
%build
export CLASSPATH=$(build-classpath jdom antlr xerces-j2 xml-commons-apis)
ant -Dant.build.javac.source=1.5 -Dant.build.javac.target=1.5 -Dbuild.compiler=modern package javadoc compile-test
# Note that you'll have to java in PATH for this to work, it is by default
# when using a JPackage JVM.
CLASSPATH=$CLASSPATH:build/werken.xpath.jar:build/test/classes
sh runtests.sh
%install
# jars
mkdir -p $RPM_BUILD_ROOT%{_javadir}
cp -p build/%{dotname}.jar $RPM_BUILD_ROOT%{_javadir}/%{name}-%{version}.jar
(cd $RPM_BUILD_ROOT%{_javadir} && for jar in *-%{version}.jar; do ln -sf ${jar} `echo $jar| sed "s|-%{version}||g"`; done
ln -sf %{name}.jar %{dotname}.jar)
# pom
mkdir -p $RPM_BUILD_ROOT%{_datadir}/maven2/default_poms
cp %{SOURCE1} $RPM_BUILD_ROOT%{_datadir}/maven2/default_poms/JPP-werken-xpath.pom
%add_to_maven_depmap %{name} %{name} %{version} JPP %{name}
# javadoc
mkdir -p $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version}
cp -pr build/apidocs/* $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version}
%clean
rm -rf $RPM_BUILD_ROOT
%post
%update_maven_depmap
%postun
%update_maven_depmap
%files
%defattr(0644,root,root,0755)
%doc INSTALL LICENSE LIMITATIONS README TODO
%{_javadir}/*
%{_datadir}/maven2/default_poms/*
%config %{_mavendepmapfragdir}
%dir %{_datadir}/maven2
%dir %{_datadir}/maven2/default_poms
%files javadoc
%defattr(0644,root,root,0755)
%{_javadocdir}/%{name}-%{version}
%changelog