diff --git a/1.0.1.tar.gz b/1.0.1.tar.gz deleted file mode 100644 index fcf65c6..0000000 Binary files a/1.0.1.tar.gz and /dev/null differ diff --git a/Werkzeug-2.0.3.tar.gz b/Werkzeug-2.0.3.tar.gz new file mode 100644 index 0000000..207ede1 Binary files /dev/null and b/Werkzeug-2.0.3.tar.gz differ diff --git a/python-werkzeug.spec b/python-werkzeug.spec index afcc1cf..ae58184 100644 --- a/python-werkzeug.spec +++ b/python-werkzeug.spec @@ -1,16 +1,16 @@ %global _empty_manifest_terminate_build 0 Name: python-werkzeug -Version: 1.0.1 -Release: 2 +Version: 2.0.3 +Release: 1 Summary: The comprehensive WSGI web application library. License: BSD-3-Clause URL: https://palletsprojects.com/p/werkzeug/ -Source0: https://github.com/pallets/werkzeug/archive/1.0.1.tar.gz +Source0: https://files.pythonhosted.org/packages/6c/a8/60514fade2318e277453c9588545d0c335ea3ea6440ce5cdabfca7f73117/Werkzeug-2.0.3.tar.gz BuildArch: noarch - BuildRequires: python3-werkzeug Requires: python3-pytest +Requires: python3-pytest-xprocess Requires: python3-pytest-timeout Requires: python3-coverage Requires: python3-tox @@ -41,10 +41,10 @@ It includes: locally. - A test client for simulating HTTP requests during testing without requiring running a server. -Werkzeug is Unicode aware and doesn't enforce any dependencies. It is up -to the developer to choose a template engine, database adapter, and even -how to handle requests. It can be used to build all sorts of end user -applications such as blogs, wikis, or bulletin boards. +Werkzeug doesn't enforce any dependencies. It is up to the developer to +choose a template engine, database adapter, and even how to handle +requests. It can be used to build all sorts of end user applications +such as blogs, wikis, or bulletin boards. `Flask`_ wraps Werkzeug, using it to handle the details of WSGI while providing more structure and patterns for defining powerful applications. @@ -52,13 +52,14 @@ applications. %package -n python3-werkzeug Summary: The comprehensive WSGI web application library. Provides: python-werkzeug -BuildRequires: python3-devel BuildRequires: python3-pytest +BuildRequires: python3-pytest-xprocess BuildRequires: python3-pytest-timeout BuildRequires: python3-requests -BuildRequires: python3-setuptools +BuildRequires: python3-devel BuildRequires: python3-cryptography BuildRequires: python3-greenlet +BuildRequires: python3-setuptools %description -n python3-werkzeug *werkzeug* German noun: "tool". Etymology: *werk* ("work"), *zeug* ("stuff") Werkzeug is a comprehensive `WSGI`_ web application library. It began as @@ -81,10 +82,10 @@ It includes: locally. - A test client for simulating HTTP requests during testing without requiring running a server. -Werkzeug is Unicode aware and doesn't enforce any dependencies. It is up -to the developer to choose a template engine, database adapter, and even -how to handle requests. It can be used to build all sorts of end user -applications such as blogs, wikis, or bulletin boards. +Werkzeug doesn't enforce any dependencies. It is up to the developer to +choose a template engine, database adapter, and even how to handle +requests. It can be used to build all sorts of end user applications +such as blogs, wikis, or bulletin boards. `Flask`_ wraps Werkzeug, using it to handle the details of WSGI while providing more structure and patterns for defining powerful applications. @@ -114,16 +115,16 @@ It includes: locally. - A test client for simulating HTTP requests during testing without requiring running a server. -Werkzeug is Unicode aware and doesn't enforce any dependencies. It is up -to the developer to choose a template engine, database adapter, and even -how to handle requests. It can be used to build all sorts of end user -applications such as blogs, wikis, or bulletin boards. +Werkzeug doesn't enforce any dependencies. It is up to the developer to +choose a template engine, database adapter, and even how to handle +requests. It can be used to build all sorts of end user applications +such as blogs, wikis, or bulletin boards. `Flask`_ wraps Werkzeug, using it to handle the details of WSGI while providing more structure and patterns for defining powerful applications. %prep -%autosetup -n werkzeug-1.0.1 +%autosetup -n Werkzeug-2.0.3 %build %py3_build @@ -157,8 +158,7 @@ mv %{buildroot}/filelist.lst . mv %{buildroot}/doclist.lst . %check -PYTHONPATH=%{buildroot}%{python3_sitelib} -/usr/bin/pytest -p no:unraisableexception +PYTHONPATH=%{buildroot}%{python3_sitelib} pytest -k "not (test_reloader_sys_path)" %files -n python3-werkzeug -f filelist.lst %dir %{python3_sitelib}/* @@ -167,6 +167,9 @@ PYTHONPATH=%{buildroot}%{python3_sitelib} %{_docdir}/* %changelog +* Fri Jun 17 2022 jiangpengju - 2.0.3-1 +- Upgrade python-werkzeug version to 2.0.3 + * Mon Nov 15 2021 xu_ping -1.0.1-2 - fix test failures due to unhandled exceptions being thrown without being propagated to caller.