Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: python311-pyudev | Distribution: SUSE Linux Enterprise 15 |
Version: 0.24.1 | Vendor: SUSE LLC <https://www.suse.com/> |
Release: 150400.3.3.1 | Build date: Wed Oct 25 11:20:51 2023 |
Group: Development/Libraries/Python | Build host: h04-ch1d |
Size: 391663 | Source RPM: python-pyudev-0.24.1-150400.3.3.1.src.rpm |
Packager: https://www.suse.com/ | |
Url: https://pyudev.readthedocs.io/ | |
Summary: Udev bindings for Python |
A Python binding to libudev, the hardware management library and service found in modern linux systems.
LGPL-2.1-or-later
* Wed May 03 2023 dmueller@suse.com - update to 0.24.1: * Recommended development release: Fedora 37 * Add support for PySide6 * Add missing 'priority' argument for GLib.to_add_watch() * Tidies and Maintenance fixes * Fri Apr 21 2023 dmueller@suse.com - add sle15_python_module_pythons (jsc#PED-68) * Fri Oct 14 2022 dmueller@suse.com - update hypothesis_settings.patch: * extend deadlines to handle qemu emulated arches better * Sat Oct 01 2022 dmueller@suse.com - update to 0.24.0: * Remove six dependency * Drop pylint tasks * Support python 3.9 and 3.10 * Thu Mar 17 2022 steven.kowalik@suse.com - Skip some unreliable tests. * Thu Mar 10 2022 mcepl@cepl.eu - Update to version 0.23.2+14: * Remove a bunch of python-2 only testing * Bump some Python versions * Get rid of six dependency * Drop all pylint tasks * Remove overly rigorous tests * Make a package target that uses build * Omit PyPy flakey test * Check whether the Context has a "_libudev" attribute * Remove setup.cfg * Remove obsolete egg_info parameter * Delete another flaky test - Rebase hypothesis_settings.patch and pytest_register_mark.patch. - Drop six (Build)?Requires. * Tue Jan 25 2022 bwiedemann@suse.com - Don't add date to version for reproducible builds (boo#1047218) * Sun Jan 16 2022 mcepl@cepl.eu - Update to version 0.22.0+git.1642212208.d5630bf (bsc#1194613): * Remove another flakey test * Remove all traces of tox * Update next Fedora to 35 * Delete a test which is probably flakey for real * Bump recommended development environment to fedora 34 * Use yamllint on all the configuration files * Add annotations to GitHub workflows * No longer use --recursive for isort * Update formatting for new black * Establish a weekly task for future fedora - Remove upstreamed patches: - remove_mock.patch * Tue Aug 10 2021 mcepl@suse.com - Add hypothesis_settings.patch to allow longer timeouts in OBS. * Sat Dec 12 2020 code@bnavigator.de - Add remove_mock.patch gh#pyudev/pyudev#409 - Static linting with pylint is not needed for unit tests or build * Thu Oct 08 2020 mcepl@suse.com - Add pytest_register_mark.patch to make the test suite at least syntactically correct and skip over tests we cannot run because of missing /dev gh#pyudev/pyudev#404. * Fri Feb 28 2020 dmueller@suse.com - update to 0.22.0: - Add a six-enabled move for collections move imports: https://github.com/pyudev/pyudev/pull/386 - Fix any newly introduced pylint errors - Numerous improvements or updates to the test infrastructure - A number of test updates - Require yapf 0.21.0 for Python formatting - Various documentation fixes and updates * Tue Dec 04 2018 mcepl@suse.com - Remove superfluous devel dependency for noarch package * Tue Jan 30 2018 mimi.vx@gmail.com - fix Requires and BuiildRequires * Tue Jan 23 2018 tbechtold@suse.com - Require libudev (bsc#1077282) Otherwise, an pyudev import fails with: ImportError: No library named udev * Thu Aug 24 2017 jmatejek@suse.com - singlespec auto-conversion * Mon May 23 2016 tbechtold@suse.com - Remove do_not_install_tests.patch - Require python-six * Mon May 23 2016 tbechtold@suse.com - update to 0.20.0: * Remove parsing code added in previous release. * No longer do CI for Python 2.6. * Eliminate all wildcard imports and __all__ statements. * No longer use deprecated Device.from_sys_path() method. * Minor pylint induced changes. * Documentation fixes. * Restore raising KeyError by Attributes.as* methods when attribute not found. * Explicitly require six module. * Never raise a DeviceNotFoundError when iterating over a device enumeration. * Device.subsystem() now returns None if device has no subsystem. * Add DeprecationWarnings to deprecated Device methods. * Replace "/" with "!" in Device.from_name() sys_name parameter. * Add some unstable classes for parsing some kinds of values. * Make version info more like Python's including micro numbers and levels. * Refactor some internal modules into subdirectories. * Work on tests and reproducers. * DeviceNotFoundError is no longer a subtype of LookupError * Added support for pyqt5 monitor observer * Added discover module, which looks up a device on limited information * Attributes class no longer extends Mapping, extends object instead * Attributes class no longer inherits [] operator, Mapping methods * Attributes class objects are no longer iterable * Attributes.available_attributes property added * Attributes.get() method, with usual semantics, defined * Device.from_* methods are deprecated, uses Devices.from_* methods instead * Device.from_device_file() now raises DeviceNotFoundByFileError * Device.from_device_number() now raises DeviceNotFoundByNumberError * Devices.from_interface_index() method added * Devices.from_kernel_device() method added * Numerous testing infrastructure changes - Remove do_not_install_tests.patch . No longer needed. - Require libudev1 . Needed to use python-pyudev * Wed Sep 23 2015 asterios.dramis@gmail.com - Added a patch (do_not_install_tests.patch) to not install the tests as a module (not needed). Fixes also file conflicts in Factory. * Tue Sep 15 2015 hpj@urpla.net - Update to version 0.17: * #52: Remove global libudev object * #57: Really start the monitor on :meth:`pyudev.Monitor.poll()` * #60: Do not use :meth:`select.select` to avoid hitting its file descriptor limit * #58: Force non-blocking IO in :class:`pyudev.Monitor` to avoid blocking on receiving the device * #63: Set proper flags on pipe fds. * #65: Handle irregular polling events properly. * #50: Add :class:`pyudev.wx.MonitorObserver` and deprecate :class:`pyudev.wx.WxUDevMonitorObserver` * #50: Add :class:`pyudev.glib.MonitorObserver` and deprecate :class:`pyudev.glib.GUDevMonitorObserver` * #50: Add :class:`pyudev.pyqt4.MonitorObserver` and deprecate :class:`pyudev.pyqt4.QUDevMonitorObserver` * #50: Add :class:`pyudev.pyside.MonitorObserver` and deprecate :class:`pyudev.pyside.QUDevMonitorObserver` * Add a wrapper function to retry interruptible system calls.
/usr/lib/python3.11/site-packages/pyudev /usr/lib/python3.11/site-packages/pyudev-0.24.1-py3.11.egg-info /usr/lib/python3.11/site-packages/pyudev-0.24.1-py3.11.egg-info/PKG-INFO /usr/lib/python3.11/site-packages/pyudev-0.24.1-py3.11.egg-info/SOURCES.txt /usr/lib/python3.11/site-packages/pyudev-0.24.1-py3.11.egg-info/dependency_links.txt /usr/lib/python3.11/site-packages/pyudev-0.24.1-py3.11.egg-info/top_level.txt /usr/lib/python3.11/site-packages/pyudev/__init__.py /usr/lib/python3.11/site-packages/pyudev/__pycache__ /usr/lib/python3.11/site-packages/pyudev/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyudev/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/pyudev/__pycache__/_errors.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyudev/__pycache__/_errors.cpython-311.pyc /usr/lib/python3.11/site-packages/pyudev/__pycache__/_qt_base.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyudev/__pycache__/_qt_base.cpython-311.pyc /usr/lib/python3.11/site-packages/pyudev/__pycache__/_util.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyudev/__pycache__/_util.cpython-311.pyc /usr/lib/python3.11/site-packages/pyudev/__pycache__/core.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyudev/__pycache__/core.cpython-311.pyc /usr/lib/python3.11/site-packages/pyudev/__pycache__/discover.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyudev/__pycache__/discover.cpython-311.pyc /usr/lib/python3.11/site-packages/pyudev/__pycache__/glib.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyudev/__pycache__/glib.cpython-311.pyc /usr/lib/python3.11/site-packages/pyudev/__pycache__/monitor.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyudev/__pycache__/monitor.cpython-311.pyc /usr/lib/python3.11/site-packages/pyudev/__pycache__/pyqt4.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyudev/__pycache__/pyqt4.cpython-311.pyc /usr/lib/python3.11/site-packages/pyudev/__pycache__/pyqt5.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyudev/__pycache__/pyqt5.cpython-311.pyc /usr/lib/python3.11/site-packages/pyudev/__pycache__/pyside.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyudev/__pycache__/pyside.cpython-311.pyc /usr/lib/python3.11/site-packages/pyudev/__pycache__/pyside6.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyudev/__pycache__/pyside6.cpython-311.pyc /usr/lib/python3.11/site-packages/pyudev/__pycache__/version.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyudev/__pycache__/version.cpython-311.pyc /usr/lib/python3.11/site-packages/pyudev/__pycache__/wx.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyudev/__pycache__/wx.cpython-311.pyc /usr/lib/python3.11/site-packages/pyudev/_ctypeslib /usr/lib/python3.11/site-packages/pyudev/_ctypeslib/__init__.py /usr/lib/python3.11/site-packages/pyudev/_ctypeslib/__pycache__ /usr/lib/python3.11/site-packages/pyudev/_ctypeslib/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyudev/_ctypeslib/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/pyudev/_ctypeslib/__pycache__/_errorcheckers.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyudev/_ctypeslib/__pycache__/_errorcheckers.cpython-311.pyc /usr/lib/python3.11/site-packages/pyudev/_ctypeslib/__pycache__/libc.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyudev/_ctypeslib/__pycache__/libc.cpython-311.pyc /usr/lib/python3.11/site-packages/pyudev/_ctypeslib/__pycache__/libudev.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyudev/_ctypeslib/__pycache__/libudev.cpython-311.pyc /usr/lib/python3.11/site-packages/pyudev/_ctypeslib/__pycache__/utils.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyudev/_ctypeslib/__pycache__/utils.cpython-311.pyc /usr/lib/python3.11/site-packages/pyudev/_ctypeslib/_errorcheckers.py /usr/lib/python3.11/site-packages/pyudev/_ctypeslib/libc.py /usr/lib/python3.11/site-packages/pyudev/_ctypeslib/libudev.py /usr/lib/python3.11/site-packages/pyudev/_ctypeslib/utils.py /usr/lib/python3.11/site-packages/pyudev/_errors.py /usr/lib/python3.11/site-packages/pyudev/_os /usr/lib/python3.11/site-packages/pyudev/_os/__init__.py /usr/lib/python3.11/site-packages/pyudev/_os/__pycache__ /usr/lib/python3.11/site-packages/pyudev/_os/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyudev/_os/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/pyudev/_os/__pycache__/pipe.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyudev/_os/__pycache__/pipe.cpython-311.pyc /usr/lib/python3.11/site-packages/pyudev/_os/__pycache__/poll.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyudev/_os/__pycache__/poll.cpython-311.pyc /usr/lib/python3.11/site-packages/pyudev/_os/pipe.py /usr/lib/python3.11/site-packages/pyudev/_os/poll.py /usr/lib/python3.11/site-packages/pyudev/_qt_base.py /usr/lib/python3.11/site-packages/pyudev/_util.py /usr/lib/python3.11/site-packages/pyudev/core.py /usr/lib/python3.11/site-packages/pyudev/device /usr/lib/python3.11/site-packages/pyudev/device/__init__.py /usr/lib/python3.11/site-packages/pyudev/device/__pycache__ /usr/lib/python3.11/site-packages/pyudev/device/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyudev/device/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/pyudev/device/__pycache__/_device.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/pyudev/device/__pycache__/_device.cpython-311.pyc /usr/lib/python3.11/site-packages/pyudev/device/_device.py /usr/lib/python3.11/site-packages/pyudev/discover.py /usr/lib/python3.11/site-packages/pyudev/glib.py /usr/lib/python3.11/site-packages/pyudev/monitor.py /usr/lib/python3.11/site-packages/pyudev/pyqt4.py /usr/lib/python3.11/site-packages/pyudev/pyqt5.py /usr/lib/python3.11/site-packages/pyudev/pyside.py /usr/lib/python3.11/site-packages/pyudev/pyside6.py /usr/lib/python3.11/site-packages/pyudev/version.py /usr/lib/python3.11/site-packages/pyudev/wx.py /usr/share/doc/packages/python311-pyudev /usr/share/doc/packages/python311-pyudev/CHANGES.rst /usr/share/doc/packages/python311-pyudev/README.rst /usr/share/licenses/python311-pyudev /usr/share/licenses/python311-pyudev/COPYING
Generated by rpm2html 1.8.1
Fabrice Bellet, Tue Jul 9 19:58:50 2024