diffstat for lvtk-1.2.0~dfsg0 lvtk-1.2.0~dfsg0 changelog | 18 ++++++++++++++++++ control | 3 ++- patches/fix-waf-boost-system.patch | 29 +++++++++++++++++++++++++++++ patches/series | 1 + 4 files changed, 50 insertions(+), 1 deletion(-) diff -Nru lvtk-1.2.0~dfsg0/debian/changelog lvtk-1.2.0~dfsg0/debian/changelog --- lvtk-1.2.0~dfsg0/debian/changelog 2016-08-31 15:25:44.000000000 +0000 +++ lvtk-1.2.0~dfsg0/debian/changelog 2018-07-17 13:00:43.000000000 +0000 @@ -1,3 +1,21 @@ +lvtk (1.2.0~dfsg0-2ubuntu3) cosmic; urgency=medium + + * No-change rebuild for boost soname change. + + -- Matthias Klose Tue, 17 Jul 2018 13:00:43 +0000 + +lvtk (1.2.0~dfsg0-2ubuntu2) bionic; urgency=medium + + * No-change rebuild for boost soname change. + + -- Matthias Klose Thu, 26 Oct 2017 17:19:31 +0000 + +lvtk (1.2.0~dfsg0-2ubuntu1) artful; urgency=medium + + * Fix locating and using boost_system. + + -- Dimitri John Ledkov Tue, 20 Jun 2017 10:36:05 +0100 + lvtk (1.2.0~dfsg0-2) unstable; urgency=medium * Add b-d libboost-system-dev & link it. (Closes: #834158) diff -Nru lvtk-1.2.0~dfsg0/debian/control lvtk-1.2.0~dfsg0/debian/control --- lvtk-1.2.0~dfsg0/debian/control 2016-08-31 15:25:44.000000000 +0000 +++ lvtk-1.2.0~dfsg0/debian/control 2017-06-20 09:36:27.000000000 +0000 @@ -1,7 +1,8 @@ Source: lvtk Section: libs Priority: optional -Maintainer: Debian Multimedia Maintainers +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Debian Multimedia Maintainers Uploaders: Alessio Treglia , Jaromír Mikeš diff -Nru lvtk-1.2.0~dfsg0/debian/patches/fix-waf-boost-system.patch lvtk-1.2.0~dfsg0/debian/patches/fix-waf-boost-system.patch --- lvtk-1.2.0~dfsg0/debian/patches/fix-waf-boost-system.patch 1970-01-01 00:00:00.000000000 +0000 +++ lvtk-1.2.0~dfsg0/debian/patches/fix-waf-boost-system.patch 2017-06-20 09:38:28.000000000 +0000 @@ -0,0 +1,29 @@ +Description: Fix locating and using boost_system +Author: Dimitri John Ledkov + +--- a/tools/wscript_build ++++ b/tools/wscript_build +@@ -19,6 +19,6 @@ + includes = ["libpaq"], + target = "ttl2c", + name = "ttl2c", +- use = ["BOOST"] ++ use = ["BOOSTSYSTEM"] + ) + bld.add_group() +--- a/wscript ++++ b/wscript +@@ -61,7 +61,12 @@ + conf.write_config_header ('version.h') + + conf.check_inline() +- if not conf.options.disable_tools: conf.check_boost() ++ if not conf.options.disable_tools: ++ conf.check_boost() ++ conf.check(compiler='cxx', ++ lib='boost_system', ++ mandatory=True, ++ uselib_store='BOOSTSYSTEM') + + # Check for required packages + conf.check_lv2 ("1.6.0") diff -Nru lvtk-1.2.0~dfsg0/debian/patches/series lvtk-1.2.0~dfsg0/debian/patches/series --- lvtk-1.2.0~dfsg0/debian/patches/series 2016-08-31 15:25:44.000000000 +0000 +++ lvtk-1.2.0~dfsg0/debian/patches/series 2017-06-20 09:35:40.000000000 +0000 @@ -1 +1,2 @@ 01-fix_bad-directive.patch +fix-waf-boost-system.patch