Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package octave-forge-struct for 
openSUSE:Factory checked in at 2021-03-17 20:16:50
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/octave-forge-struct (Old)
 and      /work/SRC/openSUSE:Factory/.octave-forge-struct.new.2401 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "octave-forge-struct"

Wed Mar 17 20:16:50 2021 rev:7 rq:879591 version:1.0.17

Changes:
--------
--- /work/SRC/openSUSE:Factory/octave-forge-struct/octave-forge-struct.changes  
2019-07-21 11:34:48.396772613 +0200
+++ 
/work/SRC/openSUSE:Factory/.octave-forge-struct.new.2401/octave-forge-struct.changes
        2021-03-17 20:20:07.191331046 +0100
@@ -1,0 +2,6 @@
+Sat Mar 13 13:45:20 UTC 2021 - Atri Bhattacharya <[email protected]>
+
+- Update to version 1.0.17:
+  * Build fixes and adaption to changes in Octave 6.1.
+
+-------------------------------------------------------------------

Old:
----
  struct-1.0.16.tar.gz

New:
----
  struct-1.0.17.tar.gz

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

Other differences:
------------------
++++++ octave-forge-struct.spec ++++++
--- /var/tmp/diff_new_pack.IvM8jr/_old  2021-03-17 20:20:07.743331800 +0100
+++ /var/tmp/diff_new_pack.IvM8jr/_new  2021-03-17 20:20:07.747331806 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package octave-forge-struct
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2021 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,12 +18,12 @@
 
 %define octpkg  struct
 Name:           octave-forge-%{octpkg}
-Version:        1.0.16
+Version:        1.0.17
 Release:        0
 Summary:        Additional Structure manipulations functions for Octave
 License:        GPL-3.0-or-later
 Group:          Productivity/Scientific/Math
-Url:            http://octave.sourceforge.net
+URL:            http://octave.sourceforge.net
 Source0:        
http://downloads.sourceforge.net/octave/%{octpkg}-%{version}.tar.gz
 BuildRequires:  gcc-c++
 BuildRequires:  hdf5-devel

++++++ struct-1.0.16.tar.gz -> struct-1.0.17.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/struct-1.0.16/DESCRIPTION 
new/struct-1.0.17/DESCRIPTION
--- old/struct-1.0.16/DESCRIPTION       2019-03-12 16:27:04.334828863 +0100
+++ new/struct-1.0.17/DESCRIPTION       2021-02-16 20:03:38.000000000 +0100
@@ -1,6 +1,6 @@
 Name: struct
-Version: 1.0.16
-Date: 2019-03-12
+Version: 1.0.17
+Date: 2021-02-16
 Author: Etienne Grossmann <[email protected]>, Olaf Till <[email protected]>
 Maintainer: Olaf Till <[email protected]>
 Title: Structure Handling.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/struct-1.0.16/Makefile new/struct-1.0.17/Makefile
--- old/struct-1.0.16/Makefile  2019-03-12 16:27:04.334828863 +0100
+++ new/struct-1.0.17/Makefile  2021-02-16 20:03:38.000000000 +0100
@@ -213,7 +213,10 @@
 ## Test package.
 octave_test_commands = \
 ' args = {"inst", "src"}; \
-  args(cellfun (@ (x) isempty (a = stat (x)) || ! S_ISDIR (a.mode), args)) = 
[]; \
+  function ret = nodir (x) \
+    ret = isempty (a = stat (x)) || ! S_ISDIR (a.mode); \
+  endfunction; \
+  args(cellfun (@ (x) nodir (x), args)) = []; \
   if (isempty (args)) error ("no \"inst\" or \"src\" directory"); exit (1); \
     else cellfun(@runtests, args); endif '
 check: $(install_stamp)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/struct-1.0.16/NEWS new/struct-1.0.17/NEWS
--- old/struct-1.0.16/NEWS      2019-03-12 16:27:04.334828863 +0100
+++ new/struct-1.0.17/NEWS      2021-02-16 20:03:38.000000000 +0100
@@ -1,3 +1,8 @@
+Summary of important user-visible changes for struct 1.0.17:
+-------------------------------------------------------------------
+
+ ** Build fixes and adaption to changes in Octave 6.1.
+
 Summary of important user-visible changes for struct 1.0.16:
 -------------------------------------------------------------------
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/struct-1.0.16/inst/tars.m 
new/struct-1.0.17/inst/tars.m
--- old/struct-1.0.16/inst/tars.m       2019-03-12 16:27:04.334828863 +0100
+++ new/struct-1.0.17/inst/tars.m       2021-02-16 20:03:38.000000000 +0100
@@ -23,7 +23,14 @@
 
 function s = tars (varargin)
 
-  s = cell2struct (varargin, deblank (cellstr (argn)), 2);
+  ## cell2struct() probably couldn't be used here without preparations
+  ## that use a loop, too, or which are unsafe
+
+  for id = 1:nargin
+
+    s.(deblank (inputname (id))) = varargin{id};
+
+  endfor
 
 endfunction
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/struct-1.0.16/src/Makefile.in 
new/struct-1.0.17/src/Makefile.in
--- old/struct-1.0.16/src/Makefile.in   2019-03-12 16:27:04.334828863 +0100
+++ new/struct-1.0.17/src/Makefile.in   2021-02-16 20:03:38.000000000 +0100
@@ -17,10 +17,9 @@
 
 
 # Uncomment this for a release.
-# RELEASE := yes
+RELEASE := yes
 ifdef RELEASE
-# Currently this does nothing.
-RELEASE_CXXFLAGS =
+RELEASE_CXXFLAGS = -Wno-deprecated-declarations
 endif
 
 MKOCTFILE ?= @MKOCTFILE@
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/struct-1.0.16/src/aclocal.m4 
new/struct-1.0.17/src/aclocal.m4
--- old/struct-1.0.16/src/aclocal.m4    2019-03-12 16:27:05.566853087 +0100
+++ new/struct-1.0.17/src/aclocal.m4    2021-02-16 20:06:15.088096997 +0100
@@ -1,6 +1,6 @@
-# generated automatically by aclocal 1.15 -*- Autoconf -*-
+# generated automatically by aclocal 1.16.1 -*- Autoconf -*-
 
-# Copyright (C) 1996-2014 Free Software Foundation, Inc.
+# Copyright (C) 1996-2018 Free Software Foundation, Inc.
 
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/struct-1.0.16/src/configure 
new/struct-1.0.17/src/configure
--- old/struct-1.0.16/src/configure     2019-03-12 16:27:05.894859535 +0100
+++ new/struct-1.0.17/src/configure     2021-02-16 20:06:15.472111476 +0100
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for struct 1.0.16.
+# Generated by GNU Autoconf 2.69 for struct 1.0.17.
 #
 # Report bugs to <[email protected]>.
 #
@@ -580,8 +580,8 @@
 # Identity of this package.
 PACKAGE_NAME='struct'
 PACKAGE_TARNAME='struct'
-PACKAGE_VERSION='1.0.16'
-PACKAGE_STRING='struct 1.0.16'
+PACKAGE_VERSION='1.0.17'
+PACKAGE_STRING='struct 1.0.17'
 PACKAGE_BUGREPORT='[email protected]'
 PACKAGE_URL=''
 
@@ -1245,7 +1245,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures struct 1.0.16 to adapt to many kinds of systems.
+\`configure' configures struct 1.0.17 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1307,7 +1307,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of struct 1.0.16:";;
+     short | recursive ) echo "Configuration of struct 1.0.17:";;
    esac
   cat <<\_ACEOF
 
@@ -1389,7 +1389,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-struct configure 1.0.16
+struct configure 1.0.17
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1738,7 +1738,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by struct $as_me 1.0.16, which was
+It was created by struct $as_me 1.0.17, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -4552,7 +4552,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by struct $as_me 1.0.16, which was
+This file was extended by struct $as_me 1.0.17, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -4614,7 +4614,7 @@
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; 
s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-struct config.status 1.0.16
+struct config.status 1.0.17
 configured by $0, generated by GNU Autoconf 2.69,
   with options \\"\$ac_cs_config\\"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/struct-1.0.16/src/configure.ac 
new/struct-1.0.17/src/configure.ac
--- old/struct-1.0.16/src/configure.ac  2019-03-12 16:27:04.338828942 +0100
+++ new/struct-1.0.17/src/configure.ac  2021-02-16 20:03:38.000000000 +0100
@@ -18,7 +18,7 @@
 ### <http://www.gnu.org/licenses/>.
 
 AC_PREREQ([2.62])
-AC_INIT([struct], [1.0.16], [[email protected]])
+AC_INIT([struct], [1.0.17], [[email protected]])
 AC_CONFIG_SRCDIR([cell2fields.cc])
 AC_CONFIG_HEADERS([config.h])
 

Reply via email to