diff -Nru mythtv-0.28.1+fixes.20180128.136cb1c/debian/changelog mythtv-0.28.1+fixes.20180131.3b6c6d1/debian/changelog --- mythtv-0.28.1+fixes.20180128.136cb1c/debian/changelog 2018-01-28 22:01:40.000000000 +0000 +++ mythtv-0.28.1+fixes.20180131.3b6c6d1/debian/changelog 2018-01-31 01:03:35.000000000 +0000 @@ -1,21 +1,18 @@ -mythtv (2:0.28.1+fixes.20180128.136cb1c-0ubuntu0mythbuntu2) trusty; urgency=medium +mythtv (2:0.28.1+fixes.20180131.3b6c6d1-0ubuntu0mythbuntu2) trusty; urgency=medium * Scripted Build from fixes git packaging [ed97040] - * Packaging changes between 20160325 and 20180128: + * Packaging changes between 20160325 and 20180131: * [dd75c01] use init script to be more compatible to systemd/upstart in backports * [b7c38ab] make sure to set buildroot * [7a4983b] cover one more pro file for mysql5.7 fix - * Automated Build: New upstream checkout (136cb1c) - * >>Upstream changes since last upload (5d9b8f1): - * [136cb1c] Fix compilation error in Fedora Rawhide. - * [cbaf2ce] Remove extra closing brace in file. - * [ecae169] Update qmake project files for a minimum 5.2 version. - * [a5e110e] Clean up Qt version checking in 'configure'. - * [95670f9] Clean up the checks for finding the qmake executable. - * [e3f011b] ttvdb.py: Handle missing banners gracefully + * [8d19bc0] let mysql-server-5.7 resolve things + * [35b1bba] Add in support to compile against mysql 5.7 (LP: #1528583) + * Automated Build: New upstream checkout (3b6c6d1) + * >>Upstream changes since last upload (136cb1c): + * [3b6c6d1] Fix cppcheck warning about unclear operator precedence. - -- Mythbuntu Automated Package Builder Sun, 28 Jan 2018 22:01:36 +0000 + -- Mythbuntu Automated Package Builder Wed, 31 Jan 2018 01:03:33 +0000 mythtv (2:0.28.0+fixes.20160325.2520617-0ubuntu3) xenial; urgency=medium diff -Nru mythtv-0.28.1+fixes.20180128.136cb1c/debian/DESCRIBE mythtv-0.28.1+fixes.20180131.3b6c6d1/debian/DESCRIBE --- mythtv-0.28.1+fixes.20180128.136cb1c/debian/DESCRIBE 2018-01-28 22:01:32.000000000 +0000 +++ mythtv-0.28.1+fixes.20180131.3b6c6d1/debian/DESCRIBE 2018-01-31 01:03:29.000000000 +0000 @@ -1,2 +1,2 @@ BRANCH="fixes/0.28" -SOURCE_VERSION="v0.28.1-75-g136cb1c" +SOURCE_VERSION="v0.28.1-76-g3b6c6d1" diff -Nru mythtv-0.28.1+fixes.20180128.136cb1c/mythtv/filters/ivtc/pullup.c mythtv-0.28.1+fixes.20180131.3b6c6d1/mythtv/filters/ivtc/pullup.c --- mythtv-0.28.1+fixes.20180128.136cb1c/mythtv/filters/ivtc/pullup.c 2018-01-28 21:58:59.000000000 +0000 +++ mythtv-0.28.1+fixes.20180131.3b6c6d1/mythtv/filters/ivtc/pullup.c 2018-01-31 01:00:56.000000000 +0000 @@ -630,7 +630,10 @@ f = f0; printf("\nbreaks: "); for (i=0; i<4; i++) { - printf("%c%d%c", f->breaks & BREAK_LEFT ? '|' : '.', i, f->breaks & BREAK_RIGHT ? '|' : '.'); + printf("%c%d%c", + (f->breaks & BREAK_LEFT) ? '|' : '.', + i, + (f->breaks & BREAK_RIGHT) ? '|' : '.'); f = f->next; } printf("\n");