Hello community,

here is the log from the commit of package fonts-config for openSUSE:Factory 
checked in at 2014-03-23 22:29:46
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/fonts-config (Old)
 and      /work/SRC/openSUSE:Factory/.fonts-config.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "fonts-config"

Changes:
--------
--- /work/SRC/openSUSE:Factory/fonts-config/fonts-config.changes        
2014-03-06 19:29:33.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.fonts-config.new/fonts-config.changes   
2014-03-23 22:29:47.000000000 +0100
@@ -1,0 +2,14 @@
+Fri Mar 21 09:33:50 UTC 2014 - pgaj...@suse.com
+
+- updated to 20140331:
+  * allow ampersand in string sysconfig variable
+  * xml-escape ampersand from <alias> family names
+  * added bitmap font example for PREFER_*_FAMILIES
+
+-------------------------------------------------------------------
+Thu Mar 20 15:45:20 UTC 2014 - pgaj...@suse.com
+
+- fix default values and use list of possibilities in sysconfig
+  file [bnc#869398] (internal)
+
+-------------------------------------------------------------------

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ fonts-config.spec ++++++
--- /var/tmp/diff_new_pack.BJVZDe/_old  2014-03-23 22:29:48.000000000 +0100
+++ /var/tmp/diff_new_pack.BJVZDe/_new  2014-03-23 22:29:48.000000000 +0100
@@ -19,7 +19,7 @@
 %define infinality_srcver 1-20130104_1
 %define infinality_name    fontconfig-infinality
 Name:           fonts-config
-Version:        20140226
+Version:        20140321
 Release:        0
 Summary:        Configures Fonts for X Windows and other applications
 License:        GPL-2.0+ and MIT







++++++ fonts-config ++++++
--- /var/tmp/diff_new_pack.BJVZDe/_old  2014-03-23 22:29:48.000000000 +0100
+++ /var/tmp/diff_new_pack.BJVZDe/_new  2014-03-23 22:29:48.000000000 +0100
@@ -1,6 +1,6 @@
 #! /usr/bin/perl -w
 #
-# Copyright (c) 2000-2013 SuSE Linux AG, Nuernberg, Germany.
+# Copyright (c) 2000-2014 SuSE Linux AG, Nuernberg, Germany.
 # All rights reserved.
 ########################################################################
 # create a man-page with:
@@ -304,7 +304,7 @@
 use strict;
 
 my $script_start_time = time();
-my $version = 20140226;
+my $version = 20140321;
 
 #
 #  OPTIONS
@@ -557,7 +557,7 @@
       elsif (eval ("\$$i") =~ /^[0-9]+$/) { # Type integer
         eval("\$$sysconfig_options{$i}=\$$i");
       }
-      elsif (eval ("\$$i") =~ /^[-:a-zA-Z0-9 ]+$/) { # Type string
+      elsif (eval ("\$$i") =~ /^[-:a-zA-Z0-9 &]+$/) { # Type string
         eval("\$$sysconfig_options{$i}=\$$i");
       }
       else { # this case also occurs when the variable is the empty string!
@@ -1174,10 +1174,13 @@
     print "--- Prefered $family families: ";
   }
 
+  $family =~ s/&/&amp;/g;
+
   $cfg .= "    <alias>\n";
   $cfg .= "            <family>$family</family>\n";
   $cfg .= "            <prefer>\n";
   for my $f (@families) {
+    $f =~ s/&/&amp;/g;
     $cfg .= "                  <family>$f</family>\n";
     if ($VERBOSITY >= $VERBOSITY_DEBUG) {
       print "[$f] ";

++++++ sysconfig.fonts-config ++++++
--- /var/tmp/diff_new_pack.BJVZDe/_old  2014-03-23 22:29:48.000000000 +0100
+++ /var/tmp/diff_new_pack.BJVZDe/_new  2014-03-23 22:29:48.000000000 +0100
@@ -1,7 +1,7 @@
 ## Path:        Desktop
 ## Description: Display font configuration
 ## Type:        integer
-## Default:     quiet
+## Default:     0
 #
 # Type of output (quiet=0, verbose=1, debug=256) while reconfiguring
 # fonts.
@@ -10,7 +10,7 @@
 
 ## Path:        Desktop
 ## Description: Display font configuration
-## Type:        string
+## Type:        list(none,hintnone,hintslight,hintmedium,hintfull)
 ## Default:     none
 #
 #  Prefered common hinting style.
@@ -20,8 +20,6 @@
 #  though, hinstyle can be overriden by other option in this file
 #  (e. g. FORCE_BW_MONOSPACE => hintfull)
 #
-#  Possible values: none, hintnone, hintslight, hintmedium, hintfull
-#
 FORCE_HINTSTYLE="none"
 
 ## Path:        Desktop
@@ -56,7 +54,7 @@
 
 ## Path:        Desktop
 ## Description: Display font configuration
-## Type:        string
+## Type:        list(lcdnone,lcddefault,lcdlight,lcdlegacy)
 ## Default:     lcdnone
 #
 # LCD filter.
@@ -65,29 +63,20 @@
 # when you want subpixel rendering. lcddefault seems to
 # be most used value here.
 #
-# Possible values: lcdnone, lcddefault, lcdlight, lcdlegacy
-#
 USE_LCDFILTER="lcdnone"
 
 ## Path:        Desktop
 ## Description: Display font configuration
-## Type:        string
-## Default:     lcdnone
+## Type:        list(none,rgb,vrgb,bgr,vbgr,unknown)
+## Default:     none
 #
 # Subpixel arrangement for your monitor and its rotation.
 #
-# Possible values: none, rgb, vrgb, bgr, vbgr, unknown
-#
 USE_RGBA="none"
 
 ## Path:        Desktop
 ## Description: Display font configuration
 ## Type:        yesno
-## Default:     no
-
-## Path:        Desktop
-## Description: Display font configuration
-## Type:        yesno
 ## Default:     yes
 #
 # As rendering of outlines is often not perfect at small sizes, some
@@ -135,6 +124,10 @@
 #
 # PREFER_SANS_FAMILIES="Source Sans Pro:CMU Sans Serif:CMU Bright:Linux 
Biolinum O:Latin Modern Sans"
 #
+# Other example gives the preference to bitmap fonts for various scripts.
+# 
+# PREFER_SANS_FAMILIES="Adobe Helvetica:B&H Lucida:Efont Biwidth:Efont 
Fixed:Efont Fixed Wide:Arabic Newspaper:Gnu Unifont:WenQuanYi WenQuanYi Bitmap 
Song"
+#
 PREFER_SANS_FAMILIES=""
 
 ## Path:        Desktop
@@ -150,6 +143,10 @@
 #
 # PREFER_SERIF_FAMILIES="CMU Serif:CMU Serif Extra:Linux Libertine 
O:Crimson:Old Standard:Rachana:Latin Modern Roman:Latin Modern Roman"
 #
+# Other example gives the preference to bitmap fonts for various scripts.
+# 
+# PREFER_SERIF_FAMILIES="Adobe Times:Adobe New Century Schoolbook:Adobe 
Utopia:B&H LucidaBright:MUTT ClearlyU Wide:MUTT ClearlyU PUA:MUTT ClearlyU 
Alternate Glyphs Wide"
+#
 PREFER_SERIF_FAMILIES=""
 
 ## Path:        Desktop
@@ -165,12 +162,16 @@
 #
 # PREFER_MONO_FAMILIES="Source Code Pro:CMU Typewriter Text:Linux Libertine 
Mono O:Tempora:Latin Modern Mono:Latin Modern Mono Light"
 #
+# Other example gives the preference to bitmap fonts for various scripts.
+#
+# PREFER_MONO_FAMILIES="Adobe Courier:B&H LucidaTypewriter:Efont Fixed:Efont 
Fixed Wide:Gnu Unifont Mono:Misc Fixed:Misc Fixed Wide:Schumacher Clean:xos4 
Terminus:WenQuanYi WenQuanYi Bitmap Song"
+#
 PREFER_MONO_FAMILIES=""
 
 ## Path:        Desktop
 ## Description: Display font configuration
 ## Type:        yesno
-## Default:     no
+## Default:     yes
 #
 # Do not metric substitutions.
 #

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to