Hello community, here is the log from the commit of package octave-forge-fits for openSUSE:Factory checked in at 2016-06-14 23:07:32 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/octave-forge-fits (Old) and /work/SRC/openSUSE:Factory/.octave-forge-fits.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "octave-forge-fits" Changes: -------- --- /work/SRC/openSUSE:Factory/octave-forge-fits/octave-forge-fits.changes 2015-06-16 15:11:12.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.octave-forge-fits.new/octave-forge-fits.changes 2016-06-14 23:07:34.000000000 +0200 @@ -1,0 +2,7 @@ +Fri Jun 10 17:56:29 UTC 2016 - [email protected] + +- Update to version 1.0.7 + * Bugfix release +- Drop oblosele fits-build-flags.patch + +------------------------------------------------------------------- Old: ---- fits-1.0.5.tar.gz fits-build-flags.patch New: ---- fits-1.0.7.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ octave-forge-fits.spec ++++++ --- /var/tmp/diff_new_pack.TgEmr3/_old 2016-06-14 23:07:35.000000000 +0200 +++ /var/tmp/diff_new_pack.TgEmr3/_new 2016-06-14 23:07:35.000000000 +0200 @@ -1,7 +1,7 @@ # # spec file for package octave-forge-fits # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2016 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,15 +18,13 @@ %define octpkg fits Name: octave-forge-%{octpkg} -Version: 1.0.5 +Version: 1.0.7 Release: 0 Summary: Octave functions for reading and writing FITS files 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 fits-build-flags.patch -Patch1: fits-build-flags.patch BuildRequires: cfitsio-devel BuildRequires: gcc-c++ BuildRequires: hdf5-devel @@ -40,7 +38,6 @@ %prep %setup -q -c %{name}-%{version} -%patch1 %octave_pkg_src %build ++++++ fits-1.0.5.tar.gz -> fits-1.0.7.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fits/DESCRIPTION new/fits-1.0.7/DESCRIPTION --- old/fits/DESCRIPTION 2014-04-26 10:59:48.000000000 +0200 +++ new/fits-1.0.7/DESCRIPTION 2015-06-11 13:19:38.000000000 +0200 @@ -1,6 +1,6 @@ Name: FITS -Version: 1.0.5 -Date: 2014-04-26 +Version: 1.0.7 +Date: 2015-06-10 Author: Dirk Schmidt Maintainer: Dirk Schmidt Title: Reading and writing FITS (Flexible Image Transport System) files. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fits/NEWS new/fits-1.0.7/NEWS --- old/fits/NEWS 2014-04-26 11:02:27.000000000 +0200 +++ new/fits-1.0.7/NEWS 2015-06-11 13:19:38.000000000 +0200 @@ -1,3 +1,16 @@ +Version 1.0.7, released 2015-06-10: +=================================== + * Allow for extension in read_fits_image( filename, extension ) being zero to read the + first image of a file with multiple extension. + read_fits_image( filename, 0 ) is equivalent to read_fits_image( filename ) and + read_fits_image( filename[0] ). + + +Version 1.0.6, released 2014-06-10: +=================================== + * Get cflags from pkg-config for compilation. No changes in module sources. + + Version 1.0.5, released 2014-04-26: =================================== * Don't duplicate data in save_fits_image_multi and save_fits_image_multi_ext diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fits/src/Makefile new/fits-1.0.7/src/Makefile --- old/fits/src/Makefile 2013-07-30 06:15:20.000000000 +0200 +++ new/fits-1.0.7/src/Makefile 2015-06-11 13:19:38.000000000 +0200 @@ -1,4 +1,4 @@ -MKOCT_FLAGS = $(shell pkg-config --libs cfitsio) +MKOCT_FLAGS = $(shell pkg-config --libs cfitsio --cflags cfitsio) all: read_fits_image.oct save_fits_image.oct save_fits_image_multi_ext.oct diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fits/src/read_fits_image.cc new/fits-1.0.7/src/read_fits_image.cc --- old/fits/src/read_fits_image.cc 2014-03-11 21:19:05.000000000 +0100 +++ new/fits-1.0.7/src/read_fits_image.cc 2015-06-11 13:19:38.000000000 +0200 @@ -1,4 +1,4 @@ -// Copyright (C) 2009-2014 Dirk Schmidt <[email protected]> +// Copyright (C) 2009-2015 Dirk Schmidt <[email protected]> // // 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 the Free Software @@ -48,7 +48,7 @@ NOTE: It's only possible to read one extension (HDU) at a time, i.e. multi-extension files need to be read in a loop.\n\ \n\ @seealso{save_fits_image, save_fits_image_multi_ext}\n\ -Copyright (c) 2009-2014, Dirk Schmidt <fs@@dirk-schmidt.net>\ +Copyright (c) 2009-2015, Dirk Schmidt <fs@@dirk-schmidt.net>\ @end deftypefn") { if ( any_bad_argument(args) ) @@ -190,13 +190,13 @@ { if( !args(1).is_scalar_type() ) { - error( "read_fits_image: second argument must be a positive scalar integer value" ); + error( "read_fits_image: second argument must be a non-negative scalar integer value" ); return true; } double val = args(1).double_value(); - if( (D_NINT( val ) != val) || (val < 1) ) + if( (D_NINT( val ) != val) || (val < 0) ) { - error( "read_fits_image: second argument must be a positive scalar integer value" ); + error( "read_fits_image: second argument must be a non-negative scalar integer value" ); return true; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fits/src/save_fits_image.cc new/fits-1.0.7/src/save_fits_image.cc --- old/fits/src/save_fits_image.cc 2014-04-26 10:59:18.000000000 +0200 +++ new/fits-1.0.7/src/save_fits_image.cc 2015-06-11 13:19:38.000000000 +0200 @@ -1,4 +1,4 @@ -// Copyright (C) 2009-2014 Dirk Schmidt <[email protected]> +// Copyright (C) 2009-2015 Dirk Schmidt <[email protected]> // // 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 the Free Software @@ -34,7 +34,7 @@ Use a preceding exclamation mark (!) in the filename to overwirte an existing file.\n\n\ Lossless file compression can be used by adding the suffix '.gz' to the filename.\n\n\ @seealso{save_fits_image_multi_ext, read_fits_image}\ - Copyright (c) 2009-2014, Dirk Schmidt <fs@@dirk-schmidt.net>\ + Copyright (c) 2009-2015, Dirk Schmidt <fs@@dirk-schmidt.net>\ @end deftypefn") { if ( any_bad_argument(args) ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fits/src/save_fits_image_multi_ext.cc new/fits-1.0.7/src/save_fits_image_multi_ext.cc --- old/fits/src/save_fits_image_multi_ext.cc 2014-04-26 10:59:21.000000000 +0200 +++ new/fits-1.0.7/src/save_fits_image_multi_ext.cc 2015-06-11 13:19:38.000000000 +0200 @@ -1,4 +1,4 @@ -// Copyright (C) 2009-2014 Dirk Schmidt <[email protected]> +// Copyright (C) 2009-2015 Dirk Schmidt <[email protected]> // // 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 the Free Software @@ -34,7 +34,7 @@ Use a preceding exclamation mark (!) in the filename to overwirte an existing file.\n\n\ Lossless file compression can be used by adding the suffix '.gz' to the filename.\n\n\ @seealso{save_fits_image, read_fits_image}\ - Copyright (c) 2009-2014, Dirk Schmidt <fs@@dirk-schmidt.net>\ + Copyright (c) 2009-2015, Dirk Schmidt <fs@@dirk-schmidt.net>\ @end deftypefn") { if ( any_bad_argument(args) )
