diff -Nru xastir-2.1.6/debian/changelog xastir-2.1.6/debian/changelog --- xastir-2.1.6/debian/changelog 2020-09-15 17:58:16.000000000 +0000 +++ xastir-2.1.6/debian/changelog 2020-12-15 05:29:56.000000000 +0000 @@ -1,3 +1,12 @@ +xastir (2.1.6-3) unstable; urgency=medium + + * Team upload. + * Add patch for embedded paths in binaries for reproducible builds. + Thank you to Vagrant Cascadian for the patch. (Closes: #977412) + * Bump Standards-Version to 4.5.1 + + -- tony mancill Mon, 14 Dec 2020 21:29:56 -0800 + xastir (2.1.6-2) unstable; urgency=medium [ Debian Janitor ] diff -Nru xastir-2.1.6/debian/control xastir-2.1.6/debian/control --- xastir-2.1.6/debian/control 2020-09-15 17:57:40.000000000 +0000 +++ xastir-2.1.6/debian/control 2020-12-15 05:29:56.000000000 +0000 @@ -23,7 +23,7 @@ po-debconf, gpsman, gpsmanshp, -Standards-Version: 4.5.0 +Standards-Version: 4.5.1 Vcs-Browser: https://salsa.debian.org/debian-hamradio-team/xastir Vcs-Git: https://salsa.debian.org/debian-hamradio-team/xastir.git Homepage: https://www.xastir.org/ diff -Nru xastir-2.1.6/debian/patches/0001-configure.ac-Use-SED_PATH-and-MV_PATH-to-be-able-to-.patch xastir-2.1.6/debian/patches/0001-configure.ac-Use-SED_PATH-and-MV_PATH-to-be-able-to-.patch --- xastir-2.1.6/debian/patches/0001-configure.ac-Use-SED_PATH-and-MV_PATH-to-be-able-to-.patch 1970-01-01 00:00:00.000000000 +0000 +++ xastir-2.1.6/debian/patches/0001-configure.ac-Use-SED_PATH-and-MV_PATH-to-be-able-to-.patch 2020-12-15 05:29:56.000000000 +0000 @@ -0,0 +1,35 @@ +From d1fac87519eb9b97fa503d0a3ac98a7662400d72 Mon Sep 17 00:00:00 2001 +From: Vagrant Cascadian +Date: Mon, 14 Dec 2020 03:20:51 +0000 +Subject: [PATCH] configure.ac: Use SED_PATH and MV_PATH to be able to specify + path to sed and mv. + +--- + configure.ac | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/configure.ac b/configure.ac +index d0e33fd..52e5226 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -159,7 +159,7 @@ AC_CHECK_LIB([Xm], [XmTextFindString]) + + + use_sed=no +-AC_PATH_PROG(sed, [sed --version], no, $BINPATH) ++AC_PATH_PROG(SED_PATH, [sed --version], no, $BINPATH) + if test "$sed" != "no"; then + AC_DEFINE_UNQUOTED(HAVE_SED, 1, [Define if you have sed]) + AC_DEFINE_UNQUOTED(SED_PATH, "${sed}", [Path to sed]) +@@ -169,7 +169,7 @@ fi + + + use_mv=no +-AC_PATH_PROG(mv, [mv --version], no, $BINPATH) ++AC_PATH_PROG(MV_PATH, [mv --version], no, $BINPATH) + if test "$mv" != "no"; then + AC_DEFINE_UNQUOTED(HAVE_MV, 1, [Define if you have mv]) + AC_DEFINE_UNQUOTED(MV_PATH, "${mv}", [Path to mv]) +-- +2.20.1 + diff -Nru xastir-2.1.6/debian/patches/series xastir-2.1.6/debian/patches/series --- xastir-2.1.6/debian/patches/series 2020-04-20 07:09:50.000000000 +0000 +++ xastir-2.1.6/debian/patches/series 2020-12-15 05:29:56.000000000 +0000 @@ -3,3 +3,4 @@ link.patch OSM_config.patch simple_db.patch +0001-configure.ac-Use-SED_PATH-and-MV_PATH-to-be-able-to-.patch diff -Nru xastir-2.1.6/debian/rules xastir-2.1.6/debian/rules --- xastir-2.1.6/debian/rules 2020-09-15 17:57:24.000000000 +0000 +++ xastir-2.1.6/debian/rules 2020-12-15 05:29:56.000000000 +0000 @@ -7,3 +7,6 @@ override_dh_auto_installchangelogs: dh_installchangelogs ChangeLog + +override_dh_auto_configure: + dh_auto_configure -- SED_PATH=/bin/sed MV_PATH=/bin/mv