[python-waitress] Fix description and __python macro

Lorenzo Gil Sánchez lgs at fedoraproject.org
Tue Jul 15 03:41:47 UTC 2014


commit 9183a712de9245fbcc122176580eb8d3a26cf5b2
Author: Lorenzo Gil Sanchez <lorenzo.gil.sanchez at gmail.com>
Date:   Mon Jul 14 20:41:36 2014 -0700

    Fix description and __python macro

 python-waitress.spec |   18 +++++++++++-------
 1 files changed, 11 insertions(+), 7 deletions(-)
---
diff --git a/python-waitress.spec b/python-waitress.spec
index a487541..2650629 100644
--- a/python-waitress.spec
+++ b/python-waitress.spec
@@ -2,7 +2,7 @@
 
 Name:           python-waitress
 Version:        0.8.9
-Release:        3%{?dist}
+Release:        4%{?dist}
 Summary:        Waitress WSGI server
 
 License:        ZPLv2.1
@@ -44,7 +44,7 @@ in the Python standard library. It runs on CPython on Unix and Windows under
 Python 2.6+ and Python 3.2. It is also known to run on PyPy 1.6.0 on UNIX.
 It supports HTTP/1.0 and HTTP/1.1.
 
-For more information, see %{_docdir}/%{name}-%{version}/docs or
+For more information, see %{_pkgdocdir}/docs or
 http://docs.pylonsproject.org/projects/waitress/en/latest/ .
 
 %prep
@@ -59,7 +59,7 @@ cp -a . %{py3dir}
 
 
 %build
-%{__python} setup.py build
+%{__python2} setup.py build
 
 pushd %{py3dir}
 %{__python3} setup.py build
@@ -72,7 +72,7 @@ pushd %{py3dir}
 %{__python3} setup.py install --skip-build --root $RPM_BUILD_ROOT
 popd
 
-%{__python} setup.py install --skip-build --root $RPM_BUILD_ROOT
+%{__python2} setup.py install --skip-build --root $RPM_BUILD_ROOT
 
 
 %check
@@ -81,7 +81,7 @@ popd
 # Usually the testsuite is run after installing
 # the package in develop mode but we can't install
 # in develop mode here.
-PYTHONPATH=. %{__python} setup.py nosetests
+PYTHONPATH=. %{__python2} setup.py nosetests
 
 pushd %{py3dir}
 PYTHONPATH=. %{__python3} setup.py nosetests
@@ -91,8 +91,8 @@ popd
 %files
 %doc README.rst CHANGES.txt COPYRIGHT.txt LICENSE.txt docs
 %{_bindir}/waitress-serve
-%{python_sitelib}/waitress
-%{python_sitelib}/waitress-%{version}-py2.?.egg-info
+%{python2_sitelib}/waitress
+%{python2_sitelib}/waitress-%{version}-py2.?.egg-info
 
 %files -n python3-waitress
 %doc README.rst CHANGES.txt COPYRIGHT.txt LICENSE.txt docs
@@ -102,6 +102,10 @@ popd
 
 %changelog
 
+* Mon Jul 14 2014 Lorenzo Gil Sanchez <lorenzo.gil.sanchez at gmail.com> - 0.8.9-4
+- Fix comment in %description about versioned directory for docs
+- Use __python2 macro instead of __python
+
 * Sat Jun 14 2014 Lorenzo Gil Sanchez <lorenzo.gil.sanchez at gmail.com> - 0.8.9-3
 - Run the tests with nose to avoid unclosed socket errors
 


More information about the scm-commits mailing list