diff options
author | CoprDistGit <infra@openeuler.org> | 2023-05-05 12:27:40 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-05-05 12:27:40 +0000 |
commit | e07367eb6bc86d3784686f7db4368b4b4240c7d8 (patch) | |
tree | b29b5dc3800d0863089ae5c696d1810ca4a8eb47 | |
parent | 23ca110a1f8250bd7fa506b6912424e9904b496d (diff) |
automatic import of python-flask-request-id-middlewareopeneuler20.03
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-flask-request-id-middleware.spec | 72 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 74 insertions, 0 deletions
@@ -0,0 +1 @@ +/flask-request-id-middleware-1.1.tar.gz diff --git a/python-flask-request-id-middleware.spec b/python-flask-request-id-middleware.spec new file mode 100644 index 0000000..ae8788d --- /dev/null +++ b/python-flask-request-id-middleware.spec @@ -0,0 +1,72 @@ +%global _empty_manifest_terminate_build 0 +Name: python-flask-request-id-middleware +Version: 1.1 +Release: 1 +Summary: Adds Request ID inside your http requests to better identify what's happening on your app +License: MIT +URL: http://github.com/geoffreybauduin/flask-request-id +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/ff/80/7352481d6ada52f660ee762747fe77ac524c3f7283345158daef89d00fe3/flask-request-id-middleware-1.1.tar.gz +BuildArch: noarch + + +%description +Adds Request ID inside your http requests to better identify what's happening on your app. + +%package -n python3-flask-request-id-middleware +Summary: Adds Request ID inside your http requests to better identify what's happening on your app +Provides: python-flask-request-id-middleware +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-flask-request-id-middleware +Adds Request ID inside your http requests to better identify what's happening on your app. + +%package help +Summary: Development documents and examples for flask-request-id-middleware +Provides: python3-flask-request-id-middleware-doc +%description help +Adds Request ID inside your http requests to better identify what's happening on your app. + +%prep +%autosetup -n flask-request-id-middleware-1.1 + +%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-request-id-middleware -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Fri May 05 2023 Python_Bot <Python_Bot@openeuler.org> - 1.1-1 +- Package Spec generated @@ -0,0 +1 @@ +40f0d57c5a96952ba11d268670a74e06 flask-request-id-middleware-1.1.tar.gz |