Name: | python3-pyudev |
---|---|
Version: | 0.21.0 |
Release: | 7.el8 |
Architecture: | noarch |
Group: | Unspecified |
Size: | 322955 |
License: | LGPLv2+ |
RPM: | python3-pyudev-0.21.0-7.el8.noarch.rpm |
Source RPM: | python-pyudev-0.21.0-7.el8.src.rpm |
Build Date: | Thu Mar 07 2019 |
Build Host: | ca-build101.us.oracle.com |
Vendor: | Oracle America |
URL: | http://pypi.python.org/pypi/pyudev |
Summary: | A libudev binding |
Description: | pyudev is a LGPL licensed, pure Python binding for libudev, the device and hardware management and information library for Linux. It supports almost all libudev functionality, you can enumerate devices, query device properties and attributes or monitor devices, including asynchronous monitoring with threads, or within the event loops of Qt, Glib or wxPython. The binding supports CPython 2 (2.6 or newer) and 3 (3.1 or newer), and PyPy 1.5 or newer. It is tested against udev 151 or newer, earlier versions of udev as found on dated Linux systems may work, but are not officially supported. |
- Dropped qt4 from RHEL-8 (#1591123)
- Bumped release to fix conflict caused by automerge
- Dropped python2 from RHEL-8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
- Rebuild for Python 3.6
- Deprecate use of Device object as mapping from udev property names to values - Add a Properties class and a Device.properties() method for udev properties - Fix places where Device object was incorrectly used in a boolean context - Return an empty string, not None, if the property value is an empty string - Exceptions re-raised from libudev calls now have a message string - Insert a warning about using a Device in a boolean context in docs - Infrastructure for vagrant tests is removed - Various internal refactorings - Extensive test improvements - Numerous documentation fixes
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
- 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
- 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