Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
openSUSE:12.3
arpack-ng
arpack-ng.spec
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File arpack-ng.spec of Package arpack-ng
# # spec file for package arpack-ng # # Copyright (c) 2012 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 # upon. The license for this file, and modifications and additions to the # file, is the same license as for the pristine package itself (unless the # license for the pristine package is not an Open Source License, in which # case the license is the MIT License). An "Open Source License" is a # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. # Please submit bugfixes or comments via http://bugs.opensuse.org/ # %define libname libarpack2 %define plibname libparpack2 %define major 2 %define minor 0 %if 0%{?sles_version} %define _mpi openmpi mvapich2 %else %define _mpi openmpi %endif Name: arpack-ng Version: 3.1.1 Release: 0 Summary: Fortran77 subroutines for solving large scale eigenvalue problems License: BSD-3-Clause Group: System/Libraries Url: http://forge.scilab.org/index.php/p/arpack-ng/ Source0: http://forge.scilab.org/index.php/p/arpack-ng/downloads/get/arpack-ng_%{version}.tar.gz Obsoletes: arpack < %{version} Provides: arpack = %{version} BuildRequires: blas-devel BuildRequires: gcc-fortran BuildRequires: lapack-devel %if 0%{?sles_version} BuildRequires: mvapich2-devel %endif BuildRequires: openmpi-devel BuildRequires: pkg-config BuildRoot: %{_tmppath}/%{name}-%{version}-build %description ARPACK is a collection of Fortran77 subroutines designed to solve large scale eigenvalue problems. Arpack-ng is the successor of the legacy Arpack. It is fully compatible with Arpack. %package devel Summary: Development files for %{name} Group: Development/Libraries/Other Requires: %{libname} = %{version}-%{release} Requires: blas-devel Requires: gcc-fortran Requires: lapack-devel Requires: pkgconfig Obsoletes: arpack-devel < %{version} Provides: arpack-devel = %{version} %description devel The %{name}-devel package contains libraries and header files for developing applications that use %{name}. %package -n %{libname} Summary: Files needed for developing arpack based applications Group: System/Libraries Provides: %{libname}_%{major}_%{minor} = %{version} Obsoletes: %{libname}_%{major}_%{minor} < %{version} %description -n %{libname} ARPACK is a collection of Fortran77 subroutines designed to solve large scale eigenvalue problems. This package contains the so library links used for building arpack based applications. %package -n parpack-openmpi Summary: Development files for %{name} Group: Development/Libraries/Other Requires: %{plibname}-openmpi = %{version} %description -n parpack-openmpi ARPACK is a collection of Fortran77 subroutines designed to solve large scale eigenvalue problems. Arpack-ng is the successor of the legacy Arpack. It is fully compatible with Arpack. %package -n parpack-openmpi-devel Summary: Development files for %{name} Group: Development/Libraries/Parallel Requires: %{plibname}-openmpi = %{version} Requires: blas-devel Requires: lapack-devel Requires: openmpi-devel %description -n parpack-openmpi-devel The %{name}-openmpi-devel package contains libraries and header files for developing applications that use %{name}. %package -n %{plibname}-openmpi Summary: Files needed for developing arpack based applications Group: System/Libraries Provides: %{plibname}_%{major}_%{minor} = %{version} Obsoletes: %{plibname}_%{major}_%{minor} < %{version} %description -n %{plibname}-openmpi ARPACK is a collection of Fortran77 subroutines designed to solve large scale eigenvalue problems. This package contains the so library links used for building arpack based applications. %if 0%{?sles_version} %package -n parpack-mvapich2 Summary: Development files for %{name} Group: Development/Libraries/Parallel Requires: %{plibname}-mvapich2 = %{version} %description -n parpack-mvapich2 ARPACK is a collection of Fortran77 subroutines designed to solve large scale eigenvalue problems. Arpack-ng is the successor of the legacy Arpack. It is fully compatible with Arpack. %package -n parpack-mvapich2-devel Summary: Development files for %{name} Group: Development/Libraries/Parallel Requires: %{plibname}-mvapich2 = %{version} Requires: blas-devel Requires: lapack-devel Requires: mvapich2-devel %description -n parpack-mvapich2-devel The %{name}-mvapich2-devel package contains libraries and header files for developing applications that use %{name}. %package -n %{plibname}-mvapich2 Summary: Files needed for developing arpack based applications Group: System/Libraries Provides: %{plibname}_%{major}_%{minor} = %{version} Obsoletes: %{plibname}_%{major}_%{minor} < %{version} %description -n %{plibname}-mvapich2 ARPACK is a collection of Fortran77 subroutines designed to solve large scale eigenvalue problems. This package contains the so library links used for building arpack based applications. %endif %prep %setup -q -n arpack-ng_%{version} set -- * for i in %_mpi do mkdir arpack-ng-$i cp -ap "$@" arpack-ng-$i done %build %configure --disable-static --with-lapack=%{_libdir}/liblapack.so \ --with-blas=%{_libdir}/libblas.so make %{?_smp_mflags} for i in %_mpi do cd arpack-ng-$i export F77=%{_libdir}/mpi/gcc/$i/bin/mpif77 export MPIF77=%{_libdir}/mpi/gcc/$i/bin/mpif77 export LD_LIBRARY_PATH=%{_libdir}/mpi/gcc/$i/%_lib %define _prefix /usr/%_lib/mpi/gcc/\$i %configure --disable-static --with-lapack=%{_libdir}/liblapack.so \ --with-blas=%{_libdir}/libblas.so \ --enable-mpi make %{?_smp_mflags} cd .. done # Set prefix to default value %define _prefix /usr # complain with doc dir name policy %__mv EXAMPLES examples %install make install DESTDIR=%{buildroot} find %{buildroot} -name '*.la' -exec rm -f {} ';' for i in %_mpi do cd arpack-ng-$i make install DESTDIR=%{buildroot} sed -i 's|/usr|%{_libdir}/mpi/gcc/openmpi/%_lib|' \ %{buildroot}%{_libdir}/mpi/gcc/openmpi/%_lib/pkgconfig/arpack.pc rm -rf %{buildroot}%{_libdir}/mpi/gcc/$i/%_lib/libarpack.* cd .. done %clean rm -rf %{buildroot} %post -n %{libname} -p /sbin/ldconfig %postun -n%{libname} -p /sbin/ldconfig %post -n%{plibname}-openmpi -p /sbin/ldconfig %postun -n%{plibname}-openmpi -p /sbin/ldconfig %if 0%{?sles_version} %post -n%{plibname}-mvapich2 -p /sbin/ldconfig %postun -n%{plibname}-mvapich2 -p /sbin/ldconfig %endif %files -n %{libname} %defattr(-,root,root,-) %doc CHANGES COPYING README TODO %{_libdir}/*.so.* %files %defattr(-,root,root,-) %{_bindir}/dnsimp %files devel %defattr(-,root,root,-) %doc examples %{_libdir}/*.so %{_libdir}/pkgconfig/*.pc %files -n parpack-openmpi %defattr(-,root,root,-) %{_libdir}/mpi/gcc/openmpi/bin/dnsimp %files -n %{plibname}-openmpi %defattr(-,root,root,-) %{_libdir}/mpi/gcc/openmpi/%_lib/lib*arpack.so.* %files -n parpack-openmpi-devel %defattr(-,root,root,-) %{_libdir}/mpi/gcc/openmpi/%_lib/libparpack.so %{_libdir}/mpi/gcc/openmpi/%_lib/libparpack.la %dir %{_libdir}/mpi/gcc/openmpi/%_lib/pkgconfig %{_libdir}/mpi/gcc/openmpi/%_lib/pkgconfig/*.pc %if 0%{?sles_version} %files -n parpack-mvapich2 %defattr(-,root,root,-) %{_libdir}/mpi/gcc/mvapich2/bin/dnsimp %files -n %{plibname}-mvapich2 %defattr(-,root,root,-) %{_libdir}/mpi/gcc/mvapich2/bin/dnsimp %{_libdir}/mpi/gcc/mvapich2/%_lib/libparpack.so.* %files -n parpack-mvapich2-devel %defattr(-,root,root,-) %{_libdir}/mpi/gcc/mvapich2/%_lib/libparpack.so %{_libdir}/mpi/gcc/mvapich2/%_lib/libparpack.la %dir %{_libdir}/mpi/gcc/openmpi/%_lib/pkgconfig %{_libdir}/mpi/gcc/mvapich2/%_lib/pkgconfig/*.pc %endif %changelog
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor