234ea211ea
this fixes dependency problems with math3.stat for me OBS-URL: https://build.opensuse.org/request/show/871266 OBS-URL: https://build.opensuse.org/package/show/Java:packages/apache-commons-math?expand=0&rev=17
72 lines
2.2 KiB
RPMSpec
72 lines
2.2 KiB
RPMSpec
#
|
|
# spec file for package apache-commons-math
|
|
#
|
|
# Copyright (c) 2021 SUSE LLC
|
|
#
|
|
# 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 https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%global base_name math
|
|
%global short_name commons-%{base_name}
|
|
Name: apache-commons-math
|
|
Version: 3.6.1
|
|
Release: 0
|
|
Summary: The Apache Commons Mathematics Library
|
|
License: Apache-2.0
|
|
URL: http://commons.apache.org/%{base_name}/
|
|
Source: http://www.apache.org/dist/commons/%{base_name}/source/%{short_name}3-%{version}-src.tar.gz
|
|
BuildRequires: ant
|
|
BuildRequires: ant-junit
|
|
BuildRequires: java-devel >= 1.8
|
|
BuildRequires: maven-antrun-plugin
|
|
BuildRequires: maven-local
|
|
BuildRequires: mvn(org.apache.commons:commons-parent:pom:)
|
|
BuildArch: noarch
|
|
|
|
%description
|
|
Commons Math is a library of lightweight, self-contained mathematics and
|
|
statistics components addressing the most common problems not available in
|
|
the Java programming language or Commons Lang.
|
|
|
|
%package javadoc
|
|
Summary: Javadoc for %{name}
|
|
|
|
%description javadoc
|
|
This package contains the API documentation for %{name}.
|
|
|
|
%prep
|
|
%autosetup -n %{short_name}3-%{version}-src
|
|
|
|
# Compatibility links
|
|
%mvn_alias "org.apache.commons:%{short_name}" "%{short_name}:%{short_name}"
|
|
%mvn_file :%{short_name} %{short_name} %{name}
|
|
|
|
# Skip test that fails on Java 11
|
|
sed -i -e '/checkMissingFastMathClasses/i@Ignore' \
|
|
src/test/java/org/apache/commons/math3/util/FastMathTest.java
|
|
|
|
%build
|
|
%mvn_build -- -Dmaven.compiler.source=1.8 -Dmaven.compiler.target=1.8
|
|
|
|
%install
|
|
%mvn_install
|
|
|
|
%files -f .mfiles
|
|
%license LICENSE.txt license-header.txt NOTICE.txt
|
|
%doc RELEASE-NOTES.txt
|
|
|
|
%files javadoc -f .mfiles-javadoc
|
|
%license LICENSE.txt
|
|
|
|
%changelog
|