Le mardi 15 janvier 2008 à 06:43 +0100, Cyril Brulebois a écrit :
> On 15/01/2008, Julien Valroff wrote:
> > But as I am not sure of when the next upstream version will be
> > released, I thought it was better reporting this here.
>
> Sure.
>
> > I have already built the package for my own use ;-) The patch I have
> > sent applies to the *Debian* sources (ie. quilt patch, changelog
> > entries ...)
>
> Now you can flame me for only having looked at the patch provided at the
> URL you gave, and not the one you attached…
>
> Sorry, I really should open my eyes more often.
I should as well! The patch I had attached previously was wrong as the
quilt patch was in patches/ (and not debian/patches), I am not used to
working with quilt!
Please find a fixed version attached.
Cheers,
Julien
diff -urN qtpfsgui-1.9.0.orig/debian/changelog qtpfsgui-1.9.0/debian/changelog
--- qtpfsgui-1.9.0.orig/debian/changelog 2008-01-16 20:46:26.000000000 +0100
+++ qtpfsgui-1.9.0/debian/changelog 2008-01-16 20:49:38.000000000 +0100
@@ -1,3 +1,11 @@
+qtpfsgui (1.9.0-1.1) unstable; urgency=low
+
+ * Non-maintainer upload.
+ * Added patch to allow use of hugin's
+ align_image_stack again
+
+ -- Julien Valroff <[EMAIL PROTECTED]> Wed, 16 Jan 2008 20:49:36 +0100
+
qtpfsgui (1.9.0-1) unstable; urgency=low
* New upstream release.
diff -urN qtpfsgui-1.9.0.orig/debian/patches/30_align_image_stack_prefix qtpfsgui-1.9.0/debian/patches/30_align_image_stack_prefix
--- qtpfsgui-1.9.0.orig/debian/patches/30_align_image_stack_prefix 1970-01-01 01:00:00.000000000 +0100
+++ qtpfsgui-1.9.0/debian/patches/30_align_image_stack_prefix 2008-01-16 20:49:08.000000000 +0100
@@ -0,0 +1,16 @@
+Index: qtpfsgui-1.9.0/src/HdrCreation/HdrCreationManager.cpp
+===================================================================
+--- qtpfsgui-1.9.0.orig/src/HdrCreation/HdrCreationManager.cpp 2008-01-16 20:44:15.000000000 +0100
++++ qtpfsgui-1.9.0/src/HdrCreation/HdrCreationManager.cpp 2008-01-16 20:44:29.000000000 +0100
+@@ -244,9 +244,9 @@
+ connect(ais, SIGNAL(error(QProcess::ProcessError)), this, SIGNAL(ais_failed(QProcess::ProcessError)));
+
+ #ifdef Q_WS_MAC
+- ais->start(QCoreApplication::applicationDirPath()+"/align_image_stack", QStringList() << QString("-a") << (filesToRemove.empty() ? fileList : filesToRemove) );
++ ais->start(QCoreApplication::applicationDirPath()+"/align_image_stack", QStringList() << QString("-aaligned_") << (filesToRemove.empty() ? fileList : filesToRemove) );
+ #else
+- ais->start("align_image_stack", QStringList() << QString("-a") << (filesToRemove.empty() ? fileList : filesToRemove) );
++ ais->start("align_image_stack", QStringList() << QString("-aaligned_") << (filesToRemove.empty() ? fileList : filesToRemove) );
+ #endif
+ }
+
diff -urN qtpfsgui-1.9.0.orig/debian/patches/series qtpfsgui-1.9.0/debian/patches/series
--- qtpfsgui-1.9.0.orig/debian/patches/series 2008-01-16 20:48:42.000000000 +0100
+++ qtpfsgui-1.9.0/debian/patches/series 2008-01-16 20:49:08.000000000 +0100
@@ -1,2 +1,3 @@
+30_align_image_stack_prefix
10_remove_encoding_from_desktop_file
20_gcc4.3_includes