Hello community,
here is the log from the commit of package python-waitress for openSUSE:Factory
checked in at 2019-03-01 20:28:42
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-waitress (Old)
and /work/SRC/openSUSE:Factory/.python-waitress.new.28833 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-waitress"
Fri Mar 1 20:28:42 2019 rev:13 rq:679188 version:1.2.1
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-waitress/python-waitress.changes
2018-12-24 11:46:00.701206545 +0100
+++
/work/SRC/openSUSE:Factory/.python-waitress.new.28833/python-waitress.changes
2019-03-01 20:28:46.906020589 +0100
@@ -1,0 +2,16 @@
+Mon Feb 25 19:47:04 UTC 2019 - Todd R <[email protected]>
+
+- Add fetch-intersphinx-inventories.sh to sources
+- Add local-intersphinx-inventories.patch for generating the docs
+ correctly
+
+-------------------------------------------------------------------
+Thu Feb 7 14:56:02 UTC 2019 - Hans-Peter Jansen <[email protected]>
+
+- update to version 1.2.1:
+ too many changes to list here, see:
+ https://github.com/Pylons/waitress/blob/master/CHANGES.txt
+ or even:
+ https://github.com/Pylons/waitress/commits/master
+
+-------------------------------------------------------------------
Old:
----
waitress-1.1.0.tar.gz
New:
----
fetch-intersphinx-inventories.sh
local-intersphinx-inventories.patch
python3.inv
waitress-1.2.1.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-waitress.spec ++++++
--- /var/tmp/diff_new_pack.qQp6BQ/_old 2019-03-01 20:28:48.138020292 +0100
+++ /var/tmp/diff_new_pack.qQp6BQ/_new 2019-03-01 20:28:48.146020290 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python-waitress
#
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -20,16 +20,26 @@
# Tests require a network connection
%bcond_with tests
Name: python-waitress
-Version: 1.1.0
+Version: 1.2.1
Release: 0
Summary: Waitress WSGI server
License: ZPL-2.1
Group: Development/Languages/Python
URL: https://github.com/Pylons/waitress
Source:
https://files.pythonhosted.org/packages/source/w/waitress/waitress-%{version}.tar.gz
+# intersphinx inventories, as fetched with fetch-intersphinx-inventories.sh
+# https://docs.python.org/3/objects.inv -> python3.inv
+Source1: python3.inv
+Source2: fetch-intersphinx-inventories.sh
+Patch: local-intersphinx-inventories.patch
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
+# SECTION documentation requirements
+BuildRequires: python3-Sphinx
+BuildRequires: python3-docutils
+BuildRequires: python3-pylons-sphinx-themes
+# /SECTION
BuildArch: noarch
%if %{with tests}
# Test requirements:
@@ -41,17 +51,29 @@
Waitress is meant to be a production-quality pure-Python WSGI server with very
acceptable performance. It has no dependencies except ones which live 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
+2.7+ and Python 3.4+. 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 the "docs" directory of the Waitress package or
http://docs.pylonsproject.org/projects/waitress/en/latest/ .
+%package doc
+Summary: Documentation for %{name}
+Group: Documentation/HTML
+Requires: %{name} = %{version}
+
+%description doc
+This package contains documentation files for %{name}.
+
%prep
%setup -q -n waitress-%{version}
+%patch -p1
+cp %{S:1} docs/
%build
%python_build
+export SPHINXOPTS=-vvv
+python3 setup.py build_sphinx && rm build/sphinx/html/.buildinfo
%install
%python_install
@@ -68,4 +90,8 @@
%python3_only %{_bindir}/waitress-serve
%{python_sitelib}/*
+%files %{python_files doc}
+%license LICENSE.txt
+%doc build/sphinx/html
+
%changelog
++++++ fetch-intersphinx-inventories.sh ++++++
#!/bin/sh
wget -O python3.inv https://docs.python.org/3/objects.inv
++++++ local-intersphinx-inventories.patch ++++++
Index: b/docs/conf.py
===================================================================
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -32,7 +32,7 @@ extensions = [
]
intersphinx_mapping = {
- 'python': ('https://docs.python.org/3/', None),
+ 'python': ('https://docs.python.org/3/', 'python3.inv'),
}
# Add any paths that contain templates here, relative to this directory.
++++++ waitress-1.1.0.tar.gz -> waitress-1.2.1.tar.gz ++++++
++++ 7802 lines of diff (skipped)