diff -Nru gcc-python-plugin-0.17/debian/changelog gcc-python-plugin-0.17/debian/changelog --- gcc-python-plugin-0.17/debian/changelog 2019-02-11 08:17:36.000000000 +0000 +++ gcc-python-plugin-0.17/debian/changelog 2019-03-09 17:52:38.000000000 +0000 @@ -1,3 +1,15 @@ +gcc-python-plugin (0.17-2ubuntu1) disco; urgency=medium + + * Build for GCC 9 as well. + + -- Matthias Klose Sat, 09 Mar 2019 18:52:38 +0100 + +gcc-python-plugin (0.17-2) unstable; urgency=medium + + * Fix build failure with GCC 8.3. Closes: #924097. + + -- Matthias Klose Sat, 09 Mar 2019 18:31:48 +0100 + gcc-python-plugin (0.17-1ubuntu1) disco; urgency=medium * Build for GCC 9 as well. diff -Nru gcc-python-plugin-0.17/debian/patches/gcc-8-fix.diff gcc-python-plugin-0.17/debian/patches/gcc-8-fix.diff --- gcc-python-plugin-0.17/debian/patches/gcc-8-fix.diff 1970-01-01 00:00:00.000000000 +0000 +++ gcc-python-plugin-0.17/debian/patches/gcc-8-fix.diff 2019-03-09 17:46:04.000000000 +0000 @@ -0,0 +1,13 @@ +--- a/gcc-python-pretty-printer.c ++++ b/gcc-python-pretty-printer.c +@@ -46,8 +46,8 @@ PyGccPrettyPrinter_New(void) + Use placement new to run it on obj->pp. */ + new ((void*)&obj->pp) + pretty_printer( +-# if (GCC_VERSION < 9000) +- /* GCC 9 eliminated the "prefix" param. */ ++# if (GCC_VERSION < 8003) ++ /* GCC 8.3 eliminated the "prefix" param. */ + NULL, + # endif + 0); diff -Nru gcc-python-plugin-0.17/debian/patches/series gcc-python-plugin-0.17/debian/patches/series --- gcc-python-plugin-0.17/debian/patches/series 2015-06-03 10:25:35.000000000 +0000 +++ gcc-python-plugin-0.17/debian/patches/series 2019-03-09 17:52:38.000000000 +0000 @@ -1,3 +1,4 @@ gcc-version.diff py-encoding.diff zepto.js-source.diff +gcc-8-fix.diff