tags 644250 + patch
tags 644250 + pending
thanks

Dear maintainer,

I've prepared an NMU for fontmatrix (versioned as 0.6.0+svn20110930-1.1) and uploaded it to DELAYED/2. Please feel free to tell me if I should delay it longer.

--
Jakub Wilk
diffstat for fontmatrix-0.6.0+svn20110930 fontmatrix-0.6.0+svn20110930

 changelog          |    7 +++++++
 patches/qreal.diff |   17 +++++++++++++++++
 patches/series     |    1 +
 3 files changed, 25 insertions(+)

diff -Nru fontmatrix-0.6.0+svn20110930/debian/changelog fontmatrix-0.6.0+svn20110930/debian/changelog
--- fontmatrix-0.6.0+svn20110930/debian/changelog	2011-10-03 22:51:43.000000000 +0200
+++ fontmatrix-0.6.0+svn20110930/debian/changelog	2011-11-13 19:51:42.000000000 +0100
@@ -1,3 +1,10 @@
+fontmatrix (0.6.0+svn20110930-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix type mismatch between qreal and double on ARM EABI (closes: #644250).
+
+ -- Jakub Wilk <jw...@debian.org>  Sun, 13 Nov 2011 19:51:41 +0100
+
 fontmatrix (0.6.0+svn20110930-1) unstable; urgency=low
 
   * Upstream svn snapshot (Closes: #554407, #628304).
diff -Nru fontmatrix-0.6.0+svn20110930/debian/patches/qreal.diff fontmatrix-0.6.0+svn20110930/debian/patches/qreal.diff
--- fontmatrix-0.6.0+svn20110930/debian/patches/qreal.diff	1970-01-01 01:00:00.000000000 +0100
+++ fontmatrix-0.6.0+svn20110930/debian/patches/qreal.diff	2011-11-13 19:51:03.000000000 +0100
@@ -0,0 +1,17 @@
+Description: Fix type mismatch between qreal and double on ARM EABI.
+Author: Jakub Wilk <jw...@debian.org>
+Bug-Debian: http://bugs.debian.org/644250
+Forwarded: no
+Last-Update: 2011-11-13
+
+--- a/src/fminfodisplay.cpp
++++ b/src/fminfodisplay.cpp
+@@ -151,7 +151,7 @@
+ 				GlyphToSVGHelper gtsh ( gpi->path(), tf );
+ 				svg += gtsh.getSVGPath() + "\n";
+ 				horOffset += gpi->data(GLYPH_DATA_HADVANCE).toDouble() * scaleFactor;
+-				maxHeight = qMax ( gtsh.getRect().height(), maxHeight );
++				maxHeight = qMax ( (double)gtsh.getRect().height(), maxHeight );
+ 				tf.translate( gpi->data(GLYPH_DATA_HADVANCE).toDouble()  * scaleFactor,0 );
+ 				delete gpi;
+ 			}
diff -Nru fontmatrix-0.6.0+svn20110930/debian/patches/series fontmatrix-0.6.0+svn20110930/debian/patches/series
--- fontmatrix-0.6.0+svn20110930/debian/patches/series	2010-01-07 19:26:40.000000000 +0100
+++ fontmatrix-0.6.0+svn20110930/debian/patches/series	2011-11-13 02:22:05.000000000 +0100
@@ -1,2 +1,3 @@
 01_fminfodisplay.cpp.patch
 debian-changes-0.6.0+svn20100107-1
+qreal.diff

Reply via email to