Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package octave-forge-ga for openSUSE:Factory
checked in at 2022-02-22 21:18:33
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/octave-forge-ga (Old)
and /work/SRC/openSUSE:Factory/.octave-forge-ga.new.1958 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "octave-forge-ga"
Tue Feb 22 21:18:33 2022 rev:4 rq:956847 version:0.10.3
Changes:
--------
--- /work/SRC/openSUSE:Factory/octave-forge-ga/octave-forge-ga.changes
2021-01-18 11:32:03.488667081 +0100
+++
/work/SRC/openSUSE:Factory/.octave-forge-ga.new.1958/octave-forge-ga.changes
2022-02-22 21:19:52.230304746 +0100
@@ -1,0 +2,6 @@
+Mon Feb 21 18:16:27 UTC 2022 - Atri Bhattacharya <[email protected]>
+
+- Update to version 0.10.3:
+ * Updates for octave 7 compatibility
+
+-------------------------------------------------------------------
Old:
----
ga-0.10.2.tar.gz
New:
----
ga-0.10.3.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ octave-forge-ga.spec ++++++
--- /var/tmp/diff_new_pack.dUaB4Q/_old 2022-02-22 21:19:52.578304810 +0100
+++ /var/tmp/diff_new_pack.dUaB4Q/_new 2022-02-22 21:19:52.582304811 +0100
@@ -1,7 +1,7 @@
#
# spec file for package octave-forge-ga
#
-# Copyright (c) 2021 SUSE LLC
+# Copyright (c) 2022 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
%define octpkg ga
Name: octave-forge-%{octpkg}
-Version: 0.10.2
+Version: 0.10.3
Release: 0
Summary: Genetic optimization code for Octave
License: GPL-2.0-or-later
++++++ ga-0.10.2.tar.gz -> ga-0.10.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/ga-0.10.2/DESCRIPTION new/ga-0.10.3/DESCRIPTION
--- old/ga-0.10.2/DESCRIPTION 2020-12-02 16:51:06.000000000 +0100
+++ new/ga-0.10.3/DESCRIPTION 2022-01-14 14:38:23.000000000 +0100
@@ -1,12 +1,12 @@
Name: ga
-Version: 0.10.2
-Date: 2020-12-02
+Version: 0.10.3
+Date: 2022-01-14
Author: Luca Favatella <[email protected]>
Maintainer: Octave-Forge community <[email protected]>
Title: Genetic Algorithm
Description: Genetic optimization code
Categories: Optimization
-Depends: octave (>= 3.4.0)
+Depends: octave (>= 4.0.0)
Autoload: yes
License: GPL version 3 or later
Url: http://octave.sf.net
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/ga-0.10.2/NEWS new/ga-0.10.3/NEWS
--- old/ga-0.10.2/NEWS 2020-12-02 16:51:06.000000000 +0100
+++ new/ga-0.10.3/NEWS 2022-01-14 14:38:23.000000000 +0100
@@ -1,6 +1,12 @@
Summary of important user-visible changes for releases of the ga package
===============================================================================
+ga-0.10.3 Release Date: 2022-01-14 Release Manager: John Donoghue
+===============================================================================
+
+** Updates for octave 7 compatibility
+
+===============================================================================
ga-0.10.2 Release Date: 2020-12-02 Release Manager: John Donoghue
===============================================================================
@@ -12,7 +18,7 @@
** Bug fixes #55348, #53875
-** minor updates for octave capapability
+** minor updates for octave capability
** minor documentation updates
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/ga-0.10.2/inst/rastriginsfcn.m
new/ga-0.10.3/inst/rastriginsfcn.m
--- old/ga-0.10.2/inst/rastriginsfcn.m 2020-12-02 16:51:06.000000000 +0100
+++ new/ga-0.10.3/inst/rastriginsfcn.m 2022-01-14 14:38:23.000000000 +0100
@@ -1,5 +1,5 @@
## Copyright (C) 2008, 2009, 2010, 2012 Luca Favatella <[email protected]>
-## Copyright (C) 2019 John D <[email protected]>
+## Copyright (C) 2019-2021 John D <[email protected]>
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
@@ -43,7 +43,7 @@
else
x1 = x(:, 1);
x2 = x(:, 2);
- retval = 20 + (x1 .** 2) + (x2 .** 2) - 10 .* (cos (2 .* pi .* x1) +
+ retval = 20 + (x1 .^ 2) + (x2 .^ 2) - 10 .* (cos (2 .* pi .* x1) +
cos (2 .* pi .* x2));
endif
endfunction