diff -Nru populations-1.2.33+svn0120106/debian/changelog populations-1.2.33+svn0120106/debian/changelog --- populations-1.2.33+svn0120106/debian/changelog 2012-03-05 09:24:32.000000000 +0000 +++ populations-1.2.33+svn0120106/debian/changelog 2012-04-21 11:12:41.000000000 +0000 @@ -1,3 +1,13 @@ +populations (1.2.33+svn0120106-2.1) unstable; urgency=low + + * Non-maintainer upload. + * Fix "ftbfs with GCC-4.7": add patch from Paul Tagliamonte + (use this->erase). + Also drop unused and unneeded build-dependency on g++-4.5 + Closes: #667327 + + -- gregor herrmann Sat, 21 Apr 2012 13:12:39 +0200 + populations (1.2.33+svn0120106-2) unstable; urgency=low * changed a build-depends: libpng12-dev -> libpng-dev. Closes: #662477 diff -Nru populations-1.2.33+svn0120106/debian/control populations-1.2.33+svn0120106/debian/control --- populations-1.2.33+svn0120106/debian/control 2012-03-05 09:17:10.000000000 +0000 +++ populations-1.2.33+svn0120106/debian/control 2012-04-21 11:08:55.000000000 +0000 @@ -5,8 +5,7 @@ Build-Depends: debhelper (>= 7.0.50~), cmake, qt4-qmake, libqt4-dev, libfontconfig1-dev, libfreetype6-dev, libglib2.0-dev, libice-dev, libpng-dev, libsm-dev, libx11-dev, libxext-dev, libxrender-dev, - zlib1g-dev, - g++-4.5 + zlib1g-dev Standards-Version: 3.9.3 Homepage: http://www.bioinformatics.org/~tryphon/populations/ diff -Nru populations-1.2.33+svn0120106/debian/patches/fix-ftbfs-gcc-4.7-667327.patch populations-1.2.33+svn0120106/debian/patches/fix-ftbfs-gcc-4.7-667327.patch --- populations-1.2.33+svn0120106/debian/patches/fix-ftbfs-gcc-4.7-667327.patch 1970-01-01 00:00:00.000000000 +0000 +++ populations-1.2.33+svn0120106/debian/patches/fix-ftbfs-gcc-4.7-667327.patch 2012-04-21 11:10:31.000000000 +0000 @@ -0,0 +1,11 @@ +--- a/src/vecteurs.h 2012-04-14 01:04:00.875307000 -0400 ++++ b/src/vecteurs.h 2012-04-14 01:04:06.531306699 -0400 +@@ -86,7 +86,7 @@ public: + } + + void Suppr(unsigned long pos) { +- erase(vector::begin() + pos); ++ this->erase(vector::begin() + pos); + } + + }; diff -Nru populations-1.2.33+svn0120106/debian/patches/series populations-1.2.33+svn0120106/debian/patches/series --- populations-1.2.33+svn0120106/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 +++ populations-1.2.33+svn0120106/debian/patches/series 2012-04-21 11:11:37.000000000 +0000 @@ -0,0 +1 @@ +fix-ftbfs-gcc-4.7-667327.patch