diff -Nru dbview-1.0.4/debian/changelog dbview-1.0.4/debian/changelog --- dbview-1.0.4/debian/changelog 2020-01-05 22:01:30.000000000 +0000 +++ dbview-1.0.4/debian/changelog 2020-02-17 19:45:02.000000000 +0000 @@ -1,3 +1,14 @@ +dbview (1.0.4-3) unstable; urgency=medium + + * QA upload. + * Add Vcs link to salsa. + * Update Standards-Version to 4.5.0 + * Add hardening flag. + - Add patch to use LDFLAGS in Makefile. + * Remove DH_VERBOSE flag. + + -- Sudip Mukherjee Mon, 17 Feb 2020 19:45:02 +0000 + dbview (1.0.4-2) unstable; urgency=medium * QA upload. diff -Nru dbview-1.0.4/debian/control dbview-1.0.4/debian/control --- dbview-1.0.4/debian/control 2020-01-05 20:17:59.000000000 +0000 +++ dbview-1.0.4/debian/control 2020-02-17 19:44:02.000000000 +0000 @@ -3,7 +3,9 @@ Priority: optional Maintainer: Debian QA Group Build-Depends: debhelper-compat (= 12) -Standards-Version: 4.4.1 +Standards-Version: 4.5.0 +Vcs-Git: https://salsa.debian.org/debian/dbview.git +Vcs-Browser: https://salsa.debian.org/debian/dbview Package: dbview Architecture: any diff -Nru dbview-1.0.4/debian/patches/add_ldflags.patch dbview-1.0.4/debian/patches/add_ldflags.patch --- dbview-1.0.4/debian/patches/add_ldflags.patch 1970-01-01 00:00:00.000000000 +0000 +++ dbview-1.0.4/debian/patches/add_ldflags.patch 2020-02-17 19:45:02.000000000 +0000 @@ -0,0 +1,18 @@ +Description: Use LDFLAGS in Makefile + +Author: Sudip Mukherjee +Forwarded: no + +--- + +--- dbview-1.0.4.orig/Makefile ++++ dbview-1.0.4/Makefile +@@ -40,7 +40,7 @@ obj = db_dump.o dbview.o version.o + all: dbview + + dbview: $(obj) +- $(CC) $(CFLAGS) -o dbview $(obj) ++ $(CC) $(CFLAGS) $(LDFLAGS) -o dbview $(obj) + + depend: + makedepend *.c diff -Nru dbview-1.0.4/debian/patches/series dbview-1.0.4/debian/patches/series --- dbview-1.0.4/debian/patches/series 2020-01-05 20:14:54.000000000 +0000 +++ dbview-1.0.4/debian/patches/series 2020-02-17 19:45:02.000000000 +0000 @@ -1,2 +1,3 @@ old_changes.patch fix_makefile.patch +add_ldflags.patch diff -Nru dbview-1.0.4/debian/rules dbview-1.0.4/debian/rules --- dbview-1.0.4/debian/rules 2020-01-05 21:53:07.000000000 +0000 +++ dbview-1.0.4/debian/rules 2020-02-17 19:45:02.000000000 +0000 @@ -1,6 +1,6 @@ #! /usr/bin/make -f -export DH_VERBOSE=1 +export DEB_BUILD_MAINT_OPTIONS = hardening=+all %: dh $@