pytest/pytest.spec

343 lines
9.7 KiB
RPMSpec
Raw Normal View History

%if 0%{?rhel} && 0%{?rhel} <= 6
%{!?__python2: %global __python2 /usr/bin/python2}
%{!?python2_sitelib: %global python2_sitelib %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
%endif
2014-04-18 14:10:38 +00:00
%if 0%{?fedora}
2011-08-11 08:49:09 +00:00
%global with_python3 1
%endif
2015-06-25 10:01:50 +00:00
%global pylib_version 1.4.29
2012-06-09 11:41:35 +00:00
2011-08-11 08:49:09 +00:00
Name: pytest
2016-01-24 23:58:55 +00:00
Version: 2.8.7
2015-12-30 21:33:58 +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
2016-01-22 21:46:20 +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: python2-devel
2011-08-11 08:49:09 +00:00
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}
2015-12-30 21:29:36 +00:00
BuildRequires: python-pexpect
BuildRequires: python-mock
BuildRequires: python-twisted-core
%if 0%{?with_python3}
2015-12-30 21:29:36 +00:00
BuildRequires: python3-pexpect
BuildRequires: python3-mock
%endif # with_python3
%endif # fedora
Provides: python2-%{name} = %{version}-%{release}
%{?python_provide:%python_provide python2-%{name}}
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}
%{?python_provide:%python_provide python3-%{name}}
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 -qc -n %{name}-%{version}
mv %{name}-%{version} python2
2011-08-11 08:49:09 +00:00
%if 0%{?with_python3}
cp -a python2 python3
2011-08-11 08:49:09 +00:00
%endif # with_python3
%build
pushd python2
%{__python2} setup.py build
2011-08-11 08:49:09 +00:00
%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
popd
2011-08-11 08:49:09 +00:00
%if 0%{?with_python3}
pushd python3
2011-08-11 08:49:09 +00:00
%{__python3} setup.py build
popd
%endif # with_python3
%install
pushd python2
%{__python2} setup.py install -O1 --skip-build --root %{buildroot}
ln -snf py.test-%{python2_version} %{buildroot}%{_bindir}/py.test-2
2011-08-11 08:49:09 +00:00
# remove shebangs from all scripts
find %{buildroot}%{python2_sitelib} -name '*.py' \
2011-08-11 08:49:09 +00:00
-exec sed -i -e '1{/^#!/d}' {} \;
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
rst2html README.rst > README.html
popd
2011-08-11 08:49:09 +00:00
%if 0%{?with_python3}
pushd python3
2011-08-11 08:49:09 +00:00
%{__python3} setup.py install -O1 --skip-build --root %{buildroot}
ln -snf py.test-%{python3_version} %{buildroot}%{_bindir}/py.test-3
2011-08-11 08:49:09 +00:00
# remove shebangs from all scripts
find %{buildroot}%{python3_sitelib} -name '*.py' \
-exec sed -i -e '1{/^#!/d}' {} \;
popd
%endif # with_python3
# use 2.X per default
ln -snf py.test-%{python2_version} %{buildroot}%{_bindir}/py.test
2011-08-11 08:49:09 +00:00
%check
pushd python2
PATH=%{buildroot}%{_bindir}:${PATH} \
PYTHONPATH=%{buildroot}%{python2_sitelib} \
2015-06-25 10:01:50 +00:00
%{buildroot}%{_bindir}/py.test-%{python2_version} -r s testing
popd
2011-08-11 08:49:09 +00:00
%if 0%{?with_python3}
pushd python3
PATH=%{buildroot}%{_bindir}:${PATH} \
2011-08-11 08:49:09 +00:00
PYTHONPATH=%{buildroot}%{python3_sitelib} \
2015-06-25 10:01:50 +00:00
%{buildroot}%{_bindir}/py.test-%{python3_version} -r s testing
2011-08-11 08:49:09 +00:00
popd
%endif # with_python3
%files
%doc python2/CHANGELOG
%doc python2/README.html
%doc python2/_htmldocs/html
%if 0%{?_licensedir:1}
%license python2/LICENSE
%else
%doc python2/LICENSE
%endif # licensedir
2011-08-11 08:49:09 +00:00
%{_bindir}/py.test
%{_bindir}/py.test-2
2015-06-25 10:01:50 +00:00
%{_bindir}/py.test-%{python2_version}
%{python2_sitelib}/*
2011-08-11 08:49:09 +00:00
%if 0%{?with_python3}
%files -n python3-pytest
%doc python3/CHANGELOG
# HTML docs generated with Python2 for now
%doc python2/README.html
%doc python2/_htmldocs/html
%if 0%{?_licensedir:1}
%license python3/LICENSE
%else
2015-06-25 10:01:50 +00:00
%doc python3/LICENSE
%endif # licensedir
%{_bindir}/py.test-3
2015-06-25 10:01:50 +00:00
%{_bindir}/py.test-%{python3_version}
2011-08-11 08:49:09 +00:00
%{python3_sitelib}/*
%endif # with_python3
%changelog
2016-01-24 23:58:55 +00:00
* Sun Jan 24 2016 Thomas Moschny <thomas.moschny@gmx.de> - 2.8.7-1
- Update to 2.8.7.
2016-01-22 21:46:20 +00:00
* Fri Jan 22 2016 Thomas Moschny <thomas.moschny@gmx.de> - 2.8.6-1
- Update to 2.8.6.
2015-12-30 21:33:58 +00:00
* Wed Dec 30 2015 Orion Poplawski <orion@cora.nwra.com> - 2.8.5-1
- Update to 2.8.5
2015-12-30 21:29:36 +00:00
* Wed Dec 30 2015 Orion Poplawski <orion@cora.nwra.com> - 2.8.2-3
- Re-enable pexpect in tests
* Wed Nov 11 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.2-2
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
2015-10-20 07:14:24 +00:00
* Tue Oct 20 2015 Thomas Moschny <thomas.moschny@gmx.de> - 2.8.2-1
- Update to 2.8.2.
2015-10-12 11:55:09 +00:00
* Mon Oct 12 2015 Robert Kuska <rkuska@redhat.com> - 2.7.3-2
- Rebuilt for Python3.5 rebuild
* Thu Sep 17 2015 Thomas Moschny <thomas.moschny@gmx.de> - 2.7.3-1
- Update to 2.7.3.
- Provide additional symlinks to the pytest executables (rhbz#1249891).
* Mon Sep 14 2015 Orion Poplawski <orion@cora.nwra.com> - 2.7.2-2
- Provide python2-pytest, use python_provide macro
2015-06-25 10:01:50 +00:00
* Thu Jun 25 2015 Thomas Moschny <thomas.moschny@gmx.de> - 2.7.2-1
- Update to 2.7.2.
- Small fixes.
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.7.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
2015-05-23 14:55:09 +00:00
* Sat May 23 2015 Thomas Moschny <thomas.moschny@gmx.de> - 2.7.1-1
- Update to 2.7.1.
* Mon Apr 20 2015 Thomas Moschny <thomas.moschny@gmx.de> - 2.7.0-1
- Update to 2.7.0.
- Apply updated Python packaging guidelines.
- Mark LICENSE with %%license.
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.