SHA256
1
0
forked from pool/python-Flask
python-Flask/python-Flask.spec
Dominique Leuenberger be6b26f959 Accepting request 705805 from devel:languages:python:flask
- Update to 1.0.3:
  * :func:`send_file` encodes filenames as ASCII instead of Latin-1
    (ISO-8859-1). This fixes compatibility with Gunicorn, which is
    stricter about header encodings than PEP 3333. (`#2766`_)
  * Allow custom CLIs using ``FlaskGroup`` to set the debug flag without
    it always being overwritten based on environment variables.
    (`#2765`_)
  * ``flask --version`` outputs Werkzeug's version and simplifies the
    Python version. (`#2825`_)
  * :func:`send_file` handles an ``attachment_filename`` that is a
    native Python 2 string (bytes) with UTF-8 coded bytes. (`#2933`_)
  * A catch-all error handler registered for ``HTTPException`` will not
    handle ``RoutingExcpetion``, which is used internally during
    routing. This fixes the unexpected behavior that had been introduced
    in 1.0. (`#2986`_)
  * Passing the ``json`` argument to ``app.test_client`` does not
    push/pop an extra app context. (`#2900`_)

OBS-URL: https://build.opensuse.org/request/show/705805
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Flask?expand=0&rev=20
2019-06-18 12:43:29 +00:00

90 lines
2.6 KiB
RPMSpec

#
# spec file for package python-Flask
#
# 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
# 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/
#
%define oldpython python
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-Flask
Version: 1.0.3
Release: 0
Summary: A microframework based on Werkzeug, Jinja2 and good intentions
License: BSD-3-Clause
Group: Development/Languages/Python
URL: http://github.com/mitsuhiko/flask/
Source: https://files.pythonhosted.org/packages/source/F/Flask/Flask-%{version}.tar.gz
BuildRequires: %{python_module Jinja2 >= 2.4}
BuildRequires: %{python_module Werkzeug >= 0.14}
BuildRequires: %{python_module click >= 5.1}
BuildRequires: %{python_module itsdangerous >= 0.24}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-Jinja2 >= 2.10
Requires: python-Werkzeug >= 0.14
Requires: python-click >= 5.1
Requires: python-itsdangerous >= 0.24
BuildArch: noarch
%ifpython2
Provides: %{oldpython}-flask = %{version}
Obsoletes: %{oldpython}-flask < %{version}
%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 %{buildroot}%{_bindir}/flask
%fdupes %{buildroot}%{python_sitelib}
%check
export LANG=en_US.UTF-8
%pytest
%files %{python_files}
%license LICENSE
%doc AUTHORS CHANGES.rst README.rst
%python3_only %{_bindir}/flask
%{_bindir}/flask-%{python_bin_suffix}
%{python_sitelib}/*
%files %{python_files doc}
%doc docs/
%doc examples/
%changelog