Hello community,

here is the log from the commit of package octave-forge-control for 
openSUSE:Factory checked in at 2015-06-16 15:10:34
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/octave-forge-control (Old)
 and      /work/SRC/openSUSE:Factory/.octave-forge-control.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "octave-forge-control"

Changes:
--------
New Changes file:

--- /dev/null   2015-05-15 19:41:08.266053825 +0200
+++ 
/work/SRC/openSUSE:Factory/.octave-forge-control.new/octave-forge-control.changes
   2015-06-16 15:10:34.000000000 +0200
@@ -0,0 +1,35 @@
+-------------------------------------------------------------------
+Mon May  4 06:58:02 UTC 2015 - dmitr...@opensuse.org
+
+- Update to version 2.8.1
+  * tf
+    - Revamped the modifications of TB01ZD from control version 2.8.0.
+      The function now uses LAPACK routines to find the maximum norm element.
+    - Improved error handling when converting state-space models.
+
+-------------------------------------------------------------------
+Tue Apr  7 21:24:46 UTC 2015 - dmitr...@opensuse.org
+
+- Update to version 2.8.0
+  * zero
+    Compatibility fix in the C++ oct-file to support the upcoming Octave 4.0.
+  * isminimumphase
+    Reverted changes from control-2.6.6.  According to the
+    definition of Byrnes/Isidori, the function tests whether the system
+    has asymptotically stable zero dynamics. The poles are not tested.
+  * series
+    Fixed a bug which gave unnecessary error messages when the
+    function is called with 4 arguments.
+  * tf
+    Resolved issues in MIMO state-space to transfer function
+    conversion by implementing a more robust algorithm in SLICOT
+    routine TB01ZD.
+  * Support for 64bit indexing option.
+
+-------------------------------------------------------------------
+Thu Feb 26 16:06:43 UTC 2015 - dmitr...@opensuse.org
+
+- Split from octave-forge package, version 2.6.6
+- Fix GCC errors: no return in non-void function
+  * control-gcc-errors.patch
+

New:
----
  control-2.8.1.tar.gz
  control-gcc-errors.patch
  octave-forge-control.changes
  octave-forge-control.spec

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

Other differences:
------------------
++++++ octave-forge-control.spec ++++++
#
# spec file for package octave-forge-control
#
# Copyright (c) 2015 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#


%define octpkg  control
Name:           octave-forge-%{octpkg}
Version:        2.8.1
Release:        0
Summary:        Computer-Aided Control System Design (CACSD) Tools
License:        GPL-3.0+
Group:          Productivity/Scientific/Math
Url:            http://octave.sourceforge.net
Source0:        
http://downloads.sourceforge.net/octave/%{octpkg}-%{version}.tar.gz
# PATCH-FIX-UPSTREAM control-gcc-errors.patch -- Fix no return in non-void 
function
Patch1:         control-gcc-errors.patch
BuildRequires:  blas-devel
BuildRequires:  gcc-c++
BuildRequires:  gcc-fortran
BuildRequires:  hdf5-devel
BuildRequires:  lapack-devel
BuildRequires:  octave-devel
Requires:       octave-cli >= 3.8.0

%description
Computer-Aided Control System Design (CACSD) Tools for GNU Octave, based
on the proven SLICOT Library.
This is part of Octave-Forge project.

%prep
%setup -q -c %{name}-%{version}
%patch1 -p1
%octave_pkg_src

%build
%octave_pkg_build

%install
%octave_pkg_install

%check
%octave_pkg_test

%post
%octave --eval "pkg rebuild"

%postun
%octave --eval "pkg rebuild"

%files
%defattr(-,root,root)
%{octpackages_dir}/%{octpkg}-%{version}
%{octlib_dir}/%{octpkg}-%{version}

%changelog
++++++ control-gcc-errors.patch ++++++
Index: octave-forge-control/control/src/Makefile
===================================================================
--- octave-forge-control.orig/control/src/Makefile
+++ octave-forge-control/control/src/Makefile
@@ -27,6 +27,7 @@ all: __control_slicot_functions__.oct \
 # the developer makefile makefile_control.m
 slicotlibrary.a: slicot.tar.gz
        tar -xzf slicot.tar.gz
+       patch -p0 -i slicot-gcc-errors.patch
        mkdir sltmp
        mv slicot/src/*.f ./sltmp
        mv slicot/src_aux/*.f ./sltmp
Index: octave-forge-control/control/src/slicot-gcc-errors.patch
===================================================================
--- /dev/null
+++ octave-forge-control/control/src/slicot-gcc-errors.patch
@@ -0,0 +1,84 @@
+Index: slicot/src/AB13AD.f
+===================================================================
+--- slicot.orig/src/AB13AD.f
++++ slicot/src/AB13AD.f
+@@ -262,6 +262,7 @@ C
+ C
+ C        Error return.
+ C
++         AB13AD = ZERO
+          CALL XERBLA( 'AB13AD', -INFO )
+          RETURN
+       END IF
+Index: slicot/src/AB13AX.f
+===================================================================
+--- slicot.orig/src/AB13AX.f
++++ slicot/src/AB13AX.f
+@@ -195,6 +195,7 @@ C
+ C
+ C        Error return.
+ C
++         AB13AX = ZERO
+          CALL XERBLA( 'AB13AX', -INFO )
+          RETURN
+       END IF
+Index: slicot/src/AB13BD.f
+===================================================================
+--- slicot.orig/src/AB13BD.f
++++ slicot/src/AB13BD.f
+@@ -292,6 +292,7 @@ C
+ C
+ C        Error return.
+ C
++         AB13BD = ZERO
+          CALL XERBLA( 'AB13BD', -INFO )
+          RETURN
+       END IF
+Index: slicot/src/AB13CD.f
+===================================================================
+--- slicot.orig/src/AB13CD.f
++++ slicot/src/AB13CD.f
+@@ -237,6 +237,7 @@ C
+          INFO = -17
+       END IF
+       IF( INFO.NE.0 ) THEN
++         AB13CD = ZERO
+          CALL XERBLA( 'AB13CD', -INFO )
+          RETURN
+       END IF
+Index: slicot/src/AB13DX.f
+===================================================================
+--- slicot.orig/src/AB13DX.f
++++ slicot/src/AB13DX.f
+@@ -324,6 +324,7 @@ C
+       END IF
+ C
+       IF( INFO.NE.0 ) THEN
++         AB13DX = ZERO
+          CALL XERBLA( 'AB13DX', -INFO )
+          RETURN
+       END IF
+Index: slicot/src/MB03ND.f
+===================================================================
+--- slicot.orig/src/MB03ND.f
++++ slicot/src/MB03ND.f
+@@ -182,6 +182,7 @@ C
+ C
+ C        Error return.
+ C
++         MB03ND = ZERO
+          CALL XERBLA( 'MB03ND', -INFO )
+          RETURN
+       END IF
+Index: slicot/src/MB03NY.f
+===================================================================
+--- slicot.orig/src/MB03NY.f
++++ slicot/src/MB03NY.f
+@@ -155,6 +155,7 @@ C
+ C
+ C        Error return.
+ C
++         MB03NY = ZERO
+          CALL XERBLA( 'MB03NY', -INFO )
+          RETURN
+       END IF

Reply via email to