From 2080431c73a3861e97d84949f23e893682eb8baa Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Mon, 10 Apr 2023 07:14:46 +0000 Subject: automatic import of python-flask --- .gitignore | 1 + python-flask.spec | 103 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 105 insertions(+) create mode 100644 python-flask.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore index e69de29..be6e7f3 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/Flask-2.2.3.tar.gz diff --git a/python-flask.spec b/python-flask.spec new file mode 100644 index 0000000..b2a7439 --- /dev/null +++ b/python-flask.spec @@ -0,0 +1,103 @@ +%global _empty_manifest_terminate_build 0 +Name: python-Flask +Version: 2.2.3 +Release: 1 +Summary: A simple framework for building complex web applications. +License: BSD-3-Clause +URL: https://palletsprojects.com/p/flask +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/e8/5c/ff9047989bd995b1098d14b03013f160225db2282925b517bb4a967752ee/Flask-2.2.3.tar.gz +BuildArch: noarch + +Requires: python3-Werkzeug +Requires: python3-Jinja2 +Requires: python3-itsdangerous +Requires: python3-click +Requires: python3-importlib-metadata +Requires: python3-asgiref +Requires: python3-dotenv + +%description +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. +Flask offers suggestions, but doesn't enforce any dependencies or +project layout. It is up to the developer to choose the tools and +libraries they want to use. There are many extensions provided by the +community that make adding new functionality easy. + +%package -n python3-Flask +Summary: A simple framework for building complex web applications. +Provides: python-Flask +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-Flask +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. +Flask offers suggestions, but doesn't enforce any dependencies or +project layout. It is up to the developer to choose the tools and +libraries they want to use. There are many extensions provided by the +community that make adding new functionality easy. + +%package help +Summary: Development documents and examples for Flask +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. +Flask offers suggestions, but doesn't enforce any dependencies or +project layout. It is up to the developer to choose the tools and +libraries they want to use. There are many extensions provided by the +community that make adding new functionality easy. + +%prep +%autosetup -n Flask-2.2.3 + +%build +%py3_build + +%install +%py3_install +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 . + +%files -n python3-Flask -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Mon Apr 10 2023 Python_Bot - 2.2.3-1 +- Package Spec generated diff --git a/sources b/sources new file mode 100644 index 0000000..0a762e2 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +09a3dfdc4fc622ec49910cfd62f45eaa Flask-2.2.3.tar.gz -- cgit v1.2.3