SHA256
1
0
forked from pool/python-Flask
python-Flask/python-Flask.spec

117 lines
3.3 KiB
RPMSpec
Raw Normal View History

#
# spec file for package python-Flask
#
# Copyright (c) 2022 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%if 0%{?suse_version} > 1500
%bcond_without libalternatives
%else
%bcond_with libalternatives
%endif
%define oldpython python
%define skip_python2 1
%define skip_python36 1
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-Flask
Version: 2.1.0
Release: 0
Summary: A microframework based on Werkzeug, Jinja2 and good intentions
License: BSD-3-Clause
Group: Development/Languages/Python
URL: https://flask.palletsprojects.com
Source: https://files.pythonhosted.org/packages/source/F/Flask/Flask-%{version}.tar.gz
BuildRequires: %{python_module Jinja2 >= 3.0}
BuildRequires: %{python_module Werkzeug >= 2.0}
BuildRequires: %{python_module click >= 8.0.0}
BuildRequires: %{python_module contextvars}
BuildRequires: %{python_module itsdangerous >= 2.0}
BuildRequires: %{python_module pytest >= 6.2.4}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros >= 20210929
Requires: python-Jinja2 >= 3.0
Requires: python-Werkzeug >= 2.0
Requires: python-click >= 7.1.2
Requires: python-itsdangerous >= 2.0
%if %{with libalternatives}
Requires: alts
BuildRequires: alts
%else
Requires(post): update-alternatives
Requires(postun):update-alternatives
%endif
Accepting request 141541 from devel:languages:python - Disable testsuite on SLE_11_SP2 - Update to version 0.9: + The :func:flask.Request.on_json_loading_failed now returns a JSON formatted response by default. + The :func:flask.url_for function now can generate anchors to the generated links. + The :func:flask.url_for function now can also explicitly generate URL rules specific to a given HTTP method. + Logger now only returns the debug log setting if it was not set explicitly. + Unregister a circular dependency between the WSGI environment and the request object when shutting down the request. This means that environ werkzeug.request will be None after the response was returned to the WSGI server but has the advantage that the garbage collector is not needed on CPython to tear down the request unless the user created circular dependencies themselves. + Session is now stored after callbacks so that if the session payload is stored in the session you can still modify it in an after request callback. + The :class:flask.Flask class will avoid importing the provided import name if it can (the required first parameter), to benefit tools which build Flask instances programmatically. The Flask class will fall back to using import on systems with custom module hooks, e.g. Google App Engine, or when the import name is inside a zip archive (usually a .egg) prior to Python 2.7. + Blueprints now have a decorator to add custom template filters application wide, :meth:flask.Blueprint.app_template_filter. + The Flask and Blueprint classes now have a non-decorator method for adding custom template filters application wide, :meth:flask.Flask.add_template_filter and OBS-URL: https://build.opensuse.org/request/show/141541 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Flask?expand=0&rev=8
2012-11-17 07:27:32 +01:00
BuildArch: noarch
%if %{?suse_version} < 1500
BuildRequires: python
%endif
%python_subpackages
%description
Flask is a microframework for Python based on Werkzeug, Jinja 2 and good
intentions. And before you ask: It's BSD licensed!
%package doc
Summary: Documentation for python-Flask
Group: Documentation/Other
Requires: %{name} = %{version}
%description doc
This package contains HTML documentation, including tutorials and API
reference for python-Flask.
%prep
%setup -q -n Flask-%{version}
%build
%python_build
# cd docs && make html
%install
%python_install
%python_clone -a %{buildroot}%{_bindir}/flask
%python_expand %fdupes %{buildroot}%{$python_sitelib}
Accepting request 141541 from devel:languages:python - Disable testsuite on SLE_11_SP2 - Update to version 0.9: + The :func:flask.Request.on_json_loading_failed now returns a JSON formatted response by default. + The :func:flask.url_for function now can generate anchors to the generated links. + The :func:flask.url_for function now can also explicitly generate URL rules specific to a given HTTP method. + Logger now only returns the debug log setting if it was not set explicitly. + Unregister a circular dependency between the WSGI environment and the request object when shutting down the request. This means that environ werkzeug.request will be None after the response was returned to the WSGI server but has the advantage that the garbage collector is not needed on CPython to tear down the request unless the user created circular dependencies themselves. + Session is now stored after callbacks so that if the session payload is stored in the session you can still modify it in an after request callback. + The :class:flask.Flask class will avoid importing the provided import name if it can (the required first parameter), to benefit tools which build Flask instances programmatically. The Flask class will fall back to using import on systems with custom module hooks, e.g. Google App Engine, or when the import name is inside a zip archive (usually a .egg) prior to Python 2.7. + Blueprints now have a decorator to add custom template filters application wide, :meth:flask.Blueprint.app_template_filter. + The Flask and Blueprint classes now have a non-decorator method for adding custom template filters application wide, :meth:flask.Flask.add_template_filter and OBS-URL: https://build.opensuse.org/request/show/141541 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Flask?expand=0&rev=8
2012-11-17 07:27:32 +01:00
%check
export LANG=en_US.UTF-8
%pytest
%pre
# If libalternatives is used: Removing old update-alternatives entries.
%python_libalternatives_reset_alternative flask
%post
%python_install_alternative flask
%postun
%python_uninstall_alternative flask
%files %{python_files}
%license LICENSE.rst
%doc CHANGES.rst README.rst
%python_alternative %{_bindir}/flask
%{_bindir}/flask-%{python_bin_suffix}
%dir %{python_sitelib}/flask
%{python_sitelib}/flask/*
%dir %{python_sitelib}/Flask-%{version}-py*.egg-info
%{python_sitelib}/Flask-%{version}-py*.egg-info
%files %{python_files doc}
%doc docs/
%doc examples/
%changelog