diff --git a/jafama-2.3.1-sources.jar b/jafama-2.3.1-sources.jar
deleted file mode 100644
index 488dd17..0000000
--- a/jafama-2.3.1-sources.jar
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:18dba209c2c7c5837b661723c03dc3dc300bfd8897b5e3fa17ffc05884941995
-size 165774
diff --git a/jafama-2.3.2-sources.jar b/jafama-2.3.2-sources.jar
new file mode 100644
index 0000000..b5a9ef7
--- /dev/null
+++ b/jafama-2.3.2-sources.jar
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4abe997192496200621ac509ba11b25099b81ab0820ea0eeb6d8b08d41cdf38a
+size 165185
diff --git a/jafama-2.3.1.pom b/jafama-2.3.2.pom
similarity index 94%
rename from jafama-2.3.1.pom
rename to jafama-2.3.2.pom
index 856a777..8503f16 100644
--- a/jafama-2.3.1.pom
+++ b/jafama-2.3.2.pom
@@ -5,7 +5,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/ma
4.0.0
net.jafama
jafama
- 2.3.1
+ 2.3.2
jar
Java Fast Math
diff --git a/jafama.changes b/jafama.changes
index b3816a5..2a14b02 100644
--- a/jafama.changes
+++ b/jafama.changes
@@ -1,3 +1,20 @@
+-------------------------------------------------------------------
+Wed Sep 25 22:05:56 UTC 2024 - Anton Shvetz
+
+- 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
diff --git a/jafama.spec b/jafama.spec
index 3ad9bc3..112ec88 100644
--- a/jafama.spec
+++ b/jafama.spec
@@ -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 \
+'
+
+
+ net.%{name}
+
+
+'
+
+%{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