Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-socksio for openSUSE:Factory checked in at 2026-08-25 13:17:44 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-socksio (Old) and /work/SRC/openSUSE:Factory/.python-socksio.new.1258 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-socksio" Tue Aug 25 13:17:44 2026 rev:2 rq:1373321 version:1.0.0 Changes: -------- --- /work/SRC/openSUSE:Factory/python-socksio/python-socksio.changes 2026-06-16 16:42:46.058010019 +0200 +++ /work/SRC/openSUSE:Factory/.python-socksio.new.1258/python-socksio.changes 2026-08-25 13:17:46.731072520 +0200 @@ -1,0 +2,6 @@ +Mon Aug 24 06:03:26 UTC 2026 - Steve Kowalik <[email protected]> + +- Add patch support-flit-core-4.patch: + * Suppport changes required by flit-core 4. + +------------------------------------------------------------------- New: ---- support-flit-core-4.patch ----------(New B)---------- New: - Add patch support-flit-core-4.patch: * Suppport changes required by flit-core 4. ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-socksio.spec ++++++ --- /var/tmp/diff_new_pack.ugCvBT/_old 2026-08-25 13:17:48.624139215 +0200 +++ /var/tmp/diff_new_pack.ugCvBT/_new 2026-08-25 13:17:48.625139251 +0200 @@ -1,7 +1,7 @@ # # spec file for package python-socksio # -# Copyright (c) 2026 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 @@ -23,10 +23,12 @@ License: MIT URL: https://github.com/sethmlarson/socksio Source: https://files.pythonhosted.org/packages/source/s/socksio/socksio-%{version}.tar.gz -BuildRequires: python-rpm-macros +# PATCH-FIX-UPSTREAM Based on first commit from gh#sethmlarson/socksio#66 +Patch0: support-flit-core-4.patch BuildRequires: %{python_module flit-core >= 2} BuildRequires: %{python_module pip} BuildRequires: fdupes +BuildRequires: python-rpm-macros # Test requirements BuildRequires: %{python_module pytest} # ++++++ support-flit-core-4.patch ++++++ >From 504f7e51682b9526d3ecc7ea893338af1fedfb2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= <[email protected]> Date: Thu, 6 Aug 2026 10:30:49 +0200 Subject: [PATCH 1/2] Use PEP 621 metadata to fix building with flit-core >=5 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 | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) Index: socksio-1.0.0/pyproject.toml =================================================================== --- socksio-1.0.0.orig/pyproject.toml +++ socksio-1.0.0/pyproject.toml @@ -2,13 +2,14 @@ requires = ["flit_core >=2,<3"] build-backend = "flit_core.buildapi" -[tool.flit.metadata] -module = "socksio" -author = "Seth Michael Larson" -author-email = "[email protected]" -home-page = "https://github.com/sethmlarson/socksio" -requires-python=">=3.6" -description-file="README.md" +[project] +name = "socksio" +authors = [ + { name = "Seth Michael Larson", email = "[email protected]" }, +] +readme = "README.md" +requires-python = ">=3.6" +dynamic = ["version", "description"] classifiers = [ "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3.6", @@ -19,6 +20,9 @@ classifiers = [ "Topic :: Internet :: Proxy Servers", ] +[project.urls] +Homepage = "https://github.com/sethmlarson/socksio" + [tool.isort] combine_as_imports = true force_grid_wrap = 0
