Hello community,
here is the log from the commit of package octave-forge-instrument-control for
openSUSE:Factory checked in at 2018-06-29 22:26:05
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/octave-forge-instrument-control (Old)
and /work/SRC/openSUSE:Factory/.octave-forge-instrument-control.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "octave-forge-instrument-control"
Fri Jun 29 22:26:05 2018 rev:2 rq:616565 version:0.3.1
Changes:
--------
---
/work/SRC/openSUSE:Factory/octave-forge-instrument-control/octave-forge-instrument-control.changes
2017-02-03 17:51:47.157241202 +0100
+++
/work/SRC/openSUSE:Factory/.octave-forge-instrument-control.new/octave-forge-instrument-control.changes
2018-06-29 22:26:07.302496224 +0200
@@ -1,0 +2,21 @@
+Wed Jun 6 08:26:07 UTC 2018 - [email protected]
+
+- Update to version 0.3.1:
+ * Updated build to allow install on octave 4.4
+ * using polling rather than signal handling to break from
+ instrument reads
+ * insthwinfo() updated to show enabled modules
+ * added initial builtin tests for each instrument
+- Changes from version 0.3.0:
+ * SERIAL: allow non standard baudrates in win32
+ * TCP: new functions: resolvehost
+ * UDP: new, interface, with, functions, for: udp, udp_timeout,
+ udp_read, udp_write, udp_close, udp_demo
+ * UDP overload functions for: fprintf, fread, fwrite, fclose,
+ fopen, get, set
+- Add patch:
+ instrument-control-no-return-in-nonvoid-function.patch: Fix
+ non-void functions not returning data typically at the end of an
+ if-elseif-else block.
+
+-------------------------------------------------------------------
Old:
----
instrument-control-0.2.3.tar.gz
New:
----
instrument-control-0.3.1.tar.gz
instrument-control-no-return-in-nonvoid-function.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ octave-forge-instrument-control.spec ++++++
--- /var/tmp/diff_new_pack.uILyFt/_old 2018-06-29 22:26:07.630495976 +0200
+++ /var/tmp/diff_new_pack.uILyFt/_new 2018-06-29 22:26:07.634495973 +0200
@@ -1,7 +1,7 @@
#
# spec file for package octave-forge-instrument-control
#
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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
@@ -18,13 +18,15 @@
%define octpkg instrument-control
Name: octave-forge-%{octpkg}
-Version: 0.2.3
+Version: 0.3.1
Release: 0
Summary: Instrument Control for Octave
-License: GPL-3.0+
+License: GPL-3.0-or-later
Group: Productivity/Scientific/Math
Url: http://octave.sourceforge.net
Source0:
http://downloads.sourceforge.net/octave/%{octpkg}-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM instrument-control-no-return-in-nonvoid-function.patch
[email protected] -- Fix non-void functions not returning data typically at
the end of an if-elseif-else block.
+Patch0: instrument-control-no-return-in-nonvoid-function.patch
BuildRequires: gcc-c++
BuildRequires: hdf5-devel
BuildRequires: octave-devel
@@ -36,6 +38,7 @@
%prep
%setup -q -c %{name}-%{version}
+%patch0 -p1
%octave_pkg_src
%build
++++++ instrument-control-0.2.3.tar.gz -> instrument-control-0.3.1.tar.gz ++++++
++++ 13053 lines of diff (skipped)
++++++ instrument-control-no-return-in-nonvoid-function.patch ++++++
Index:
octave-forge-instrument-control-0.3.1/instrument-control-0.3.1/src/serial/__srl_properties__.cc
===================================================================
---
octave-forge-instrument-control-0.3.1.orig/instrument-control-0.3.1/src/serial/__srl_properties__.cc
+++
octave-forge-instrument-control-0.3.1/instrument-control-0.3.1/src/serial/__srl_properties__.cc
@@ -284,4 +284,5 @@ Undocumented internal function.\n\
#endif
/* never reached in normal operation */
(*current_liboctave_error_handler) ("Your system doesn't support the SERIAL
interface");
+ return octave_value_list();
}
Index:
octave-forge-instrument-control-0.3.1/instrument-control-0.3.1/src/udp/__udp_properties__.cc
===================================================================
---
octave-forge-instrument-control-0.3.1.orig/instrument-control-0.3.1/src/udp/__udp_properties__.cc
+++
octave-forge-instrument-control-0.3.1/instrument-control-0.3.1/src/udp/__udp_properties__.cc
@@ -87,6 +87,7 @@ Undocumented internal function.\n\
#endif
/* never reached in normal operation */
(*current_liboctave_error_handler) ("Your system doesn't support the UDP
interface");
+ return octave_value_list();
}
#if 0
%!test