Sync from SUSE:SLFO:Main python-Flask revision 0c00e7be5513885a1d29cff8bf3ff94f

This commit is contained in:
Adrian Schröter 2024-05-03 19:46:53 +02:00
commit 3cb67e9966
5 changed files with 1194 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

BIN
flask-2.3.3.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

1
python-Flask-rpmlintrc Normal file
View File

@ -0,0 +1 @@
addFilter("files-duplicate /usr/share/doc/packages")

1046
python-Flask.changes Normal file

File diff suppressed because it is too large Load Diff

121
python-Flask.spec Normal file
View File

@ -0,0 +1,121 @@
#
# spec file for package python-Flask
#
# Copyright (c) 2023 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
%{?sle15_python_module_pythons}
Name: python-Flask
Version: 2.3.3
Release: 0
Summary: A microframework based on Werkzeug, Jinja2 and good intentions
License: BSD-3-Clause
URL: https://flask.palletsprojects.com
Source0: https://files.pythonhosted.org/packages/source/f/flask/flask-%{version}.tar.gz
Source1: python-Flask-rpmlintrc
BuildRequires: %{python_module Jinja2 >= 3.1.2}
BuildRequires: %{python_module Werkzeug >= 2.3.7}
BuildRequires: %{python_module blinker >= 1.6.2}
BuildRequires: %{python_module click >= 8.1.3}
BuildRequires: %{python_module contextvars}
BuildRequires: %{python_module flit-core}
BuildRequires: %{python_module importlib-metadata >= 3.6.0 if %python-base < 3.10}
BuildRequires: %{python_module itsdangerous >= 2.1.2}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module pytest >= 6.2.4}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros >= 20210929
Requires: python-Jinja2 >= 3.1.2
Requires: python-Werkzeug >= 2.3.7
Requires: python-blinker >= 1.6.2
Requires: python-click >= 8.1.3
Requires: python-itsdangerous >= 2.1.2
%if 0%{?python_version_nodots} < 310
Requires: python-importlib-metadata >= 3.6.0
%endif
%if %{with libalternatives}
Requires: alts
BuildRequires: alts
%else
Requires(post): update-alternatives
Requires(postun):update-alternatives
%endif
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
Requires: %{name} = %{version}
%description doc
This package contains HTML documentation, including tutorials and API
reference for python-Flask.
%prep
%autosetup -p1 -n flask-%{version}
find . -name '.gitignore' -delete
%build
%pyproject_wheel
# cd docs && make html
%install
%pyproject_install
%python_clone -a %{buildroot}%{_bindir}/flask
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%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}
%{python_sitelib}/flask
%{python_sitelib}/flask-%{version}.dist-info
%files %{python_files doc}
%doc docs/
%doc examples/
%changelog