Version in base suite: 1.7.2-1 Base version: rust-tealdeer_1.7.2-1 Target version: rust-tealdeer_1.7.2-1+deb13u1 Base file: /srv/ftp-master.debian.org/ftp/pool/main/r/rust-tealdeer/rust-tealdeer_1.7.2-1.dsc Target file: /srv/ftp-master.debian.org/policy/pool/main/r/rust-tealdeer/rust-tealdeer_1.7.2-1+deb13u1.dsc changelog | 8 ++++++++ control | 1 - copyright.debcargo.hint | 4 ++-- patches/series | 1 + patches/update-archive-url.diff | 25 +++++++++++++++++++++++++ 5 files changed, 36 insertions(+), 3 deletions(-) dpkg-source: warning: cannot verify inline signature for /srv/release.debian.org/tmp/tmptd9r1fc5/rust-tealdeer_1.7.2-1.dsc: no acceptable signature found dpkg-source: warning: cannot verify inline signature for /srv/release.debian.org/tmp/tmptd9r1fc5/rust-tealdeer_1.7.2-1+deb13u1.dsc: no acceptable signature found diff -Nru rust-tealdeer-1.7.2/debian/changelog rust-tealdeer-1.7.2/debian/changelog --- rust-tealdeer-1.7.2/debian/changelog 2025-03-26 15:10:10.000000000 +0000 +++ rust-tealdeer-1.7.2/debian/changelog 2026-02-01 18:08:26.000000000 +0000 @@ -1,3 +1,11 @@ +rust-tealdeer (1.7.2-1+deb13u1) trixie; urgency=medium + + * Team upload. + * Cherry-pick upstream patch updating archive url (Closes: #1126698) + * Package tealdeer 1.7.2 from crates.io using debcargo 2.7.8 + + -- Matthias Geiger Sun, 01 Feb 2026 19:08:26 +0100 + rust-tealdeer (1.7.2-1) unstable; urgency=medium * Package tealdeer 1.7.2 from crates.io using debcargo 2.7.8 diff -Nru rust-tealdeer-1.7.2/debian/control rust-tealdeer-1.7.2/debian/control --- rust-tealdeer-1.7.2/debian/control 2025-03-26 15:10:10.000000000 +0000 +++ rust-tealdeer-1.7.2/debian/control 2026-02-01 18:08:26.000000000 +0000 @@ -39,7 +39,6 @@ Package: tealdeer Architecture: any -Multi-Arch: allowed Depends: ${misc:Depends}, ${shlibs:Depends}, diff -Nru rust-tealdeer-1.7.2/debian/copyright.debcargo.hint rust-tealdeer-1.7.2/debian/copyright.debcargo.hint --- rust-tealdeer-1.7.2/debian/copyright.debcargo.hint 2025-03-26 15:10:10.000000000 +0000 +++ rust-tealdeer-1.7.2/debian/copyright.debcargo.hint 2026-02-01 18:08:26.000000000 +0000 @@ -32,8 +32,8 @@ Files: debian/* Copyright: - 2022-2025 Debian Rust Maintainers - 2022-2025 Blair Noctis + 2022-2026 Debian Rust Maintainers + 2022-2026 Blair Noctis License: MIT or Apache-2.0 License: Apache-2.0 diff -Nru rust-tealdeer-1.7.2/debian/patches/series rust-tealdeer-1.7.2/debian/patches/series --- rust-tealdeer-1.7.2/debian/patches/series 2025-03-26 15:10:10.000000000 +0000 +++ rust-tealdeer-1.7.2/debian/patches/series 2026-02-01 18:08:26.000000000 +0000 @@ -1 +1,2 @@ use-native-tls.patch +update-archive-url.diff diff -Nru rust-tealdeer-1.7.2/debian/patches/update-archive-url.diff rust-tealdeer-1.7.2/debian/patches/update-archive-url.diff --- rust-tealdeer-1.7.2/debian/patches/update-archive-url.diff 1970-01-01 00:00:00.000000000 +0000 +++ rust-tealdeer-1.7.2/debian/patches/update-archive-url.diff 2026-02-01 18:08:26.000000000 +0000 @@ -0,0 +1,25 @@ +From 942c67c3d24126b785fcb41ab2d408c8e232fdaf Mon Sep 17 00:00:00 2001 +From: Niklas Mohrin +Date: Sat, 24 Jan 2026 00:00:20 +0100 +Subject: [PATCH 1/2] Update `ARCHIVE_URL` + +When this code was written, the client specification instructed clients +that they MUST download pages from the tldr.sh domain. However, this +domain was deprecated and shut down in December 2025. +--- + src/main.rs | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/main.rs b/src/main.rs +index 5e6e7397..127a39e8 100644 +--- a/src/main.rs ++++ b/src/main.rs +@@ -64,7 +64,7 @@ const APP_INFO: AppInfo = AppInfo { + name: NAME, + author: NAME, + }; +-const ARCHIVE_URL: &str = "https://tldr.sh/assets/tldr.zip"; ++const ARCHIVE_URL: &str = "https://github.com/tldr-pages/tldr/releases/latest/download/tldr.zip"; + + /// The cache should be updated if it was explicitly requested, + /// or if an automatic update is due and allowed.