From b66af28b2b3c74a44db64bbcfbc503c1ef2f3899 Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Mon, 10 Apr 2023 17:27:52 +0000 Subject: automatic import of python-aioextensions --- .gitignore | 1 + python-aioextensions.spec | 133 ++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 135 insertions(+) create mode 100644 python-aioextensions.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore index e69de29..ccfcd90 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/aioextensions-21.7.2261349.tar.gz diff --git a/python-aioextensions.spec b/python-aioextensions.spec new file mode 100644 index 0000000..bb103e6 --- /dev/null +++ b/python-aioextensions.spec @@ -0,0 +1,133 @@ +%global _empty_manifest_terminate_build 0 +Name: python-aioextensions +Version: 21.7.2261349 +Release: 1 +Summary: High performance functions to work with the async IO +License: MIT +URL: https://fluidattacks.github.io/aioextensions +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/92/28/c8ad44c7cb153900fd0a7bb73d7fc48a331fce01af69fe8841cd8c752935/aioextensions-21.7.2261349.tar.gz +BuildArch: noarch + +Requires: python3-uvloop + +%description +# Python Asyncio Extensions + +[![Release]( +https://img.shields.io/pypi/v/aioextensions?color=success&label=Release&style=flat-square)]( +https://pypi.org/project/aioextensions) +[![Documentation]( +https://img.shields.io/badge/Documentation-click_here!-success?style=flat-square)]( +https://fluidattacks.github.io/aioextensions/) +[![Downloads]( +https://img.shields.io/pypi/dm/aioextensions?label=Downloads&style=flat-square)]( +https://pypi.org/project/aioextensions) +[![Status]( +https://img.shields.io/pypi/status/aioextensions?label=Status&style=flat-square)]( +https://pypi.org/project/aioextensions) +[![Coverage]( +https://img.shields.io/badge/Coverage-100%25-success?style=flat-square)]( +https://fluidattacks.github.io/aioextensions/) +[![License]( +https://img.shields.io/pypi/l/aioextensions?color=success&label=License&style=flat-square)]( +https://github.com/fluidattacks/aioextensions/blob/latest/LICENSE.md) + + +%package -n python3-aioextensions +Summary: High performance functions to work with the async IO +Provides: python-aioextensions +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-aioextensions +# Python Asyncio Extensions + +[![Release]( +https://img.shields.io/pypi/v/aioextensions?color=success&label=Release&style=flat-square)]( +https://pypi.org/project/aioextensions) +[![Documentation]( +https://img.shields.io/badge/Documentation-click_here!-success?style=flat-square)]( +https://fluidattacks.github.io/aioextensions/) +[![Downloads]( +https://img.shields.io/pypi/dm/aioextensions?label=Downloads&style=flat-square)]( +https://pypi.org/project/aioextensions) +[![Status]( +https://img.shields.io/pypi/status/aioextensions?label=Status&style=flat-square)]( +https://pypi.org/project/aioextensions) +[![Coverage]( +https://img.shields.io/badge/Coverage-100%25-success?style=flat-square)]( +https://fluidattacks.github.io/aioextensions/) +[![License]( +https://img.shields.io/pypi/l/aioextensions?color=success&label=License&style=flat-square)]( +https://github.com/fluidattacks/aioextensions/blob/latest/LICENSE.md) + + +%package help +Summary: Development documents and examples for aioextensions +Provides: python3-aioextensions-doc +%description help +# Python Asyncio Extensions + +[![Release]( +https://img.shields.io/pypi/v/aioextensions?color=success&label=Release&style=flat-square)]( +https://pypi.org/project/aioextensions) +[![Documentation]( +https://img.shields.io/badge/Documentation-click_here!-success?style=flat-square)]( +https://fluidattacks.github.io/aioextensions/) +[![Downloads]( +https://img.shields.io/pypi/dm/aioextensions?label=Downloads&style=flat-square)]( +https://pypi.org/project/aioextensions) +[![Status]( +https://img.shields.io/pypi/status/aioextensions?label=Status&style=flat-square)]( +https://pypi.org/project/aioextensions) +[![Coverage]( +https://img.shields.io/badge/Coverage-100%25-success?style=flat-square)]( +https://fluidattacks.github.io/aioextensions/) +[![License]( +https://img.shields.io/pypi/l/aioextensions?color=success&label=License&style=flat-square)]( +https://github.com/fluidattacks/aioextensions/blob/latest/LICENSE.md) + + +%prep +%autosetup -n aioextensions-21.7.2261349 + +%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-aioextensions -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Mon Apr 10 2023 Python_Bot - 21.7.2261349-1 +- Package Spec generated diff --git a/sources b/sources new file mode 100644 index 0000000..6b90e8a --- /dev/null +++ b/sources @@ -0,0 +1 @@ +d5a251535c99c3cb6c29b40c401c46d9 aioextensions-21.7.2261349.tar.gz -- cgit v1.2.3