diff -Nru kobodeluxe-0.5.1/debian/changelog kobodeluxe-0.5.1/debian/changelog --- kobodeluxe-0.5.1/debian/changelog 2015-12-04 21:22:48.000000000 +0000 +++ kobodeluxe-0.5.1/debian/changelog 2016-04-05 22:55:16.000000000 +0000 @@ -1,3 +1,15 @@ +kobodeluxe (0.5.1-8) unstable; urgency=medium + + * Team upload. + * Declare compliance with Debian Policy 3.9.7. + * Vcs: Switch to cgit and use https. + * Add midicon-segmentation-fault.patch and fix segmentation fault on startup. + Thanks to Emile CARRY for the report and patch. (Closes: #819897) + * debian/postrm: Use set -e. + * Fix Lintian warning copyright-refers-to-symlink-license. + + -- Markus Koschany Wed, 06 Apr 2016 00:30:59 +0200 + kobodeluxe (0.5.1-7) unstable; urgency=medium * add debian/source/format to Git @@ -17,9 +29,9 @@ * Switch to automake (Closes: #648583) * Change to debhelper compat 9, thus enabling hardened build flags * Switch to source format 3 and remove quilt from build-deps and drop - README.source + README.source * Bump standards version to 3.9.2, no changed needed - * Remove historic postinst + * Remove historic postinst -- Moritz Muehlenhoff Sun, 13 Nov 2011 09:58:32 +0100 diff -Nru kobodeluxe-0.5.1/debian/control kobodeluxe-0.5.1/debian/control --- kobodeluxe-0.5.1/debian/control 2015-12-04 21:21:59.000000000 +0000 +++ kobodeluxe-0.5.1/debian/control 2016-04-05 22:55:16.000000000 +0000 @@ -4,9 +4,9 @@ Build-Depends: debhelper (>= 9), libsdl-image1.2-dev, libsdl1.2-dev, automake, autotools-dev Maintainer: Debian Games Team Uploaders: Damyan Ivanov -Standards-Version: 3.9.6 -Vcs-Git: git://anonscm.debian.org/pkg-games/kobodeluxe.git -Vcs-Browser: https://anonscm.debian.org/cgit/pkg-games/kobodeluxe.git;a=summary +Standards-Version: 3.9.7 +Vcs-Git: https://anonscm.debian.org/git/pkg-games/kobodeluxe.git +Vcs-Browser: https://anonscm.debian.org/cgit/pkg-games/kobodeluxe.git Homepage: http://olofson.net/kobodl/ Package: kobodeluxe diff -Nru kobodeluxe-0.5.1/debian/copyright kobodeluxe-0.5.1/debian/copyright --- kobodeluxe-0.5.1/debian/copyright 2015-12-04 17:56:36.000000000 +0000 +++ kobodeluxe-0.5.1/debian/copyright 2016-04-05 22:55:16.000000000 +0000 @@ -1,7 +1,7 @@ This is the Debian Linux prepackaged version of Kobo Deluxe, a game of space battle. -This package was put together by Joey Hess , with +This package was put together by Joey Hess , with sources obtained from: http://olofson.net/kobodl/ As of June 2008 it is maintained by Debian Games Team @@ -16,7 +16,7 @@ http://www.freelists.org/archives/olofsonprojects/06-2008/msg00000.html . On Debian systems the complete text of the GPL is in - /usr/share/common-licenses/GPL and LGPL is in /usr/share/common-licenses/LGPL + /usr/share/common-licenses/GPL-2 and LGPL is in /usr/share/common-licenses/LGPL-2.1 Copyright summary: Copyright (C) 1995,1996 Akira Higuchi a-higuti@math.hokudai.ac.jp diff -Nru kobodeluxe-0.5.1/debian/patches/midicon-segmentation-fault.patch kobodeluxe-0.5.1/debian/patches/midicon-segmentation-fault.patch --- kobodeluxe-0.5.1/debian/patches/midicon-segmentation-fault.patch 1970-01-01 00:00:00.000000000 +0000 +++ kobodeluxe-0.5.1/debian/patches/midicon-segmentation-fault.patch 2016-04-05 22:55:16.000000000 +0000 @@ -0,0 +1,24 @@ +From: Emile CARRY +Date: Wed, 6 Apr 2016 00:27:17 +0200 +Subject: midicon segmentation fault + +Debian-Bug: https://bugs.debian.org/819897 +Forwarded: no +--- + sound/a_midicon.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/sound/a_midicon.c b/sound/a_midicon.c +index 57de3cf..ded2988 100644 +--- a/sound/a_midicon.c ++++ b/sound/a_midicon.c +@@ -120,8 +120,8 @@ static inline void __press(unsigned ch, unsigned key) + { + m[ch].next[key] = -1; + m[ch].prev[key] = m[ch].last; +- m[ch].next[m[ch].last] = (char)key; + m[ch].last = (char)key; ++ m[ch].next[m[ch].last] = (char)key; + } + + diff -Nru kobodeluxe-0.5.1/debian/patches/series kobodeluxe-0.5.1/debian/patches/series --- kobodeluxe-0.5.1/debian/patches/series 2015-12-04 21:00:18.000000000 +0000 +++ kobodeluxe-0.5.1/debian/patches/series 2016-04-05 22:55:16.000000000 +0000 @@ -4,3 +4,4 @@ 03_manpage-minus-not-hyphen.patch 05_const_charp_conversion.patch spelling.patch +midicon-segmentation-fault.patch diff -Nru kobodeluxe-0.5.1/debian/postrm kobodeluxe-0.5.1/debian/postrm --- kobodeluxe-0.5.1/debian/postrm 2015-12-04 17:56:36.000000000 +0000 +++ kobodeluxe-0.5.1/debian/postrm 2016-04-05 22:55:16.000000000 +0000 @@ -1,4 +1,5 @@ -#!/bin/sh -e +#!/bin/sh +set -e #DEBHELPER#