diff -Nru expect-5.45.4/debian/changelog expect-5.45.4/debian/changelog --- expect-5.45.4/debian/changelog 2019-09-05 10:49:19.000000000 +0000 +++ expect-5.45.4/debian/changelog 2024-03-13 12:55:45.000000000 +0000 @@ -1,8 +1,11 @@ -expect (5.45.4-2build1) eoan; urgency=medium +expect (5.45.4-3) unstable; urgency=medium - * No-change upload with strops.h and sys/strops.h removed in glibc. + * Fix impicit declaration of exp_init_tty() in exp_clib.c (closes: #1066257). + * Fix a typo in the decryptdir(1) manpage (closes: #1036463). + * Bump the debhelper compatibility level to 13. + * Bump standards version to 4.6.2. - -- Matthias Klose Thu, 05 Sep 2019 10:49:19 +0000 + -- Sergei Golovan Wed, 13 Mar 2024 15:55:45 +0300 expect (5.45.4-2) unstable; urgency=medium diff -Nru expect-5.45.4/debian/compat expect-5.45.4/debian/compat --- expect-5.45.4/debian/compat 2018-04-19 13:54:34.000000000 +0000 +++ expect-5.45.4/debian/compat 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -10 diff -Nru expect-5.45.4/debian/control expect-5.45.4/debian/control --- expect-5.45.4/debian/control 2018-04-19 13:54:34.000000000 +0000 +++ expect-5.45.4/debian/control 2024-03-13 12:55:45.000000000 +0000 @@ -2,9 +2,9 @@ Section: interpreters Priority: optional Maintainer: Sergei Golovan -Build-Depends: debhelper (>= 10.0.0), dpkg-dev (>= 1.16.1~), autoconf, tcl8.6-dev +Build-Depends: debhelper-compat (= 13), dpkg-dev (>= 1.16.1~), autoconf, tcl8.6-dev Build-Conflicts: autoconf2.13 -Standards-Version: 4.1.4 +Standards-Version: 4.6.2 Homepage: https://core.tcl.tk/expect/ Vcs-Browser: https://salsa.debian.org/tcltk-team/expect Vcs-Git: https://salsa.debian.org/tcltk-team/expect.git diff -Nru expect-5.45.4/debian/patches/10-manpage.patch expect-5.45.4/debian/patches/10-manpage.patch --- expect-5.45.4/debian/patches/10-manpage.patch 2018-04-19 13:54:34.000000000 +0000 +++ expect-5.45.4/debian/patches/10-manpage.patch 2024-03-13 12:55:45.000000000 +0000 @@ -382,3 +382,14 @@ .fi I encourage you to write +--- a/example/decryptdir.man ++++ b/example/decryptdir.man +@@ -19,7 +19,7 @@ + + .SH NOTES + When encrypting, you are prompted twice for the password as a +-precautionary measure. It would be a disaster to encrypt files a ++precautionary measure. It would be a disaster to encrypt files with a + password that wasn't what you intended. + + In contrast, when decrypting, you are only prompted once. If it's the diff -Nru expect-5.45.4/debian/patches/13-implicit-defs.patch expect-5.45.4/debian/patches/13-implicit-defs.patch --- expect-5.45.4/debian/patches/13-implicit-defs.patch 2018-04-19 13:54:34.000000000 +0000 +++ expect-5.45.4/debian/patches/13-implicit-defs.patch 2024-03-13 12:55:45.000000000 +0000 @@ -1,5 +1,6 @@ Author: LaMont Jones Description: Fix implicit definitions throughout (Closes: #441115). + Also, closes #1066257. --- a/exp_chan.c +++ b/exp_chan.c @@ -23,6 +24,14 @@ #include "expect_cf.h" #include #include +@@ -1734,6 +1737,7 @@ + #define sysreturn(x) return(errno = x, -1) + + void exp_init_pty(); ++void exp_init_tty(); + + /* + The following functions are linked from the Tcl library. They --- a/exp_command.h +++ b/exp_command.h @@ -7,6 +7,9 @@ diff -Nru expect-5.45.4/debian/rules expect-5.45.4/debian/rules --- expect-5.45.4/debian/rules 2018-04-19 13:54:34.000000000 +0000 +++ expect-5.45.4/debian/rules 2024-03-13 12:55:45.000000000 +0000 @@ -77,8 +77,5 @@ override_dh_link: $(LINKS) dh_link -override_dh_install: - dh_install --fail-missing - .PHONY: override_dh_auto_clean override_dh_auto_configure override_dh_auto_build \ - override_dh_auto_install override_dh_install + override_dh_auto_install