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 2024-06-11 18:29:44 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/octave-forge-ga (Old) and /work/SRC/openSUSE:Factory/.octave-forge-ga.new.19518 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "octave-forge-ga" Tue Jun 11 18:29:44 2024 rev:5 rq:1179877 version:0.10.4 Changes: -------- --- /work/SRC/openSUSE:Factory/octave-forge-ga/octave-forge-ga.changes 2022-02-22 21:19:52.230304746 +0100 +++ /work/SRC/openSUSE:Factory/.octave-forge-ga.new.19518/octave-forge-ga.changes 2024-06-11 18:31:01.972682448 +0200 @@ -1,0 +2,6 @@ +Tue Jun 4 03:53:49 UTC 2024 - ming li <m...@suse.com> + +- Update to version 0.10.4: + * Updates for octave 9 compatibility + +------------------------------------------------------------------- Old: ---- ga-0.10.3.tar.gz New: ---- ga-0.10.4.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ octave-forge-ga.spec ++++++ --- /var/tmp/diff_new_pack.RyctpS/_old 2024-06-11 18:31:03.764747979 +0200 +++ /var/tmp/diff_new_pack.RyctpS/_new 2024-06-11 18:31:03.768748125 +0200 @@ -1,7 +1,7 @@ # # spec file for package octave-forge-ga # -# Copyright (c) 2022 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 @@ -18,7 +18,7 @@ %define octpkg ga Name: octave-forge-%{octpkg} -Version: 0.10.3 +Version: 0.10.4 Release: 0 Summary: Genetic optimization code for Octave License: GPL-2.0-or-later ++++++ ga-0.10.3.tar.gz -> ga-0.10.4.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ga-0.10.3/DESCRIPTION new/ga-0.10.4/DESCRIPTION --- old/ga-0.10.3/DESCRIPTION 2022-01-14 14:38:23.000000000 +0100 +++ new/ga-0.10.4/DESCRIPTION 2024-05-07 20:38:35.000000000 +0200 @@ -1,6 +1,6 @@ Name: ga -Version: 0.10.3 -Date: 2022-01-14 +Version: 0.10.4 +Date: 2024-05-07 Author: Luca Favatella <slacky...@gmail.com> Maintainer: Octave-Forge community <maintain...@octave.org> Title: Genetic Algorithm diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ga-0.10.3/NEWS new/ga-0.10.4/NEWS --- old/ga-0.10.3/NEWS 2022-01-14 14:38:23.000000000 +0100 +++ new/ga-0.10.4/NEWS 2024-05-07 20:38:35.000000000 +0200 @@ -1,6 +1,12 @@ Summary of important user-visible changes for releases of the ga package =============================================================================== +ga-0.10.4 Release Date: 2024-05-07 Release Manager: John Donoghue +=============================================================================== + +** Updates for octave 9 compatibility + +=============================================================================== ga-0.10.3 Release Date: 2022-01-14 Release Manager: John Donoghue =============================================================================== diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ga-0.10.3/inst/ga.m new/ga-0.10.4/inst/ga.m --- old/ga-0.10.3/inst/ga.m 2022-01-14 14:38:23.000000000 +0100 +++ new/ga-0.10.4/inst/ga.m 2024-05-07 20:38:35.000000000 +0200 @@ -131,7 +131,7 @@ ## type of arguments %!function f = ff (nvars) -%! f = @(x) sum (x(:, 1:nvars) .** 2, 2); +%! f = @(x) sum (x(:, 1:nvars) .^ 2, 2); %!error x = ga (ff (3), 2); # TODO # TODO: test that each field in the user-specified "problem" structure is checked @@ -163,7 +163,7 @@ ## flawless execution with any nvars %!function f = ff (nvars) -%! f = @(x) sum (x(:, 1:nvars) .** 2, 2); +%! f = @(x) sum (x(:, 1:nvars) .^ 2, 2); %!test %! nvars = 1; %! x = ga (ff (nvars), nvars); @@ -306,9 +306,9 @@ %! C = []; %! Ceq = []; %!function f = ff (nvars) -%! f = @(x) sum (x(:, 1:nvars) .** 2, 2); +%! f = @(x) sum (x(:, 1:nvars) .^ 2, 2); %!function f_not_vectorized = ff_not_vectorized (nvars) -%! f_not_vectorized = @(x) sum (x(1:nvars) .** 2); +%! f_not_vectorized = @(x) sum (x(1:nvars) .^ 2); %!test # A non-vectorized objective function works when no vectorization is required %! f = ff_not_vectorized (nvars); %! options = gaoptimset ("Vectorized", "off");