Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-requests-download for 
openSUSE:Factory checked in at 2026-08-24 12:11:50
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-requests-download (Old)
 and      /work/SRC/openSUSE:Factory/.python-requests-download.new.1258 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-requests-download"

Mon Aug 24 12:11:50 2026 rev:5 rq:1373326 version:0.1.2

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-requests-download/python-requests-download.changes
        2025-06-11 18:35:35.437762252 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-requests-download.new.1258/python-requests-download.changes
      2026-08-24 12:17:17.222105178 +0200
@@ -1,0 +2,6 @@
+Mon Aug 24 06:37:35 UTC 2026 - Steve Kowalik <[email protected]>
+
+- Add patch support-flit-core-4.patch:
+  * Support changes required by flit-core 4.
+
+-------------------------------------------------------------------

New:
----
  support-flit-core-4.patch

----------(New B)----------
  New:
- Add patch support-flit-core-4.patch:
  * Support changes required by flit-core 4.
----------(New E)----------

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-requests-download.spec ++++++
--- /var/tmp/diff_new_pack.kc3UCC/_old  2026-08-24 12:17:18.199139976 +0200
+++ /var/tmp/diff_new_pack.kc3UCC/_new  2026-08-24 12:17:18.202140083 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-requests-download
 #
-# 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
@@ -22,13 +22,13 @@
 Release:        0
 Summary:        Python module to download and save files using python-requests
 License:        MIT
-Group:          Development/Languages/Python
 URL:            https://www.github.com/takluyver/requests_download
 Source:         
https://files.pythonhosted.org/packages/source/r/requests_download/requests_download-%{version}.tar.gz
 Source1:        
https://raw.githubusercontent.com/takluyver/requests_download/master/LICENSE
+# PATCh-FIX-UPSTREAM Based on gh#takluyver/requests_download#4
+Patch0:         support-flit-core-4.patch
 BuildRequires:  %{python_module flit}
 BuildRequires:  %{python_module pip}
-BuildRequires:  %{python_module wheel}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
 Requires:       python-progressbar
@@ -40,7 +40,7 @@
 This module downloads files using requests and saves them to a target path.
 
 %prep
-%setup -q -n requests_download-%{version}
+%autosetup -p1 -n requests_download-%{version}
 cp %{SOURCE1} .
 
 %build
@@ -54,6 +54,6 @@
 %doc README.rst
 %license LICENSE
 %{python_sitelib}/requests_download.py
-%{python_sitelib}/requests[-_]download-%{version}*-info
+%{python_sitelib}/requests[-_]download-%{version}.dist-info
 %pycache_only %{python_sitelib}/__pycache__/requests_download*
 

++++++ support-flit-core-4.patch ++++++
>From 38c4f88daadb6be72412dc0fc137e4d2ca8afccf Mon Sep 17 00:00:00 2001
From: Maxwell G <[email protected]>
Date: Wed, 19 Aug 2026 20:29:26 -0500
Subject: [PATCH 1/2] packaging: adopt PEP 621 metadata for flit-core v4 compat

---
 pyproject.toml | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

Index: requests_download-0.1.2/pyproject.toml
===================================================================
--- requests_download-0.1.2.orig/pyproject.toml
+++ requests_download-0.1.2/pyproject.toml
@@ -1,13 +1,13 @@
 [build-system]
-requires = ["flit"]
-build-backend = "flit.buildapi"
-
-[tool.flit.metadata]
-module = "requests_download"
-author = "Thomas Kluyver"
-author-email = "[email protected]"
-home-page = "https://www.github.com/takluyver/requests_download";
-description-file = "README.rst"
-classifiers = ["License :: OSI Approved :: MIT License"]
-requires = ["requests"]
+requires = ["flit_core  >=3.11,<5"]
+build-backend = "flit_core.buildapi"
 
+[project]
+name = "requests_download"
+dynamic = ["version", "description"]
+authors = [{ name = "Thomas Kluyver", email = "[email protected]" }]
+urls.Homepage = "https://www.github.com/takluyver/requests_download";
+readme = "README.rst"
+license = "MIT"
+license-files = ["LICENSE"]
+dependencies = ["requests"]

Reply via email to