Version in base suite: 1.13.2-1 Base version: python-django-storages_1.13.2-1 Target version: python-django-storages_1.13.2-1+deb12u1 Base file: /srv/ftp-master.debian.org/ftp/pool/main/p/python-django-storages/python-django-storages_1.13.2-1.dsc Target file: /srv/ftp-master.debian.org/policy/pool/main/p/python-django-storages/python-django-storages_1.13.2-1+deb12u1.dsc changelog | 7 +++++++ patches/fix-compat-with-security-update.patch | 13 +++++++++++++ patches/series | 1 + 3 files changed, 21 insertions(+) dpkg-source: warning: cannot verify inline signature for /srv/release.debian.org/tmp/tmpxrl565qv/python-django-storages_1.13.2-1.dsc: no acceptable signature found dpkg-source: warning: cannot verify inline signature for /srv/release.debian.org/tmp/tmpxrl565qv/python-django-storages_1.13.2-1+deb12u1.dsc: no acceptable signature found diff -Nru python-django-storages-1.13.2/debian/changelog python-django-storages-1.13.2/debian/changelog --- python-django-storages-1.13.2/debian/changelog 2023-01-05 20:17:34.000000000 +0000 +++ python-django-storages-1.13.2/debian/changelog 2026-02-15 16:38:13.000000000 +0000 @@ -1,3 +1,10 @@ +python-django-storages (1.13.2-1+deb12u1) bookworm-security; urgency=medium + + * Fix the compatibility of Dropbox backend with latest Django security + update (all be released alongside) + + -- Moritz Mühlenhoff Sun, 15 Feb 2026 17:38:13 +0100 + python-django-storages (1.13.2-1) unstable; urgency=low * New upstream release. diff -Nru python-django-storages-1.13.2/debian/patches/fix-compat-with-security-update.patch python-django-storages-1.13.2/debian/patches/fix-compat-with-security-update.patch --- python-django-storages-1.13.2/debian/patches/fix-compat-with-security-update.patch 1970-01-01 00:00:00.000000000 +0000 +++ python-django-storages-1.13.2/debian/patches/fix-compat-with-security-update.patch 2026-02-15 16:38:13.000000000 +0000 @@ -0,0 +1,13 @@ +Chris Lamb tracked down the autopkgtest failure for the latest +Django update in Bookworm to this patch. + +--- python-django-storages-1.13.2.orig/storages/backends/dropbox.py ++++ python-django-storages-1.13.2/storages/backends/dropbox.py +@@ -199,7 +199,6 @@ class DropBoxStorage(Storage): + + def get_available_name(self, name, max_length=None): + """Overwrite existing file with the same name.""" +- name = self._full_path(name) + if self.write_mode == 'overwrite': + return get_available_overwrite_name(name, max_length) + return super().get_available_name(name, max_length) diff -Nru python-django-storages-1.13.2/debian/patches/series python-django-storages-1.13.2/debian/patches/series --- python-django-storages-1.13.2/debian/patches/series 2023-01-05 20:17:34.000000000 +0000 +++ python-django-storages-1.13.2/debian/patches/series 2026-02-15 16:38:13.000000000 +0000 @@ -1,2 +1,3 @@ 0001-Skip-tests-if-required-modules-are-not-installed.patch 0002-Allow-one-to-disable-network-tests.patch +fix-compat-with-security-update.patch