forked from pool/apfel
Atri Bhattacharya
b77346545a
- Update to version 3.0.0: * Implementation of the full NLO QCD+QED correction in the DGLAP evolution and in the DIS structure functions. * Interfacing APFEL to HELL (v.1.1) for the computation of the ZM small-x resummed structure functions. * Optimisation of the caching for PDFs and structure functions. * Completed external evolution operator when QED corrections are enabled. * Update of the documentation. * Clean up of the code. * Minor bug fixes and adjustments. - Add BuildRequires: libboost_headers-devel or boost-devel as appropriate to the openSUSE versions to fix builds. OBS-URL: https://build.opensuse.org/request/show/485880 OBS-URL: https://build.opensuse.org/package/show/science/apfel?expand=0&rev=16
123 lines
3.4 KiB
RPMSpec
123 lines
3.4 KiB
RPMSpec
#
|
|
# spec file for package apfel
|
|
#
|
|
# Copyright (c) 2017 SUSE LINUX 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 soname libAPFEL0
|
|
%define pypackage python-%{name}
|
|
|
|
Name: apfel
|
|
Version: 3.0.0
|
|
Release: 0
|
|
Summary: A Probability Distribution Function Evolution Library
|
|
License: GPL-3.0+
|
|
Group: Development/Libraries/C and C++
|
|
Url: http://apfel.hepforge.org/
|
|
Source: https://github.com/scarrazza/%{name}/archive/%{version}.tar.gz
|
|
BuildRequires: LHAPDF-devel
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: gcc-fortran
|
|
%if 0%{?suse_version} > 1320
|
|
BuildRequires: libboost_headers-devel
|
|
%else
|
|
BuildRequires: boost-devel
|
|
%endif
|
|
BuildRequires: libqt4-devel
|
|
BuildRequires: python-devel
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
ExclusiveArch: x86_64 s390x
|
|
|
|
%description
|
|
APFEL is a library to perform the combined QCD+QED DGLAP
|
|
evolution of parton distributions.
|
|
|
|
%package -n %{soname}
|
|
Summary: A Probability Distribution Function Evolution Library
|
|
Group: System/Libraries
|
|
|
|
%description -n %{soname}
|
|
APFEL is a library to perform the combined QCD+QED DGLAP
|
|
evolution of parton distributions.
|
|
|
|
This package provides the shared libraries for %{name}.
|
|
|
|
%package devel
|
|
Summary: Development files for Apfel, a PDF Evolution Library
|
|
Group: Development/Libraries/C and C++
|
|
Requires: %{soname} = %{version}
|
|
Requires: LHAPDF-devel
|
|
|
|
%description devel
|
|
APFEL is a library to perform the combined QCD+QED DGLAP
|
|
evolution of parton distributions.
|
|
|
|
This package provides the source files required to develop
|
|
applications with %{name}.
|
|
|
|
%package -n %{pypackage}
|
|
Summary: A PDF Evolution Library
|
|
Group: Development/Languages/Python
|
|
|
|
%description -n %{pypackage}
|
|
APFEL is a library to perform the combined QCD+QED DGLAP
|
|
evolution of parton distributions.
|
|
|
|
This package provides the shared libraries for %{name}.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
%configure --disable-static
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
%make_install
|
|
|
|
# REMOVE libtool ARCHIVES
|
|
rm %{buildroot}%{_libdir}/*.la
|
|
|
|
# REMOVE README FROM NON-STD LOCATIONS, INSTALL IT USING %%doc INSTEAD
|
|
rm -fr %{buildroot}%{_datadir}/apfel/README
|
|
rm -fr %{buildroot}%{_datadir}/doc/apfel
|
|
|
|
%post -n %{soname} -p /sbin/ldconfig
|
|
%postun -n %{soname} -p /sbin/ldconfig
|
|
|
|
%files -n %{soname}
|
|
%defattr(-,root,root)
|
|
%{_libdir}/*.so.*
|
|
|
|
%files devel
|
|
%defattr(-,root,root)
|
|
%{_includedir}/APFEL/
|
|
%doc AUTHORS ChangeLog NEWS README COPYING
|
|
%{_bindir}/CheckAPFEL
|
|
%{_bindir}/%{name}-config
|
|
%{_libdir}/*.so
|
|
|
|
%files -n %{pypackage}
|
|
%defattr(-,root,root)
|
|
%{_bindir}/%{name}
|
|
%{_bindir}/ListFunctions
|
|
%{python_sitearch}/%{name}.py
|
|
# COMPILED OBJECT FILE CONTAINS BUILDROOT
|
|
%exclude %{python_sitearch}/%{name}.pyc
|
|
%{python_sitearch}/_%{name}.so
|
|
%{python_sitearch}/APFEL-*py%{py_ver}.egg-info
|
|
|
|
%changelog
|