diff -Nru kazam-1.4.5/debian/changelog kazam-1.4.5/debian/changelog --- kazam-1.4.5/debian/changelog 2015-07-22 17:16:25.000000000 +0000 +++ kazam-1.4.5/debian/changelog 2015-10-13 01:33:29.000000000 +0000 @@ -1,8 +1,10 @@ -kazam (1.4.5-1build1) wily; urgency=medium +kazam (1.4.5-2) unstable; urgency=medium - * No-change rebuild for python3.5 transition + * configparser_api_changes.patch: Update for changes + in ConfigParser api (Closes: #801203, LP: #1500083). + * debian/control: Bump Standards-Version to 3.9.6 - -- Steve Langasek Wed, 22 Jul 2015 17:16:25 +0000 + -- Andrew Starr-Bochicchio Mon, 12 Oct 2015 21:33:25 -0400 kazam (1.4.5-1) unstable; urgency=medium diff -Nru kazam-1.4.5/debian/control kazam-1.4.5/debian/control --- kazam-1.4.5/debian/control 2015-07-22 17:16:25.000000000 +0000 +++ kazam-1.4.5/debian/control 2015-10-13 01:32:51.000000000 +0000 @@ -1,15 +1,14 @@ Source: kazam Section: video Priority: optional -Maintainer: Ubuntu Developers -XSBC-Original-Maintainer: Andrew Starr-Bochicchio +Maintainer: Andrew Starr-Bochicchio Build-Depends: debhelper (>= 9), gettext, intltool, python3-all (>= 3.2), python3-distutils-extra, python3-setuptools -Standards-Version: 3.9.5 +Standards-Version: 3.9.6 X-Python3-Version: >= 3.2 Vcs-Bzr: http://bzr.debian.org/bzr/collab-maint/kazam/unstable/ Vcs-Browser: http://anonscm.debian.org/loggerhead/collab-maint/kazam/unstable/files diff -Nru kazam-1.4.5/debian/patches/configparser_api_changes.patch kazam-1.4.5/debian/patches/configparser_api_changes.patch --- kazam-1.4.5/debian/patches/configparser_api_changes.patch 1970-01-01 00:00:00.000000000 +0000 +++ kazam-1.4.5/debian/patches/configparser_api_changes.patch 2015-10-13 01:28:19.000000000 +0000 @@ -0,0 +1,21 @@ +From: Andrew Starr-Bochicchio +Subject: Update for changes in ConfigParser api. +Bug: https://bugs.launchpad.net/kazam/+bug/1500083 + +Index: kazam/kazam/backend/config.py +=================================================================== +--- kazam.orig/kazam/backend/config.py 2013-03-13 20:25:20.917993000 -0400 ++++ kazam/kazam/backend/config.py 2015-10-12 21:25:30.355157111 -0400 +@@ -98,9 +98,10 @@ + if d_key == key: + return d_section["keys"][key] + +- def get(self, section, key): ++ def get(self, section, key, raw=True, fallback=None): + try: +- return ConfigParser.get(self, section, key) ++ return super(KazamConfig, self).get(section, ++ key, raw=True, fallback=fallback) + except NoSectionError: + default = self.find_default(section, key) + self.set(section, key, default) diff -Nru kazam-1.4.5/debian/patches/series kazam-1.4.5/debian/patches/series --- kazam-1.4.5/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 +++ kazam-1.4.5/debian/patches/series 2015-10-13 01:23:18.000000000 +0000 @@ -0,0 +1 @@ +configparser_api_changes.patch