[Pkg-tcltk-commits] r1013 - in tk8.5/trunk/debian: . patches

sgolovan at alioth.debian.org sgolovan at alioth.debian.org
Sat Jan 2 18:04:05 UTC 2010


Author: sgolovan
Date: 2010-01-02 18:03:59 +0000 (Sat, 02 Jan 2010)
New Revision: 1013

Removed:
   tk8.5/trunk/debian/patches/canvasps.diff
   tk8.5/trunk/debian/patches/fontsize.diff
Modified:
   tk8.5/trunk/debian/changelog
Log:
[tk8.5]
  * Removed unused patches from debian/patches.


Modified: tk8.5/trunk/debian/changelog
===================================================================
--- tk8.5/trunk/debian/changelog	2009-12-29 15:54:17 UTC (rev 1012)
+++ tk8.5/trunk/debian/changelog	2010-01-02 18:03:59 UTC (rev 1013)
@@ -1,8 +1,8 @@
 tk8.5 (8.5.8-2) UNRELEASED; urgency=low
 
-  * NOT RELEASED YET
+  * Removed unused patches from debian/patches.
 
- -- Sergei Golovan <sgolovan at debian.org>  Wed, 18 Nov 2009 00:03:12 +0300
+ -- Sergei Golovan <sgolovan at debian.org>  Sat, 02 Jan 2010 21:02:58 +0300
 
 tk8.5 (8.5.8-1) unstable; urgency=low
 

Deleted: tk8.5/trunk/debian/patches/canvasps.diff
===================================================================
--- tk8.5/trunk/debian/patches/canvasps.diff	2009-12-29 15:54:17 UTC (rev 1012)
+++ tk8.5/trunk/debian/patches/canvasps.diff	2010-01-02 18:03:59 UTC (rev 1013)
@@ -1,23 +0,0 @@
-Patch by Sergei Golovan.
-
-It ensures that font size is positive (measured in pixels). This fixes
-mirrored text problem in canvas postscript output.
-
---- tk8.5-8.5.5.orig/unix/tkUnixRFont.c
-+++ tk8.5-8.5.5/unix/tkUnixRFont.c
-@@ -260,6 +260,7 @@
-     ftFont = GetFont(fontPtr, 0);
-     fontPtr->font.fid = XLoadFont(Tk_Display(tkwin), "fixed");
-     GetTkFontAttributes(ftFont, &fontPtr->font.fa);
-+    fontPtr->font.fa.size = TkFontGetPoints(tkwin, fontPtr->font.fa.size);
-     GetTkFontMetrics(ftFont, &fontPtr->font.fm);
- 
-     return fontPtr;
-@@ -518,6 +519,7 @@
- 
-     GetTkFontAttributes(ftFont, faPtr);
-     faPtr->underline = fontPtr->font.fa.underline;
-+    faPtr->size = TkFontGetPoints(tkwin, faPtr->size);
-     faPtr->overstrike = fontPtr->font.fa.overstrike;
- }
- 

Deleted: tk8.5/trunk/debian/patches/fontsize.diff
===================================================================
--- tk8.5/trunk/debian/patches/fontsize.diff	2009-12-29 15:54:17 UTC (rev 1012)
+++ tk8.5/trunk/debian/patches/fontsize.diff	2010-01-02 18:03:59 UTC (rev 1013)
@@ -1,21 +0,0 @@
-Patch by Sergei Golovan fixes mirroring font in canvas postscript when its
-size is specified in pixels (negative).
-
---- tk8.5-8.5.4.orig/unix/tkUnixRFont.c
-+++ tk8.5-8.5.4/unix/tkUnixRFont.c
-@@ -260,6 +260,7 @@
-     ftFont = GetFont(fontPtr, 0);
-     fontPtr->font.fid = XLoadFont(Tk_Display(tkwin), "fixed");
-     GetTkFontAttributes(ftFont, &fontPtr->font.fa);
-+    fontPtr->font.fa.size = TkFontGetPoints(tkwin, fontPtr->font.fa.size);
-     GetTkFontMetrics(ftFont, &fontPtr->font.fm);
- 
-     return fontPtr;
-@@ -517,6 +518,7 @@
- 				/* Actual font used to render the character */
- 
-     GetTkFontAttributes(ftFont, faPtr);
-+    faPtr->size = TkFontGetPoints(tkwin, faPtr->size);
-     faPtr->underline = fontPtr->font.fa.underline;
-     faPtr->overstrike = fontPtr->font.fa.overstrike;
- }




More information about the Pkg-tcltk-commits mailing list