tags 672048 + patch tags 672048 + pending tags 677930 + patch tags 677930 + pending thanks
Dear maintainer, I've prepared an NMU for qwbfsmanager (versioned as 1.2.1-1.1) and will upload it to DELAYED/2 as soon I am in reach of my key (which will be tonight CEST). Please feel free to tell me if I should delay it longer. Regards. Evgeni Golov diff -Nru qwbfsmanager-1.2.1/debian/changelog qwbfsmanager-1.2.1/debian/changelog --- qwbfsmanager-1.2.1/debian/changelog 2011-12-31 17:15:47.000000000 +0100 +++ qwbfsmanager-1.2.1/debian/changelog 2012-07-06 08:38:07.000000000 +0200 @@ -1,3 +1,15 @@ +qwbfsmanager (1.2.1-1.1) unstable; urgency=low + + * Non-maintainer upload. + * Fix FTBFS with recent qmake + Patch by: Filipe AZEVEDO <pas...@gmail.com> + Closes: #672048 + * Fix FTBFS with gcc-4.7 + Patch by: Ilya Barygin <randomact...@ubuntu.com> + Closes: #677930 + + -- Evgeni Golov <evg...@debian.org> Fri, 06 Jul 2012 08:38:04 +0200 + qwbfsmanager (1.2.1-1) unstable; urgency=low * New upstream release. (Closes: #626681) diff -Nru qwbfsmanager-1.2.1/debian/patches/fix_qmake_replace.patch qwbfsmanager-1.2.1/debian/patches/fix_qmake_replace.patch --- qwbfsmanager-1.2.1/debian/patches/fix_qmake_replace.patch 1970-01-01 01:00:00.000000000 +0100 +++ qwbfsmanager-1.2.1/debian/patches/fix_qmake_replace.patch 2012-07-06 08:19:00.000000000 +0200 @@ -0,0 +1,52 @@ +From: "Filipe AZEVEDO (Nox P@sNox)" <pas...@gmail.com> +Date: Sun, 11 Mar 2012 20:13:14 +0100 +Subject: [PATCH] Fix slash / backslash replace in qmake project +Origin: upstream + Based on upstream commit + https://github.com/pasnox/fresh/commit/ae40018bcd80ead2dcdefc0af63a92e50f69b3f6 + +Index: qwbfsmanager-1.2.1/fresh/functions.pri +=================================================================== +--- qwbfsmanager-1.2.1.orig/fresh/functions.pri 2011-04-03 22:45:01.000000000 +0200 ++++ qwbfsmanager-1.2.1/fresh/functions.pri 2012-07-06 08:16:50.904152534 +0200 +@@ -4,6 +4,9 @@ + + win32:!isEqual( Q_OS, "windows" ):CONFIG *= win32_crossbuild + ++SLASH = "/" ++BACKSLASH = $$escape_expand( "\\" ) ++ + # lupdate/lrelease too buggy ( not full qmake interpreter ), so avoid functions def in this case + isEmpty( translations_pass ) { + # return the list of directories recursively from a given path ($$1) +@@ -21,7 +24,7 @@ + _q_folders = $$system( $$command ) + _q_folders *= $$1 + +- _q_folders = $$replace( _q_folders, "\\\\", "/" ) ++ _q_folders = $$replace( _q_folders, $$BACKSLASH, $SLASH ) + + # loop paths + for( q_folder, _q_folders ) { +Index: qwbfsmanager-1.2.1/fresh/installs.pri +=================================================================== +--- qwbfsmanager-1.2.1.orig/fresh/installs.pri 2011-04-03 22:45:01.000000000 +0200 ++++ qwbfsmanager-1.2.1/fresh/installs.pri 2012-07-06 08:17:42.704151145 +0200 +@@ -42,7 +42,7 @@ + win32:!win32_crossbuild:fresh_core_headers.files *= $$system( for /R src/core %i in (*.h) do @echo %i ) + else:fresh_core_headers.files *= $$system( find src/core -name '*.h' ) + +- fresh_core_headers.files = $$replace( fresh_core_headers.files, "\\\\", "/" ) ++ fresh_core_headers.files = $$replace( fresh_core_headers.files, $$BACKSLASH, $SLASH ) + + # gui headers + fresh_gui_headers.path = $$FRESH_INSTALL_HEADERS/FreshGui +@@ -50,7 +50,7 @@ + win32:!win32_crossbuild:fresh_gui_headers.files *= $$system( for /R src/gui %i in (*.h) do @echo %i ) + else:fresh_gui_headers.files *= $$system( find src/gui -name '*.h' ) + +- fresh_gui_headers.files = $$replace( fresh_gui_headers.files, "\\\\", "/" ) ++ fresh_gui_headers.files = $$replace( fresh_gui_headers.files, $$BACKSLASH, $SLASH ) + + # generate fresh.prf + # remove old one if needed diff -Nru qwbfsmanager-1.2.1/debian/patches/gcc-4.7.patch qwbfsmanager-1.2.1/debian/patches/gcc-4.7.patch --- qwbfsmanager-1.2.1/debian/patches/gcc-4.7.patch 1970-01-01 01:00:00.000000000 +0100 +++ qwbfsmanager-1.2.1/debian/patches/gcc-4.7.patch 2012-07-06 07:39:21.000000000 +0200 @@ -0,0 +1,23 @@ +Description: fix compilation with gcc 4.7 +Author: Ilya Barygin <randomact...@ubuntu.com> + +--- qwbfsmanager-1.2.1.orig/fresh/src/gui/environmentvariablemanager/pEnvironmentVariablesModel.cpp ++++ qwbfsmanager-1.2.1/fresh/src/gui/environmentvariablemanager/pEnvironmentVariablesModel.cpp +@@ -225,12 +225,12 @@ pEnvironmentVariablesModel::Variables pE + const QString name = variable.section( '=', 0, 0 ); + const QString value = variable.section( '=', 1 ); + +- pEnvironmentVariablesModel::Variable variable; +- variable.name = name; +- variable.value = value; +- variable.enabled = true; ++ pEnvironmentVariablesModel::Variable variable2; ++ variable2.name = name; ++ variable2.value = value; ++ variable2.enabled = true; + +- items[ name ] = variable; ++ items[ name ] = variable2; + } + + return items; diff -Nru qwbfsmanager-1.2.1/debian/patches/series qwbfsmanager-1.2.1/debian/patches/series --- qwbfsmanager-1.2.1/debian/patches/series 2011-12-31 17:04:07.000000000 +0100 +++ qwbfsmanager-1.2.1/debian/patches/series 2012-07-06 08:22:09.000000000 +0200 @@ -1 +1,3 @@ no_rpath.patch +fix_qmake_replace.patch +gcc-4.7.patch -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org