Hello community, here is the log from the commit of package qrupdate for openSUSE:Factory checked in at 2013-12-11 16:53:50 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/qrupdate (Old) and /work/SRC/openSUSE:Factory/.qrupdate.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "qrupdate" Changes: -------- --- /work/SRC/openSUSE:Factory/qrupdate/qrupdate.changes 2012-05-22 08:18:45.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.qrupdate.new/qrupdate.changes 2013-12-11 16:53:51.000000000 +0100 @@ -1,0 +2,6 @@ +Tue Dec 10 14:38:11 UTC 2013 - [email protected] + +- Update to version 1.1.2 + * Fix fast return conditions for out-of-bounds row. + +------------------------------------------------------------------- Old: ---- qrupdate-1.1.1.tar.gz New: ---- qrupdate-1.1.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ qrupdate.spec ++++++ --- /var/tmp/diff_new_pack.SBp3yT/_old 2013-12-11 16:53:52.000000000 +0100 +++ /var/tmp/diff_new_pack.SBp3yT/_new 2013-12-11 16:53:52.000000000 +0100 @@ -1,7 +1,7 @@ # # spec file for package qrupdate # -# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: qrupdate -Version: 1.1.1 +Version: 1.1.2 Release: 0 Summary: Fortran library for fast updates of QR and Cholesky decompositions License: GPL-3.0+ ++++++ qrupdate-1.1.1.tar.gz -> qrupdate-1.1.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qrupdate-1.1.1/ChangeLog new/qrupdate-1.1.2/ChangeLog --- old/qrupdate-1.1.1/ChangeLog 2010-02-11 11:43:59.000000000 +0100 +++ new/qrupdate-1.1.2/ChangeLog 2012-02-06 23:17:04.000000000 +0100 @@ -1,3 +1,8 @@ +2012-02-06 Jaroslav Hajek <[email protected]> + + * src/sqrder.f, src/dqrder.f, src/cqrder.f, src/zqrder.f: Fix fast + return conditions for out-of-bounds row. + 2010-02-11 Jaroslav Hajek <[email protected]> * test/utils.f: Test CHERK and ZHERK results for validity. Warn about diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qrupdate-1.1.1/src/cqrder.f new/qrupdate-1.1.2/src/cqrder.f --- old/qrupdate-1.1.1/src/cqrder.f 2009-01-09 12:21:34.000000000 +0100 +++ new/qrupdate-1.1.2/src/cqrder.f 2012-02-06 23:17:04.000000000 +0100 @@ -51,7 +51,7 @@ info = 0 if (m < 1) then info = 1 - else if (j < 1 .or. j > n) then + else if (j < 1 .or. j > m) then info = 7 end if if (info /= 0) then diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qrupdate-1.1.1/src/dqrder.f new/qrupdate-1.1.2/src/dqrder.f --- old/qrupdate-1.1.1/src/dqrder.f 2009-01-09 12:21:34.000000000 +0100 +++ new/qrupdate-1.1.2/src/dqrder.f 2012-02-06 23:17:04.000000000 +0100 @@ -49,7 +49,7 @@ info = 0 if (m < 1) then info = 1 - else if (j < 1 .or. j > n) then + else if (j < 1 .or. j > m) then info = 7 end if if (info /= 0) then diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qrupdate-1.1.1/src/sqrder.f new/qrupdate-1.1.2/src/sqrder.f --- old/qrupdate-1.1.1/src/sqrder.f 2009-01-09 12:21:34.000000000 +0100 +++ new/qrupdate-1.1.2/src/sqrder.f 2012-02-06 23:17:04.000000000 +0100 @@ -49,7 +49,7 @@ info = 0 if (m < 1) then info = 1 - else if (j < 1 .or. j > n) then + else if (j < 1 .or. j > m) then info = 7 end if if (info /= 0) then diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qrupdate-1.1.1/src/zqrder.f new/qrupdate-1.1.2/src/zqrder.f --- old/qrupdate-1.1.1/src/zqrder.f 2009-01-09 12:21:34.000000000 +0100 +++ new/qrupdate-1.1.2/src/zqrder.f 2012-02-06 23:17:04.000000000 +0100 @@ -52,7 +52,7 @@ info = 0 if (m < 1) then info = 1 - else if (j < 1 .or. j > n) then + else if (j < 1 .or. j > m) then info = 7 end if if (info /= 0) then -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
