diff -Nru wader-0.5.12/debian/changelog wader-0.5.12/debian/changelog --- wader-0.5.12/debian/changelog 2012-07-06 23:41:47.000000000 +0200 +++ wader-0.5.12/debian/changelog 2014-12-29 11:51:36.000000000 +0200 @@ -1,3 +1,10 @@ +wader (0.5.12-1.1) unstable; urgency=medium + + * Non-maintainer upload + * Fix test failure (Closes: #768756) + + -- Graham Inggs Mon, 29 Dec 2014 11:51:19 +0200 + wader (0.5.12-1) unstable; urgency=low * New upstream release diff -Nru wader-0.5.12/debian/patches/fix-test-failure.patch wader-0.5.12/debian/patches/fix-test-failure.patch --- wader-0.5.12/debian/patches/fix-test-failure.patch 1970-01-01 02:00:00.000000000 +0200 +++ wader-0.5.12/debian/patches/fix-test-failure.patch 2014-12-29 11:48:12.000000000 +0200 @@ -0,0 +1,19 @@ +Description: Fix test failure causing FTBFS + This patch changes apn.network_id from integer to text + to satisfy constraint. +Author: Andrey Rahmatullin +Author: Graham Inggs +Forwarded: https://github.com/andrewbird/wader/pull/10 +Bug-Debian: https://bugs.debian.org/768756 +Last-Update: 2014-12-29 +--- a/wader/common/provider.py ++++ b/wader/common/provider.py +@@ -187,7 +187,7 @@ + wap_username text, + wap_password text, + wap_auth text, +- network_id integer not null ++ network_id text not null + constraint fk_mi_network_id references network_info(id) on delete cascade); + + create table sources_info ( diff -Nru wader-0.5.12/debian/patches/series wader-0.5.12/debian/patches/series --- wader-0.5.12/debian/patches/series 1970-01-01 02:00:00.000000000 +0200 +++ wader-0.5.12/debian/patches/series 2014-12-29 11:41:16.000000000 +0200 @@ -0,0 +1 @@ +fix-test-failure.patch