diff -Nru gpt-1.1/debian/changelog gpt-1.1/debian/changelog --- gpt-1.1/debian/changelog 2010-05-28 15:43:23.000000000 +0000 +++ gpt-1.1/debian/changelog 2012-05-06 03:58:53.000000000 +0000 @@ -1,3 +1,11 @@ +gpt (1.1-2) unstable; urgency=low + + * Fixed FTBFS with GCC-4.7 (Closes: #667191); Thanks Gregor Herrmann + * Updated Standards-Version to 3.9.3 + + Machine-readable debian/copyright version 1.0 + + -- Marcelo Jorge Vieira (metal) Fri, 04 May 2012 14:41:36 -0300 + gpt (1.1-1) unstable; urgency=low * New Upstream release diff -Nru gpt-1.1/debian/control gpt-1.1/debian/control --- gpt-1.1/debian/control 2010-05-28 14:50:19.000000000 +0000 +++ gpt-1.1/debian/control 2012-05-06 03:58:53.000000000 +0000 @@ -3,7 +3,7 @@ Priority: optional Maintainer: Marcelo Jorge Vieira (metal) Build-Depends: debhelper (>= 7.0.50~), autotools-dev, antlr, libantlr-dev, libpcre3-dev, locales -Standards-Version: 3.8.4 +Standards-Version: 3.9.3 Homepage: http://gpt.berlios.de Vcs-Git: git://git.debian.org/git/users/metal/gpt.git Vcs-Browser: http://git.debian.org/?p=users/metal/gpt.git;a=summary diff -Nru gpt-1.1/debian/copyright gpt-1.1/debian/copyright --- gpt-1.1/debian/copyright 2010-05-28 13:26:21.000000000 +0000 +++ gpt-1.1/debian/copyright 2012-05-06 03:58:53.000000000 +0000 @@ -1,9 +1,9 @@ -Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=143 +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: gpt Upstream-Source: http://gpt.berlios.de/site/?q=download Files: * -Copyright: (c) 2006-2008, Thiago Silva +Copyright: 2006-2008 Thiago Silva License: GPL-2 Files: @@ -14,32 +14,29 @@ Copyright: Terence Parr, jGuru.com License: public domain - Files: debian/* -Copyright: (c) 2008-2010, Marcelo Jorge Vieira (metal) +Copyright: 2008-2012 Marcelo Jorge Vieira (metal) License: GPL-2 License: GPL-2 - On Debian GNU/Linux systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-2'. License: public domain - - We reserve no legal rights to the ANTLR--it is fully in the public - domain. An individual or company may do whatever they wish with source - code distributed with ANTLR or the code generated by ANTLR, including - the incorporation of ANTLR, or its output, into commercial software. - - We encourage users to develop software with ANTLR. However, we do ask - that credit is given to us for developing ANTLR. By "credit", we mean - that if you use ANTLR or incorporate any source code into one of your - programs (commercial product, research project, or otherwise) that you - acknowledge this fact somewhere in the documentation, research report, - etc... If you like ANTLR and have developed a nice tool with the output, - please mention that you developed it using ANTLR. In addition, we ask - that the headers remain intact in our source code. As long as these - guidelines are kept, we expect to continue enhancing this system and - expect to make other tools available as they are completed. - - Terence Parr, jGuru.com + We reserve no legal rights to the ANTLR--it is fully in the public + domain. An individual or company may do whatever they wish with source + code distributed with ANTLR or the code generated by ANTLR, including + the incorporation of ANTLR, or its output, into commercial software. + . + We encourage users to develop software with ANTLR. However, we do ask + that credit is given to us for developing ANTLR. By "credit", we mean + that if you use ANTLR or incorporate any source code into one of your + programs (commercial product, research project, or otherwise) that you + acknowledge this fact somewhere in the documentation, research report, + etc... If you like ANTLR and have developed a nice tool with the output, + please mention that you developed it using ANTLR. In addition, we ask + that the headers remain intact in our source code. As long as these + guidelines are kept, we expect to continue enhancing this system and + expect to make other tools available as they are completed. + . + Terence Parr, jGuru.com diff -Nru gpt-1.1/debian/patches/gcc-4.7.patch gpt-1.1/debian/patches/gcc-4.7.patch --- gpt-1.1/debian/patches/gcc-4.7.patch 1970-01-01 00:00:00.000000000 +0000 +++ gpt-1.1/debian/patches/gcc-4.7.patch 2012-05-06 03:58:46.000000000 +0000 @@ -0,0 +1,27 @@ +Description: add missing includes to avoid FTBFS with gcc 4.7 +Origin: vendor +Bug-Debian: http://bugs.debian.org/667191 +Forwarded: no +Author: gregor herrmann +Last-Update: 2012-05-04 + +--- gpt.orig/src/GPT.cpp 2010-05-28 10:26:21.000000000 -0300 ++++ gpt/src/GPT.cpp 2012-05-04 14:22:13.000000000 -0300 +@@ -37,6 +37,7 @@ + #include + #include + #include ++#include + + GPT* GPT::_self = 0; + +--- gpt.orig/src/modules/interpreter/InterpreterDBG.cpp 2012-05-04 14:21:33.000000000 -0300 ++++ gpt/src/modules/interpreter/InterpreterDBG.cpp 2012-05-04 14:22:48.000000000 -0300 +@@ -34,6 +34,7 @@ + #endif + + #include ++#include + + #ifndef WIN32 + void sigPipeHandler(int signum) { diff -Nru gpt-1.1/debian/patches/series gpt-1.1/debian/patches/series --- gpt-1.1/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 +++ gpt-1.1/debian/patches/series 2012-05-04 17:25:16.000000000 +0000 @@ -0,0 +1 @@ +gcc-4.7.patch