h5py/h5py.spec

174 lines
5.0 KiB
RPMSpec
Raw Normal View History

2012-12-06 18:29:13 +00:00
%global with_python3 1
2011-07-10 16:30:08 +00:00
%{?filter_provides_in: %filter_provides_in .*/h5py/.*\.so}
%{?filter_setup}
Summary: A Python interface to the HDF5 library
Name: h5py
Version: 2.1.3
Release: 2%{?dist}
2011-07-10 16:30:08 +00:00
Group: Applications/Engineering
License: BSD
URL: http://h5py.alfven.org/
Source0: http://h5py.googlecode.com/files/h5py-%{version}.tar.gz
# patch to use a system liblzf rather than bundled liblzf
2012-12-06 18:29:13 +00:00
Patch0: h5py-2.1.0-system-lzf.patch
Patch1: h5py-2.1.3-73f2d71.patch
Patch2: h5py-2.1.3-8f7fba1.patch
2012-12-06 18:29:13 +00:00
BuildRequires: liblzf-devel
BuildRequires: hdf5-devel >= 1.8.3
2012-01-24 10:41:07 +00:00
BuildRequires: python-devel >= 2.6
2011-07-10 16:30:08 +00:00
BuildRequires: python-sphinx
BuildRequires: numpy >= 1.0.3
BuildRequires: Cython
2012-12-06 18:29:13 +00:00
%if 0%{?with_python3}
BuildRequires: python-tools
BuildRequires: python3-devel >= 3.2
BuildRequires: python3-sphinx
BuildRequires: python3-numpy >= 1.0.3
BuildRequires: python3-Cython
2012-12-06 18:29:13 +00:00
%endif
2011-07-10 16:30:08 +00:00
Requires: numpy >= 1.0.3
2012-12-06 18:29:13 +00:00
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
2011-07-10 16:30:08 +00:00
%description
The h5py package provides both a high- and low-level interface to the
HDF5 library from Python. The low-level interface is intended to be a
complete wrapping of the HDF5 API, while the high-level component
supports access to HDF5 files, data sets and groups using established
Python and NumPy concepts.
A strong emphasis on automatic conversion between Python (Numpy)
data types and data structures and their HDF5 equivalents vastly
simplifies the process of reading and writing data from Python.
2012-12-06 18:29:13 +00:00
%if 0%{?with_python3}
%package -n python3-h5py
Summary: A Python 3 interface to the HDF5 library
Group: Applications/Engineering
Requires: python3-numpy >= 1.0.3
%description -n python3-h5py
The h5py package provides both a high- and low-level interface to the
HDF5 library from Python. The low-level interface is intended to be a
complete wrapping of the HDF5 API, while the high-level component
supports access to HDF5 files, data sets and groups using established
Python and NumPy concepts.
A strong emphasis on automatic conversion between Python (Numpy)
data types and data structures and their HDF5 equivalents vastly
simplifies the process of reading and writing data from Python.
This is the Python 3 version of h5py.
%endif
2011-07-10 16:30:08 +00:00
%prep
%setup -q
# use system libzlf and remove private copy
%patch0 -p1
2011-07-10 16:30:08 +00:00
rm -rf lzf/lzf
%patch1 -p1
%patch2 -p1
pushd h5py
%{__python} api_gen.py
popd
2012-12-06 18:29:13 +00:00
%if 0%{?with_python3}
rm -rf %{py3dir}
cp -a . %{py3dir}
%endif
2011-07-10 16:30:08 +00:00
%build
export CFLAGS="%{optflags} -fopenmp -llzf"
%{__python} setup.py build
2012-12-06 18:29:13 +00:00
%if 0%{?with_python3}
pushd %{py3dir}
%{__python3} setup.py build
popd
%endif
2011-07-10 16:30:08 +00:00
%install
rm -rf %{buildroot}
%{__python} setup.py install -O1 --skip-build --root %{buildroot}
chmod 0755 %{buildroot}%{python_sitearch}/%{name}/*.so
2012-12-06 18:29:13 +00:00
%if 0%{?with_python3}
pushd %{py3dir}
%{__python3} setup.py install -O1 --skip-build --root %{buildroot}
chmod 0755 %{buildroot}%{python3_sitearch}/%{name}/*.so
%endif
2011-07-10 16:30:08 +00:00
%check
%{__python} setup.py test || :
2012-12-06 18:29:13 +00:00
%if 0%{?with_python3}
pushd %{py3dir}
%{__python3} setup.py test || :
popd
2012-12-06 18:29:13 +00:00
%endif
2011-07-10 16:30:08 +00:00
%clean
rm -rf %{buildroot}
%files
%defattr(-, root, root, -)
2012-12-06 18:29:13 +00:00
%doc ANN.txt README.txt examples
2011-07-10 16:30:08 +00:00
%{python_sitearch}/%{name}/
2012-01-24 10:41:07 +00:00
%{python_sitearch}/%{name}-%{version}-*.egg-info
2011-07-10 16:30:08 +00:00
2012-12-06 18:29:13 +00:00
%if 0%{?with_python3}
%files -n python3-h5py
%defattr(-, root, root, -)
%doc ANN.txt README.txt
%{python3_sitearch}/%{name}/
%{python3_sitearch}/%{name}-%{version}-*.egg-info
%endif
2011-07-10 16:30:08 +00:00
%changelog
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.3-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
* Mon Jun 10 2013 Terje Rosten <terje.rosten@ntnu.no> - 2.1.3-1
- 2.1.3
- add Python 3 import patches (#962250)
2013-05-16 18:17:17 +00:00
* Thu May 16 2013 Orion Poplawski <orion@cora.nwra.com> - 2.1.0-3
- rebuild for hdf5 1.8.11
2013-05-16 18:17:17 +00:00
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.0-2
- rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
2012-12-06 18:29:13 +00:00
* Thu Dec 06 2012 Terje Rosten <terje.rosten@ntnu.no> - 2.1.0-1
- 2.1.0
- add Python 3 subpackage
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.1-2
2012-12-06 18:29:13 +00:00
- rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
2012-01-24 10:41:07 +00:00
* Tue Jan 24 2012 Terje Rosten <terje.rosten@ntnu.no> - 2.0.1-1
- 2.0.1
- docs is removed
- rebase patch
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.1-5
2012-12-06 18:29:13 +00:00
- rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
2011-07-10 16:30:08 +00:00
* Mon May 23 2011 Terje Rosten <terje.rosten@ntnu.no> - 1.3.1-4
- add patch from Steve Traylen (thanks!) to use system liblzf
* Thu Jan 13 2011 Terje Rosten <terje.rosten@ntnu.no> - 1.3.1-3
- fix buildroot
- add filter
- don't remove egg-info files
- remove explicit hdf5 req
* Sun Jan 2 2011 Terje Rosten <terje.rosten@ntnu.no> - 1.3.1-2
- build and ship docs as html
* Mon Dec 27 2010 Terje Rosten <terje.rosten@ntnu.no> - 1.3.1-1
- 1.3.1
- license is BSD only
- run tests
- new url
* Sat Jul 3 2009 Joseph Smidt <josephsmidt@gmail.com> - 1.2.0-1
- initial RPM release