Hi, > debdiff attached [1]
fixed one more comment, Debdiff attached. Thanks, Werner werner@debian:~$ debdiff mytop_1.9.1-3.dsc mytop_1.9.1-4.dsc diff -Nru mytop-1.9.1/debian/changelog mytop-1.9.1/debian/changelog --- mytop-1.9.1/debian/changelog 2016-11-20 10:31:06.000000000 +0100 +++ mytop-1.9.1/debian/changelog 2017-01-09 23:15:07.000000000 +0100 @@ -1,3 +1,12 @@ +mytop (1.9.1-4) unstable; urgency=low + + * Add 14_fix_deprecated_show_innodb_status.patch which replaces deprecated + command SHOW INNODB STATUS with SHOW ENGINE INNODB STATUS + * Removed whitespaces in changelog + * Update to debhelper 10 + + -- Werner Detter <[email protected]> Mon, 09 Jan 2017 23:15:07 +0100 + mytop (1.9.1-3) unstable; urgency=low * Updated 11_fix_url_manpage.patch for new upstream url @@ -33,7 +42,7 @@ * Updating standards version to 3.9.4 * Switch to dpkg-source 3.0 (quilt) format - Add debian/source/format - * Checked and recreated patchs from old upstream against new version. + * Checked and recreated patchs from old upstream against new version. Recreated necessary patches against new upstream version. - Add 01_fix_pod.patch - Add 02_remove_db_test.patch diff -Nru mytop-1.9.1/debian/compat mytop-1.9.1/debian/compat --- mytop-1.9.1/debian/compat 2016-11-19 15:46:23.000000000 +0100 +++ mytop-1.9.1/debian/compat 2017-01-09 23:15:07.000000000 +0100 @@ -1 +1 @@ -9 +10 diff -Nru mytop-1.9.1/debian/control mytop-1.9.1/debian/control --- mytop-1.9.1/debian/control 2016-11-19 15:46:23.000000000 +0100 +++ mytop-1.9.1/debian/control 2017-01-09 23:15:07.000000000 +0100 @@ -2,7 +2,7 @@ Section: utils Priority: optional Maintainer: Werner Detter <[email protected]> -Build-Depends: debhelper (>= 9) +Build-Depends: debhelper (>= 10) Homepage: http://www.mysqlfanboy.com/mytop-3/ Standards-Version: 3.9.8 diff -Nru mytop-1.9.1/debian/patches/14_fix_deprecated_show_innodb_status.patch mytop-1.9.1/debian/patches/14_fix_deprecated_show_innodb_status.patch --- mytop-1.9.1/debian/patches/14_fix_deprecated_show_innodb_status.patch 1970-01-01 01:00:00.000000000 +0100 +++ mytop-1.9.1/debian/patches/14_fix_deprecated_show_innodb_status.patch 2017-01-09 23:15:07.000000000 +0100 @@ -0,0 +1,25 @@ +Description: replace deprecated SHOW INNODB STATUS command +Author: Werner Detter <[email protected]> +DEP: 3 +--- a/mytop ++++ b/mytop +@@ -1326,7 +1326,7 @@ sub GetInnoDBStatus() + } + } + +- my @data = Hashes("SHOW INNODB STATUS"); ++ my @data = Hashes("SHOW ENGINE INNODB STATUS"); + + open P, "|$config{pager}" or die "$!"; + print keys %{$data[0]}; +@@ -2174,8 +2174,8 @@ running queries appear at the top of the + + =item B<I> + +-Switch to InnoDB Status mode. The output of "SHOW INNODB STATUS" will +-be displayed every cycle. In a future version, this may actually ++Switch to InnoDB Status mode. The output of "SHOW ENGINE INNODB STATUS" ++will be displayed every cycle. In a future version, this may actually + summarize that data rather than producing raw output. + + =item B<k> diff -Nru mytop-1.9.1/debian/patches/series mytop-1.9.1/debian/patches/series --- mytop-1.9.1/debian/patches/series 2016-11-19 15:46:23.000000000 +0100 +++ mytop-1.9.1/debian/patches/series 2017-01-09 23:15:07.000000000 +0100 @@ -11,3 +11,4 @@ 11_fix_url_manpage.patch 12_fix_spelling_and_allignment.patch 13_fix_scope_for_show_slave_status_data.patch +14_fix_deprecated_show_innodb_status.patch

