Hello community,
here is the log from the commit of package octave-forge-netcdf for
openSUSE:Factory checked in at 2020-10-26 16:19:29
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/octave-forge-netcdf (Old)
and /work/SRC/openSUSE:Factory/.octave-forge-netcdf.new.3463 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "octave-forge-netcdf"
Mon Oct 26 16:19:29 2020 rev:6 rq:843793 version:1.0.14
Changes:
--------
--- /work/SRC/openSUSE:Factory/octave-forge-netcdf/octave-forge-netcdf.changes
2020-06-11 14:49:06.934166411 +0200
+++
/work/SRC/openSUSE:Factory/.octave-forge-netcdf.new.3463/octave-forge-netcdf.changes
2020-10-26 16:19:57.495111030 +0100
@@ -1,0 +2,6 @@
+Fri Oct 23 15:47:03 UTC 2020 - Stefan BrĂ¼ns <[email protected]>
+
+- Update to version 1.0.14:
+ * Add NC_STRING type as an octave type
+
+-------------------------------------------------------------------
Old:
----
netcdf-1.0.13.tar.gz
New:
----
netcdf-1.0.14.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ octave-forge-netcdf.spec ++++++
--- /var/tmp/diff_new_pack.WKm6iL/_old 2020-10-26 16:19:58.431111783 +0100
+++ /var/tmp/diff_new_pack.WKm6iL/_new 2020-10-26 16:19:58.435111787 +0100
@@ -18,12 +18,12 @@
%define octpkg netcdf
Name: octave-forge-%{octpkg}
-Version: 1.0.13
+Version: 1.0.14
Release: 0
Summary: NetCDF interface for Octave
License: GPL-2.0-or-later
Group: Productivity/Scientific/Math
-URL: https://octave.sourceforge.io
+URL: https://octave.sourceforge.io/%{octpkg}/
Source0:
https://downloads.sourceforge.net/octave/%{octpkg}-%{version}.tar.gz
BuildRequires: gcc-c++
BuildRequires: netcdf-devel
++++++ netcdf-1.0.13.tar.gz -> netcdf-1.0.14.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/netcdf-1.0.13/DESCRIPTION
new/netcdf-1.0.14/DESCRIPTION
--- old/netcdf-1.0.13/DESCRIPTION 2020-03-13 17:04:56.000000000 +0100
+++ new/netcdf-1.0.14/DESCRIPTION 2020-10-14 15:12:28.000000000 +0200
@@ -1,6 +1,6 @@
Name: netcdf
-Version: 1.0.13
-Date: 2020-03-13
+Version: 1.0.14
+Date: 2020-10-14
Author: Alexander Barth <[email protected]>
Maintainer: Alexander Barth <[email protected]>, John Donoghue
<[email protected]>
Title: netcdf
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/netcdf-1.0.13/NEWS new/netcdf-1.0.14/NEWS
--- old/netcdf-1.0.13/NEWS 2020-03-13 17:04:56.000000000 +0100
+++ new/netcdf-1.0.14/NEWS 2020-10-14 15:12:28.000000000 +0200
@@ -1,3 +1,10 @@
+Summary of important user-visible changes for netcdf 1.0.14:
+-------------------------------------------------------------------
+
+ ** Add NC_STRING type as an octave type
+
+ ** Minor bugfixes
+
Summary of important user-visible changes for netcdf 1.0.13:
-------------------------------------------------------------------
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/netcdf-1.0.13/inst/private/nc2octtype.m
new/netcdf-1.0.14/inst/private/nc2octtype.m
--- old/netcdf-1.0.13/inst/private/nc2octtype.m 2020-03-13 17:04:56.000000000
+0100
+++ new/netcdf-1.0.14/inst/private/nc2octtype.m 2020-10-14 15:12:28.000000000
+0200
@@ -1,4 +1,4 @@
-%% Copyright (C) 2013 Alexander Barth
+%% Copyright (C) 2013-2020 Alexander Barth
%%
%% 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
@@ -37,6 +37,8 @@
otype = "uint32";
elseif nctype == netcdf_getConstant("NC_UINT64")
otype = "uint64";
+elseif nctype == netcdf_getConstant("NC_STRING")
+ otype = "string";
else
- error("netcdf:unknownDataType","unknown data type %d",xtype)
+ error("netcdf:unknownDataType","unknown data type %d",nctype)
endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/netcdf-1.0.13/inst/private/oct2nctype.m
new/netcdf-1.0.14/inst/private/oct2nctype.m
--- old/netcdf-1.0.13/inst/private/oct2nctype.m 2020-03-13 17:04:56.000000000
+0100
+++ new/netcdf-1.0.14/inst/private/oct2nctype.m 2020-10-14 15:12:28.000000000
+0200
@@ -1,4 +1,4 @@
-%% Copyright (C) 2013 Alexander Barth
+%% Copyright (C) 2013-2020 Alexander Barth
%%
%% 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
@@ -26,6 +26,7 @@
typemap.single = 'float';
typemap.double = 'double';
typemap.char = 'char';
+typemap.string = 'string';
if ischar(otype)
otype = lower(otype);
@@ -51,3 +52,4 @@
%typemap.float = 'single';
%typemap.double = 'double';
%typemap.char = 'char';
+%typemap.string = 'string';
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/netcdf-1.0.13/src/Makefile.in
new/netcdf-1.0.14/src/Makefile.in
--- old/netcdf-1.0.13/src/Makefile.in 2020-03-13 17:04:56.000000000 +0100
+++ new/netcdf-1.0.14/src/Makefile.in 2020-10-14 15:12:28.000000000 +0200
@@ -4,7 +4,6 @@
AWK = @AWK@
AWK ?= awk
-OCTAVE = @OCTAVE@
MKOCTFILE = @MKOCTFILE@ -v
NC_CONFIG = @NC_CONFIG@
@@ -40,9 +39,3 @@
../PKG_ADD: $(SRC)
$(shell sh ./PKG_ADD.sh)
-
-check: ../PKG_ADD __netcdf__.oct
- ($(OCTAVE) -f --eval "pkg unload octcdf; addpath $$PWD; addpath
$$PWD/../inst; test_netcdf")
-
-check2: ../PKG_ADD __netcdf__.oct
- ($(OCTAVE) -f --eval "addpath $$PWD; addpath $$PWD/../inst;
test_netcdf")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/netcdf-1.0.13/src/aclocal.m4
new/netcdf-1.0.14/src/aclocal.m4
--- old/netcdf-1.0.13/src/aclocal.m4 2020-03-13 17:04:56.000000000 +0100
+++ new/netcdf-1.0.14/src/aclocal.m4 2020-10-14 15:12:28.000000000 +0200
@@ -1,6 +1,6 @@
-# generated automatically by aclocal 1.15.1 -*- Autoconf -*-
+# generated automatically by aclocal 1.16.1 -*- Autoconf -*-
-# Copyright (C) 1996-2017 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/netcdf-1.0.13/src/configure
new/netcdf-1.0.14/src/configure
--- old/netcdf-1.0.13/src/configure 2020-03-13 17:04:56.000000000 +0100
+++ new/netcdf-1.0.14/src/configure 2020-10-14 15:12:28.000000000 +0200
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for octave netcdf package 1.0.13.
+# Generated by GNU Autoconf 2.69 for octave netcdf package 1.0.14.
#
#
# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
@@ -576,8 +576,8 @@
# Identity of this package.
PACKAGE_NAME='octave netcdf package'
PACKAGE_TARNAME='octave-netcdf-package'
-PACKAGE_VERSION='1.0.13'
-PACKAGE_STRING='octave netcdf package 1.0.13'
+PACKAGE_VERSION='1.0.14'
+PACKAGE_STRING='octave netcdf package 1.0.14'
PACKAGE_BUGREPORT=''
PACKAGE_URL=''
@@ -586,7 +586,6 @@
NETCDF_CPPFLAGS
NETCDF_LIBS
NC_CONFIG
-OCTAVE
MKOCTFILE
OBJEXT
EXEEXT
@@ -615,7 +614,6 @@
docdir
oldincludedir
includedir
-runstatedir
localstatedir
sharedstatedir
sysconfdir
@@ -686,7 +684,6 @@
sysconfdir='${prefix}/etc'
sharedstatedir='${prefix}/com'
localstatedir='${prefix}/var'
-runstatedir='${localstatedir}/run'
includedir='${prefix}/include'
oldincludedir='/usr/include'
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
@@ -939,15 +936,6 @@
| -silent | --silent | --silen | --sile | --sil)
silent=yes ;;
- -runstatedir | --runstatedir | --runstatedi | --runstated \
- | --runstate | --runstat | --runsta | --runst | --runs \
- | --run | --ru | --r)
- ac_prev=runstatedir ;;
- -runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \
- | --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \
- | --run=* | --ru=* | --r=*)
- runstatedir=$ac_optarg ;;
-
-sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
ac_prev=sbindir ;;
-sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
@@ -1085,7 +1073,7 @@
for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \
datadir sysconfdir sharedstatedir localstatedir includedir \
oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
- libdir localedir mandir runstatedir
+ libdir localedir mandir
do
eval ac_val=\$$ac_var
# Remove trailing slashes.
@@ -1198,7 +1186,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 octave netcdf package 1.0.13 to adapt to many kinds of
systems.
+\`configure' configures octave netcdf package 1.0.14 to adapt to many kinds of
systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@@ -1238,7 +1226,6 @@
--sysconfdir=DIR read-only single-machine data [PREFIX/etc]
--sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]
--localstatedir=DIR modifiable single-machine data [PREFIX/var]
- --runstatedir=DIR modifiable per-process data [LOCALSTATEDIR/run]
--libdir=DIR object code libraries [EPREFIX/lib]
--includedir=DIR C header files [PREFIX/include]
--oldincludedir=DIR C header files for non-gcc [/usr/include]
@@ -1261,7 +1248,7 @@
if test -n "$ac_init_help"; then
case $ac_init_help in
- short | recursive ) echo "Configuration of octave netcdf package
1.0.13:";;
+ short | recursive ) echo "Configuration of octave netcdf package
1.0.14:";;
esac
cat <<\_ACEOF
@@ -1340,7 +1327,7 @@
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
-octave netcdf package configure 1.0.13
+octave netcdf package configure 1.0.14
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1395,7 +1382,7 @@
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
-It was created by octave netcdf package $as_me 1.0.13, which was
+It was created by octave netcdf package $as_me 1.0.14, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@
@@ -2351,44 +2338,6 @@
test -z "$MKOCTFILE" && { $as_echo "$as_me:${as_lineno-$LINENO}:
WARNING: no mkoctfile found on path" >&5
$as_echo "$as_me: WARNING: no mkoctfile found on path" >&2;}
-# Extract the first word of "octave", so it can be a program name with args.
-set dummy octave; ac_word=$2
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
-$as_echo_n "checking for $ac_word... " >&6; }
-if ${ac_cv_prog_OCTAVE+:} false; then :
- $as_echo_n "(cached) " >&6
-else
- if test -n "$OCTAVE"; then
- ac_cv_prog_OCTAVE="$OCTAVE" # Let the user override the test.
-else
-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-for as_dir in $PATH
-do
- IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- for ac_exec_ext in '' $ac_executable_extensions; do
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
- ac_cv_prog_OCTAVE="octave"
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext"
>&5
- break 2
- fi
-done
- done
-IFS=$as_save_IFS
-
-fi
-fi
-OCTAVE=$ac_cv_prog_OCTAVE
-if test -n "$OCTAVE"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OCTAVE" >&5
-$as_echo "$OCTAVE" >&6; }
-else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
-fi
-
-
-
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}nc-config", so it can be a
program name with args.
@@ -2996,7 +2945,7 @@
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
-This file was extended by octave netcdf package $as_me 1.0.13, which was
+This file was extended by octave netcdf package $as_me 1.0.14, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@@ -3058,7 +3007,7 @@
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //;
s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
-octave netcdf package config.status 1.0.13
+octave netcdf package config.status 1.0.14
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"
@@ -3766,7 +3715,6 @@
{ $as_echo "$as_me:${as_lineno-$LINENO}: result:
octave-forge is configured with
- octave: $OCTAVE
mkoctfile: $MKOCTFILE
nc-config: $NC_CONFIG
netCDF compiler flags: $NETCDF_CPPFLAGS
@@ -3774,7 +3722,6 @@
" >&5
$as_echo "
octave-forge is configured with
- octave: $OCTAVE
mkoctfile: $MKOCTFILE
nc-config: $NC_CONFIG
netCDF compiler flags: $NETCDF_CPPFLAGS
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/netcdf-1.0.13/src/configure.ac
new/netcdf-1.0.14/src/configure.ac
--- old/netcdf-1.0.13/src/configure.ac 2020-03-13 17:04:56.000000000 +0100
+++ new/netcdf-1.0.14/src/configure.ac 2020-10-14 15:12:28.000000000 +0200
@@ -21,7 +21,7 @@
dnl autoconf 2.13 certainly doesn't work! What is the minimum requirement?
AC_PREREQ(2.2)
-AC_INIT([octave netcdf package],[1.0.13])
+AC_INIT([octave netcdf package],[1.0.14])
AC_CONFIG_HEADERS([config.h])
# Avoid warnings for redefining AH-generated preprocessor symbols of
@@ -47,8 +47,6 @@
AC_CHECK_PROG(MKOCTFILE,mkoctfile,mkoctfile)
test -z "$MKOCTFILE" && AC_MSG_WARN([no mkoctfile found on path])
-AC_CHECK_PROG(OCTAVE,octave,octave)
-
dnl **********************************************************
dnl checking for nc-config
@@ -112,7 +110,6 @@
AC_MSG_RESULT([
octave-forge is configured with
- octave: $OCTAVE
mkoctfile: $MKOCTFILE
nc-config: $NC_CONFIG
netCDF compiler flags: $NETCDF_CPPFLAGS