diff options
author | CoprDistGit <infra@openeuler.org> | 2023-05-10 09:49:19 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-05-10 09:49:19 +0000 |
commit | 4d91e171ae1534ad82ce4442eb579673ab27f6fa (patch) | |
tree | db84e5a81e6147f07e79fb3088c91b976449ba65 | |
parent | f9fb9acd151dc03a4b5cf0bec31b91fe98ea3927 (diff) |
automatic import of python-flask-konch
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-flask-konch.spec | 83 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 85 insertions, 0 deletions
@@ -0,0 +1 @@ +/flask-konch-2.0.0.tar.gz diff --git a/python-flask-konch.spec b/python-flask-konch.spec new file mode 100644 index 0000000..f5fe290 --- /dev/null +++ b/python-flask-konch.spec @@ -0,0 +1,83 @@ +%global _empty_manifest_terminate_build 0 +Name: python-flask-konch +Version: 2.0.0 +Release: 1 +Summary: An improved shell command for the Flask CLI +License: MIT +URL: https://github.com/sloria/flask-konch +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/bc/57/64a48843e35e3e8fcce36530eebe1ef1b588c430d452d8e99f13044e1834/flask-konch-2.0.0.tar.gz +BuildArch: noarch + +Requires: python3-Flask +Requires: python3-konch +Requires: python3-pytest +Requires: python3-flake8 +Requires: python3-pre-commit +Requires: python3-tox +Requires: python3-flake8-bugbear +Requires: python3-flake8 +Requires: python3-pre-commit +Requires: python3-flake8-bugbear +Requires: python3-pytest + +%description +Flask-Konch adds an improved shell command, ``flask konch``, to the `Flask CLI <http://flask.pocoo.org/docs/0.11/cli/>`_. + +%package -n python3-flask-konch +Summary: An improved shell command for the Flask CLI +Provides: python-flask-konch +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-flask-konch +Flask-Konch adds an improved shell command, ``flask konch``, to the `Flask CLI <http://flask.pocoo.org/docs/0.11/cli/>`_. + +%package help +Summary: Development documents and examples for flask-konch +Provides: python3-flask-konch-doc +%description help +Flask-Konch adds an improved shell command, ``flask konch``, to the `Flask CLI <http://flask.pocoo.org/docs/0.11/cli/>`_. + +%prep +%autosetup -n flask-konch-2.0.0 + +%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-konch -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Wed May 10 2023 Python_Bot <Python_Bot@openeuler.org> - 2.0.0-1 +- Package Spec generated @@ -0,0 +1 @@ +015e2f2864720816d47c32a6ae1d501f flask-konch-2.0.0.tar.gz |