You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
python-olefile/python-olefile.spec

115 lines
3.3 KiB

8 years ago
%global srcname olefile
%global _description \
olefile is a Python package to parse, read and write Microsoft OLE2 files\
(also called Structured Storage, Compound File Binary Format or Compound\
Document File Format), such as Microsoft Office 97-2003 documents,\
vbaProject.bin in MS Office 2007+ files, Image Composer and FlashPix files,\
Outlook messages, StickyNotes, several Microscopy file formats, McAfee\
antivirus quarantine files, etc.
Name: python-%{srcname}
Version: 0.44
Release: 3%{?dist}
8 years ago
Summary: Python package to parse, read and write Microsoft OLE2 files
License: BSD
8 years ago
URL: https://pypi.python.org/pypi/olefile/
Source0: https://files.pythonhosted.org/packages/source/o/%{srcname}/%{srcname}-%{version}.zip
8 years ago
# Don't install docs (they are installed through %%doc)
Patch0: olefile_skip-doc.patch
BuildArch: noarch
%description %{_description}
%package -n python2-%{srcname}
Summary: %{summary}
BuildRequires: python2-devel
8 years ago
BuildRequires: python2-sphinx
8 years ago
%{?python_provide:%python_provide python2-%{srcname}}
%description -n python2-%{srcname} %{_description}
Python2 version.
%package -n python3-%{srcname}
Summary: %{summary}
BuildRequires: python3-devel
8 years ago
BuildRequires: python3-sphinx
8 years ago
%{?python_provide:%python_provide python3-%{srcname}}
%description -n python3-%{srcname} %{_description}
Python3 version.
%prep
%autosetup -p1 -n %{srcname}-%{version}
%build
%py2_build
8 years ago
make -C doc html BUILDDIR=_build_py2 SPHINXBUILD=sphinx-build-%python2_version
8 years ago
%py3_build
8 years ago
make -C doc html BUILDDIR=_build_py3 SPHINXBUILD=sphinx-build-%python3_version
8 years ago
%install
%py2_install
%py3_install
%check
8 years ago
# Tests got left out in the 0.44 source archive
# https://github.com/decalage2/olefile/issues/56
# PYTHONPATH=%%{buildroot}%%{python2_sitelib} %%{__python2} tests/test_olefile.py
# PYTHONPATH=%%{buildroot}%%{python3_sitelib} %%{__python3} tests/test_olefile.py
8 years ago
%files -n python2-%{srcname}
8 years ago
%doc README.md doc/_build_py2/html
%license doc/License.rst
8 years ago
%{python2_sitelib}/OleFileIO_PL.py*
%{python2_sitelib}/olefile-*.egg-info
%{python2_sitelib}/olefile/
%files -n python3-%{srcname}
8 years ago
%doc README.md doc/_build_py3/html
%license doc/License.rst
8 years ago
%{python3_sitelib}/OleFileIO_PL.py*
%{python3_sitelib}/__pycache__/OleFileIO_PL.*
%{python3_sitelib}/olefile-*.egg-info
%{python3_sitelib}/olefile/
%changelog
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.44-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.44-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
8 years ago
* Thu Jan 12 2017 Sandro Mani <manisandro@gmail.com> - 0.44-1
- Update to 0.44
8 years ago
* Mon Jan 02 2017 Sandro Mani <manisandro@gmail.com> - 0.44-0.4.gitbc9d196
- Fix incorrect line endings
- Remove shebang from non-executable scripts
* Mon Jan 02 2017 Sandro Mani <manisandro@gmail.com> - 0.44-0.3.gitbc9d196
- Further reduce duplicate text
- Add python_provides
* Mon Jan 02 2017 Sandro Mani <manisandro@gmail.com> - 0.44-0.2.gitbc9d196
- Use %%py_build and %%py_install macros
- Use %%summary, %%url to reduce duplicate text
- Add %%check
- Move BR to subpackages
* Mon Jan 02 2017 Sandro Mani <manisandro@gmail.com> - 0.44-0.1.gitbc9d196
- Initial package