]> git.pld-linux.org Git - packages/python3-autocommand.git/commitdiff
- updated to 2.2.2 master auto/th/python3-autocommand-2.2.2-1
authorJakub Bogusz <qboosh@pld-linux.org>
Sun, 15 Oct 2023 07:41:24 +0000 (09:41 +0200)
committerJakub Bogusz <qboosh@pld-linux.org>
Sun, 15 Oct 2023 07:41:24 +0000 (09:41 +0200)
python3-autocommand-async.patch [deleted file]
python3-autocommand.spec

diff --git a/python3-autocommand-async.patch b/python3-autocommand-async.patch
deleted file mode 100644 (file)
index 45a563c..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
---- 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
index f5bec7ceba3ef91ab4ccb1b5a41982e1cd8fe237..c369cc5360edd2f601d5e8905037d3ddb73dc9b6 100644 (file)
@@ -6,23 +6,22 @@
 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:       3
+Version:       2.2.2
+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
+# Source0-md5: 0cab5141bad0dfb363b086e93fd4125e
 URL:           https://pypi.org/project/autocommand/
-BuildRequires: python3-modules >= 1:3.3
+BuildRequires: python3-modules >= 1:3.7
 BuildRequires: python3-setuptools
 %if %{with tests}
 BuildRequires: python3-pytest
 %endif
 BuildRequires: rpm-pythonprov
 BuildRequires: rpmbuild(macros) >= 1.714
-Requires:      python3-modules >= 1:3.3
+Requires:      python3-modules >= 1:3.7
 BuildArch:     noarch
 BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
@@ -36,7 +35,6 @@ parserów argparse z sygnatur funkcji.
 
 %prep
 %setup -q -n autocommand-%{version}
-%patch0 -p1
 
 %build
 %py3_build
@@ -57,6 +55,6 @@ rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(644,root,root,755)
-%doc README.rst
+%doc README.md
 %{py3_sitescriptdir}/autocommand
 %{py3_sitescriptdir}/autocommand-%{version}-py*.egg-info
This page took 0.196785 seconds and 4 git commands to generate.