|
|
|
@ -1,22 +1,15 @@
|
|
|
|
|
Summary: Fortran 77 subroutines for solving large scale eigenvalue problems
|
|
|
|
|
Name: arpack
|
|
|
|
|
Version: 3.0.1
|
|
|
|
|
Release: 5%{?dist}
|
|
|
|
|
Version: 3.1.3
|
|
|
|
|
Release: 1%{?dist}
|
|
|
|
|
Summary: Fortran 77 subroutines for solving large scale eigenvalue problems
|
|
|
|
|
License: BSD
|
|
|
|
|
Group: Development/Libraries
|
|
|
|
|
URL: http://forge.scilab.org/index.php/p/arpack-ng/
|
|
|
|
|
Source0: http://forge.scilab.org/upload/arpack-ng/files/arpack_%{version}.tar.gz
|
|
|
|
|
Source0: http://forge.scilab.org/index.php/p/arpack-ng/downloads/get/arpack-ng-%{version}.tar.gz
|
|
|
|
|
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
|
|
|
|
|
%if 0%{?rhel} == 4
|
|
|
|
|
# The correct dependency would be the following, but it doesn't exist on RHEL4/3
|
|
|
|
|
#BuildRequires: lapack-devel
|
|
|
|
|
BuildRequires: gcc-g77
|
|
|
|
|
BuildRequires: lapack
|
|
|
|
|
%else
|
|
|
|
|
|
|
|
|
|
BuildRequires: gcc-gfortran
|
|
|
|
|
BuildRequires: atlas-devel
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
Provides: arpack-ng = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
@ -67,26 +60,24 @@ library and so links used for building arpack based applications.
|
|
|
|
|
%setup -q -n arpack-ng-%{version}
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
%{configure} --enable-shared --enable-static \
|
|
|
|
|
%if 0%{?rhel} == 4
|
|
|
|
|
--with-blas="-lblas" --with-lapack="-llapack"
|
|
|
|
|
%else
|
|
|
|
|
--with-blas="-L%{_libdir}/atlas -lf77blas -latlas" --with-lapack="-L%{_libdir}/atlas -llapack -latlas"
|
|
|
|
|
%endif
|
|
|
|
|
export F77=gfortran
|
|
|
|
|
%configure --enable-shared --enable-static \
|
|
|
|
|
--with-blas="-L%{_libdir}/atlas -lf77blas -latlas" \
|
|
|
|
|
--with-lapack="-L%{_libdir}/atlas -llapack -latlas"
|
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
rm -rf %{buildroot}
|
|
|
|
|
make install DESTDIR=%{buildroot}
|
|
|
|
|
|
|
|
|
|
# Get rid of .la files
|
|
|
|
|
rm -rf %{buildroot}%{_libdir}/*.la
|
|
|
|
|
# and of the example binary
|
|
|
|
|
rm %{buildroot}%{_bindir}/dnsimp
|
|
|
|
|
|
|
|
|
|
%clean
|
|
|
|
|
rm -rf %{buildroot}
|
|
|
|
|
|
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
|
|
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
@ -97,6 +88,7 @@ rm -rf %{buildroot}
|
|
|
|
|
%files devel
|
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
|
%doc DOCUMENTS EXAMPLES
|
|
|
|
|
%{_libdir}/pkgconfig/arpack.pc
|
|
|
|
|
%{_libdir}/libarpack.so
|
|
|
|
|
|
|
|
|
|
%files doc
|
|
|
|
@ -108,6 +100,9 @@ rm -rf %{buildroot}
|
|
|
|
|
%{_libdir}/libarpack.a
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
|
* Thu Sep 05 2013 Susi Lehtola <jussilehtola@fedoraproject.org> - 3.1.3-1
|
|
|
|
|
- Update to 3.1.3.
|
|
|
|
|
|
|
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.1-5
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|