]> git.pld-linux.org Git - packages/python3-autocommand.git/commitdiff
- new; async patch to adjust for python3.7+ with async being keyword auto/th/python3-autocommand-2.2.1-1
authorJakub Bogusz <qboosh@pld-linux.org>
Sun, 20 Mar 2022 18:27:50 +0000 (19:27 +0100)
committerJakub Bogusz <qboosh@pld-linux.org>
Sun, 20 Mar 2022 18:27:50 +0000 (19:27 +0100)
python3-autocommand-async.patch [new file with mode: 0644]
python3-autocommand.spec [new file with mode: 0644]

diff --git a/python3-autocommand-async.patch b/python3-autocommand-async.patch
new file mode 100644 (file)
index 0000000..45a563c
--- /dev/null
@@ -0,0 +1,44 @@
+--- autocommand-2.2.1/test/test_autoasync.py.orig      2017-08-15 20:59:41.000000000 +0200
++++ autocommand-2.2.1/test/test_autoasync.py   2022-03-20 19:25:33.588865758 +0100
+@@ -81,8 +81,8 @@ def test_basic_autoasync(context_loop):
+     @autoasync
+     def async_main():
+-        task1 = asyncio.async(coro_1())
+-        task2 = asyncio.async(coro_2())
++        task1 = asyncio.ensure_future(coro_1())
++        task2 = asyncio.ensure_future(coro_2())
+         result1 = yield from task1
+         result2 = yield from task2
+@@ -105,7 +105,7 @@ def test_custom_loop(context_loop, new_l
+         did_bad_coro_run = True
+         yield
+-    asyncio.async(bad_coro())
++    asyncio.ensure_future(bad_coro())
+     @autoasync(loop=new_loop)
+     @asyncio.coroutine
+@@ -173,8 +173,8 @@ def test_run_forever(context_loop):
+     @autoasync(forever=True)
+     @asyncio.coroutine
+     def async_main():
+-        asyncio.async(set_value_after(0.1))
+-        asyncio.async(stop_loop_after(0.2))
++        asyncio.ensure_future(set_value_after(0.1))
++        asyncio.ensure_future(stop_loop_after(0.2))
+         yield
+     async_main()
+@@ -197,8 +197,8 @@ def test_run_forever_func(context_loop):
+     @autoasync(forever=True)
+     def main_func():
+-        asyncio.async(set_value_after(0.1))
+-        asyncio.async(stop_loop_after(0.2))
++        asyncio.ensure_future(set_value_after(0.1))
++        asyncio.ensure_future(stop_loop_after(0.2))
+     main_func()
+     assert retrieved_value
diff --git a/python3-autocommand.spec b/python3-autocommand.spec
new file mode 100644 (file)
index 0000000..067eabb
--- /dev/null
@@ -0,0 +1,62 @@
+#
+# Conditional build:
+%bcond_without tests   # unit tests
+
+%define                module  template
+Summary:       Library to create a command-line program from a function
+Summary(pl.UTF-8):     Biblioteka do tworzenia programów linii poleceń z funkcji
+Name:          python3-autocommand
+Version:       2.2.1
+Release:       1
+License:       LGPL v3
+Group:         Libraries/Python
+#Source0Download: https://pypi.org/simple/autocommand/
+Source0:       https://files.pythonhosted.org/packages/source/a/autocommand/autocommand-%{version}.tar.gz
+# Source0-md5: 0695be9e3b7de1e589ee4cbf3734ad3d
+Patch0:                %{name}-async.patch
+URL:           https://pypi.org/project/autocommand/
+BuildRequires: python3-modules >= 1:3.3
+BuildRequires: python3-setuptools
+%if %{with tests}
+BuildRequires: python3-pytest
+%endif
+BuildRequires: rpm-pythonprov
+BuildRequires: rpmbuild(macros) >= 1.714
+Requires:      python3-modules >= 1:3.3
+BuildArch:     noarch
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+A library to automatically generate and run simple argparse parsers
+from function signatures.
+
+%description -l pl.UTF-8
+Biblioteka do automatycznego generowania i uruchamiania prostych
+parserów argparse z sygnatur funkcji.
+
+%prep
+%setup -q -n autocommand-%{version}
+%patch0 -p1
+
+%build
+%py3_build
+
+%if %{with tests}
+PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 \
+PYTHONPATH=$(pwd)/src \
+%{__python3} -m pytest test
+%endif
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%py3_install
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc README.rst
+%{py3_sitescriptdir}/autocommand
+%{py3_sitescriptdir}/autocommand-%{version}-py*.egg-info
This page took 0.134437 seconds and 4 git commands to generate.