rpms/thunderbird/F-7 .cvsignore, 1.19, 1.20 firefox-2.0-pango-ligatures.patch, 1.1, 1.2 firefox-2.0-pango-printing.patch, 1.1, 1.2 sources, 1.26, 1.27 thunderbird.spec, 1.103, 1.104

Christopher Aillon (caillon) fedora-extras-commits at redhat.com
Tue Feb 26 23:26:48 UTC 2008


Author: caillon

Update of /cvs/extras/rpms/thunderbird/F-7
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv29313

Modified Files:
	.cvsignore firefox-2.0-pango-ligatures.patch 
	firefox-2.0-pango-printing.patch sources thunderbird.spec 
Log Message:
* Tue Feb 26 2008 Christopher Aillon <caillon at redhat.com> 2.0.0.12-1
- Update to 2.0.0.12



Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/thunderbird/F-7/.cvsignore,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- .cvsignore	15 Nov 2007 15:14:09 -0000	1.19
+++ .cvsignore	26 Feb 2008 23:26:10 -0000	1.20
@@ -1,2 +1,2 @@
-thunderbird-2.0.0.9-source.tar.bz2
-thunderbird-langpacks-2.0.0.9-20071115.tar.bz2
+thunderbird-langpacks-2.0.0.12-20080226.tar.bz2
+thunderbird-2.0.0.12-source.tar.bz2

firefox-2.0-pango-ligatures.patch:

Index: firefox-2.0-pango-ligatures.patch
===================================================================
RCS file: /cvs/extras/rpms/thunderbird/F-7/firefox-2.0-pango-ligatures.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- firefox-2.0-pango-ligatures.patch	27 Jul 2007 12:50:19 -0000	1.1
+++ firefox-2.0-pango-ligatures.patch	26 Feb 2008 23:26:10 -0000	1.2
@@ -118,7 +118,7 @@
  
  nsFontMetricsPango::nsFontMetricsPango()
  {
-@@ -169,14 +228,20 @@ nsFontMetricsPango::Init(const nsFont& a
+@@ -169,15 +228,21 @@ nsFontMetricsPango::Init(const nsFont& a
      mLangGroup = aLangGroup;
  
      // Hang on to the device context
@@ -134,7 +134,8 @@
      // Make sure to clamp the pixel size to something reasonable so we
      // don't make the X server blow up.
      nscoord screenPixels = gdk_screen_height();
-     mPointSize = PR_MIN(screenPixels * FONT_MAX_FONT_SCALE, mPointSize);
+     mPointSize = PR_MIN((screenPixels - 1) * FONT_MAX_FONT_SCALE, mPointSize);
+     mPointSize = PR_MIN(2000, mPointSize);
 +#endif
  
      // enumerate over the font names passed in

firefox-2.0-pango-printing.patch:

Index: firefox-2.0-pango-printing.patch
===================================================================
RCS file: /cvs/extras/rpms/thunderbird/F-7/firefox-2.0-pango-printing.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- firefox-2.0-pango-printing.patch	12 Apr 2007 20:32:40 -0000	1.1
+++ firefox-2.0-pango-printing.patch	26 Feb 2008 23:26:10 -0000	1.2
@@ -4575,14 +4575,6 @@
  fribidi/fribidi.h
  FSp_fopen.h
  fstream.h
-@@ -208,6 +209,7 @@
- gdk/gdkevents.h
- gdk/gdk.h
- gdk/gdkkeysyms.h
-+gdk/gdkpango.h
- gdk/gdkprivate.h
- gdk/gdkregion.h
- gdk/gdkwindow.h
 @@ -501,6 +503,7 @@
  pango/pangofc-fontmap.h
  pango/pango-fontmap.h


Index: sources
===================================================================
RCS file: /cvs/extras/rpms/thunderbird/F-7/sources,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- sources	15 Nov 2007 15:14:09 -0000	1.26
+++ sources	26 Feb 2008 23:26:10 -0000	1.27
@@ -1,2 +1,2 @@
-a6dd74f87dafc7516e7970ecefee046b  thunderbird-2.0.0.9-source.tar.bz2
-5abe9f6d6b292adaa4283cd001781ae8  thunderbird-langpacks-2.0.0.9-20071115.tar.bz2
+4aebeaad511dd0ba73fbabfdd6819438  thunderbird-langpacks-2.0.0.12-20080226.tar.bz2
+c23f576a8fd0ceee5135829c8ae5168b  thunderbird-2.0.0.12-source.tar.bz2


Index: thunderbird.spec
===================================================================
RCS file: /cvs/extras/rpms/thunderbird/F-7/thunderbird.spec,v
retrieving revision 1.103
retrieving revision 1.104
diff -u -r1.103 -r1.104
--- thunderbird.spec	15 Nov 2007 15:14:09 -0000	1.103
+++ thunderbird.spec	26 Feb 2008 23:26:10 -0000	1.104
@@ -7,7 +7,7 @@
 
 Summary:	Mozilla Thunderbird mail/newsgroup client
 Name:		thunderbird
-Version:	2.0.0.9
+Version:	2.0.0.12
 Release:	1%{?dist}
 URL:		http://www.mozilla.org/projects/thunderbird/
 License:	MPL
@@ -18,7 +18,7 @@
 %define tarball thunderbird-2.0.0.0rc1-source.tar.bz2
 %endif
 Source0:        %{tarball}
-Source1:        thunderbird-langpacks-%{version}-20071115.tar.bz2
+Source1:        thunderbird-langpacks-%{version}-20080226.tar.bz2
 Source10:       thunderbird-mozconfig
 Source11:       thunderbird-mozconfig-branded
 Source12:       thunderbird-redhat-default-prefs.js
@@ -303,6 +303,9 @@
 #===============================================================================
 
 %changelog
+* Tue Feb 26 2008 Christopher Aillon <caillon at redhat.com> 2.0.0.12-1
+- Update to 2.0.0.12
+
 * Thu Nov 15 2007 Christopher Aillon <caillon at redhat.com> 2.0.0.9-1
 - Update to 2.0.0.9
 




More information about the fedora-extras-commits mailing list