diff --git a/Flask-2.1.2.tar.gz b/Flask-2.1.2.tar.gz deleted file mode 100644 index aecf1434ef80e462fcdc569c9d16d01febeb7a91..0000000000000000000000000000000000000000 Binary files a/Flask-2.1.2.tar.gz and /dev/null differ diff --git a/Flask-2.2.2.tar.gz b/Flask-2.2.2.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..18fd801f876a9b555f81077a25460812493765b8 Binary files /dev/null and b/Flask-2.2.2.tar.gz differ diff --git a/python-flask.spec b/python-flask.spec index adf7da3ffaa182e0f1cf91866b68dc2a50661c41..f9378085971713c1a33bef97f285b78d7c8a41fa 100644 --- a/python-flask.spec +++ b/python-flask.spec @@ -1,14 +1,14 @@ -Name: python-flask -Version: 2.1.2 -Release: 1 -Epoch: 1 -Summary: A lightweight WSGI web application framework -License: BSD-3-Clause -URL: https://palletsprojects.com/p/flask/ -Source0: https://files.pythonhosted.org/packages/source/F/Flask/Flask-%{version}.tar.gz -BuildArch: noarch - -BuildRequires: python3-devel python3-setuptools python3-pytest python3-jinja2 python3-werkzeug python3-itsdangerous python3-click +%global _empty_manifest_terminate_build 0 +Name: python-flask +Version: 2.2.2 +Release: 1 +Summary: A lightweight WSGI web application framework +License: BSD-3-Clause +URL: https://palletsprojects.com/p/flask/ +Source0: https://files.pythonhosted.org/packages/69/b6/53cfa30eed5aa7343daff36622843688ba8c6fe9829bb2b92e193ab1163f/Flask-2.2.2.tar.gz +BuildArch: noarch + +Requires: python3-jinja2 python3-werkzeug python3-itsdangerous python3-click %description Flask is a lightweight WSGI web application framework. It is designed @@ -18,12 +18,25 @@ and Jinja and has become one of the most popular Python web application frameworks. %package -n python3-flask -Summary: python-flask for python 3 version -%{?python_provide:%python_provide python3-flask} -Requires: python3-jinja2 python3-werkzeug python3-itsdangerous python3-click - +Summary: A lightweight WSGI web application framework +Provides: python-flask = %{version}-%{release} +BuildRequires: python3-devel python3-setuptools python3-pytest python3-jinja2 python3-werkzeug python3-itsdangerous python3-click %description -n python3-flask -Python-flask for python 3 version +Flask is a lightweight WSGI web application framework. It is designed +to make getting started quick and easy, with the ability to scale up +to complex applications. It began as a simple wrapper around Werkzeug +and Jinja and has become one of the most popular Python web application +frameworks. + +%package help +Summary: A lightweight WSGI web application framework +Provides: python3-flask-doc +%description help +Flask is a lightweight WSGI web application framework. It is designed +to make getting started quick and easy, with the ability to scale up +to complex applications. It began as a simple wrapper around Werkzeug +and Jinja and has become one of the most popular Python web application +frameworks. %prep %autosetup -n Flask-%{version} @@ -33,24 +46,46 @@ Python-flask for python 3 version %install %py3_install -mv %{buildroot}%{_bindir}/flask{,-%{python3_version}} -ln -s flask-%{python3_version} %{buildroot}%{_bindir}/flask-3 -ln -sf flask-3 %{buildroot}%{_bindir}/flask +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi +if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi +if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi +if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi +pushd %{buildroot} +if [ -d usr/lib ]; then + find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/bin ]; then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/sbin ]; then + find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst +fi +touch doclist.lst +if [ -d usr/share/man ]; then + find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . %check export LC_ALL=C.UTF-8 PYTHONPATH=%{buildroot}%{python3_sitelib} py.test-%{python3_version} -v || : -%files -n python3-flask -%defattr(-,root,root) -%license LICENSE* -%doc CHANGES* README* -%{_bindir}/flask -%{_bindir}/flask-3 -%{_bindir}/flask-%{python3_version} -%{python3_sitelib}/* +%files -n python3-flask -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* %changelog +* Wed Nov 23 2022 liqiuyu - 2.2.2-1 +- Update package to version 2.2.2 + * Thu Jun 23 2022 houyingchao - 1:2.1.2-1 - Upgrade to 2.1.2 version