Sync from SUSE:SLFO:Main python-jeepney revision 69b385285534730a94eceb4c5e0e4c9d
This commit is contained in:
commit
9e46a4ba50
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -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
|
BIN
jeepney-0.8.0.tar.gz
(Stored with Git LFS)
Normal file
BIN
jeepney-0.8.0.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
91
python-jeepney.changes
Normal file
91
python-jeepney.changes
Normal file
@ -0,0 +1,91 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 21 12:27:29 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- add sle15_python_module_pythons (jsc#PED-68)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Apr 13 22:42:16 UTC 2023 - Matej Cepl <mcepl@suse.com>
|
||||
|
||||
- Make calling of %{sle15modernpython} optional.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Jun 4 16:42:47 UTC 2022 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- update to 0.8.0:
|
||||
* Removed ``jeepney.integrate`` APIs, which were deprecated in 0.7. Use
|
||||
``jeepney.io`` instead (see :doc:`integrate`).
|
||||
* Removed deprecated ``jeepney.io.tornado`` API. Tornado now uses the asyncio
|
||||
event loop, so you can use it along with ``jeepney.io.asyncio``.
|
||||
* Deprecated ``conn.router`` attribute in the :doc:`api/blocking` integration.
|
||||
Use :ref:`proxies <msggen_proxies>` or :meth:`~.blocking.DBusConnection.send_and_get_reply`
|
||||
to find replies to method calls, and :meth:`~.blocking.DBusConnection.filter`
|
||||
for other routing.
|
||||
* Added docs page with background on D-Bus (:doc:`dbus-background`).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 7 06:51:44 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- update to 0.7.1:
|
||||
* Add ``async with`` support to :class:`~.asyncio.DBusConnection` in the
|
||||
asyncio integration.
|
||||
* Fix calling :meth:`~.asyncio.DBusConnection.receive` immediately after opening
|
||||
a connection in the asyncio integration.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Jul 17 13:51:07 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- update to 0.7.0:
|
||||
* Support for :ref:`sending and receiving file descriptors <send_recv_fds>`.
|
||||
This is available with the blocking, threading and trio integration layers.
|
||||
* Deprecated older integration APIs, in favour of new APIs introduced in 0.5.
|
||||
* Fixed passing a deque in to :meth:`~.blocking.DBusConnection.filter` in the
|
||||
blocking integration API.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Dec 20 09:53:53 UTC 2020 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- uppate to 0.6.0:
|
||||
* New method :meth:`~.blocking.DBusConnection.recv_until_filtered` in the
|
||||
blocking I/O integration to receive messages until one is filtered into a
|
||||
queue.
|
||||
* More efficient buffering of received data waiting to be parsed into D-Bus
|
||||
messages.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Nov 26 09:34:46 UTC 2020 - Dirk Mueller <dmueller@suse.com>
|
||||
|
||||
- update to 0.5.0:
|
||||
* New common scheme for I/O integration - see Connections and Routers.
|
||||
* Message.serialise() accepts a serial number, to serialise outgoing messages
|
||||
without modifying the message object.
|
||||
* Improved documentation, including API docs.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 9 16:22:55 UTC 2020 - Marketa Calabkova <mcalabkova@suse.com>
|
||||
|
||||
- Update to 0.4.3
|
||||
* Raise ConnectionResetError in blocking integration if socket.recv()
|
||||
gives no data
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 28 22:49:01 UTC 2020 - Dirk Mueller <dmueller@suse.com>
|
||||
|
||||
- update to 0.4.2:
|
||||
The blocking ``DBusConnection`` integration class now has a ``.close()``
|
||||
method, and can be used as a context manager::
|
||||
|
||||
from jeepney.integrate.blocking import connect_and_authenticate
|
||||
with connect_and_authenticate() as connection:
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Sep 11 14:40:14 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
|
||||
|
||||
- Update to 0.4.1:
|
||||
* Avoid using :class:`asyncio.Future` for the blocking integration.
|
||||
* Set the 'destination' field on method return and error messages to the
|
||||
'sender' from the parent message.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 18 12:07:09 UTC 2019 - Marketa Calabkova <mcalabkova@suse.com>
|
||||
|
||||
- initial packaging (version 0.4)
|
62
python-jeepney.spec
Normal file
62
python-jeepney.spec
Normal file
@ -0,0 +1,62 @@
|
||||
#
|
||||
# spec file for package python-jeepney
|
||||
#
|
||||
# Copyright (c) 2023 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-%{**}}
|
||||
%define skip_python2 1
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-jeepney
|
||||
Version: 0.8.0
|
||||
Release: 0
|
||||
Summary: Low-level, pure Python DBus protocol wrapper
|
||||
License: MIT
|
||||
Group: Development/Languages/Python
|
||||
URL: https://gitlab.com/takluyver/jeepney
|
||||
Source: https://files.pythonhosted.org/packages/source/j/jeepney/jeepney-%{version}.tar.gz
|
||||
BuildRequires: %{python_module flit-core}
|
||||
BuildRequires: %{python_module pip}
|
||||
BuildRequires: %{python_module pytest}
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: %{python_module testpath}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
BuildArch: noarch
|
||||
%python_subpackages
|
||||
|
||||
%description
|
||||
This is a low-level, pure Python DBus protocol client. It has an I/O-free
|
||||
core, and integration modules for different event loops.
|
||||
|
||||
%prep
|
||||
%setup -q -n jeepney-%{version}
|
||||
|
||||
%build
|
||||
%pyproject_wheel
|
||||
|
||||
%install
|
||||
%pyproject_install
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||
|
||||
%check
|
||||
%pytest jeepney/tests
|
||||
|
||||
%files %{python_files}
|
||||
%doc README.rst
|
||||
%license LICENSE
|
||||
%{python_sitelib}/*
|
||||
|
||||
%changelog
|
Loading…
Reference in New Issue
Block a user