Hello community,

here is the log from the commit of package octave-forge-octproj for 
openSUSE:Factory checked in at 2015-07-12 22:52:53
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/octave-forge-octproj (Old)
 and      /work/SRC/openSUSE:Factory/.octave-forge-octproj.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "octave-forge-octproj"

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/octave-forge-octproj/octave-forge-octproj.changes    
    2015-06-16 15:13:06.000000000 +0200
+++ 
/work/SRC/openSUSE:Factory/.octave-forge-octproj.new/octave-forge-octproj.changes
   2015-07-12 22:52:54.000000000 +0200
@@ -1,0 +2,6 @@
+Tue Jul  7 17:21:44 UTC 2015 - dmitr...@opensuse.org
+
+- Update to version 1.1.5
+  * Bug fixes and minor changes
+
+-------------------------------------------------------------------

Old:
----
  octproj-1.1.2.tar.gz

New:
----
  octproj-1.1.5.tar.gz

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

Other differences:
------------------
++++++ octave-forge-octproj.spec ++++++
--- /var/tmp/diff_new_pack.IgrY9P/_old  2015-07-12 22:52:55.000000000 +0200
+++ /var/tmp/diff_new_pack.IgrY9P/_new  2015-07-12 22:52:55.000000000 +0200
@@ -18,7 +18,7 @@
 
 %define octpkg  octproj
 Name:           octave-forge-%{octpkg}
-Version:        1.1.2
+Version:        1.1.5
 Release:        0
 Summary:        Octave bindings to PROJ.4
 License:        GPL-3.0+

++++++ octproj-1.1.2.tar.gz -> octproj-1.1.5.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/octproj/DESCRIPTION new/octproj-1.1.5/DESCRIPTION
--- old/octproj/DESCRIPTION     2012-10-03 16:09:47.000000000 +0200
+++ new/octproj-1.1.5/DESCRIPTION       2015-06-16 15:23:41.000000000 +0200
@@ -1,6 +1,6 @@
 Name: OctPROJ
-Version: 1.1.2
-Date: 2012-10-03
+Version: 1.1.5
+Date: 2015-06-16
 Author: José Luis García Pallero <jgpall...@gmail.com>
 Maintainer: José Luis García Pallero <jgpall...@gmail.com>
 Title: GNU Octave bindings to PROJ.4
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/octproj/NEWS new/octproj-1.1.5/NEWS
--- old/octproj/NEWS    2012-10-03 10:28:34.000000000 +0200
+++ new/octproj-1.1.5/NEWS      2015-06-16 15:23:41.000000000 +0200
@@ -1,3 +1,18 @@
+Summary of important user-visible changes for version 1.1.5:
+------------------------------------------------------------
+
+** Minor changes in src/Makefile
+
+Summary of important user-visible changes for version 1.1.4:
+------------------------------------------------------------
+
+** Changed calls to ismatrix() for isnumeric() Octave funcions
+
+Summary of important user-visible changes for version 1.1.3:
+------------------------------------------------------------
+
+** Only minor changes in Mercurial repository managment
+
 Summary of important user-visible changes for version 1.1.2:
 ------------------------------------------------------------
 
Files old/octproj/doc/octproj.pdf and new/octproj-1.1.5/doc/octproj.pdf differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/octproj/doc/octproj.tex 
new/octproj-1.1.5/doc/octproj.tex
--- old/octproj/doc/octproj.tex 2012-10-01 10:54:27.000000000 +0200
+++ new/octproj-1.1.5/doc/octproj.tex   2015-06-16 15:23:41.000000000 +0200
@@ -13,7 +13,9 @@
 \author{Jos\'e Luis Garc\'ia Pallero\footnote{ETSI en Topograf\'ia, Geodesia y
         Cartograf\'ia, Universidad Polit\'ecnica de Madrid.
         \texttt{jlg.pall...@upm.es}, \texttt{jgpall...@gmail.com}}}
-\date{October 1, 2012 (version 1.1.1)\\
+\date{February 13, 2015 (version 1.1.4)\\
+      June 20, 2013 (version 1.1.3)\\
+      October 1, 2012 (version 1.1.1)\\
       April 13, 2012 (version 1.1.0)\\
       May 13, 2011 (version 1.0.2)\\
       November 29, 2010 (version 1.0.1)\\
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/octproj/inst/op_fwd.m new/octproj-1.1.5/inst/op_fwd.m
--- old/octproj/inst/op_fwd.m   2010-11-26 18:59:10.000000000 +0100
+++ new/octproj-1.1.5/inst/op_fwd.m     2015-06-16 15:23:41.000000000 +0200
@@ -99,14 +99,14 @@
 function [a,b,rowWork,colWork] = checkInputArguments(a,b,params)
 
 %a must be matrix type
-if ismatrix(a)
+if isnumeric(a)
     %a dimensions
     [rowA,colA] = size(a);
 else
     error('The first input argument is not numeric');
 end
 %b must be matrix type
-if ismatrix(b)
+if isnumeric(b)
     %b dimensions
     [rowB,colB] = size(b);
 else
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/octproj/inst/op_geoc2geod.m 
new/octproj-1.1.5/inst/op_geoc2geod.m
--- old/octproj/inst/op_geoc2geod.m     2010-11-26 18:59:32.000000000 +0100
+++ new/octproj-1.1.5/inst/op_geoc2geod.m       2015-06-16 15:23:41.000000000 
+0200
@@ -101,21 +101,21 @@
 function [a,b,c,rowWork,colWork] = checkInputArguments(a,b,c,d,e)
 
 %a must be matrix type
-if ismatrix(a)
+if isnumeric(a)
     %a dimensions
     [rowA,colA] = size(a);
 else
     error('The first input argument is not numeric');
 end
 %b must be matrix type
-if ismatrix(b)
+if isnumeric(b)
     %b dimensions
     [rowB,colB] = size(b);
 else
     error('The second input argument is not numeric');
 end
 %c must be matrix type
-if ismatrix(c)
+if isnumeric(c)
     %b dimensions
     [rowC,colC] = size(c);
 else
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/octproj/inst/op_geod2geoc.m 
new/octproj-1.1.5/inst/op_geod2geoc.m
--- old/octproj/inst/op_geod2geoc.m     2010-11-26 18:59:45.000000000 +0100
+++ new/octproj-1.1.5/inst/op_geod2geoc.m       2015-06-16 15:23:41.000000000 
+0200
@@ -101,21 +101,21 @@
 function [a,b,c,rowWork,colWork] = checkInputArguments(a,b,c,d,e)
 
 %a must be matrix type
-if ismatrix(a)
+if isnumeric(a)
     %a dimensions
     [rowA,colA] = size(a);
 else
     error('The first input argument is not numeric');
 end
 %b must be matrix type
-if ismatrix(b)
+if isnumeric(b)
     %b dimensions
     [rowB,colB] = size(b);
 else
     error('The second input argument is not numeric');
 end
 %c must be matrix type
-if ismatrix(c)
+if isnumeric(c)
     %b dimensions
     [rowC,colC] = size(c);
 else
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/octproj/inst/op_inv.m new/octproj-1.1.5/inst/op_inv.m
--- old/octproj/inst/op_inv.m   2010-11-26 19:00:00.000000000 +0100
+++ new/octproj-1.1.5/inst/op_inv.m     2015-06-16 15:23:41.000000000 +0200
@@ -98,14 +98,14 @@
 function [a,b,rowWork,colWork] = checkInputArguments(a,b,params)
 
 %a must be matrix type
-if ismatrix(a)
+if isnumeric(a)
     %a dimensions
     [rowA,colA] = size(a);
 else
     error('The first input argument is not numeric');
 end
 %b must be matrix type
-if ismatrix(b)
+if isnumeric(b)
     %b dimensions
     [rowB,colB] = size(b);
 else
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/octproj/inst/op_transform.m 
new/octproj-1.1.5/inst/op_transform.m
--- old/octproj/inst/op_transform.m     2010-11-26 19:00:44.000000000 +0100
+++ new/octproj-1.1.5/inst/op_transform.m       2015-06-16 15:23:41.000000000 
+0200
@@ -114,14 +114,14 @@
 function [a,b,c,rowWork,colWork] = checkInputArguments(a,b,c,par1,par2)
 
 %a must be matrix type
-if ismatrix(a)
+if isnumeric(a)
     %a dimensions
     [rowA,colA] = size(a);
 else
     error('The first input argument is not numeric');
 end
 %b must be matrix type
-if ismatrix(b)
+if isnumeric(b)
     %b dimensions
     [rowB,colB] = size(b);
 else
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/octproj/src/Makefile new/octproj-1.1.5/src/Makefile
--- old/octproj/src/Makefile    2012-10-01 12:11:33.000000000 +0200
+++ new/octproj-1.1.5/src/Makefile      2015-06-16 15:23:41.000000000 +0200
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #Compiler
-CC=mkoctfile
+MKOCTFILE=mkoctfile
 #Common warning flags for C and C++
 FLAGSCOMW=-Wall -Wextra -Wshadow -Wcast-qual -Wcast-align -Wwrite-strings
 #Common optimization flags for C and C++
@@ -16,16 +16,16 @@
 export CFLAGS CXXFLAGS
 
 .PHONY: all
-all: compile clean
+all: compile
 
 .PHONY: compile
 compile:
-       $(CC) -c -v projwrap.c -o projwrap.o
-       $(CC) -s -v _op_transform.cc projwrap.o $(LDFLAGS)
-       $(CC) -s _op_fwd.cc projwrap.o $(LDFLAGS)
-       $(CC) -s _op_inv.cc projwrap.o $(LDFLAGS)
-       $(CC) -s _op_geod2geoc.cc $(LDFLAGS)
-       $(CC) -s _op_geoc2geod.cc $(LDFLAGS)
+       $(MKOCTFILE) -c projwrap.c -o projwrap.o
+       $(MKOCTFILE) -s _op_transform.cc projwrap.o $(LDFLAGS)
+       $(MKOCTFILE) -s _op_fwd.cc projwrap.o $(LDFLAGS)
+       $(MKOCTFILE) -s _op_inv.cc projwrap.o $(LDFLAGS)
+       $(MKOCTFILE) -s _op_geod2geoc.cc $(LDFLAGS)
+       $(MKOCTFILE) -s _op_geoc2geod.cc $(LDFLAGS)
 
 .PHONY: clean
 clean:


Reply via email to