Accepting request 116458 from devel:libraries:c_c++
Update to 3.4.1 (bugfix release) (forwarded request 116450 from burnus) OBS-URL: https://build.opensuse.org/request/show/116458 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/lapack?expand=0&rev=25
This commit is contained in:
parent
96bba20005
commit
5261577bc1
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:a7139ef97004d0e3c4c30f1c52d508fd7ae84b5fbaf0dd8e792c167dc306c3e9
|
|
||||||
size 6127787
|
|
3
lapack-3.4.1.tgz
Normal file
3
lapack-3.4.1.tgz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:93b910f94f6091a2e71b59809c4db4a14655db527cfc5821ade2e8c8ab75380f
|
||||||
|
size 6147915
|
@ -1,3 +1,14 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri May 4 13:44:58 UTC 2012 - burnus@net-b.de
|
||||||
|
|
||||||
|
- Update to 3.4.1
|
||||||
|
* Bug fixes
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Apr 2 11:47:20 UTC 2012 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Undo spec file obfuscation
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Mar 30 14:11:58 UTC 2012 - toddrme2178@gmail.com
|
Fri Mar 30 14:11:58 UTC 2012 - toddrme2178@gmail.com
|
||||||
|
|
||||||
|
46
lapack.spec
46
lapack.spec
@ -15,15 +15,15 @@
|
|||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
Name: lapack
|
Name: lapack
|
||||||
Version: 3.4.0
|
Version: 3.4.1
|
||||||
%define sonum 3
|
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Linear Algebra Package
|
Summary: Linear Algebra Package
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
Group: Development/Libraries/Parallel
|
Group: Development/Libraries/Parallel
|
||||||
Url: http://www.netlib.org/%{name}/
|
Url: http://www.netlib.org/lapack/
|
||||||
Source0: http://www.netlib.org/%{name}/%{name}-%{version}.tgz
|
Source0: http://www.netlib.org/lapack/%{name}-%{version}.tgz
|
||||||
Patch1: lapack-3.2.2.patch
|
Patch1: lapack-3.2.2.patch
|
||||||
BuildRequires: doxygen
|
BuildRequires: doxygen
|
||||||
BuildRequires: gcc-fortran
|
BuildRequires: gcc-fortran
|
||||||
@ -41,11 +41,11 @@ matrices are handled, but not general sparse matrices. In all areas,
|
|||||||
similar functionality is provided for real and complex matrices, in
|
similar functionality is provided for real and complex matrices, in
|
||||||
both single and double precision.
|
both single and double precision.
|
||||||
|
|
||||||
%package -n lib%{name}%{sonum}
|
%package -n liblapack3
|
||||||
Summary: LAPACK Shared Library
|
Summary: LAPACK Shared Library
|
||||||
Group: Development/Libraries/Parallel
|
Group: Development/Libraries/Parallel
|
||||||
|
|
||||||
%description -n lib%{name}%{sonum}
|
%description -n liblapack3
|
||||||
LAPACK provides routines for solving systems of simultaneous linear
|
LAPACK provides routines for solving systems of simultaneous linear
|
||||||
equations, least-squares solutions of linear systems of equations,
|
equations, least-squares solutions of linear systems of equations,
|
||||||
eigenvalue problems, and singular value problems. The associated matrix
|
eigenvalue problems, and singular value problems. The associated matrix
|
||||||
@ -56,11 +56,11 @@ matrices are handled, but not general sparse matrices. In all areas,
|
|||||||
similar functionality is provided for real and complex matrices, in
|
similar functionality is provided for real and complex matrices, in
|
||||||
both single and double precision.
|
both single and double precision.
|
||||||
|
|
||||||
%package -n libblas%{sonum}
|
%package -n libblas3
|
||||||
Summary: BLAS Shared Library
|
Summary: BLAS Shared Library
|
||||||
Group: Development/Libraries/Parallel
|
Group: Development/Libraries/Parallel
|
||||||
|
|
||||||
%description -n libblas%{sonum}
|
%description -n libblas3
|
||||||
BLAS (Basic Linear Algebra Subprograms) is a standard library for
|
BLAS (Basic Linear Algebra Subprograms) is a standard library for
|
||||||
numerical algebra. BLAS provides a number of basic algorithms for
|
numerical algebra. BLAS provides a number of basic algorithms for
|
||||||
linear algebra.
|
linear algebra.
|
||||||
@ -69,11 +69,11 @@ linear algebra.
|
|||||||
Summary: Linear Algebra Package
|
Summary: Linear Algebra Package
|
||||||
Group: Development/Libraries/Parallel
|
Group: Development/Libraries/Parallel
|
||||||
Requires: blas-devel = %{version}
|
Requires: blas-devel = %{version}
|
||||||
Requires: lib%{name}%{sonum} = %{version}
|
Requires: liblapack3 = %{version}
|
||||||
Provides: %{name} = %{version}
|
Provides: lapack = %{version}
|
||||||
Provides: %{name}-devel-static = %{version}
|
Provides: lapack-devel-static = %{version}
|
||||||
#TODO: Change back to '<' after next version update:
|
#TODO: Change back to '<' after next version update:
|
||||||
Obsoletes: %{name} <= %{version}
|
Obsoletes: lapack <= %{version}
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
LAPACK provides routines for solving systems of simultaneous linear
|
LAPACK provides routines for solving systems of simultaneous linear
|
||||||
@ -89,7 +89,7 @@ both single and double precision.
|
|||||||
%package -n blas-devel
|
%package -n blas-devel
|
||||||
Summary: Basic Linear Algebra Subprograms
|
Summary: Basic Linear Algebra Subprograms
|
||||||
Group: Development/Libraries/Parallel
|
Group: Development/Libraries/Parallel
|
||||||
Requires: libblas%{sonum} = %{version}
|
Requires: libblas3 = %{version}
|
||||||
Provides: blas = %{version}
|
Provides: blas = %{version}
|
||||||
Provides: blas-devel-static = %{version}
|
Provides: blas-devel-static = %{version}
|
||||||
#TODO: Change back to '<' after next version update:
|
#TODO: Change back to '<' after next version update:
|
||||||
@ -105,8 +105,8 @@ blas-man package.
|
|||||||
%package man
|
%package man
|
||||||
Summary: Manpages for LAPACK
|
Summary: Manpages for LAPACK
|
||||||
Group: Development/Libraries/Parallel
|
Group: Development/Libraries/Parallel
|
||||||
Provides: %{name}-manpages = %{version}
|
Provides: lapack-manpages = %{version}
|
||||||
Obsoletes: %{name}-manpages < %{version}
|
Obsoletes: lapack-manpages < %{version}
|
||||||
%if 0%{?suse_version} >= 1120
|
%if 0%{?suse_version} >= 1120
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
%endif
|
%endif
|
||||||
@ -277,23 +277,23 @@ ln -s DLAMCH.3.gz %{buildroot}/%{_mandir}/man3/DLAMC3.3.gz
|
|||||||
%post -n liblapack3 -p /sbin/ldconfig
|
%post -n liblapack3 -p /sbin/ldconfig
|
||||||
%postun -n liblapack3 -p /sbin/ldconfig
|
%postun -n liblapack3 -p /sbin/ldconfig
|
||||||
|
|
||||||
%files -n lib%{name}%{sonum}
|
%files -n liblapack3
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc LICENSE README
|
%doc LICENSE README
|
||||||
%{_libdir}/lib%{name}.so.%{version}
|
%{_libdir}/liblapack.so.%{version}
|
||||||
%{_libdir}/lib%{name}.so.%{sonum}
|
%{_libdir}/liblapack.so.3
|
||||||
|
|
||||||
%files -n libblas%{sonum}
|
%files -n libblas3
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc LICENSE README
|
%doc LICENSE README
|
||||||
%{_libdir}/libblas.so.%{version}
|
%{_libdir}/libblas.so.%{version}
|
||||||
%{_libdir}/libblas.so.%{sonum}
|
%{_libdir}/libblas.so.3
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_libdir}/lib%{name}.so
|
%{_libdir}/liblapack.so
|
||||||
%{_libdir}/lib%{name}.a
|
%{_libdir}/liblapack.a
|
||||||
%{_libdir}/lib%{name}_pic.a
|
%{_libdir}/liblapack_pic.a
|
||||||
|
|
||||||
%files -n blas-devel
|
%files -n blas-devel
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
|
Loading…
Reference in New Issue
Block a user