diff -Nru octave-ga-0.10.2/debian/changelog octave-ga-0.10.3/debian/changelog --- octave-ga-0.10.2/debian/changelog 2020-12-19 06:23:24.000000000 +0000 +++ octave-ga-0.10.3/debian/changelog 2022-01-18 11:04:46.000000000 +0000 @@ -1,3 +1,15 @@ +octave-ga (0.10.3-1) unstable; urgency=medium + + * Team upload + * New upstream version 0.10.3 + * d/copyright: + + Reflect upstream changes + + Accentuate my family name + * d/control: Bump Standards-Version to 4.6.0 (no changes needed) + * Set upstream metadata fields: Archive. + + -- Rafael Laboissière Tue, 18 Jan 2022 08:04:46 -0300 + octave-ga (0.10.2-1) unstable; urgency=medium * Team upload diff -Nru octave-ga-0.10.2/debian/control octave-ga-0.10.3/debian/control --- octave-ga-0.10.2/debian/control 2020-12-19 06:23:08.000000000 +0000 +++ octave-ga-0.10.3/debian/control 2022-01-18 11:04:46.000000000 +0000 @@ -5,7 +5,7 @@ Uploaders: Sébastien Villemot Build-Depends: debhelper-compat (= 13), dh-octave -Standards-Version: 4.5.1 +Standards-Version: 4.6.0 Homepage: https://octave.sourceforge.io/ga/ Vcs-Git: https://salsa.debian.org/pkg-octave-team/octave-ga.git Vcs-Browser: https://salsa.debian.org/pkg-octave-team/octave-ga diff -Nru octave-ga-0.10.2/debian/copyright octave-ga-0.10.3/debian/copyright --- octave-ga-0.10.2/debian/copyright 2020-12-19 06:22:43.000000000 +0000 +++ octave-ga-0.10.3/debian/copyright 2022-01-18 11:04:46.000000000 +0000 @@ -5,7 +5,7 @@ Files: * Copyright: 2008-2019 Luca Favatella - 2019-2020 John D + 2019-2020, 2022 John D License: GPL-3+ Files: Makefile @@ -22,7 +22,7 @@ Files: debian/* Copyright: 2008 Olafur Jens Sigurdsson - 2008-2009, 2014, 2017-2020 Rafael Laboissiere + 2008-2009, 2014, 2017-2020, 2022 Rafael Laboissière 2008-2012 Thomas Weber 2012-2019 Sébastien Villemot License: GPL-3+ diff -Nru octave-ga-0.10.2/debian/gbp.conf octave-ga-0.10.3/debian/gbp.conf --- octave-ga-0.10.2/debian/gbp.conf 1970-01-01 00:00:00.000000000 +0000 +++ octave-ga-0.10.3/debian/gbp.conf 2022-01-18 11:04:46.000000000 +0000 @@ -0,0 +1,4 @@ +[DEFAULT] +debian-branch = debian/latest +upstream-branch = upstream/latest +pristine-tar = True diff -Nru octave-ga-0.10.2/debian/.gitignore octave-ga-0.10.3/debian/.gitignore --- octave-ga-0.10.2/debian/.gitignore 1970-01-01 00:00:00.000000000 +0000 +++ octave-ga-0.10.3/debian/.gitignore 2022-01-18 11:04:46.000000000 +0000 @@ -0,0 +1,5 @@ +/files +/octave-ga.substvars +/octave-ga/ +/.debhelper/ +/debhelper-build-stamp diff -Nru octave-ga-0.10.2/debian/upstream/metadata octave-ga-0.10.3/debian/upstream/metadata --- octave-ga-0.10.2/debian/upstream/metadata 2020-05-25 06:31:30.000000000 +0000 +++ octave-ga-0.10.3/debian/upstream/metadata 2022-01-18 11:04:46.000000000 +0000 @@ -1,3 +1,4 @@ +Archive: SourceForge Bug-Database: https://savannah.gnu.org/bugs/?group=octave Bug-Submit: https://savannah.gnu.org/bugs/?func=additem&group=octave Repository-Browse: https://octave.sourceforge.io/pkg-repository/ga/ diff -Nru octave-ga-0.10.2/DESCRIPTION octave-ga-0.10.3/DESCRIPTION --- octave-ga-0.10.2/DESCRIPTION 2020-12-02 15:51:06.000000000 +0000 +++ octave-ga-0.10.3/DESCRIPTION 2022-01-14 13:38:23.000000000 +0000 @@ -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 Maintainer: Octave-Forge community 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 -Nru octave-ga-0.10.2/inst/rastriginsfcn.m octave-ga-0.10.3/inst/rastriginsfcn.m --- octave-ga-0.10.2/inst/rastriginsfcn.m 2020-12-02 15:51:06.000000000 +0000 +++ octave-ga-0.10.3/inst/rastriginsfcn.m 2022-01-14 13:38:23.000000000 +0000 @@ -1,5 +1,5 @@ ## Copyright (C) 2008, 2009, 2010, 2012 Luca Favatella -## Copyright (C) 2019 John D +## Copyright (C) 2019-2021 John D ## ## 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 diff -Nru octave-ga-0.10.2/NEWS octave-ga-0.10.3/NEWS --- octave-ga-0.10.2/NEWS 2020-12-02 15:51:06.000000000 +0000 +++ octave-ga-0.10.3/NEWS 2022-01-14 13:38:23.000000000 +0000 @@ -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