Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-ptyprocess for
openSUSE:Factory checked in at 2026-08-25 13:18:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-ptyprocess (Old)
and /work/SRC/openSUSE:Factory/.python-ptyprocess.new.1258 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-ptyprocess"
Tue Aug 25 13:18:06 2026 rev:13 rq:1373504 version:0.7.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-ptyprocess/python-ptyprocess.changes
2025-06-11 16:19:39.187272831 +0200
+++
/work/SRC/openSUSE:Factory/.python-ptyprocess.new.1258/python-ptyprocess.changes
2026-08-25 13:18:07.639809167 +0200
@@ -1,0 +2,6 @@
+Tue Aug 25 04:27:02 UTC 2026 - Steve Kowalik <[email protected]>
+
+- Add patch support-flit-core-4.patch:
+ * Use PEP 621 metadata to support flit-core >= 4.
+
+-------------------------------------------------------------------
New:
----
support-flit-core-4.patch
----------(New B)----------
New:
- Add patch support-flit-core-4.patch:
* Use PEP 621 metadata to support flit-core >= 4.
----------(New E)----------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-ptyprocess.spec ++++++
--- /var/tmp/diff_new_pack.gD35tM/_old 2026-08-25 13:18:08.439837354 +0200
+++ /var/tmp/diff_new_pack.gD35tM/_new 2026-08-25 13:18:08.441837424 +0200
@@ -1,7 +1,7 @@
#
# spec file for package python-ptyprocess
#
-# Copyright (c) 2025 SUSE LLC
+# Copyright (c) 2026 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
@@ -26,6 +26,8 @@
Source:
https://files.pythonhosted.org/packages/source/p/ptyprocess/ptyprocess-%{version}.tar.gz
# PATCH-FIX-UPSTREAM - gh/pexpect/ptyprocess#75 - Remove unittest.makeSuite,
gone from Python 3.13
Patch1:
https://github.com/pexpect/ptyprocess/pull/75.patch#/remove-old-unittest-functions.patch
+# PATCH-FIX-UPSTREAM Based on gh#pexpect/ptyprocess#84
+Patch2: support-flit-core-4.patch
BuildRequires: %{python_module flit-core}
BuildRequires: %{python_module pip}
BuildRequires: fdupes
@@ -51,11 +53,6 @@
%install
%pyproject_install
-# Fix python-bytecode-inconsistent-mtime
-pushd %{buildroot}%{python_sitelib}
-find . -name '*.pyc' -exec rm -f '{}' ';'
-python%python_bin_suffix -m compileall *.py ';'
-popd
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
++++++ support-flit-core-4.patch ++++++
>From c7fcf9ea8414c2815f7f1b1ae8baf92b1cad9ef4 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= <[email protected]>
Date: Fri, 7 Aug 2026 17:10:13 +0200
Subject: [PATCH] Use PEP 621 metadata to fix flit-core-4 compatibility
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Signed-off-by: Michał Górny <[email protected]>
---
pyproject.toml | 17 ++++++++++-------
1 file changed, 10 insertions(+), 7 deletions(-)
Index: ptyprocess-0.7.0/pyproject.toml
===================================================================
--- ptyprocess-0.7.0.orig/pyproject.toml
+++ ptyprocess-0.7.0/pyproject.toml
@@ -1,13 +1,14 @@
[build-system]
-requires = ["flit_core >=2,<4"]
+requires = ["flit_core >=2,<5"]
build-backend = "flit_core.buildapi"
-[tool.flit.metadata]
-module = "ptyprocess"
-author = "Thomas Kluyver"
-author-email = "[email protected]"
-home-page = "https://github.com/pexpect/ptyprocess"
-description-file = "README.rst"
+[project]
+name = "ptyprocess"
+authors = [
+ { name = "Thomas Kluyver", email = "[email protected]" },
+]
+readme = "README.rst"
+dynamic = ["version", "description"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
@@ -22,3 +23,5 @@ classifiers = [
"Topic :: Terminals"
]
+[project.urls]
+Homepage = "https://github.com/pexpect/ptyprocess"