Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-django-mailman3 for
openSUSE:Factory checked in at 2025-12-18 18:35:54
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-django-mailman3 (Old)
and /work/SRC/openSUSE:Factory/.python-django-mailman3.new.1928 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-django-mailman3"
Thu Dec 18 18:35:54 2025 rev:16 rq:1323492 version:1.3.14
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-django-mailman3/python-django-mailman3.changes
2024-07-02 18:16:28.379470183 +0200
+++
/work/SRC/openSUSE:Factory/.python-django-mailman3.new.1928/python-django-mailman3.changes
2025-12-18 18:37:08.171939823 +0100
@@ -1,0 +2,5 @@
+Wed Dec 17 13:42:20 UTC 2025 - Markéta Machová <[email protected]>
+
+- Add upstream django52.patch to officially support Django 5.2
+
+-------------------------------------------------------------------
New:
----
django52.patch
----------(New B)----------
New:
- Add upstream django52.patch to officially support Django 5.2
----------(New E)----------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-django-mailman3.spec ++++++
--- /var/tmp/diff_new_pack.pop87D/_old 2025-12-18 18:37:08.739963686 +0100
+++ /var/tmp/diff_new_pack.pop87D/_new 2025-12-18 18:37:08.743963855 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python-django-mailman3
#
-# 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
@@ -17,12 +17,16 @@
%global django_min_version 4.2
-%global django_max_version 5.1
+%global django_max_version 5.3
%global mailmanclient_min_version 3.3.3
%global django_allauth_min_version 0.63
%global django_gravatar2_min_version 1.0.6
+%if 0%{?suse_version} >= 1550
+%define pythons python3
+%else
%{?sle15_python_module_pythons}
+%endif
%define modname django_mailman3
Name: python-django-mailman3
Version: 1.3.14
@@ -34,6 +38,8 @@
Source1:
%{url}/-/releases/v%{version}/downloads/%{modname}-%{version}.tar.gz.asc
Source2: %{name}.keyring
Source3: %{url}/-/raw/v%{version}/pytest.ini
+# PATCH-FIX-UPSTREAM
https://gitlab.com/mailman/django-mailman3/-/commit/465c1ffc77556bb8a80a678f53a40f16b9766cc6
feat: Add Python 3.13 and Django 5.2 (LTS) support
+Patch0: django52.patch
BuildRequires: %{python_module pdm}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools}
++++++ django52.patch ++++++
>From 465c1ffc77556bb8a80a678f53a40f16b9766cc6 Mon Sep 17 00:00:00 2001
From: SATOH Fumiyasu <[email protected]>
Date: Fri, 1 Aug 2025 23:20:24 +0000
Subject: [PATCH] feat: Add Python 3.13 and Django 5.2 (LTS) support
---
.gitlab-ci.yml | 41 ++++++++++++++++++-----------------------
README.rst | 2 ++
pyproject.toml | 2 +-
tox.ini | 8 ++------
4 files changed, 23 insertions(+), 30 deletions(-)
Index: django_mailman3-1.3.14/pyproject.toml
===================================================================
--- django_mailman3-1.3.14.orig/pyproject.toml
+++ django_mailman3-1.3.14/pyproject.toml
@@ -19,7 +19,7 @@ classifiers = [
dependencies = [
"django-allauth[socialaccount,openid]>=0.63",
"django-gravatar2 >= 1.0.6",
- "django>=4.2,<5.1",
+ "django>=4.2,<5.3",
"mailmanclient>=3.3.3",
]
requires-python = ">=3.9"