Accepting request 964271 from Java:packages
Build with source and target levels 8 OBS-URL: https://build.opensuse.org/request/show/964271 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/werken-xpath?expand=0&rev=18
This commit is contained in:
commit
a055795b0e
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 23 11:43:03 UTC 2022 - Fridrich Strba <fstrba@suse.com>
|
||||||
|
|
||||||
|
- Specify java source and target level 1.8
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Sep 20 09:39:48 UTC 2017 - fstrba@suse.com
|
Wed Sep 20 09:39:48 UTC 2017 - fstrba@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package werken-xpath
|
# spec file for package werken-xpath
|
||||||
#
|
#
|
||||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2022 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -12,7 +12,7 @@
|
|||||||
# license that conforms to the Open Source Definition (Version 1.9)
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
# published by the Open Source Initiative.
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
@ -23,7 +23,7 @@ Release: 0
|
|||||||
Summary: XPath implementation using JDOM
|
Summary: XPath implementation using JDOM
|
||||||
License: Apache-1.1
|
License: Apache-1.1
|
||||||
Group: Development/Libraries/Java
|
Group: Development/Libraries/Java
|
||||||
Url: http://sourceforge.net/projects/werken-xpath/
|
URL: https://sourceforge.net/projects/werken-xpath/
|
||||||
Source0: %{dotname}-%{version}-beta-src.tar.bz2
|
Source0: %{dotname}-%{version}-beta-src.tar.bz2
|
||||||
Source1: %{name}-%{version}.pom
|
Source1: %{name}-%{version}.pom
|
||||||
Patch0: %{name}-ElementNamespaceContext.patch
|
Patch0: %{name}-ElementNamespaceContext.patch
|
||||||
@ -38,8 +38,8 @@ Patch8: %{name}-runtests_sh.patch
|
|||||||
BuildRequires: ant >= 1.6
|
BuildRequires: ant >= 1.6
|
||||||
BuildRequires: antlr
|
BuildRequires: antlr
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
|
BuildRequires: java-devel >= 1.8
|
||||||
BuildRequires: javapackages-local
|
BuildRequires: javapackages-local
|
||||||
BuildRequires: javapackages-tools
|
|
||||||
BuildRequires: jdom
|
BuildRequires: jdom
|
||||||
BuildRequires: xerces-j2
|
BuildRequires: xerces-j2
|
||||||
BuildRequires: xml-commons-apis
|
BuildRequires: xml-commons-apis
|
||||||
@ -88,7 +88,7 @@ done
|
|||||||
|
|
||||||
%build
|
%build
|
||||||
export CLASSPATH=$(build-classpath jdom antlr xerces-j2 xml-commons-apis)
|
export CLASSPATH=$(build-classpath jdom antlr xerces-j2 xml-commons-apis)
|
||||||
ant -Dant.build.javac.source=1.6 -Dant.build.javac.target=1.6 -Dbuild.compiler=modern package javadoc compile-test
|
ant -Dant.build.javac.source=1.8 -Dant.build.javac.target=1.8 package javadoc compile-test
|
||||||
# Note that you'll have to java in PATH for this to work, it is by default
|
# Note that you'll have to java in PATH for this to work, it is by default
|
||||||
# when using a JPackage JVM.
|
# when using a JPackage JVM.
|
||||||
CLASSPATH=$CLASSPATH:build/werken.xpath.jar:build/test/classes
|
CLASSPATH=$CLASSPATH:build/werken.xpath.jar:build/test/classes
|
||||||
@ -98,7 +98,7 @@ sh runtests.sh
|
|||||||
# jars
|
# jars
|
||||||
mkdir -p %{buildroot}%{_javadir}
|
mkdir -p %{buildroot}%{_javadir}
|
||||||
cp -p build/%{dotname}.jar %{buildroot}%{_javadir}/%{dotname}.jar
|
cp -p build/%{dotname}.jar %{buildroot}%{_javadir}/%{dotname}.jar
|
||||||
(cd %{buildroot}%{_javadir}; ln -sf %{dotname}.jar %{name}.jar)
|
ln -sf %{dotname}.jar %{buildroot}%{_javadir}/%{name}.jar
|
||||||
# pom
|
# pom
|
||||||
mkdir -p %{buildroot}%{_mavenpomdir}
|
mkdir -p %{buildroot}%{_mavenpomdir}
|
||||||
cp %{SOURCE1} %{buildroot}%{_mavenpomdir}/JPP-werken-xpath.pom
|
cp %{SOURCE1} %{buildroot}%{_mavenpomdir}/JPP-werken-xpath.pom
|
||||||
@ -109,11 +109,10 @@ mkdir -p %{buildroot}%{_javadocdir}/%{name}
|
|||||||
cp -pr build/apidocs/* %{buildroot}%{_javadocdir}/%{name}
|
cp -pr build/apidocs/* %{buildroot}%{_javadocdir}/%{name}
|
||||||
%fdupes -s %{buildroot}%{_javadocdir}/%{name}
|
%fdupes -s %{buildroot}%{_javadocdir}/%{name}
|
||||||
|
|
||||||
%files
|
%files -f .mfiles
|
||||||
%doc LICENSE LIMITATIONS README TODO
|
%{_javadir}/%{dotname}.jar
|
||||||
%{_javadir}/*
|
%license LICENSE
|
||||||
%{_mavenpomdir}/*
|
%doc LIMITATIONS README TODO
|
||||||
%{_datadir}/maven-metadata/%{name}.xml*
|
|
||||||
|
|
||||||
%files javadoc
|
%files javadoc
|
||||||
%{_javadocdir}/%{name}
|
%{_javadocdir}/%{name}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user