commit e9da56a53bef49da40727b504b9a012e014a38e3d20efad2b41426043dbcce1b Author: Tomáš Chvátal Date: Mon Jun 8 07:21:47 2020 +0000 Accepting request 812274 from home:jayvdb:py-submit 22k/day https://pypistats.org/packages/graphene Depends on https://build.opensuse.org/request/show/812267 and https://build.opensuse.org/request/show/812262 Required for https://build.opensuse.org/package/show/home:jayvdb:django/python-graphene-django and https://build.opensuse.org/package/show/home:jayvdb:django/python-django-countries OBS-URL: https://build.opensuse.org/request/show/812274 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-graphene?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/graphene-3.0.0b2.tar.gz b/graphene-3.0.0b2.tar.gz new file mode 100644 index 0000000..25989a8 --- /dev/null +++ b/graphene-3.0.0b2.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86779f7a0c1a7a7d3a0f1d0a20f81767589bc653fb885acb2b3deacd3e2c6eca +size 107999 diff --git a/python-graphene.changes b/python-graphene.changes new file mode 100644 index 0000000..40af9bf --- /dev/null +++ b/python-graphene.changes @@ -0,0 +1,9 @@ +------------------------------------------------------------------- +Sat Jun 6 07:08:31 UTC 2020 - John Vandenberg + +- Update to 3.0.0b2 + +------------------------------------------------------------------- +Wed Dec 4 13:23:59 UTC 2019 - Andreas Hasenkopf + +- New package for v2.1.8 diff --git a/python-graphene.spec b/python-graphene.spec new file mode 100644 index 0000000..97c575e --- /dev/null +++ b/python-graphene.spec @@ -0,0 +1,74 @@ +# +# spec file for package python-graphene +# +# Copyright (c) 2020 SUSE LLC +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via https://bugs.opensuse.org/ +# + + +%{?!python_module:%define python_module() python-%{**} python3-%{**}} +Name: python-graphene +Version: 3.0.0b2 +Release: 0 +Summary: GraphQL Framework for Python +License: MIT +Group: Development/Languages/Python +URL: https://github.com/graphql-python/graphene +Source: https://github.com/graphql-python/graphene/archive/v%{version}.tar.gz#/graphene-%{version}.tar.gz +BuildRequires: %{python_module Unidecode} +BuildRequires: %{python_module aniso8601} +BuildRequires: %{python_module graphql-core} +BuildRequires: %{python_module graphql-relay} +BuildRequires: %{python_module mock} +BuildRequires: %{python_module promise} +BuildRequires: %{python_module pytest-asyncio} +BuildRequires: %{python_module pytest-benchmark} +BuildRequires: %{python_module pytest-mock} +BuildRequires: %{python_module pytest} +BuildRequires: %{python_module pytz} +BuildRequires: %{python_module setuptools} +BuildRequires: %{python_module six} +BuildRequires: fdupes +BuildRequires: python-rpm-macros +Requires: python-Unidecode +Requires: python-aniso8601 +Requires: python-graphql-core +Requires: python-graphql-relay +Requires: python-six +BuildArch: noarch +%python_subpackages + +%description +Graphene is a Python library for building GraphQL schemas/types fast and easily. + +%prep +%setup -q -n graphene-%{version} + +%build +%python_build + +%install +%python_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +%check +# The example depend on snapshottest, which is a bit messy to package as of v0.5.1 +# https://github.com/syrusakbary/snapshottest/pull/114 +%pytest -k 'not examples' + +%files %{python_files} +%doc README.rst +%license LICENSE +%{python_sitelib}/* + +%changelog