Upstream update available: python3-pyudev 0.24.3 → 0.24.4 #1

Open
opened 2026-04-28 02:02:17 +03:00 by sbelikov · 0 comments
Owner

Upstream update available: python3-pyudev 0.24.30.24.4

Package

  • Package: python3-pyudev
  • RPM name: python3-pyudev
  • Branch: niceos-5.2
  • Current EVR: 0.24.3-1
  • Update class: patch
  • Compare method: python_rpm
  • Update policy: leaf
  • Risk tags: standard

Upstream

Signals

  • Security-relevant keywords detected: False
  • Policy blocked: False
  • Policy reason: -
  • Labels: ai-summary, bot, needs-build, needs-triage, priority/medium, update/patch, upstream-update, upstream/pypi

NiceSOFT AI preliminary analysis

1. Краткий вывод

Обновление пакета python3-pyudev с версии 0.24.3 до 0.24.4 классифицируется как патч-уровня (patch) и не содержит явных признаков уязвимостей безопасности или критических изменений функциональности в предоставленных данных. Обновление относится к категории leaf-пакетов, что снижает вероятность каскадных проблем со сборкой, однако отсутствие детального списка изменений в релиз-нотах требует осторожности.

2. Риск для НАЙС.ОС

low. Пакет является библиотекой связывания (binding) для libudev, классифицирован как update_class: patch и имеет тег риска standard. Отсутствие флагов security_keywords и статус policy_blocked: False указывают на низкую вероятность негативного воздействия на стабильность системы при условии стандартной процедуры тестирования.

3. Security/CVE

Во входных данных отсутствуют прямые упоминания CVE, идентификаторы уязвимостей или ключевые слова безопасности (security_keywords_detected_by_script: False). В тексте релиз-нот не описывается исправление конкретных багов безопасности.

4. ABI/API риск

В предоставленных данных отсутствует информация о содержании diff между версиями 0.24.3 и 0.24.4. Для точной оценки рисков изменения ABI/API требуется ручной анализ изменений в исходном коде или сравнение сигнатур экспортируемых функций. На основе текущего текста сделать однозначный вывод невозможно.

5. Риск для RPM-сборки

Учитывая тип обновления patch и источник pypi, вероятность поломки сборки (сломанные BuildRequires, конфликты патчей, провал %check) оценивается как минимальная. Однако без проверки истории коммитов или логов сборки предыдущих версий точную картину оценить нельзя.

6. Проверки мейнтейнера

  • Запустить rpmlint на обновленном RPM-пакете.
  • Выполнить локальную сборку (%build) и проверку тестов (%check).
  • Сравнить хеш-суммы исходников upstream для подтверждения целостности.
  • Проверить наличие новых зависимостей в requirements.txt или setup.py, если они отличаются от текущих.
  • Убедиться, что патчи, применяемые к исходникам, актуальны для новой версии.

7. Рекомендация

update candidate

8. Основание рекомендации

Обновление помечено как patch с низким уровнем риска (risk_tags: standard) и не заблокировано политикой (policy_blocked: False). Отсутствуют сигналы о критических проблемах безопасности или совместимости, что позволяет рекомендовать обновление как кандидата после выполнения стандартных процедур тестирования сборки и проверки тестов.

Upstream release notes / description

A libudev binding

pyudev

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_ 3 and compatible versions of PyPy_.
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.

Usage

Usage of pyudev is quite simply thanks to the power of the underlying udev
library. Getting the labels of all partitions just takes a few lines:

import pyudev
context = pyudev.Context()
for device in context.list_devices(subsystem='block', DEVTYPE='partition'):
... print(device.get('ID_FS_LABEL', 'unlabeled partition'))
...
boot
swap
system

The website_ provides a detailed user guide_ and a complete API reference_.

Support

Please report issues and questions to the issue tracker, but respect the
following guidelines:

  • Check that the issue has not already been reported.
  • Check that the issue is not already fixed in the master branch.
  • Open issues with clear title and a detailed description in grammatically
    correct, complete sentences.
  • Include the Python version and the udev version (see udevadm --version) in
    the description of your issue.

Development

The source code is hosted on GitHub_::

git clone git://github.com/pyudev/pyudev.git

Please fork the repository and send pull requests with your fixes or new
features, but respect the following guidelines:

  • Read how to properly contribute to open source projects on GitHub <http://gun.io/blog/how-to-github-fork-branch-and-pull-request/>_.
  • Understand the branching model <http://nvie.com/posts/a-successful-git-branching-model/>_.
  • Write good commit messages <http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html>_.
  • Add unit tests if possible (refer to the testsuite documentation <http://pyudev.readthedocs.org/en/latest/tests/index.html>_).
  • Add API documentation in docstrings.
  • Open a pull request <https://help.github.com/articles/using-pull-requests>_
    that relates to but one subject with a clear title and description in
    grammatically correct, complete sentences.

.. _LGPL: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
.. _Python: http://www.python.org/
.. _CPython: http://www.python.org/
.. _PyPy: http://www.pypy.org/
.. _libudev: https://www.freedesktop.org/software/systemd/man/libudev.html
.. _website: http://pyudev.readthedocs.org
.. _user guide: http://pyudev.readthedocs.org/en/latest/guide.html
.. _api reference: http://pyudev.readthedocs.org/en/latest/api/index.html
.. _issue tracker: http://github.com/pyudev/pyudev/issues
.. _GitHub: http://github.com/pyudev/pyudev
.. _git: http://www.git-scm.com/

Request a New Release

I will be doing regular releases of this project every August and October,
shortly after Fedora releases are branched from rawhide.

If you believe an extra release would help you in some way, please file an
issue, explaining why you need the new release, and I expect I'll put one up.

Why should you explain why you need the new release? Well, it is helpful to me,
because pyudev is not at all part of my regular work, and I tend not to know
very much about how it is used these days.

NiceOS maintainer checklist

  • Confirm that the detected version is a stable upstream release.
  • Check upstream changelog for security fixes, ABI/API changes and build-system changes.
  • Check ABI/API compatibility and reverse dependencies.
  • Download source into NiceOS lookaside storage.
  • Update Version and related fields in SPECS/*.spec only if policy allows it.
  • Regenerate SOURCES/sources.lock.json, manifests, metadata and SBOM.
  • Build SRPM/RPM in a clean NiceOS buildroot.
  • Run package smoke tests.
  • Link PR/build logs and close this issue after update or triage.

Bot metadata

  • Tool: niceos_upstream_monitor.py 1.4
  • Generated at: 2026-04-27T23:02:16Z
<!-- niceos-upstream-monitor:fingerprint=upstream-update:python3-pyudev:0.24.4 --> <!-- niceos-upstream-monitor:package=python3-pyudev --> <!-- niceos-upstream-monitor:current=0.24.3 --> <!-- niceos-upstream-monitor:latest=0.24.4 --> # Upstream update available: `python3-pyudev` `0.24.3` → `0.24.4` ## Package - Package: `python3-pyudev` - RPM name: `python3-pyudev` - Branch: `niceos-5.2` - Current EVR: `0.24.3-1` - Update class: `patch` - Compare method: `python_rpm` - Update policy: `leaf` - Risk tags: `standard` ## Upstream - Upstream type: `pypi` - Upstream project: `-` - Upstream URL: https://files.pythonhosted.org/packages/c4/5c/6cc034da13830e3da123ccf9a30910bc868fa16670362f004e4b788d0df1/pyudev-0.24.3.tar.gz - Detected version: `0.24.4` - Tag/release: `0.24.4` - Source: `pypi_json` - Published: `2025-10-08T17:26:58.661479Z` - Release URL: https://pypi.org/project/pyudev/ - Source URL: https://files.pythonhosted.org/packages/5e/1d/8bdbf651de1002e8b58fbe817bee22b1e8bfcdd24341d42c3238ce9a75f4/pyudev-0.24.4.tar.gz - Pre-release: `False` ## Signals - Security-relevant keywords detected: `False` - Policy blocked: `False` - Policy reason: `-` - Labels: `ai-summary, bot, needs-build, needs-triage, priority/medium, update/patch, upstream-update, upstream/pypi` ## NiceSOFT AI preliminary analysis ### 1. Краткий вывод Обновление пакета `python3-pyudev` с версии 0.24.3 до 0.24.4 классифицируется как патч-уровня (patch) и не содержит явных признаков уязвимостей безопасности или критических изменений функциональности в предоставленных данных. Обновление относится к категории leaf-пакетов, что снижает вероятность каскадных проблем со сборкой, однако отсутствие детального списка изменений в релиз-нотах требует осторожности. ### 2. Риск для НАЙС.ОС **low**. Пакет является библиотекой связывания (binding) для `libudev`, классифицирован как `update_class: patch` и имеет тег риска `standard`. Отсутствие флагов `security_keywords` и статус `policy_blocked: False` указывают на низкую вероятность негативного воздействия на стабильность системы при условии стандартной процедуры тестирования. ### 3. Security/CVE Во входных данных отсутствуют прямые упоминания CVE, идентификаторы уязвимостей или ключевые слова безопасности (`security_keywords_detected_by_script: False`). В тексте релиз-нот не описывается исправление конкретных багов безопасности. ### 4. ABI/API риск В предоставленных данных отсутствует информация о содержании diff между версиями 0.24.3 и 0.24.4. Для точной оценки рисков изменения ABI/API требуется ручной анализ изменений в исходном коде или сравнение сигнатур экспортируемых функций. На основе текущего текста сделать однозначный вывод невозможно. ### 5. Риск для RPM-сборки Учитывая тип обновления `patch` и источник `pypi`, вероятность поломки сборки (сломанные `BuildRequires`, конфликты патчей, провал `%check`) оценивается как минимальная. Однако без проверки истории коммитов или логов сборки предыдущих версий точную картину оценить нельзя. ### 6. Проверки мейнтейнера - [ ] Запустить `rpmlint` на обновленном RPM-пакете. - [ ] Выполнить локальную сборку (`%build`) и проверку тестов (`%check`). - [ ] Сравнить хеш-суммы исходников upstream для подтверждения целостности. - [ ] Проверить наличие новых зависимостей в `requirements.txt` или `setup.py`, если они отличаются от текущих. - [ ] Убедиться, что патчи, применяемые к исходникам, актуальны для новой версии. ### 7. Рекомендация update candidate ### 8. Основание рекомендации Обновление помечено как `patch` с низким уровнем риска (`risk_tags: standard`) и не заблокировано политикой (`policy_blocked: False`). Отсутствуют сигналы о критических проблемах безопасности или совместимости, что позволяет рекомендовать обновление как кандидата после выполнения стандартных процедур тестирования сборки и проверки тестов. ## Upstream release notes / description A libudev binding ###### pyudev ###### 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_ 3 and compatible versions of PyPy_. 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. Usage ----- Usage of pyudev is quite simply thanks to the power of the underlying udev library. Getting the labels of all partitions just takes a few lines: >>> import pyudev >>> context = pyudev.Context() >>> for device in context.list_devices(subsystem='block', DEVTYPE='partition'): ... print(device.get('ID_FS_LABEL', 'unlabeled partition')) ... boot swap system The website_ provides a detailed `user guide`_ and a complete `API reference`_. Support ------- Please report issues and questions to the issue tracker, but respect the following guidelines: - Check that the issue has not already been reported. - Check that the issue is not already fixed in the ``master`` branch. - Open issues with clear title and a detailed description in grammatically correct, complete sentences. - Include the Python version and the udev version (see ``udevadm --version``) in the description of your issue. Development ----------- The source code is hosted on GitHub_:: git clone git://github.com/pyudev/pyudev.git Please fork the repository and send pull requests with your fixes or new features, but respect the following guidelines: - Read `how to properly contribute to open source projects on GitHub <http://gun.io/blog/how-to-github-fork-branch-and-pull-request/>`_. - Understand the `branching model <http://nvie.com/posts/a-successful-git-branching-model/>`_. - Write `good commit messages <http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html>`_. - Add unit tests if possible (refer to the `testsuite documentation <http://pyudev.readthedocs.org/en/latest/tests/index.html>`_). - Add API documentation in docstrings. - Open a `pull request <https://help.github.com/articles/using-pull-requests>`_ that relates to but one subject with a clear title and description in grammatically correct, complete sentences. .. _LGPL: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html .. _Python: http://www.python.org/ .. _CPython: http://www.python.org/ .. _PyPy: http://www.pypy.org/ .. _libudev: https://www.freedesktop.org/software/systemd/man/libudev.html .. _website: http://pyudev.readthedocs.org .. _user guide: http://pyudev.readthedocs.org/en/latest/guide.html .. _api reference: http://pyudev.readthedocs.org/en/latest/api/index.html .. _issue tracker: http://github.com/pyudev/pyudev/issues .. _GitHub: http://github.com/pyudev/pyudev .. _git: http://www.git-scm.com/ Request a New Release --------------------- I will be doing regular releases of this project every August and October, shortly after Fedora releases are branched from rawhide. If you believe an extra release would help you in some way, please file an issue, explaining why you need the new release, and I expect I'll put one up. Why should you explain why you need the new release? Well, it is helpful to me, because pyudev is not at all part of my regular work, and I tend not to know very much about how it is used these days. ## NiceOS maintainer checklist - [ ] Confirm that the detected version is a stable upstream release. - [ ] Check upstream changelog for security fixes, ABI/API changes and build-system changes. - [ ] Check ABI/API compatibility and reverse dependencies. - [ ] Download source into NiceOS lookaside storage. - [ ] Update `Version` and related fields in `SPECS/*.spec` only if policy allows it. - [ ] Regenerate `SOURCES/sources.lock.json`, manifests, metadata and SBOM. - [ ] Build SRPM/RPM in a clean NiceOS buildroot. - [ ] Run package smoke tests. - [ ] Link PR/build logs and close this issue after update or triage. ## Bot metadata - Tool: `niceos_upstream_monitor.py 1.4` - Generated at: `2026-04-27T23:02:16Z`
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
rpms/python3-pyudev#1
No description provided.