public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/getmail6] epel10: v6.19.9
@ 2026-08-10 19:05 Dick Marinus
0 siblings, 0 replies; only message in thread
From: Dick Marinus @ 2026-08-10 19:05 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/getmail6
Branch : epel10
Commit : 7eeba66c75203f2825cace417fe46a8252fb7e73
Author : Dick Marinus <dick@mrns.nl>
Date : 2025-08-15T13:00:42+02:00
Stats : +31/-73 in 5 file(s)
URL : https://src.fedoraproject.org/rpms/getmail6/c/7eeba66c75203f2825cace417fe46a8252fb7e73?branch=epel10
Log:
v6.19.9
---
diff --git a/.gitignore b/.gitignore
index 7d2a132..23660ad 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
/getmail6-6.19.8.tar.gz
+/getmail6-6.19.9.tar.gz
diff --git a/0001-Python-3.14-fixes.patch b/0001-Python-3.14-fixes.patch
deleted file mode 100644
index f9d75f7..0000000
--- a/0001-Python-3.14-fixes.patch
+++ /dev/null
@@ -1,70 +0,0 @@
-From 0bcfa1642b836b21cc9b158dbf05dff2f1032ab6 Mon Sep 17 00:00:00 2001
-From: Dick Marinus <dick@mrns.nl>
-Date: Tue, 20 May 2025 21:03:40 +0200
-Subject: [PATCH] Python 3.14 fixes
-
----
- test/test_mock_servers.py | 12 ++++++------
- 1 file changed, 6 insertions(+), 6 deletions(-)
-
-diff --git a/test/test_mock_servers.py b/test/test_mock_servers.py
-index 336cff1..ed01fb6 100644
---- a/test/test_mock_servers.py
-+++ b/test/test_mock_servers.py
-@@ -113,7 +113,7 @@ def get_getmail():
- spec = spec_from_loader("getmail", SourceFileLoader("getmail", "getmail"))
- getmail = module_from_spec(spec)
- spec.loader.exec_module(getmail)
-- return getmail
-+ getmail.main()
-
-
- def mbox_init(tmpdir):
-@@ -167,7 +167,7 @@ def test_pop3(destination_type, destination_init):
- """
- )
- )
-- p = multiprocessing.Process(target=get_getmail().main, args=())
-+ p = multiprocessing.Process(target=get_getmail, args=())
- p.start()
- mock_tcp.accept()
- mock_tcp.send("+OK:\n")
-@@ -219,7 +219,7 @@ def test_pop3_broken_uidl(destination_type, destination_init):
- """
- )
- )
-- p = multiprocessing.Process(target=get_getmail().main, args=())
-+ p = multiprocessing.Process(target=get_getmail, args=())
- p.start()
- mock_tcp.accept()
- mock_tcp.send("+OK:\n")
-@@ -293,7 +293,7 @@ def test_pop3_multidrop(destination_type, destination_init):
- """
- )
- )
-- p = multiprocessing.Process(target=get_getmail().main, args=())
-+ p = multiprocessing.Process(target=get_getmail, args=())
- p.start()
- mock_tcp.accept()
- mock_tcp.send("+OK:\n")
-@@ -345,7 +345,7 @@ def test_imap(destination_type, destination_init):
- """
- )
- )
-- p = multiprocessing.Process(target=get_getmail().main, args=())
-+ p = multiprocessing.Process(target=get_getmail, args=())
- p.start()
- mock_tcp.accept()
- mock_tcp.send("* OK\r\n")
-@@ -402,7 +402,7 @@ def test_imap_full():
- """
- )
- )
-- p = multiprocessing.Process(target=get_getmail().main, args=())
-+ p = multiprocessing.Process(target=get_getmail, args=())
- p.start()
- mock_tcp.accept()
- mock_tcp.send("* OK\r\n")
---
-2.49.0
-
diff --git a/0001-use-multiprocessing-start-method-for-for-tests.patch b/0001-use-multiprocessing-start-method-for-for-tests.patch
new file mode 100644
index 0000000..e3acf28
--- /dev/null
+++ b/0001-use-multiprocessing-start-method-for-for-tests.patch
@@ -0,0 +1,27 @@
+From 473ed426b001370da577adb444a61c047a2e47b0 Mon Sep 17 00:00:00 2001
+From: Dick Marinus <dick@mrns.nl>
+Date: Fri, 15 Aug 2025 12:42:15 +0200
+Subject: [PATCH] use multiprocessing start method for for tests
+
+---
+ test/test_mock_servers.py | 4 ++++
+ 1 file changed, 4 insertions(+)
+
+diff --git a/test/test_mock_servers.py b/test/test_mock_servers.py
+index 8fe061c..0cdd597 100644
+--- a/test/test_mock_servers.py
++++ b/test/test_mock_servers.py
+@@ -12,6 +12,10 @@ from typing import NamedTuple
+ import pytest
+ import email.message
+
++@pytest.fixture(scope="session", autouse=True)
++def always_spawn():
++ multiprocessing.set_start_method("fork")
++
+ class FetchSize(NamedTuple):
+ uid: int
+ size: int
+--
+2.49.0
+
diff --git a/getmail6.spec b/getmail6.spec
index 6b5dca1..6b58d6e 100644
--- a/getmail6.spec
+++ b/getmail6.spec
@@ -1,11 +1,11 @@
Name: getmail6
-Version: 6.19.8
+Version: 6.19.9
Release: %autorelease
Summary: A mail retrieval, sorting, and delivering system
License: GPL-2.0-only and Apache-2.0
URL: https://www.getmail6.org/
Source: %{pypi_source getmail6}
-Patch: 0001-Python-3.14-fixes.patch
+Patch: 0001-use-multiprocessing-start-method-for-for-tests.patch
BuildArch: noarch
BuildRequires: python3-devel
diff --git a/sources b/sources
index 4edcf5f..56d7c45 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (getmail6-6.19.8.tar.gz) = 78026ab2c12c1bb88eb96f8e5b8ff3a8a3a574d9100fa19c4bc686f4919c0ef40a584b75e8e5b36240f1b8fb51ed7e7599e4739a9e4523d1d9f27a4616a17a12
+SHA512 (getmail6-6.19.9.tar.gz) = a8217557e6acef5f1ac75ab7f00fedc312d086c6f6209177273b64179e1dd1f0621dc724fb49f71ac68ae8a9533f6c1f33b791adf70a97061e7c5d21f1dcdd64
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-08-10 19:05 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-08-10 19:05 [rpms/getmail6] epel10: v6.19.9 Dick Marinus
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox