diff options
author | CoprDistGit <infra@openeuler.org> | 2023-05-10 08:33:59 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-05-10 08:33:59 +0000 |
commit | fa6b2f78402044c1f7a4a9b05371c44f5301c426 (patch) | |
tree | fa8377d04f6ebd1cb4ff374e5f1601162ac6a905 | |
parent | f01a829eb98c8de8310643dbb3352a2d5cca3e2d (diff) |
automatic import of python-aiohttp-toolbox
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-aiohttp-toolbox.spec | 89 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 91 insertions, 0 deletions
@@ -0,0 +1 @@ +/aiohttp-toolbox-0.6.3.tar.gz diff --git a/python-aiohttp-toolbox.spec b/python-aiohttp-toolbox.spec new file mode 100644 index 0000000..d691f29 --- /dev/null +++ b/python-aiohttp-toolbox.spec @@ -0,0 +1,89 @@ +%global _empty_manifest_terminate_build 0 +Name: python-aiohttp-toolbox +Version: 0.6.3 +Release: 1 +Summary: Tools for aiohttp I want to reuse. +License: MIT +URL: https://github.com/samuelcolvin/aiohttp-tools +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/ca/5c/e84cf6ba307f25073441dfe1a5e02d70fd400759fa558de44621c9ed1c1e/aiohttp-toolbox-0.6.3.tar.gz +BuildArch: noarch + +Requires: python3-aiodns +Requires: python3-aiohttp +Requires: python3-async-timeout +Requires: python3-cchardet +Requires: python3-pydantic +Requires: python3-sentry-sdk +Requires: python3-uvloop +Requires: python3-dataclasses +Requires: python3-aiohttp-session +Requires: python3-arq +Requires: python3-asyncpg +Requires: python3-buildpg +Requires: python3-cryptography +Requires: python3-ipython + +%description +|BuildStatus| |Coverage| |pypi| +Tools for aiohttp I want to reuse. + +%package -n python3-aiohttp-toolbox +Summary: Tools for aiohttp I want to reuse. +Provides: python-aiohttp-toolbox +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-aiohttp-toolbox +|BuildStatus| |Coverage| |pypi| +Tools for aiohttp I want to reuse. + +%package help +Summary: Development documents and examples for aiohttp-toolbox +Provides: python3-aiohttp-toolbox-doc +%description help +|BuildStatus| |Coverage| |pypi| +Tools for aiohttp I want to reuse. + +%prep +%autosetup -n aiohttp-toolbox-0.6.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-aiohttp-toolbox -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Wed May 10 2023 Python_Bot <Python_Bot@openeuler.org> - 0.6.3-1 +- Package Spec generated @@ -0,0 +1 @@ +e67260fc44bd0941b3366c5123ecf822 aiohttp-toolbox-0.6.3.tar.gz |