2015-10-10 22:21:07 +02:00
|
|
|
#
|
|
|
|
# spec file for package apache-commons-math
|
|
|
|
#
|
2019-11-11 12:25:30 +01:00
|
|
|
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
2015-10-10 22:21:07 +02:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2019-11-11 12:25:30 +01:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2015-10-10 22:21:07 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
%global base_name math
|
|
|
|
%global short_name commons-%{base_name}
|
|
|
|
Name: apache-commons-math
|
2017-03-01 12:50:17 +01:00
|
|
|
Version: 3.6.1
|
2015-10-10 22:21:07 +02:00
|
|
|
Release: 0
|
|
|
|
Summary: The Apache Commons Mathematics Library
|
|
|
|
License: Apache-2.0
|
2019-11-11 12:25:30 +01:00
|
|
|
URL: http://commons.apache.org/%{base_name}/
|
2015-10-10 22:21:07 +02:00
|
|
|
Source0: http://www.apache.org/dist/commons/%{base_name}/source/%{short_name}3-%{version}-src.tar.gz
|
2017-09-14 15:36:50 +02:00
|
|
|
Patch0: commons-math3-3.6.1-notests.patch
|
2015-10-10 22:21:07 +02:00
|
|
|
BuildRequires: ant
|
|
|
|
BuildRequires: ant-junit
|
2018-05-15 15:01:24 +02:00
|
|
|
BuildRequires: java-devel >= 1.8
|
2017-05-19 13:00:06 +02:00
|
|
|
BuildRequires: javapackages-local
|
2017-05-21 09:55:03 +02:00
|
|
|
BuildArch: noarch
|
2015-10-10 22:21:07 +02:00
|
|
|
|
|
|
|
%description
|
|
|
|
Commons Math is a library of lightweight, self-contained mathematics and
|
|
|
|
statistics components addressing the most common problems not available in
|
2017-05-21 09:55:03 +02:00
|
|
|
the Java programming language or Commons Lang.
|
2015-10-10 22:21:07 +02:00
|
|
|
|
|
|
|
%package javadoc
|
|
|
|
Summary: Javadoc for %{name}
|
|
|
|
|
|
|
|
%description javadoc
|
|
|
|
This package contains the API documentation for %{name}.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n %{short_name}3-%{version}-src
|
2017-09-14 15:36:50 +02:00
|
|
|
%patch0 -p1
|
2015-10-10 22:21:07 +02:00
|
|
|
|
|
|
|
%build
|
|
|
|
export CLASSPATH=$(build-classpath ant-junit junit)
|
2018-05-15 15:01:24 +02:00
|
|
|
ant -Dant.build.javac.source=8 -Dcompile.source=8 \
|
|
|
|
-Dant.build.javac.target=8 -Dcompile.target=8 \
|
2017-09-14 15:36:50 +02:00
|
|
|
-Dmaven.mode.offline=true -Dmaven.test.skip=true \
|
|
|
|
-lib %{_datadir}/java -Dbuild.sysclasspath=first \
|
2019-11-11 12:25:30 +01:00
|
|
|
jar javadoc
|
2015-10-10 22:21:07 +02:00
|
|
|
|
|
|
|
%install
|
|
|
|
# jars
|
2019-11-11 12:25:30 +01:00
|
|
|
install -Dpm 644 target/%{short_name}*.jar %{buildroot}%{_javadir}/%{short_name}.jar
|
|
|
|
ln -sf %{_javadir}/%{short_name}.jar %{buildroot}%{_javadir}/%{name}.jar
|
2015-10-10 22:21:07 +02:00
|
|
|
|
|
|
|
# pom
|
|
|
|
install -d -m 755 %{buildroot}%{_mavenpomdir}
|
2019-11-11 12:25:30 +01:00
|
|
|
install -pm 644 pom.xml %{buildroot}%{_mavenpomdir}/%{short_name}.pom
|
|
|
|
%add_maven_depmap %{short_name}.pom %{short_name}.jar -a %{short_name}:%{short_name}
|
2015-10-10 22:21:07 +02:00
|
|
|
|
|
|
|
# javadoc
|
|
|
|
install -d -m 0755 %{buildroot}%{_javadocdir}/%{name}-%{version}
|
2019-11-11 12:25:30 +01:00
|
|
|
cp -pr target/apidocs/ %{buildroot}%{_javadocdir}/%{name}
|
2015-10-10 22:21:07 +02:00
|
|
|
|
2019-11-11 12:25:30 +01:00
|
|
|
%files -f .mfiles
|
|
|
|
%license LICENSE.txt license-header.txt NOTICE.txt
|
|
|
|
%doc RELEASE-NOTES.txt
|
|
|
|
%{_javadir}/%{name}.jar
|
2015-10-10 22:21:07 +02:00
|
|
|
|
|
|
|
%files javadoc
|
2019-11-11 12:25:30 +01:00
|
|
|
%license LICENSE.txt
|
|
|
|
%{_javadocdir}/%{name}
|
2015-10-10 22:21:07 +02:00
|
|
|
|
|
|
|
%changelog
|