forked from pool/python-pyudev
Compare commits
7 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 2e8186b58d | |||
| a447619294 | |||
| 68e166364a | |||
| 46f9addb38 | |||
| 4a4d96ee50 | |||
| f83db3bc67 | |||
| e67d7bd030 |
BIN
python-pyudev-0.24.3-gh.tar.gz
(Stored with Git LFS)
BIN
python-pyudev-0.24.3-gh.tar.gz
(Stored with Git LFS)
Binary file not shown.
3
python-pyudev-0.24.4-gh.tar.gz
Normal file
3
python-pyudev-0.24.4-gh.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7f2e9f14151c314b0c252313e933138a4901baa25505e20c71e77080ee8a90f7
|
||||
size 80770
|
||||
@@ -1,3 +1,29 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 31 11:44:57 UTC 2025 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- update to 0.24.4:
|
||||
* Add device attributes unset():
|
||||
https://github.com/pyudev/pyudev/pull/525
|
||||
* Remove license classifier deprecated by PEP 639:
|
||||
https://github.com/pyudev/pyudev/pull/522
|
||||
* Tidies and Maintenance:
|
||||
https://github.com/pyudev/pyudev/pull/529
|
||||
https://github.com/pyudev/pyudev/pull/528
|
||||
https://github.com/pyudev/pyudev/pull/526
|
||||
https://github.com/pyudev/pyudev/pull/524
|
||||
https://github.com/pyudev/pyudev/pull/521
|
||||
https://github.com/pyudev/pyudev/pull/520
|
||||
https://github.com/pyudev/pyudev/pull/518
|
||||
https://github.com/pyudev/pyudev/pull/512
|
||||
https://github.com/pyudev/pyudev/pull/511
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 6 14:37:49 UTC 2024 - Matej Cepl <mcepl@cepl.eu>
|
||||
|
||||
- Skipping test suite completely, it just doesn’t work in the
|
||||
limited build environment (gh#pyudev/pyudev#404).
|
||||
- Remove unnecessary patch support-pytest-8.patch.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed May 15 04:57:43 UTC 2024 - Steve Kowalik <steven.kowalik@suse.com>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-pyudev
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC and contributors
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -18,7 +18,7 @@
|
||||
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-pyudev
|
||||
Version: 0.24.3
|
||||
Version: 0.24.4
|
||||
Release: 0
|
||||
Summary: Udev bindings for Python
|
||||
License: LGPL-2.1-or-later
|
||||
@@ -30,11 +30,14 @@ Patch0: pytest_register_mark.patch
|
||||
# PATCH-FIX-OPENSUSE hypothesis_settings.patch mcepl@suse.com
|
||||
# tests timeout on OBS
|
||||
Patch2: hypothesis_settings.patch
|
||||
# PATCH-FIX-UPSTREAM gh#pyudev/pyudev#512
|
||||
Patch3: support-pytest-8.patch
|
||||
BuildRequires: %{python_module Sphinx}
|
||||
BuildRequires: %{python_module docutils}
|
||||
BuildRequires: %{python_module hypothesis}
|
||||
BuildRequires: %{python_module pip}
|
||||
BuildRequires: %{python_module pytest}
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: %{python_module wheel}
|
||||
BuildRequires: %{python_module yapf}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: pkgconfig
|
||||
BuildRequires: python-rpm-macros
|
||||
@@ -42,11 +45,6 @@ BuildRequires: pkgconfig(libudev)
|
||||
BuildRequires: pkgconfig(udev)
|
||||
Requires: libudev1
|
||||
BuildArch: noarch
|
||||
BuildRequires: %{python_module Sphinx}
|
||||
BuildRequires: %{python_module docutils}
|
||||
BuildRequires: %{python_module hypothesis}
|
||||
BuildRequires: %{python_module pytest}
|
||||
BuildRequires: %{python_module yapf}
|
||||
%if 0%{?suse_version} < 1550
|
||||
BuildRequires: python-mock
|
||||
%endif
|
||||
@@ -76,13 +74,12 @@ sed -i -e "s|'sphinx.ext.intersphinx',\\?||" -e "s|'sphinxcontrib.issuetracker',
|
||||
|
||||
%check
|
||||
# We don't have real /dev in osc build chroot gh#pyudev/pyudev#404
|
||||
# ... or apparently, a reliable testsuite gh#pyudev/pyudev#457
|
||||
%pytest -k 'not (real_udev or test_as or test_getitem)'
|
||||
# %%pytest
|
||||
|
||||
%files %{python_files}
|
||||
%license COPYING
|
||||
%doc CHANGES.rst README.rst
|
||||
%{python_sitelib}/pyudev
|
||||
%{python_sitelib}/pyudev-%{version}.dist-info
|
||||
%{python_sitelib}/pyudev-%{version}*-info
|
||||
|
||||
%changelog
|
||||
|
||||
@@ -1,29 +0,0 @@
|
||||
From 536480579e8c1d7232725099e0a75a79950e4dcb Mon Sep 17 00:00:00 2001
|
||||
From: Steve Kowalik <steven@wedontsleep.org>
|
||||
Date: Wed, 15 May 2024 14:51:13 +1000
|
||||
Subject: [PATCH] Support pytest 8 changes.
|
||||
|
||||
pytest 8 removed the hook that was calling nose-specific methods, such
|
||||
as setup and teardown. However, there is still support for that, the
|
||||
methods just have _method on the end, so change them both.
|
||||
---
|
||||
tests/test_monitor.py | 4 ++--
|
||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/tests/test_monitor.py b/tests/test_monitor.py
|
||||
index cacd5040..4b49d094 100644
|
||||
--- a/tests/test_monitor.py
|
||||
+++ b/tests/test_monitor.py
|
||||
@@ -277,10 +277,10 @@ def make_observer(self, monitor, use_deprecated=False):
|
||||
self.observer = MonitorObserver(monitor, callback=self.callback)
|
||||
return self.observer
|
||||
|
||||
- def setup(self):
|
||||
+ def setup_method(self):
|
||||
self.events = []
|
||||
|
||||
- def teardown(self):
|
||||
+ def teardown_method(self):
|
||||
self.events = None
|
||||
|
||||
def test_deprecated_handler(self, fake_monitor, fake_monitor_device):
|
||||
Reference in New Issue
Block a user