- Update to version 2.3.2

* Changes of version 2.3.2
    + Added Automatic-Module-Name attribute to the manifest, for
      Java Platform Module System (request from AndreasWBartels).
    + Build: corrected an issue in JfmJavacHelper, which was always
      using ';' as classpath separator, instead of ':' by default
      and ';' only on Windows.
    + Little code cleanups.
    + Removed AllTests class (instead just launch tests from the
      IDE project).
    + Changed README to use Markdown.
- Reproducible builds: use SOURCE_DATE_EPOCH for timestamp
- JPMS: Add the Automatic-Module-Name attribute to the manifest.

OBS-URL: https://build.opensuse.org/package/show/Java:packages/jafama?expand=0&rev=3
This commit is contained in:
Fridrich Strba 2024-09-26 08:35:02 +00:00 committed by Git OBS Bridge
parent fc803d14e7
commit 4ec706f474
4 changed files with 71 additions and 6 deletions

3
jafama-2.3.2-sources.jar Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4abe997192496200621ac509ba11b25099b81ab0820ea0eeb6d8b08d41cdf38a
size 165185

33
jafama-2.3.2.pom Normal file
View File

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>net.jafama</groupId>
<artifactId>jafama</artifactId>
<version>2.3.2</version>
<packaging>jar</packaging>
<name>Java Fast Math</name>
<description>A (Strict)FastMath class with 1e-15ish accuracy.</description>
<url>http://sourceforge.net/projects/jafama/</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>Jeff Hain</name>
<email>jeffhain@rocketmail.com</email>
</developer>
</developers>
<scm>
<url>http://sourceforge.net/p/jafama/code/ci/master/tree/</url>
</scm>
</project>

View File

@ -1,3 +1,20 @@
-------------------------------------------------------------------
Wed Sep 25 22:05:56 UTC 2024 - Anton Shvetz <shvetz.anton@gmail.com>
- Update to version 2.3.2
* Changes of version 2.3.2
+ Added Automatic-Module-Name attribute to the manifest, for
Java Platform Module System (request from AndreasWBartels).
+ Build: corrected an issue in JfmJavacHelper, which was always
using ';' as classpath separator, instead of ':' by default
and ';' only on Windows.
+ Little code cleanups.
+ Removed AllTests class (instead just launch tests from the
IDE project).
+ Changed README to use Markdown.
- Reproducible builds: use SOURCE_DATE_EPOCH for timestamp
- JPMS: Add the Automatic-Module-Name attribute to the manifest.
-------------------------------------------------------------------
Thu Feb 27 08:59:14 UTC 2020 - Fridrich Strba <fstrba@suse.com>

View File

@ -1,7 +1,7 @@
#
# spec file for package jafama
#
# Copyright (c) 2020 SUSE LLC
# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -17,7 +17,7 @@
Name: jafama
Version: 2.3.1
Version: 2.3.2
Release: 0
Summary: A (Strict) FastMath class with 1e-15ish accuracy
License: BSD-3-Clause
@ -43,26 +43,38 @@ Summary: Javadoc for %{name}
Group: Documentation/HTML
%description javadoc
%{summary}.
API documentation for %{name}.
%prep
%setup -q -n %{name}-%{version}-sources
cp %{SOURCE1} pom.xml
%pom_add_plugin org.apache.maven.plugins:maven-jar-plugin \
'<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>net.%{name}</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>'
%{mvn_file} : %{name}
%build
%{mvn_build} -f
%{mvn_build} -f -- \
-Dproject.build.outputTimestamp=$(date -u -d @${SOURCE_DATE_EPOCH:-$(date +%%s)} +%%Y-%%m-%%dT%%H:%%M:%%SZ)
%install
%mvn_install
%fdupes -s %{buildroot}%{_javadocdir}
%files -f .mfiles
%doc README.txt
%doc README.md
%license LICENSE-2.0.txt
%files javadoc -f .mfiles-javadoc
%license LICENSE-2.0.txt
%doc README.txt
%doc README.md
%changelog