From 226c1f23687da385ea61dec599634720487e6afd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20Schr=C3=B6ter?= Date: Wed, 17 May 2023 14:44:43 +0200 Subject: [PATCH] Sync from SUSE:ALP:Source:Standard:1.0 python-sphinxcontrib-asyncio revision 4d1316a61705cc58c4578f40f302678b --- .gitattributes | 23 +++++++++ python-sphinxcontrib-asyncio.changes | 37 +++++++++++++++ python-sphinxcontrib-asyncio.spec | 70 ++++++++++++++++++++++++++++ sphinxcontrib-asyncio-0.3.0.tar.gz | 3 ++ 4 files changed, 133 insertions(+) create mode 100644 .gitattributes create mode 100644 python-sphinxcontrib-asyncio.changes create mode 100644 python-sphinxcontrib-asyncio.spec create mode 100644 sphinxcontrib-asyncio-0.3.0.tar.gz diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..fecc750 --- /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/python-sphinxcontrib-asyncio.changes b/python-sphinxcontrib-asyncio.changes new file mode 100644 index 0000000..c6451aa --- /dev/null +++ b/python-sphinxcontrib-asyncio.changes @@ -0,0 +1,37 @@ +------------------------------------------------------------------- +Sat Jan 29 14:14:33 UTC 2022 - Sebastian Wagner + +- disable docs as they fail to build, see: + https://lists.opensuse.org/archives/list/python@lists.opensuse.org/thread/UXTSXGRQBDZHYLFOYOC7RLDJKTVNAPQQ/ + +------------------------------------------------------------------- +Sat Aug 22 08:39:57 UTC 2020 - Sebastian Wagner + +- update to version 0.3.0: + - Make the plugin compatible with Sphinx 3 + +------------------------------------------------------------------- +Fri Dec 7 20:51:50 UTC 2018 - Matej Cepl + +- Remove wrong BR on python-sphinxcontrib + +------------------------------------------------------------------- +Tue Dec 4 12:54:38 UTC 2018 - Matej Cepl + +- Remove superfluous devel dependency for noarch package + +------------------------------------------------------------------- +Mon Sep 18 22:29:06 UTC 2017 - toddrme2178@gmail.com + +- Use new python-sphinxcontrib package to provide namespace + directory. + +------------------------------------------------------------------- +Mon Sep 18 16:33:47 UTC 2017 - toddrme2178@gmail.com + +- Fix conflicts with python-Sphinx + +------------------------------------------------------------------- +Thu Aug 24 10:04:34 UTC 2017 - sebix+novell.com@sebix.at + +- initial package diff --git a/python-sphinxcontrib-asyncio.spec b/python-sphinxcontrib-asyncio.spec new file mode 100644 index 0000000..3fb0746 --- /dev/null +++ b/python-sphinxcontrib-asyncio.spec @@ -0,0 +1,70 @@ +# +# spec file for package python-sphinxcontrib-asyncio +# +# Copyright (c) 2022 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-%{**}} +%bcond_with test +Name: python-sphinxcontrib-asyncio +Version: 0.3.0 +Release: 0 +Summary: Sphinx extension to support coroutines in markup +License: Apache-2.0 +Group: Development/Languages/Python +URL: https://github.com/aio-libs/sphinxcontrib-asyncio +Source: https://files.pythonhosted.org/packages/source/s/sphinxcontrib-asyncio/sphinxcontrib-asyncio-%{version}.tar.gz +BuildRequires: %{python_module Sphinx} +BuildRequires: %{python_module setuptools} +BuildRequires: fdupes +BuildRequires: python-rpm-macros +%if %{with test} +BuildRequires: %{python_module pytest} +%endif +Requires: python-Sphinx +BuildArch: noarch + +%python_subpackages + +%description +Sphinx extension for adding asyncio-specific markups + +%prep +%setup -q -n sphinxcontrib-asyncio-%{version} + +%build +%python_build +#pushd docs +#PYTHONPATH=.. make html +#rm _build/html/.buildinfo +#popd + +%install +%python_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +# Remove sphinxcontrib namespace package files provided by python-Sphinx +%python_expand rm -f %{buildroot}%{$python_sitelib}/sphinxcontrib/__init__.py* +%python_expand rm -f %{buildroot}%{$python_sitelib}/sphinxcontrib/__pycache__/__init__*.py* + +%files %{python_files} +%doc CHANGES.rst README.rst +#docs/_build/html +%{python_sitelib}/sphinxcontrib/asyncio.py* +%pycache_only %dir %{python_sitelib}/sphinxcontrib/__pycache__/ +%pycache_only %{python_sitelib}/sphinxcontrib/__pycache__/asyncio*.py* +%{python_sitelib}/sphinxcontrib_asyncio-%{version}-py*.egg-info + +%changelog diff --git a/sphinxcontrib-asyncio-0.3.0.tar.gz b/sphinxcontrib-asyncio-0.3.0.tar.gz new file mode 100644 index 0000000..671747a --- /dev/null +++ b/sphinxcontrib-asyncio-0.3.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99fd26e0fe7edf87244a71a99c316fd0c9b50856c2519acca927ebe74100722e +size 11622