Accepting request 297269 from devel:libraries:c_c++
1 OBS-URL: https://build.opensuse.org/request/show/297269 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/armadillo?expand=0&rev=75
This commit is contained in:
commit
38c3b8fdd7
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:ccc56580ec932ec9beade5679b07ecbed889e9b602866f673d1a05a7692b4bf8
|
|
||||||
size 5408567
|
|
3
armadillo-5.000.1.tar.gz
Normal file
3
armadillo-5.000.1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:8ca55fbfce220517374a879ddc0c79e1afd3993f89cc58621aa502e9533f3cdb
|
||||||
|
size 5425382
|
@ -1,3 +1,34 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 16 06:16:24 UTC 2015 - badshah400@gmail.com
|
||||||
|
|
||||||
|
- Update to version 5.000.1:
|
||||||
|
+ Fix an issue with C++11 support.
|
||||||
|
- Add superlu-devel as BuildRequires, and as Requires for
|
||||||
|
armadillo.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Apr 13 17:50:44 UTC 2015 - badshah400@gmail.com
|
||||||
|
|
||||||
|
- Update to version 5.000.0 (Ankle Biter):
|
||||||
|
+ Added spsolve() for solving sparse systems of linear
|
||||||
|
equations.
|
||||||
|
+ Added svds() for singular value decomposition of sparse
|
||||||
|
matrices.
|
||||||
|
+ Added nonzeros() for extracting non-zero values from matrices.
|
||||||
|
+ Added handling of diagonal views by sparse matrices.
|
||||||
|
+ Expanded repmat() to handle sparse matrices.
|
||||||
|
+ Expanded join_rows() and join_cols() to handle sparse
|
||||||
|
matrices.
|
||||||
|
+ sort_index() and stable_sort_index() have been placed in the
|
||||||
|
delayed operations framework for increased efficiency.
|
||||||
|
+ Use of 64 bit integers is automatically enabled when using a
|
||||||
|
C++11 compiler.
|
||||||
|
+ Workaround for a bug in recent releases of Apple Xcode.
|
||||||
|
+ Workaround for a bug in LAPACK 3.5.
|
||||||
|
- New dependency: superlu >= 4.3.
|
||||||
|
- Updated shared library name to libarmadillo5 in track with
|
||||||
|
upstream so name change.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Mar 21 00:29:27 UTC 2015 - badshah400@gmail.com
|
Sat Mar 21 00:29:27 UTC 2015 - badshah400@gmail.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package armadillo
|
# spec file for package armadillo
|
||||||
#
|
#
|
||||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -16,10 +16,10 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%define soname libarmadillo4
|
%define soname libarmadillo5
|
||||||
|
|
||||||
Name: armadillo
|
Name: armadillo
|
||||||
Version: 4.650.4
|
Version: 5.000.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Fast C++ matrix library with interfaces to LAPACK and ATLAS
|
Summary: Fast C++ matrix library with interfaces to LAPACK and ATLAS
|
||||||
License: MPL-2.0
|
License: MPL-2.0
|
||||||
@ -33,6 +33,7 @@ BuildRequires: cmake
|
|||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
BuildRequires: lapack-devel
|
BuildRequires: lapack-devel
|
||||||
BuildRequires: libatlas3-devel
|
BuildRequires: libatlas3-devel
|
||||||
|
BuildRequires: superlu-devel >= 4.3
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -104,6 +105,7 @@ Requires: blas-devel
|
|||||||
Requires: lapack-devel
|
Requires: lapack-devel
|
||||||
Requires: libatlas3-devel
|
Requires: libatlas3-devel
|
||||||
Requires: libstdc++-devel
|
Requires: libstdc++-devel
|
||||||
|
Requires: superlu-devel >= 4.3
|
||||||
Recommends: %{name}-doc
|
Recommends: %{name}-doc
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
libarmadillo4
|
libarmadillo5
|
||||||
armadillo-devel
|
armadillo-devel
|
||||||
requires -armadillo-<targettype>
|
requires -armadillo-<targettype>
|
||||||
requires "libarmadillo4-<targettype> = <version>"
|
requires "libarmadillo5-<targettype> = <version>"
|
||||||
|
Loading…
Reference in New Issue
Block a user