Hello community,

here is the log from the commit of package form for openSUSE:Factory checked in 
at 2019-03-26 22:31:18
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/form (Old)
 and      /work/SRC/openSUSE:Factory/.form.new.25356 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "form"

Tue Mar 26 22:31:18 2019 rev:5 rq:686430 version:4.2.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/form/form.changes        2018-07-10 
16:17:53.533307512 +0200
+++ /work/SRC/openSUSE:Factory/.form.new.25356/form.changes     2019-03-26 
22:31:21.881721100 +0100
@@ -1,0 +2,47 @@
+Fri Mar 15 14:44:09 UTC 2019 - Atri B <[email protected]>
+
+- Update to version 4.2.1:
+  * See
+    https://github.com/vermaseren/form/wiki/Release-Notes-Form-4.2.1
+    for a full list of changes.
+  * Bug fixes:
+    - Replaced the obsolete ftime() function with clock_gettime()
+      when the latter is available (gh#vermaseren/form#276)
+    - Improved the algorithms of division and reminder for
+      non-monic multivariate polynomials (gh#vermaseren/form#281)
+    - Removed an inefficiency when many expressions are defined
+    - Improved the merge sort inside memory based on Timsort
+    - Fixed a bug that caused a pattern matching failure for
+      restricted numbers in ex-Polyratfun (gh#vermaseren/form#55)
+    - Fixed crashes in routines for gzip decompression
+      (gh#vermaseren/form#95)
+    - Fixed content_ for polynomials with constant terms
+      (gh#vermaseren/form#185)
+    - Fixed some portability issues (gh#vermaseren/form#217,
+      gh#vermaseren/form#223)
+    - Fixed corrupted characters from the prepreocessor calculator
+      when the result is the most negative integer
+      (gh#vermaseren/form#219)
+    - Fixed a crash on accessing the first
+      gh#vermaseren/form#factdollar factor of an integer
+      (gh#vermaseren/form#222)
+    - Fixed memory leaks in routines for gzip compression
+      (gh#vermaseren/form#248)
+    - Fixed a memory bug for local $-variables in TFORM
+      (gh#vermaseren/form#253)
+    - Fixed a bug that made gcd_ give wrong results
+      (gh#vermaseren/form#258)
+    - Fixed a bug in the polynomial GCD routine
+      (gh#vermaseren/form#260)
+    - Fixed a wrong "Division by zero" runtime error by mul_(x,0)
+      (gh#vermaseren/form#261)
+    - Fixed a bug that caused wrong results in code optimization
+      (gh#vermaseren/form#272)
+    - Fixed transform,addargs for the case that the result becomes
+      0 (gh#vermaseren/form#277)
+    - Fixed some bug in LHS patterns with poly(rat)fun and symbols
+    - Fixed the problem that content_ did not handle functions
+      properly
+- Disable documentation due to LaTeX errors.
+
+-------------------------------------------------------------------

Old:
----
  v4.2.0.tar.gz

New:
----
  v4.2.1.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ form.spec ++++++
--- /var/tmp/diff_new_pack.rwpWqI/_old  2019-03-26 22:31:24.097720565 +0100
+++ /var/tmp/diff_new_pack.rwpWqI/_new  2019-03-26 22:31:24.153720552 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package form
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,12 +16,15 @@
 #
 
 
-%define reldate 20170706
+# Documentation building fails due to LaTeX errors; disable for now
+%define with_doc 0
+
+%define reldate 20190212
 Name:           form
-Version:        4.2.0
+Version:        4.2.1
 Release:        0
 Summary:        A Symbolic Manipulation System
-License:        GPL-3.0+
+License:        GPL-3.0-or-later
 Group:          Productivity/Scientific/Math
 Url:            https://github.com/vermaseren/form/
 Source0:        https://github.com/vermaseren/form/archive/v%{version}.tar.gz
@@ -36,8 +39,9 @@
 BuildRequires:  libtool
 BuildRequires:  openmpi-devel
 BuildRequires:  pkgconfig
-BuildRequires:  texlive-tex4ht
 BuildRequires:  pkgconfig(zlib)
+%if %{with_doc}
+BuildRequires:  texlive-tex4ht
 BuildRequires:  tex(adjustbox.sty)
 BuildRequires:  tex(amssymb.sty)
 BuildRequires:  tex(calc.sty)
@@ -61,6 +65,7 @@
 BuildRequires:  tex(tocloft.sty)
 BuildRequires:  tex(wasysym.sty)
 BuildRequires:  tex(xcolor.sty)
+%endif
 Recommends:     %{name}-doc = %{version}
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 
@@ -101,11 +106,13 @@
 %configure --enable-parform
 make %{?_smp_mflags}
 
+%if %{with_doc}
 # MAKE DOCUMENTATION
 pushd doc
 make %{?_smp_mflags} pdf
 make %{?_smp_mflags} html
 popd
+%endif
 
 %install
 %make_install
@@ -113,19 +120,21 @@
 %fdupes -s doc
 
 %files
-%defattr(-,root,root)
 %doc AUTHORS README.md COPYING
+%if %{with_doc}
 %doc doc/manual/manual.pdf
 %doc doc/manual/html/
+%endif
 %{_bindir}/form
 %{_bindir}/tform
 %{_bindir}/parform
 %{_mandir}/man1/form.1%{ext_man}
 
+%if %{with_doc}
 %files doc
-%defattr(-,root,root)
 %doc doc/doxygen/html/
 %doc doc/devref/devref.pdf
 %doc doc/devref/html/
+%endif
 
 %changelog

++++++ v4.2.0.tar.gz -> v4.2.1.tar.gz ++++++
++++ 11429 lines of diff (skipped)


Reply via email to