forked from pool/apfel
Accepting request 292256 from home:badshah400:branches:science
Update to version 2.3.3; building on 32-bit is no longer supported by upstream since version 2.3.0 OBS-URL: https://build.opensuse.org/request/show/292256 OBS-URL: https://build.opensuse.org/package/show/science/apfel?expand=0&rev=5
This commit is contained in:
parent
cd7a54d074
commit
51ba15b518
3
2.3.3.tar.gz
Normal file
3
2.3.3.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:b646ca84f11069ddf10bc2cd863c556c52257cb68c7b015abdb938f3d9301b3c
|
||||||
|
size 11908043
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:fcdae5ceb5333d288b043b7d90eec914de0ffad6138eb4b4587e2014f0c76c11
|
|
||||||
size 1852444
|
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 20 22:07:36 UTC 2015 - badshah400@gmail.com
|
||||||
|
|
||||||
|
- Update to version 2.3.3:
|
||||||
|
+ Functions for the production of FK tables.
|
||||||
|
+ Updated format of the output LHAPDF grids.
|
||||||
|
+ Implementation of semi-inclusive e^+e^- annihilation structure
|
||||||
|
functions,
|
||||||
|
+ Added flag to the apfel-config script to list the APFEL
|
||||||
|
functions.
|
||||||
|
- Changes from previous versions:
|
||||||
|
+ Long list of changes since previous packaged version, see NEWS
|
||||||
|
file.
|
||||||
|
- Packaging changes: Use LHAPDF 6.x (instead of 5.x) for building,
|
||||||
|
since apfel is now LHAPDFv6 compatible.
|
||||||
|
- Since version 2.3.0, building on 32-bit architectures is
|
||||||
|
unsupported by upstream.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu May 1 02:15:58 UTC 2014 - badshah400@gmail.com
|
Thu May 1 02:15:58 UTC 2014 - badshah400@gmail.com
|
||||||
|
|
||||||
|
11
apfel.spec
11
apfel.spec
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package apfel
|
# spec file for package apfel
|
||||||
#
|
#
|
||||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2015 SUSE LINUX Products 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
|
||||||
@ -20,16 +20,16 @@
|
|||||||
%define pypackage python-%{name}
|
%define pypackage python-%{name}
|
||||||
|
|
||||||
Name: apfel
|
Name: apfel
|
||||||
Version: 2.0.1
|
Version: 2.3.3
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: A PDF Evolution Library
|
Summary: A PDF Evolution Library
|
||||||
License: GPL-3.0+
|
License: GPL-3.0+
|
||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
Url: http://apfel.hepforge.org/
|
Url: http://apfel.hepforge.org/
|
||||||
Source: http://apfel.hepforge.org/downloads/%{name}-%{version}.tar.gz
|
Source: https://github.com/scarrazza/%{name}/archive/%{version}.tar.gz
|
||||||
|
BuildRequires: LHAPDF-devel
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
BuildRequires: gcc-fortran
|
BuildRequires: gcc-fortran
|
||||||
BuildRequires: lhapdf-devel <= 5.9.1
|
|
||||||
BuildRequires: libqt4-devel
|
BuildRequires: libqt4-devel
|
||||||
BuildRequires: python-devel
|
BuildRequires: python-devel
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -56,7 +56,7 @@ This package provides the shared libraries for %{name}.
|
|||||||
Summary: A PDF Evolution Library
|
Summary: A PDF Evolution Library
|
||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
Requires: %{soname} = %{version}
|
Requires: %{soname} = %{version}
|
||||||
Requires: lhapdf-devel <= 5.9.1
|
Requires: LHAPDF-devel
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
APFEL is a library to perform the combined QCD+QED DGLAP
|
APFEL is a library to perform the combined QCD+QED DGLAP
|
||||||
@ -115,6 +115,7 @@ rm -fr %{buildroot}%{_datadir}/doc/apfel
|
|||||||
%files -n %{pypackage}
|
%files -n %{pypackage}
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_bindir}/%{name}
|
%{_bindir}/%{name}
|
||||||
|
%{_bindir}/ListFunctions
|
||||||
%{python_sitearch}/%{name}.py
|
%{python_sitearch}/%{name}.py
|
||||||
# COMPILED OBJECT FILE CONTAINS BUILDROOT
|
# COMPILED OBJECT FILE CONTAINS BUILDROOT
|
||||||
%exclude %{python_sitearch}/%{name}.pyc
|
%exclude %{python_sitearch}/%{name}.pyc
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 20 22:07:36 UTC 2015 - badshah400@gmail.com
|
||||||
|
|
||||||
|
- Update to version 2.3.3:
|
||||||
|
+ Functions for the production of FK tables.
|
||||||
|
+ Updated format of the output LHAPDF grids.
|
||||||
|
+ Implementation of semi-inclusive e^+e^- annihilation structure
|
||||||
|
functions,
|
||||||
|
+ Added flag to the apfel-config script to list the APFEL
|
||||||
|
functions.
|
||||||
|
- Changes from previous versions:
|
||||||
|
+ Long list of changes since previous packaged version, see NEWS
|
||||||
|
file.
|
||||||
|
- Packaging changes: Use LHAPDF 6.x (instead of 5.x) for building,
|
||||||
|
since apfel is now LHAPDFv6 compatible.
|
||||||
|
- Since version 2.3.0, building on 32-bit architectures is
|
||||||
|
unsupported by upstream.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu May 1 02:15:58 UTC 2014 - badshah400@gmail.com
|
Thu May 1 02:15:58 UTC 2014 - badshah400@gmail.com
|
||||||
|
|
||||||
|
@ -19,19 +19,19 @@
|
|||||||
%define bname apfel
|
%define bname apfel
|
||||||
|
|
||||||
Name: apfelgui
|
Name: apfelgui
|
||||||
Version: 2.0.1
|
Version: 2.3.3
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: A PDF Evolution Library
|
Summary: A PDF Evolution Library
|
||||||
License: GPL-3.0+
|
License: GPL-3.0+
|
||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
Url: http://apfel.hepforge.org/
|
Url: http://apfel.hepforge.org/
|
||||||
Source: http://apfel.hepforge.org/downloads/%{bname}-%{version}.tar.gz
|
Source: https://github.com/scarrazza/%{bname}/archive/%{version}.tar.gz
|
||||||
BuildRequires: apfel-devel = %{version}
|
BuildRequires: apfel-devel = %{version}
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
BuildRequires: gcc-fortran
|
BuildRequires: gcc-fortran
|
||||||
BuildRequires: hicolor-icon-theme
|
BuildRequires: hicolor-icon-theme
|
||||||
BuildRequires: ImageMagick
|
BuildRequires: ImageMagick
|
||||||
BuildRequires: lhapdf-devel <= 5.9.1
|
BuildRequires: LHAPDF-devel
|
||||||
BuildRequires: libqt4-devel
|
BuildRequires: libqt4-devel
|
||||||
BuildRequires: libroot-core-devel
|
BuildRequires: libroot-core-devel
|
||||||
BuildRequires: libroot-graf2d-gpad-devel
|
BuildRequires: libroot-graf2d-gpad-devel
|
||||||
|
@ -25,13 +25,13 @@ Summary: A PDF Evolution Library
|
|||||||
License: GPL-3.0+
|
License: GPL-3.0+
|
||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
Url: http://apfel.hepforge.org/
|
Url: http://apfel.hepforge.org/
|
||||||
Source: http://apfel.hepforge.org/downloads/%{bname}-%{version}.tar.gz
|
Source: https://github.com/scarrazza/%{bname}/archive/%{version}.tar.gz
|
||||||
BuildRequires: apfel-devel = %{version}
|
BuildRequires: apfel-devel = %{version}
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
BuildRequires: gcc-fortran
|
BuildRequires: gcc-fortran
|
||||||
BuildRequires: hicolor-icon-theme
|
BuildRequires: hicolor-icon-theme
|
||||||
BuildRequires: ImageMagick
|
BuildRequires: ImageMagick
|
||||||
BuildRequires: lhapdf-devel <= 5.9.1
|
BuildRequires: LHAPDF-devel
|
||||||
BuildRequires: libqt4-devel
|
BuildRequires: libqt4-devel
|
||||||
BuildRequires: libroot-core-devel
|
BuildRequires: libroot-core-devel
|
||||||
BuildRequires: libroot-graf2d-gpad-devel
|
BuildRequires: libroot-graf2d-gpad-devel
|
||||||
|
Loading…
Reference in New Issue
Block a user