Update to 2.7.3.

- Provide additional symlinks to the pytest executables (rhbz#1249891).
This commit is contained in:
Thomas Moschny 2015-09-19 17:31:02 +02:00
parent 13edb5c359
commit fb09380e6f
3 changed files with 13 additions and 6 deletions

1
.gitignore vendored
View File

@ -19,3 +19,4 @@
/pytest-2.7.0.tar.gz /pytest-2.7.0.tar.gz
/pytest-2.7.1.tar.gz /pytest-2.7.1.tar.gz
/pytest-2.7.2.tar.gz /pytest-2.7.2.tar.gz
/pytest-2.7.3.tar.gz

View File

@ -10,8 +10,8 @@
%global pylib_version 1.4.29 %global pylib_version 1.4.29
Name: pytest Name: pytest
Version: 2.7.2 Version: 2.7.3
Release: 2%{?dist} Release: 1%{?dist}
Summary: Simple powerful testing with Python Summary: Simple powerful testing with Python
Group: Development/Languages Group: Development/Languages
@ -109,6 +109,7 @@ popd
%install %install
pushd python2 pushd python2
%{__python2} setup.py install -O1 --skip-build --root %{buildroot} %{__python2} setup.py install -O1 --skip-build --root %{buildroot}
ln -snf py.test-%{python2_version} %{buildroot}%{_bindir}/py.test-2
# remove shebangs from all scripts # remove shebangs from all scripts
find %{buildroot}%{python2_sitelib} -name '*.py' \ find %{buildroot}%{python2_sitelib} -name '*.py' \
@ -127,6 +128,7 @@ popd
%if 0%{?with_python3} %if 0%{?with_python3}
pushd python3 pushd python3
%{__python3} setup.py install -O1 --skip-build --root %{buildroot} %{__python3} setup.py install -O1 --skip-build --root %{buildroot}
ln -snf py.test-%{python3_version} %{buildroot}%{_bindir}/py.test-3
# remove shebangs from all scripts # remove shebangs from all scripts
find %{buildroot}%{python3_sitelib} -name '*.py' \ find %{buildroot}%{python3_sitelib} -name '*.py' \
@ -136,9 +138,7 @@ popd
%endif # with_python3 %endif # with_python3
# use 2.X per default # use 2.X per default
pushd %{buildroot}%{_bindir} ln -snf py.test-%{python2_version} %{buildroot}%{_bindir}/py.test
ln -snf py.test-%{python2_version} py.test
popd
%check %check
@ -167,6 +167,7 @@ popd
%doc python2/LICENSE %doc python2/LICENSE
%endif # licensedir %endif # licensedir
%{_bindir}/py.test %{_bindir}/py.test
%{_bindir}/py.test-2
%{_bindir}/py.test-%{python2_version} %{_bindir}/py.test-%{python2_version}
%{python2_sitelib}/* %{python2_sitelib}/*
@ -182,12 +183,17 @@ popd
%else %else
%doc python3/LICENSE %doc python3/LICENSE
%endif # licensedir %endif # licensedir
%{_bindir}/py.test-3
%{_bindir}/py.test-%{python3_version} %{_bindir}/py.test-%{python3_version}
%{python3_sitelib}/* %{python3_sitelib}/*
%endif # with_python3 %endif # with_python3
%changelog %changelog
* 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 * Mon Sep 14 2015 Orion Poplawski <orion@cora.nwra.com> - 2.7.2-2
- Provide python2-pytest, use python_provide macro - Provide python2-pytest, use python_provide macro

View File

@ -1 +1 @@
dcd8e891474d605b81fc7fcc8711e95b pytest-2.7.2.tar.gz a1aa94933d545d4a26fa23f96a77a78a pytest-2.7.3.tar.gz