Update to 3.0.0 (fixes RHBZ#2189630)
This commit is contained in:
parent
d8d0c81b02
commit
0886449687
1
.gitignore
vendored
1
.gitignore
vendored
@ -22,3 +22,4 @@ results_*
|
|||||||
/Flask-2.2.2.tar.gz
|
/Flask-2.2.2.tar.gz
|
||||||
/Flask-2.2.3.tar.gz
|
/Flask-2.2.3.tar.gz
|
||||||
/Flask-2.2.5.tar.gz
|
/Flask-2.2.5.tar.gz
|
||||||
|
/flask-3.0.0.tar.gz
|
||||||
|
|||||||
@ -1,9 +1,9 @@
|
|||||||
%global modname flask
|
%global modname flask
|
||||||
%global srcname Flask
|
%global srcname flask
|
||||||
|
|
||||||
Name: python-%{modname}
|
Name: python-%{modname}
|
||||||
Version: 2.2.5
|
Version: 3.0.0
|
||||||
Release: 3%{?dist}
|
Release: 1%{?dist}
|
||||||
Epoch: 1
|
Epoch: 1
|
||||||
Summary: A micro-framework for Python based on Werkzeug, Jinja 2 and good intentions
|
Summary: A micro-framework for Python based on Werkzeug, Jinja 2 and good intentions
|
||||||
|
|
||||||
@ -27,15 +27,8 @@ authentication technologies and more.
|
|||||||
|
|
||||||
%package -n python3-%{modname}
|
%package -n python3-%{modname}
|
||||||
Summary: %{summary}
|
Summary: %{summary}
|
||||||
%{?python_provide:%python_provide python3-%{modname}}
|
BuildRequires: make
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
BuildRequires: python3dist(setuptools)
|
|
||||||
BuildRequires: python3dist(werkzeug) >= 0.15
|
|
||||||
BuildRequires: python3dist(jinja2) >= 2.10.1
|
|
||||||
BuildRequires: python3dist(itsdangerous) >= 0.24
|
|
||||||
BuildRequires: python3dist(click) >= 5.1
|
|
||||||
BuildRequires: python3dist(pytest)
|
|
||||||
Obsoletes: python2-%{modname} < 1:1.0.2-9
|
|
||||||
|
|
||||||
%description -n python3-%{modname} %{_description}
|
%description -n python3-%{modname} %{_description}
|
||||||
|
|
||||||
@ -43,43 +36,54 @@ Python 3 version.
|
|||||||
|
|
||||||
%package doc
|
%package doc
|
||||||
Summary: Documentation for %{name}
|
Summary: Documentation for %{name}
|
||||||
Obsoletes: python3-%{modname}-doc < 1:0.11.1-3
|
|
||||||
|
|
||||||
%description doc
|
%description doc
|
||||||
Documentation and examples for %{name}.
|
Documentation and examples for %{name}.
|
||||||
|
|
||||||
|
%generate_buildrequires
|
||||||
|
# -t picks test.txt by default which contains too tight pins
|
||||||
|
%pyproject_buildrequires requirements/tests.in requirements/docs.in
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -n %{srcname}-%{version}
|
%autosetup -n %{srcname}-%{version}
|
||||||
rm -rf examples/flaskr/
|
rm -rf examples/flaskr/
|
||||||
rm -rf examples/minitwit/
|
rm -rf examples/minitwit/
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%py3_build
|
%pyproject_wheel
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%py3_install
|
%pyproject_install
|
||||||
|
%pyproject_save_files %{modname}
|
||||||
|
|
||||||
mv %{buildroot}%{_bindir}/%{modname}{,-%{python3_version}}
|
mv %{buildroot}%{_bindir}/%{modname}{,-%{python3_version}}
|
||||||
ln -s %{modname}-%{python3_version} %{buildroot}%{_bindir}/%{modname}-3
|
ln -s %{modname}-%{python3_version} %{buildroot}%{_bindir}/%{modname}-3
|
||||||
ln -sf %{modname}-3 %{buildroot}%{_bindir}/%{modname}
|
ln -sf %{modname}-3 %{buildroot}%{_bindir}/%{modname}
|
||||||
|
|
||||||
%check
|
pushd docs
|
||||||
# test_max_cookie_size fails on Python 3.12: https://github.com/pallets/flask/issues/5146
|
# PYTHONPATH to prevent "'Flask' must be installed to build the documentation."
|
||||||
%pytest -Wdefault -k "not test_max_cookie_size"
|
make PYTHONPATH=%{buildroot}/%{python3_sitelib} SPHINXBUILD=sphinx-build-3 html
|
||||||
|
rm -v _build/html/.buildinfo
|
||||||
|
popd
|
||||||
|
|
||||||
%files -n python3-%{modname}
|
%check
|
||||||
|
%pytest -Wdefault
|
||||||
|
|
||||||
|
%files -n python3-%{modname} -f %{pyproject_files}
|
||||||
%license LICENSE.rst
|
%license LICENSE.rst
|
||||||
%doc CHANGES.rst README.rst
|
%doc CHANGES.rst README.rst
|
||||||
%{_bindir}/%{modname}
|
%{_bindir}/%{modname}
|
||||||
%{_bindir}/%{modname}-3
|
%{_bindir}/%{modname}-3
|
||||||
%{_bindir}/%{modname}-%{python3_version}
|
%{_bindir}/%{modname}-%{python3_version}
|
||||||
%{python3_sitelib}/%{srcname}-*.egg-info/
|
|
||||||
%{python3_sitelib}/%{modname}/
|
|
||||||
|
|
||||||
%files doc
|
%files doc
|
||||||
%license LICENSE.rst
|
%license LICENSE.rst
|
||||||
%doc examples
|
%doc docs/_build/html examples
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Dec 06 2023 Frantisek Zatloukal <fzatlouk@redhat.com> - 3.0.0-1
|
||||||
|
- Update to 3.0.0 (fixes RHBZ#2189630)
|
||||||
|
|
||||||
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1:2.2.5-3
|
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1:2.2.5-3
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
|||||||
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (Flask-2.2.5.tar.gz) = f399519716f95d0282da7dd2617e13841a7c12dbf8b440183839a0999b2fb9ede5fb5b6f4526e8539e432494e3aa29b7ccde992b0874c1ed0b2af2d030197457
|
SHA512 (flask-3.0.0.tar.gz) = dab4f97909619e380e9d8f14cea346dbda8932f3e9d19ee45e3651faf51b94aa5ccaa658116c69abae680f5357235842c63f0c6ff2a191de70cc103f0e7624a4
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user