Version in base suite: 0.17-1 Base version: feed2toot_0.17-1 Target version: feed2toot_0.17-1+deb13u1 Base file: /srv/ftp-master.debian.org/ftp/pool/main/f/feed2toot/feed2toot_0.17-1.dsc Target file: /srv/ftp-master.debian.org/policy/pool/main/f/feed2toot/feed2toot_0.17-1+deb13u1.dsc changelog | 9 +++++++ patches/fix-compatibility-with-py3.13.patch | 34 ++++++++++++++++++++++++++++ patches/series | 1 tests/control | 2 + 4 files changed, 46 insertions(+) dpkg-source: warning: cannot verify inline signature for /srv/release.debian.org/tmp/tmp5cawzcp2/feed2toot_0.17-1.dsc: no acceptable signature found dpkg-source: warning: cannot verify inline signature for /srv/release.debian.org/tmp/tmp5cawzcp2/feed2toot_0.17-1+deb13u1.dsc: no acceptable signature found diff -Nru feed2toot-0.17/debian/changelog feed2toot-0.17/debian/changelog --- feed2toot-0.17/debian/changelog 2021-09-02 06:17:36.000000000 +0000 +++ feed2toot-0.17/debian/changelog 2026-03-07 22:29:23.000000000 +0000 @@ -1,3 +1,12 @@ +feed2toot (0.17-1+deb13u1) trixie; urgency=medium + + * Team upload. + * debian/patches/fix-compatibility-with-py3.13.patch: add new patch so + feed2toot works again. (Closes: #1118778) + * debian/tests/control: add superficial test to catch problems. + + -- Carlos Henrique Lima Melara Sat, 07 Mar 2026 19:29:23 -0300 + feed2toot (0.17-1) unstable; urgency=medium * New upstream release diff -Nru feed2toot-0.17/debian/patches/fix-compatibility-with-py3.13.patch feed2toot-0.17/debian/patches/fix-compatibility-with-py3.13.patch --- feed2toot-0.17/debian/patches/fix-compatibility-with-py3.13.patch 1970-01-01 00:00:00.000000000 +0000 +++ feed2toot-0.17/debian/patches/fix-compatibility-with-py3.13.patch 2026-03-07 22:29:23.000000000 +0000 @@ -0,0 +1,34 @@ +From: fluffy +Date: Thu, 12 Sep 2024 20:56:43 -0700 +Subject: Switch from long-deprecated SafeConfigParser to ConfigParser + +Bug: https://gitlab.com/chaica/feed2toot/-/issues/87 +Bug-Debian: https://bugs.debian.org/1118778 +Origin: https://gitlab.com/chaica/feed2toot/-/merge_requests/25 +Last-Update: 2025-11-08 +--- + feed2toot/confparse.py | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/feed2toot/confparse.py b/feed2toot/confparse.py +index 54010a2..c9cb66f 100644 +--- a/feed2toot/confparse.py ++++ b/feed2toot/confparse.py +@@ -17,7 +17,7 @@ + '''Get values of the configuration file''' + + # standard library imports +-from configparser import SafeConfigParser ++from configparser import ConfigParser + import logging + import os + import os.path +@@ -58,7 +58,7 @@ class ConfParse: + for pathtoconfig in self.clioptions.configs: + options = {} + # read the configuration file +- config = SafeConfigParser() ++ config = ConfigParser() + if not config.read(os.path.expanduser(pathtoconfig)): + sys.exit('Could not read config file') + #################### diff -Nru feed2toot-0.17/debian/patches/series feed2toot-0.17/debian/patches/series --- feed2toot-0.17/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 +++ feed2toot-0.17/debian/patches/series 2026-03-07 22:29:23.000000000 +0000 @@ -0,0 +1 @@ +fix-compatibility-with-py3.13.patch diff -Nru feed2toot-0.17/debian/tests/control feed2toot-0.17/debian/tests/control --- feed2toot-0.17/debian/tests/control 1970-01-01 00:00:00.000000000 +0000 +++ feed2toot-0.17/debian/tests/control 2026-03-07 22:29:23.000000000 +0000 @@ -0,0 +1,2 @@ +Test-Command: feed2toot --help +Restrictions: superficial