Add package for OpenStack Wallaby support
This commit is contained in:
parent
a247662785
commit
0809fc2a6c
Binary file not shown.
BIN
asgiref-3.4.0.tar.gz
Normal file
BIN
asgiref-3.4.0.tar.gz
Normal file
Binary file not shown.
@ -1,47 +1,54 @@
|
|||||||
%global _empty_manifest_terminate_build 0
|
%global _empty_manifest_terminate_build 0
|
||||||
Name: python-asgiref
|
Name: python-asgiref
|
||||||
Version: 3.2.10
|
Version: 3.4.0
|
||||||
Release: 1
|
Release: 1
|
||||||
Summary: ASGI specs, helper code, and adapters
|
Summary: ASGI specs, helper code, and adapters
|
||||||
License: BSD
|
License: BSD
|
||||||
URL: https://github.com/django/asgiref/
|
URL: https://github.com/django/asgiref/
|
||||||
Source0: https://files.pythonhosted.org/packages/6d/6e/6e0ff19e7054491be7390fec2b711f838b31282fd3afe28057314d72f11b/asgiref-3.2.10.tar.gz
|
Source0: https://files.pythonhosted.org/packages/c0/9d/b1c128ed26b8c01c27e5c393c558e9c2a6716dfbdb59f97ba14960fbde76/asgiref-3.4.0.tar.gz
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
Requires: python3-pytest
|
|
||||||
Requires: python3-pytest-asyncio
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
ASGI is a standard for Python asynchronous web apps and servers to communicate
|
ASGI is a standard for Python asynchronous web apps and servers to communicate
|
||||||
with each other, and positioned as an asynchronous successor to WSGI.
|
with each other, and positioned as an asynchronous successor to WSGI. You can
|
||||||
|
read more at package includes ASGI base libraries, such as:Sync-to-async and
|
||||||
|
async-to-sync function wrappers, asgiref.sync Server base classes,
|
||||||
|
asgiref.server A WSGI-to-ASGI adapter, in asgiref.
|
||||||
|
|
||||||
%package -n python3-asgiref
|
%package -n python3-asgiref
|
||||||
Summary: ASGI specs, helper code, and adapters
|
Summary: ASGI specs, helper code, and adapters
|
||||||
Provides: python-asgiref
|
Provides: python-asgiref
|
||||||
|
# Base build requires
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
BuildRequires: python3-setuptools
|
BuildRequires: python3-setuptools
|
||||||
|
BuildRequires: python3-pbr
|
||||||
|
BuildRequires: python3-pip
|
||||||
|
BuildRequires: python3-wheel
|
||||||
%description -n python3-asgiref
|
%description -n python3-asgiref
|
||||||
ASGI is a standard for Python asynchronous web apps and servers to communicate
|
ASGI is a standard for Python asynchronous web apps and servers to communicate
|
||||||
with each other, and positioned as an asynchronous successor to WSGI.
|
with each other, and positioned as an asynchronous successor to WSGI. You can
|
||||||
|
read more at package includes ASGI base libraries, such as:Sync-to-async and
|
||||||
|
async-to-sync function wrappers, asgiref.sync Server base classes,
|
||||||
|
asgiref.server A WSGI-to-ASGI adapter, in asgiref.
|
||||||
|
|
||||||
%package help
|
%package help
|
||||||
Summary: Development documents and examples for asgiref
|
Summary: ASGI specs, helper code, and adapters
|
||||||
Provides: python3-asgiref-doc
|
Provides: python3-asgiref-doc
|
||||||
%description help
|
%description help
|
||||||
ASGI is a standard for Python asynchronous web apps and servers to communicate
|
ASGI is a standard for Python asynchronous web apps and servers to communicate
|
||||||
with each other, and positioned as an asynchronous successor to WSGI.
|
with each other, and positioned as an asynchronous successor to WSGI. You can
|
||||||
|
read more at package includes ASGI base libraries, such as:Sync-to-async and
|
||||||
|
async-to-sync function wrappers, asgiref.sync Server base classes,
|
||||||
|
asgiref.server A WSGI-to-ASGI adapter, in asgiref.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -n asgiref-3.2.10
|
%autosetup -n asgiref-3.4.0
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%py3_build
|
%py3_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%py3_install
|
%py3_install
|
||||||
|
|
||||||
install -d -m755 %{buildroot}/%{_pkgdocdir}
|
install -d -m755 %{buildroot}/%{_pkgdocdir}
|
||||||
if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
|
if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
|
||||||
if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
|
if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
|
||||||
@ -68,12 +75,17 @@ popd
|
|||||||
mv %{buildroot}/filelist.lst .
|
mv %{buildroot}/filelist.lst .
|
||||||
mv %{buildroot}/doclist.lst .
|
mv %{buildroot}/doclist.lst .
|
||||||
|
|
||||||
|
|
||||||
%files -n python3-asgiref -f filelist.lst
|
%files -n python3-asgiref -f filelist.lst
|
||||||
|
|
||||||
%dir %{python3_sitelib}/*
|
%dir %{python3_sitelib}/*
|
||||||
|
|
||||||
%files help -f doclist.lst
|
%files help -f doclist.lst
|
||||||
%{_docdir}/*
|
%{_docdir}/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Jul 19 2021 OpenStack_SIG <openstack@openeuler.org> - 3.4.0-1
|
||||||
|
- Upgrade to version 3.4.0
|
||||||
|
|
||||||
* Sun Jul 12 2020 Python_Bot <Python_Bot@openeuler.org>
|
* Sun Jul 12 2020 Python_Bot <Python_Bot@openeuler.org>
|
||||||
- Package Spec generated
|
- Package Spec generated
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user