From 1569321201aa8dbe693aa882db4aa8df2a09126f Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Mon, 15 May 2023 06:46:12 +0000 Subject: automatic import of python-bareasgi-graphql-next --- .gitignore | 1 + python-bareasgi-graphql-next.spec | 219 ++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 221 insertions(+) create mode 100644 python-bareasgi-graphql-next.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore index e69de29..31ff8a0 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/bareasgi-graphql-next-5.0.4.tar.gz diff --git a/python-bareasgi-graphql-next.spec b/python-bareasgi-graphql-next.spec new file mode 100644 index 0000000..fb6d9fb --- /dev/null +++ b/python-bareasgi-graphql-next.spec @@ -0,0 +1,219 @@ +%global _empty_manifest_terminate_build 0 +Name: python-bareasgi-graphql-next +Version: 5.0.4 +Release: 1 +Summary: GraphQL support for the bareASGI framework +License: Apache-2.0 +URL: https://github.com/rob-blackbourn/bareasgi-graphql-next +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/4c/ff/d8c476351efeb4bd50ec9e60e68f67878141587e5eed0184063298c79085/bareasgi-graphql-next-5.0.4.tar.gz +BuildArch: noarch + +Requires: python3-bareASGI +Requires: python3-graphql-core +Requires: python3-graphene + +%description +# bareASGI-graphql-next + +Graphql support for [bareASGI](http://github.com/rob-blackbourn/bareASGI) (read the [documentation](https://rob-blackbourn.github.io/bareASGI-graphql-next/)) + +The controller provides a GraphQL GET and POST route, a WebSocket subscription server, and a Graphiql view. + +## Installation + +Install from the pie shop. + +```bash +pip install bareasgi-graphql-next +``` + +If you wish to install with the grapheme option: + +```bash +pip install 'bareasgi-graphql-next[graphene]' +``` + +## Usage + +You can register the graphql controller with the `add_graphql_next` function. + +```python +from bareasgi import Application +from bareasgi_graphql_next import add_graphql_next +import graphql + +# Get the schema ... +schema = graphql.GraphQLSchema( ... ) + +import uvicorn + +app = Application() +add_graphql_next(app, schema) + +uvicorn.run(app, port=9009) + +``` + +## Development + +To develop with the graphene optional package: + +```bash +poetry install --extras graphene +``` + + +%package -n python3-bareasgi-graphql-next +Summary: GraphQL support for the bareASGI framework +Provides: python-bareasgi-graphql-next +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-bareasgi-graphql-next +# bareASGI-graphql-next + +Graphql support for [bareASGI](http://github.com/rob-blackbourn/bareASGI) (read the [documentation](https://rob-blackbourn.github.io/bareASGI-graphql-next/)) + +The controller provides a GraphQL GET and POST route, a WebSocket subscription server, and a Graphiql view. + +## Installation + +Install from the pie shop. + +```bash +pip install bareasgi-graphql-next +``` + +If you wish to install with the grapheme option: + +```bash +pip install 'bareasgi-graphql-next[graphene]' +``` + +## Usage + +You can register the graphql controller with the `add_graphql_next` function. + +```python +from bareasgi import Application +from bareasgi_graphql_next import add_graphql_next +import graphql + +# Get the schema ... +schema = graphql.GraphQLSchema( ... ) + +import uvicorn + +app = Application() +add_graphql_next(app, schema) + +uvicorn.run(app, port=9009) + +``` + +## Development + +To develop with the graphene optional package: + +```bash +poetry install --extras graphene +``` + + +%package help +Summary: Development documents and examples for bareasgi-graphql-next +Provides: python3-bareasgi-graphql-next-doc +%description help +# bareASGI-graphql-next + +Graphql support for [bareASGI](http://github.com/rob-blackbourn/bareASGI) (read the [documentation](https://rob-blackbourn.github.io/bareASGI-graphql-next/)) + +The controller provides a GraphQL GET and POST route, a WebSocket subscription server, and a Graphiql view. + +## Installation + +Install from the pie shop. + +```bash +pip install bareasgi-graphql-next +``` + +If you wish to install with the grapheme option: + +```bash +pip install 'bareasgi-graphql-next[graphene]' +``` + +## Usage + +You can register the graphql controller with the `add_graphql_next` function. + +```python +from bareasgi import Application +from bareasgi_graphql_next import add_graphql_next +import graphql + +# Get the schema ... +schema = graphql.GraphQLSchema( ... ) + +import uvicorn + +app = Application() +add_graphql_next(app, schema) + +uvicorn.run(app, port=9009) + +``` + +## Development + +To develop with the graphene optional package: + +```bash +poetry install --extras graphene +``` + + +%prep +%autosetup -n bareasgi-graphql-next-5.0.4 + +%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-bareasgi-graphql-next -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Mon May 15 2023 Python_Bot - 5.0.4-1 +- Package Spec generated diff --git a/sources b/sources new file mode 100644 index 0000000..e3320b7 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +8ae3eff19a9a4e22de49e3d2ceb84706 bareasgi-graphql-next-5.0.4.tar.gz -- cgit v1.2.3