pytest/pytest.spec

280 lines
7.6 KiB
RPMSpec
Raw Normal View History

2014-04-18 14:10:38 +00:00
%if 0%{?fedora}
2011-08-11 08:49:09 +00:00
%global with_python3 1
%endif
%if 0%{?rhel} && 0%{?rhel} < 6
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
%endif
2014-12-02 19:28:09 +00:00
%global pylib_version 1.4.26
2012-06-09 11:41:35 +00:00
2011-08-11 08:49:09 +00:00
Name: pytest
2014-12-02 19:28:09 +00:00
Version: 2.6.4
2014-08-01 17:06:52 +00:00
Release: 1%{?dist}
2011-08-11 08:49:09 +00:00
Summary: Simple powerful testing with Python
Group: Development/Languages
License: MIT
URL: http://pytest.org
2013-05-25 13:00:09 +00:00
Source0: http://pypi.python.org/packages/source/p/%{name}/%{name}-%{version}.tar.gz
2011-08-11 08:49:09 +00:00
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
BuildRequires: python-devel
BuildRequires: python-setuptools
Requires: python-setuptools
2012-06-09 11:41:35 +00:00
BuildRequires: python-py >= %{pylib_version}
Requires: python-py >= %{pylib_version}
%if 0%{?rhel} > 6 || 0%{?fedora}
2011-08-11 08:49:09 +00:00
BuildRequires: python-sphinx
%else
BuildRequires: python-sphinx10
%endif # fedora
BuildRequires: python-docutils
2011-08-11 08:49:09 +00:00
%if 0%{?with_python3}
BuildRequires: python3-devel
BuildRequires: python3-setuptools
2012-06-09 11:41:35 +00:00
BuildRequires: python3-py >= %{pylib_version}
2011-08-11 08:49:09 +00:00
%endif # with_python3
# pytest was separated from pylib at that point
Conflicts: python-py < 1.4.0
# used by the testsuite, if present:
%if 0%{?fedora}
# if pexpect is present, the testsuite fails on F19 due to
# http://bugs.python.org/issue17998
#BuildRequires: python-pexpect
BuildRequires: python-mock
BuildRequires: python-twisted-core
%if 0%{?with_python3}
#BuildRequires: python3-pexpect
BuildRequires: python3-mock
%endif # with_python3
%endif # fedora
2011-08-11 08:49:09 +00:00
%description
py.test provides simple, yet powerful testing for Python.
%if 0%{?with_python3}
%package -n python3-pytest
Summary: Simple powerful testing with Python
Group: Development/Languages
2011-09-03 13:38:10 +00:00
Requires: python3-setuptools
2012-06-09 11:41:35 +00:00
Requires: python3-py >= %{pylib_version}
2011-08-11 08:49:09 +00:00
%description -n python3-pytest
py.test provides simple, yet powerful testing for Python.
%endif # with_python3
%prep
%setup -q
%if 0%{?with_python3}
cp -a . %{py3dir}
%endif # with_python3
%build
%{__python} setup.py build
%if 0%{?rhel} > 6 || 0%{?fedora}
2012-10-21 16:51:52 +00:00
for l in doc/* ; do
make -C $l html PYTHONPATH=$(pwd)
done
%else
2012-10-21 16:51:52 +00:00
for l in doc/* ; do
make -C $l html SPHINXBUILD=sphinx-1.0-build PYTHONPATH=$(pwd)
done
%endif # fedora
2011-08-11 08:49:09 +00:00
%if 0%{?with_python3}
pushd %{py3dir}
%{__python3} setup.py build
popd
%endif # with_python3
%install
rm -rf %{buildroot}
%{__python} setup.py install -O1 --skip-build --root %{buildroot}
# remove shebangs from all scripts
find %{buildroot}%{python_sitelib} -name '*.py' \
-exec sed -i -e '1{/^#!/d}' {} \;
%if 0%{?with_python3}
pushd %{py3dir}
%{__python3} setup.py install -O1 --skip-build --root %{buildroot}
# remove shebangs from all scripts
find %{buildroot}%{python3_sitelib} -name '*.py' \
-exec sed -i -e '1{/^#!/d}' {} \;
popd
%endif # with_python3
2012-10-21 16:51:52 +00:00
mkdir -p _htmldocs/html
for l in doc/* ; do
# remove hidden file
rm ${l}/_build/html/.buildinfo
mv ${l}/_build/html _htmldocs/html/${l##doc/}
done
2011-08-11 08:49:09 +00:00
rst2html README.rst > README.html
2011-08-11 08:49:09 +00:00
# use 2.X per default
pushd %{buildroot}%{_bindir}
ln -snf py.test-2.* py.test
popd
%clean
rm -rf %{buildroot}
%check
PATH=%{buildroot}%{_bindir}:${PATH} \
2011-08-11 08:49:09 +00:00
PYTHONPATH=%{buildroot}%{python_sitelib} \
%{buildroot}%{_bindir}/py.test -r s testing
2011-08-11 08:49:09 +00:00
%if 0%{?with_python3}
pushd %{py3dir}
PATH=%{buildroot}%{_bindir}:${PATH} \
2011-08-11 08:49:09 +00:00
PYTHONPATH=%{buildroot}%{python3_sitelib} \
%{buildroot}%{_bindir}/py.test-3.* -r s testing
2011-08-11 08:49:09 +00:00
popd
%endif # with_python3
%files
%defattr(-,root,root,-)
%doc CHANGELOG LICENSE README.html
2012-10-21 16:51:52 +00:00
%doc _htmldocs/html
2011-08-11 08:49:09 +00:00
%{_bindir}/py.test
%{_bindir}/py.test-2.*
%{python_sitelib}/*
%if 0%{?with_python3}
%files -n python3-pytest
%defattr(-,root,root,-)
%doc CHANGELOG LICENSE README.html
2012-10-21 16:51:52 +00:00
%doc _htmldocs/html
2011-08-11 08:49:09 +00:00
%{_bindir}/py.test-3.*
%{python3_sitelib}/*
%endif # with_python3
%changelog
2014-12-02 19:28:09 +00:00
* Tue Dec 2 2014 Thomas Moschny <thomas.moschny@gmx.de> - 2.6.4-1
- Update to 2.6.4.
2014-10-11 12:54:36 +00:00
* Sat Oct 11 2014 Thomas Moschny <thomas.moschny@gmx.de> - 2.6.3-1
- Update to 2.6.3.
2014-08-08 13:27:21 +00:00
* Fri Aug 8 2014 Thomas Moschny <thomas.moschny@gmx.de> - 2.6.1-1
- Update to 2.6.1.
2014-08-01 17:06:52 +00:00
* Fri Aug 1 2014 Thomas Moschny <thomas.moschny@gmx.de> - 2.6.0-1
- Update to 2.6.0.
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.2-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
2014-05-09 20:34:50 +00:00
* Fri May 09 2014 Dennis Gilmore <dennis@ausil.us> - 2.5.2-2
- Redbuild for python 3.4
2014-04-18 14:10:38 +00:00
* Fri Apr 18 2014 Thomas Moschny <thomas.moschny@gmx.de> - 2.5.2-1
- Update to 2.5.2.
* Mon Oct 7 2013 Thomas Moschny <thomas.moschny@gmx.de> - 2.4.2-2
- Only run tests from the 'testing' subdir in %%check.
* Sat Oct 5 2013 Thomas Moschny <thomas.moschny@gmx.de> - 2.4.2-1
- Update to 2.4.2.
- Add buildroot's bindir to PATH while running the testsuite.
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.5-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
* Thu Jun 13 2013 Thomas Moschny <thomas.moschny@gmx.de> - 2.3.5-3
- Disable tests using pexpect for now, fails on F19.
* Wed Jun 12 2013 Thomas Moschny <thomas.moschny@gmx.de> - 2.3.5-2
- Use python-sphinx for rhel > 6 (rhbz#973318).
- Update BR to use python-pexpect instead of pexpect.
2013-05-25 13:00:09 +00:00
* Sat May 25 2013 Thomas Moschny <thomas.moschny@gmx.de> - 2.3.5-1
- Update to 2.3.5.
- Docutils needed now to build README.html.
- Add some BR optionally used by the testsuite.
2013-05-25 13:00:09 +00:00
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.4-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
2012-11-24 15:25:18 +00:00
* Fri Nov 23 2012 Thomas Moschny <thomas.moschny@gmx.de> - 2.3.4-1
- Update to 2.3.4.
2012-10-28 09:18:10 +00:00
* Sun Oct 28 2012 Thomas Moschny <thomas.moschny@gmx.de> - 2.3.2-1
- Update to 2.3.2.
2012-10-21 16:51:52 +00:00
* Sun Oct 21 2012 Thomas Moschny <thomas.moschny@gmx.de> - 2.3.1-1
- Update to 2.3.1.
- Re-enable some tests, ignore others.
- Docs are available in English and Japanese now.
* Thu Oct 11 2012 Thomas Moschny <thomas.moschny@gmx.de> - 2.2.4-4
- Add conditional for sphinx on rhel.
- Remove rhel logic from with_python3 conditional.
2012-10-12 18:08:44 +00:00
- Disable failing tests for Python3.
* Sat Aug 04 2012 David Malcolm <dmalcolm@redhat.com> - 2.2.4-3
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.4-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
2012-06-09 11:41:35 +00:00
* Wed Jun 6 2012 Thomas Moschny <thomas.moschny@gmx.de> - 2.2.4-1
- Update to 2.2.4.
2012-02-08 18:26:49 +00:00
* Wed Feb 8 2012 Thomas Moschny <thomas.moschny@gmx.de> - 2.2.3-1
- Update to 2.2.3.
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
2011-12-17 13:55:31 +00:00
* Sat Dec 17 2011 Thomas Moschny <thomas.moschny@gmx.de> - 2.2.1-1
- Update to 2.2.1.
2011-12-13 18:36:13 +00:00
* Tue Dec 13 2011 Thomas Moschny <thomas.moschny@gmx.de> - 2.2.0-1
- Update to 2.2.0.
2011-10-26 18:26:03 +00:00
* Wed Oct 26 2011 Thomas Moschny <thomas.moschny@gmx.de> - 2.1.3-1
- Update to 2.1.3.
* Tue Sep 27 2011 Thomas Moschny <thomas.moschny@gmx.de> - 2.1.2-1
- Update to 2.1.2.
2011-09-03 13:38:10 +00:00
* Sat Sep 3 2011 Thomas Moschny <thomas.moschny@gmx.de> - 2.1.1-2
- Fix: python3 dependencies.
2011-08-30 20:01:11 +00:00
* Sun Aug 28 2011 Thomas Moschny <thomas.moschny@gmx.de> - 2.1.1-1
- Update to 2.1.1.
* Thu Aug 11 2011 Thomas Moschny <thomas.moschny@gmx.de> - 2.1.0-2
- Update Requires and BuildRequires tags.
2011-08-11 08:49:09 +00:00
* Tue Aug 9 2011 Thomas Moschny <thomas.moschny@gmx.de> - 2.1.0-1
- Update to 2.1.0.
* Mon May 30 2011 Thomas Moschny <thomas.moschny@gmx.de> - 2.0.3-1
- Update to 2.0.3.
* Thu Mar 17 2011 Thomas Moschny <thomas.moschny@gmx.de> - 2.0.2-1
- Update to 2.0.2.
* Sun Jan 16 2011 Thomas Moschny <thomas.moschny@gmx.de> - 2.0.0-1
- New package.