# HG changeset patch # User Markus Mützel # Date 1649957542 -7200 # Node ID 9a19da04a1087ee612e0de8890ad6c14332802bc # Parent e229031d9f6d8bf8dce1d73b1cbcdbd167e44a87# Parent 8fcac4d6d983d91158605e651209397914b36bfe maint: Merge release to default. diff -r e229031d9f6d -r 9a19da04a108 dist-files.mk --- a/dist-files.mk Thu Apr 14 09:33:04 2022 -0400 +++ b/dist-files.mk Thu Apr 14 19:32:22 2022 +0200 @@ -527,6 +527,7 @@ of-quaternion-1-cross-fixes.patch \ of-quaternion-2-dev-fixes.patch \ of-quaternion.mk \ + of-queueing-1-octave7.patch \ of-queueing.mk \ of-signal-1-deprecated-warnings.patch \ of-signal-2-error_state.patch \ diff -r e229031d9f6d -r 9a19da04a108 src/of-queueing-1-octave7.patch --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/of-queueing-1-octave7.patch Thu Apr 14 19:32:22 2022 +0200 @@ -0,0 +1,46 @@ +Description: Fix FTBFS against Octave 7 + print_usage() was called within a logical expression. Since it does not return + a value, this fails with Octave 7 since the latter does stricter checks on + number of output arguments. + This patch uses an if/endif conditional rather than a logical short-circuit + expression. +Author: Sébastien Villemot +Bug: https://savannah.gnu.org/bugs/?62314 +Bug-Debian: https://bugs.debian.org/1009135 +Last-Update: 2022-04-14 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +--- a/inst/qnmknode.m ++++ b/inst/qnmknode.m +@@ -126,22 +126,25 @@ function Q = qnmknode( node, S, varargin + endif + elseif ( strcmp(node, "-/g/1-lcfs-pr") ) + ## -/G/1-LCFS-PR node +- ( 2 == nargin || 3 == nargin ) || ... +- print_usage(); ++ if ~( 2 == nargin || 3 == nargin ) ++ print_usage(); ++ endif + if ( 3 == nargin ) + s2 = varargin{1}; + endif + elseif ( strcmp(node, "-/g/1-ps") ) + ## -/G/1-PS (processor sharing) node +- ( 2 == nargin || 3 == nargin ) || ... +- print_usage(); ++ if ~( 2 == nargin || 3 == nargin ) ++ print_usage(); ++ endif + if ( 3 == nargin ) + s2 = varargin{1}; + endif + elseif ( strcmp(node, "-/g/inf") ) + ## -/G/inf (Infinite Server) node +- ( 2 == nargin || 3 == nargin ) || ... +- print_usage(); ++ if ~( 2 == nargin || 3 == nargin ) ++ print_usage(); ++ endif + if ( 3 == nargin ) + s2 = varargin{1}; + endif