Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package armadillo for openSUSE:Factory checked in at 2021-07-31 18:51:22 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/armadillo (Old) and /work/SRC/openSUSE:Factory/.armadillo.new.1899 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "armadillo" Sat Jul 31 18:51:22 2021 rev:152 rq:909505 version:10.6.1 Changes: -------- --- /work/SRC/openSUSE:Factory/armadillo/armadillo.changes 2021-07-20 15:39:53.549518351 +0200 +++ /work/SRC/openSUSE:Factory/.armadillo.new.1899/armadillo.changes 2021-07-31 18:52:25.502456242 +0200 @@ -1,0 +2,6 @@ +Wed Jul 28 11:41:20 UTC 2021 - Atri Bhattacharya <badshah...@gmail.com> + +- Update to version 10.6.1: + * No documented changes. + +------------------------------------------------------------------- Old: ---- armadillo-10.6.0.tar.xz New: ---- armadillo-10.6.1.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ armadillo.spec ++++++ --- /var/tmp/diff_new_pack.30ZVRQ/_old 2021-07-31 18:52:25.998455649 +0200 +++ /var/tmp/diff_new_pack.30ZVRQ/_new 2021-07-31 18:52:25.998455649 +0200 @@ -18,7 +18,7 @@ %define soname libarmadillo10 Name: armadillo -Version: 10.6.0 +Version: 10.6.1 Release: 0 Summary: C++ matrix library with interfaces to LAPACK and ATLAS License: Apache-2.0 ++++++ armadillo-10.6.0.tar.xz -> armadillo-10.6.1.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/armadillo-10.6.0/include/armadillo_bits/Proxy.hpp new/armadillo-10.6.1/include/armadillo_bits/Proxy.hpp --- old/armadillo-10.6.0/include/armadillo_bits/Proxy.hpp 2016-06-16 18:23:10.000000000 +0200 +++ new/armadillo-10.6.1/include/armadillo_bits/Proxy.hpp 2016-06-16 18:23:11.000000000 +0200 @@ -89,9 +89,18 @@ arma_extra_debug_sigprint(); } - static constexpr uword get_n_rows() { return T1::n_rows; } - static constexpr uword get_n_cols() { return T1::n_cols; } - static constexpr uword get_n_elem() { return T1::n_elem; } + //// this may require T1::n_elem etc to be declared as static constexpr inline variables (C++17) + //// see also the notes in Mat::fixed + //// https://en.cppreference.com/w/cpp/language/static + //// https://en.cppreference.com/w/cpp/language/inline + // + // static constexpr uword get_n_rows() { return T1::n_rows; } + // static constexpr uword get_n_cols() { return T1::n_cols; } + // static constexpr uword get_n_elem() { return T1::n_elem; } + + arma_inline uword get_n_rows() const { return is_row ? 1 : T1::n_rows; } + arma_inline uword get_n_cols() const { return is_col ? 1 : T1::n_cols; } + arma_inline uword get_n_elem() const { return T1::n_elem; } arma_inline elem_type operator[] (const uword i) const { return Q[i]; } arma_inline elem_type at (const uword row, const uword col) const { return Q.at(row, col); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/armadillo-10.6.0/include/armadillo_bits/arma_version.hpp new/armadillo-10.6.1/include/armadillo_bits/arma_version.hpp --- old/armadillo-10.6.0/include/armadillo_bits/arma_version.hpp 2016-06-16 18:23:10.000000000 +0200 +++ new/armadillo-10.6.1/include/armadillo_bits/arma_version.hpp 2016-06-16 18:23:11.000000000 +0200 @@ -21,7 +21,7 @@ #define ARMA_VERSION_MAJOR 10 #define ARMA_VERSION_MINOR 6 -#define ARMA_VERSION_PATCH 0 +#define ARMA_VERSION_PATCH 1 #define ARMA_VERSION_NAME "Keep Calm"