Files
packages/lang/python/python-psutil/patches/100-fix-non-Linux-compile.patch
Alexandru Ardelean 47d4485ae4 python-psutil: bump to 7.2.2
Notable changes since 5.9.5:

v6.0.0:
- process_iter() is now ~20x faster (no longer pre-emptively checks
  PID reuse); add process_iter.cache_clear() API
- Process.connections() renamed to Process.net_connections()
  (old name deprecated)
- disk_partitions() namedtuple drops maxfile/maxpath fields
- Support building with free-threaded CPython 3.13

v7.0.0:
- Drop Python 2.7 support

v7.2.0:
- New heap_info() and heap_trim() functions for native C heap allocator
  access (glibc, mimalloc, libmalloc)
- Tests are no longer part of the installed package

v7.2.2:
- [Linux] Process.wait() now uses pidfd_open() + poll() for waiting
  (no busy loop, faster response); requires Linux >= 5.3 + Python 3.9,
  falls back to polling otherwise
- [macOS/BSD] Process.wait() now uses kqueue() for waiting
- Various macOS memory leak and error handling fixes

Also refresh 100-fix-non-Linux-compile.patch for the updated setup.py
(noqa comment style changed; _compat imports removed upstream).
Add test.sh.

Full changelog:
https://github.com/giampaolo/psutil/blob/master/HISTORY.rst

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
2026-03-25 07:05:06 +02:00

30 lines
832 B
Diff

--- a/setup.py
+++ b/setup.py
@@ -55,16 +55,16 @@ HERE = os.path.abspath(os.path.dirname(_
# ...so we can import _common.py
sys.path.insert(0, os.path.join(HERE, "psutil"))
-from _common import AIX # noqa: E402
-from _common import BSD # noqa: E402
-from _common import FREEBSD # noqa: E402
-from _common import LINUX # noqa: E402
-from _common import MACOS # noqa: E402
-from _common import NETBSD # noqa: E402
-from _common import OPENBSD # noqa: E402
-from _common import POSIX # noqa: E402
-from _common import SUNOS # noqa: E402
-from _common import WINDOWS # noqa: E402
+AIX = False
+BSD = False
+FREEBSD = False
+LINUX = True
+MACOS = False
+NETBSD = False
+OPENBSD = False
+POSIX = True
+SUNOS = False
+WINDOWS = False
from _common import hilite # noqa: E402
PYPY = '__pypy__' in sys.builtin_module_names