Hello community,

here is the log from the commit of package pango for openSUSE:Factory checked 
in at 2013-09-27 17:56:16
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/pango (Old)
 and      /work/SRC/openSUSE:Factory/.pango.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "pango"

Changes:
--------
--- /work/SRC/openSUSE:Factory/pango/pango.changes      2013-09-11 
13:03:59.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.pango.new/pango.changes 2013-09-27 
17:56:17.000000000 +0200
@@ -1,0 +2,9 @@
+Mon Sep 23 12:29:22 UTC 2013 - dims...@opensuse.org
+
+- Update to version 1.36.0:
+  + Remove a useless test (bgo#707131).
+  + Never return NULL from pango_layout_get_test (bgo#707659).
+  + Correct an annotation (bgo#707874).
+  + Fix gravity map (bgo#708432).
+
+-------------------------------------------------------------------

Old:
----
  pango-1.35.3.tar.xz

New:
----
  pango-1.36.0.tar.xz

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

Other differences:
------------------
++++++ pango.spec ++++++
--- /var/tmp/diff_new_pack.G5GgaE/_old  2013-09-27 17:56:17.000000000 +0200
+++ /var/tmp/diff_new_pack.G5GgaE/_new  2013-09-27 17:56:17.000000000 +0200
@@ -20,13 +20,13 @@
 %define pango_binary_version 1.8.0
 
 Name:           pango
-Version:        1.35.3
+Version:        1.36.0
 Release:        0
 Summary:        Library for Layout and Rendering of Text
 License:        LGPL-2.1+
 Group:          System/Libraries
 Url:            http://www.pango.org/
-Source:         
http://download.gnome.org/sources/pango/1.35/%{name}-%{version}.tar.xz
+Source:         
http://download.gnome.org/sources/pango/1.36/%{name}-%{version}.tar.xz
 Source1:        README.SuSE
 Source2:        macros.pango
 Source99:       baselibs.conf

++++++ pango-1.35.3.tar.xz -> pango-1.36.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pango-1.35.3/ChangeLog new/pango-1.36.0/ChangeLog
--- old/pango-1.35.3/ChangeLog  2013-09-02 21:15:04.000000000 +0200
+++ new/pango-1.36.0/ChangeLog  2013-09-23 14:04:04.000000000 +0200
@@ -1,3 +1,73 @@
+commit 9d2ff982c2c0a9b7ca96bb05416b4c0a92c8db18
+Author: Matthias Clasen <mcla...@redhat.com>
+Date:   Mon Sep 23 06:41:36 2013 -0400
+
+    1.36.0
+
+ NEWS         | 7 +++++++
+ configure.ac | 4 ++--
+ 2 files changed, 9 insertions(+), 2 deletions(-)
+
+commit 6973d5223a3deafbf4f09074778e7d7d45e94463
+Author: Behdad Esfahbod <beh...@behdad.org>
+Date:   Fri Sep 20 13:14:12 2013 -0400
+
+    Bug 708432 - gravity_map in fonts.c: "Upside-Down" should be
+
+    PANGO_GRAVITY_NORTH instead of PANGO_GRAVITY_SOUTH?
+
+ pango/fonts.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+commit 05fe0e7443026b8504da32fd8bc92433cacdb431
+Author: Matthias Clasen <mcla...@redhat.com>
+Date:   Tue Sep 10 17:34:04 2013 -0400
+
+    Correct an annotation
+
+    The annotation for pango_layout_set_attributes should be
+    'transfer none', not 'transfer full'. Pointed out in
+    https://bugzilla.gnome.org/show_bug.cgi?id=707874
+
+ pango/pango-layout.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+commit 114d5bfe9d54d1efabc233312d2c23267cf16f59
+Author: Benjamin Otte <o...@redhat.com>
+Date:   Mon Sep 9 17:12:50 2013 +0200
+
+    layout: Never return NULL from pango_layout_get_text()
+
+    layouts get initialized with text == NULL as an optimization (avoid a
+    malloc). But pango_layout_set_text (layout, NULL, 0); will set
+    the text
+    to "", so it is impossible to set a NULL text.
+
+    Fxies crashers in various places that assume NULL return values never
+    happen.
+
+    https://bugzilla.gnome.org/show_bug.cgi?id=707659
+
+ pango/pango-layout.c | 5 +++++
+ 1 file changed, 5 insertions(+)
+
+commit 285be5bd7ee3ce87bb027b405be674d6f91995d1
+Author: Jehan <je...@girinstud.io>
+Date:   Wed Sep 4 13:04:47 2013 +1200
+
+    Bug 707131 - removing useless test.
+
+    Since pango_scan_int() would return FALSE if the scanned value
+    was over
+    INT_MAX; and the reference out value's type is an int, (n > INT_MAX)
+    test is unecessary.
+    If pango_scan_int() behavior was to be changed to accept long
+    int, an explicit test should be added (or the PangoAttrSize
+    type updated to handle long int too).
+
+ pango/pango-markup.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
 commit 009ef189885fc8aca305372ead467fa05afe3747
 Author: Matthias Clasen <mcla...@redhat.com>
 Date:   Mon Sep 2 14:55:57 2013 -0400
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pango-1.35.3/NEWS new/pango-1.36.0/NEWS
--- old/pango-1.35.3/NEWS       2013-09-02 20:55:42.000000000 +0200
+++ new/pango-1.36.0/NEWS       2013-09-23 13:43:19.000000000 +0200
@@ -1,3 +1,10 @@
+Overview of changes between 1.35.3 and 1.36.0
+=============================================
+- Remove a useless test (#707131)
+- Never return NULL from pango_layout_get_test (#707659)
+- Correct an annotation (#707874)
+- Fix gravity map (#708432)
+
 Overview of changes between 1.35.2 and 1.35.3
 ============================================
 - Compiler warnings about strict aliasing (#703995)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pango-1.35.3/config.h.win32 
new/pango-1.36.0/config.h.win32
--- old/pango-1.35.3/config.h.win32     2013-09-02 20:56:57.000000000 +0200
+++ new/pango-1.36.0/config.h.win32     2013-09-23 12:42:28.000000000 +0200
@@ -121,7 +121,7 @@
 #define PACKAGE_NAME "pango"
 
 /* Define to the full name and version of this package. */
-#define PACKAGE_STRING "pango 1.35.3"
+#define PACKAGE_STRING "pango 1.36.0"
 
 /* Define to the one symbol short name of this package. */
 #define PACKAGE_TARNAME "pango"
@@ -130,10 +130,10 @@
 #define PACKAGE_URL ""
 
 /* Define to the version of this package. */
-#define PACKAGE_VERSION "1.35.3"
+#define PACKAGE_VERSION "1.36.0"
 
 /* PANGO binary age */
-#define PANGO_BINARY_AGE 3503
+#define PANGO_BINARY_AGE 3600
 
 /* PANGO interface age */
 #define PANGO_INTERFACE_AGE 0
@@ -142,10 +142,10 @@
 #define PANGO_VERSION_MAJOR 1
 
 /* PANGO micro version */
-#define PANGO_VERSION_MICRO 3
+#define PANGO_VERSION_MICRO 0
 
 /* PANGO minor version */
-#define PANGO_VERSION_MINOR 35
+#define PANGO_VERSION_MINOR 36
 
 /* Define to 1 if you have the ANSI C header files. */
 #define STDC_HEADERS 1
@@ -154,4 +154,4 @@
 /* #undef USE_LA_MODULES */
 
 /* Version number of package */
-#define VERSION "1.35.3"
+#define VERSION "1.36.0"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pango-1.35.3/configure new/pango-1.36.0/configure
--- old/pango-1.35.3/configure  2013-09-02 20:56:36.000000000 +0200
+++ new/pango-1.36.0/configure  2013-09-23 12:42:17.000000000 +0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for pango 1.35.3.
+# Generated by GNU Autoconf 2.69 for pango 1.36.0.
 #
 # Report bugs to <http://bugzilla.gnome.org/enter_bug.cgi?product=pango>.
 #
@@ -591,8 +591,8 @@
 # Identity of this package.
 PACKAGE_NAME='pango'
 PACKAGE_TARNAME='pango'
-PACKAGE_VERSION='1.35.3'
-PACKAGE_STRING='pango 1.35.3'
+PACKAGE_VERSION='1.36.0'
+PACKAGE_STRING='pango 1.36.0'
 PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=pango'
 PACKAGE_URL=''
 
@@ -1502,7 +1502,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures pango 1.35.3 to adapt to many kinds of systems.
+\`configure' configures pango 1.36.0 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1572,7 +1572,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of pango 1.35.3:";;
+     short | recursive ) echo "Configuration of pango 1.36.0:";;
    esac
   cat <<\_ACEOF
 
@@ -1592,7 +1592,7 @@
                           optimize for fast installation [default=yes]
   --disable-libtool-lock  avoid locking (might break parallel builds)
   --enable-debug=[no/minimum/yes]
-                          turn on debugging [default=yes]
+                          turn on debugging [default=minimum]
   --disable-rebuilds      disable all source autogeneration rules
   --enable-introspection=[no/auto/yes]
                           Enable introspection for this build
@@ -1738,7 +1738,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-pango configure 1.35.3
+pango configure 1.36.0
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2228,7 +2228,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by pango $as_me 1.35.3, which was
+It was created by pango $as_me 1.36.0, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -3094,7 +3094,7 @@
 
 # Define the identity of the package.
  PACKAGE='pango'
- VERSION='1.35.3'
+ VERSION='1.36.0'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -3189,12 +3189,12 @@
 
 
 PANGO_VERSION_MAJOR=1
-PANGO_VERSION_MINOR=35
-PANGO_VERSION_MICRO=3
-PANGO_VERSION=1.35.3
+PANGO_VERSION_MINOR=36
+PANGO_VERSION_MICRO=0
+PANGO_VERSION=1.36.0
 PANGO_API_VERSION=1.0
 PANGO_INTERFACE_AGE=0
-PANGO_BINARY_AGE=3503
+PANGO_BINARY_AGE=3600
 PANGO_MODULE_VERSION=1.8.0
 
 
@@ -3210,7 +3210,7 @@
 $as_echo "#define MODULE_VERSION \"1.8.0\"" >>confdefs.h
 
 
-$as_echo "#define PANGO_BINARY_AGE 3503" >>confdefs.h
+$as_echo "#define PANGO_BINARY_AGE 3600" >>confdefs.h
 
 
 $as_echo "#define PANGO_INTERFACE_AGE 0" >>confdefs.h
@@ -3219,16 +3219,16 @@
 $as_echo "#define PANGO_VERSION_MAJOR 1" >>confdefs.h
 
 
-$as_echo "#define PANGO_VERSION_MINOR 35" >>confdefs.h
+$as_echo "#define PANGO_VERSION_MINOR 36" >>confdefs.h
 
 
-$as_echo "#define PANGO_VERSION_MICRO 3" >>confdefs.h
+$as_echo "#define PANGO_VERSION_MICRO 0" >>confdefs.h
 
 
 
 
 
-VERSION_INFO="3503:0:3503"
+VERSION_INFO="3600:0:3600"
 PANGO_CURRENT_MINUS_AGE=0
 
 
@@ -16307,7 +16307,7 @@
 Report bugs to <bug-libt...@gnu.org>."
 
 lt_cl_version="\
-pango config.lt 1.35.3
+pango config.lt 1.36.0
 configured by $0, generated by GNU Autoconf 2.69.
 
 Copyright (C) 2011 Free Software Foundation, Inc.
@@ -17719,7 +17719,7 @@
 if test "${enable_debug+set}" = set; then :
   enableval=$enable_debug;
 else
-  enable_debug=yes
+  enable_debug=minimum
 fi
 
 
@@ -20710,7 +20710,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by pango $as_me 1.35.3, which was
+This file was extended by pango $as_me 1.36.0, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -20776,7 +20776,7 @@
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; 
s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-pango config.status 1.35.3
+pango config.status 1.36.0
 configured by $0, generated by GNU Autoconf 2.69,
   with options \\"\$ac_cs_config\\"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pango-1.35.3/configure.ac 
new/pango-1.36.0/configure.ac
--- old/pango-1.35.3/configure.ac       2013-09-02 20:55:46.000000000 +0200
+++ new/pango-1.36.0/configure.ac       2013-09-23 12:41:29.000000000 +0200
@@ -21,8 +21,8 @@
 
 dnl The triplet
 m4_define([pango_version_major], [1])
-m4_define([pango_version_minor], [35])
-m4_define([pango_version_micro], [3])
+m4_define([pango_version_minor], [36])
+m4_define([pango_version_micro], [0])
 
 m4_define([pango_version],
           [pango_version_major.pango_version_minor.pango_version_micro])
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pango-1.35.3/docs/html/annotation-glossary.html 
new/pango-1.36.0/docs/html/annotation-glossary.html
--- old/pango-1.35.3/docs/html/annotation-glossary.html 2013-09-02 
21:15:08.000000000 +0200
+++ new/pango-1.36.0/docs/html/annotation-glossary.html 2013-09-23 
14:04:05.000000000 +0200
@@ -14,27 +14,23 @@
 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" 
alink="#0000FF">
 <table class="navigation" id="top" width="100%" summary="Navigation header" 
cellpadding="2" cellspacing="10"><tr valign="middle">
 <td width="100%" align="left">
-<a class="shortcut" href="#glsO">O</a>
+<a class="shortcut" href="#glsC">C</a>
                      | 
                   <a class="shortcut" href="#glsI">I</a>
                      | 
-                  <a class="shortcut" href="#glsE">E</a>
+                  <a class="shortcut" href="#glsT">T</a>
                      | 
-                  <a class="shortcut" href="#glsC">C</a>
+                  <a class="shortcut" href="#glsE">E</a>
                      | 
-                  <a class="shortcut" href="#glsT">T</a>
+                  <a class="shortcut" href="#glsO">O</a>
                      | 
-                  <a class="shortcut" href="#glsA">A</a>
+                  <a class="shortcut" href="#glsS">S</a>
                      | 
                   <a class="shortcut" href="#glsT">T</a>
                      | 
                   <a class="shortcut" href="#glsA">A</a>
                      | 
                   <a class="shortcut" href="#glsO">O</a>
-                     | 
-                  <a class="shortcut" href="#glsS">S</a>
-                     | 
-                  <a class="shortcut" href="#glsT">T</a>
 </td>
 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" 
height="16" border="0" alt="Home"></a></td>
 <td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
@@ -44,30 +40,20 @@
 <div class="glossary">
 <div class="titlepage"><div><div><h1 class="title">
 <a name="annotation-glossary"></a>Annotation Glossary</h1></div></div></div>
-<a name="glsO"></a><h3 class="title">O</h3>
-<dt><span class="glossterm"><a 
name="annotation-glossterm-out%20caller-allocates"></a>out 
caller-allocates</span></dt>
-<dd class="glossdef"><p>Out parameter, where caller must allocate 
storage.</p></dd>
-<a name="glsI"></a><h3 class="title">I</h3>
-<dt><span class="glossterm"><a 
name="annotation-glossterm-inout"></a>inout</span></dt>
-<dd class="glossdef"><p>Parameter for input and for returning results. Default 
is <acronym title="Free data after the code is done."><span 
class="acronym">transfer full</span></acronym>.</p></dd>
-<a name="glsE"></a><h3 class="title">E</h3>
-<dt><span class="glossterm"><a 
name="annotation-glossterm-element-type"></a>element-type</span></dt>
-<dd class="glossdef"><p>Generics and defining elements of containers and 
arrays.</p></dd>
 <a name="glsC"></a><h3 class="title">C</h3>
 <dt><span class="glossterm"><a 
name="annotation-glossterm-closure"></a>closure</span></dt>
 <dd class="glossdef"><p>This parameter is a 'user_data', for callbacks; many 
bindings can pass NULL here.</p></dd>
+<a name="glsI"></a><h3 class="title">I</h3>
+<dt><span class="glossterm"><a 
name="annotation-glossterm-inout"></a>inout</span></dt>
+<dd class="glossdef"><p>Parameter for input and for returning results. Default 
is <acronym title="Free data after the code is done."><span 
class="acronym">transfer full</span></acronym>.</p></dd>
 <a name="glsT"></a><h3 class="title">T</h3>
 <dt><span class="glossterm"><a 
name="annotation-glossterm-transfer%20none"></a>transfer none</span></dt>
 <dd class="glossdef"><p>Don't free data after the code is done.</p></dd>
-<a name="glsA"></a><h3 class="title">A</h3>
-<dt><span class="glossterm"><a 
name="annotation-glossterm-array"></a>array</span></dt>
-<dd class="glossdef"><p>Parameter points to an array of items.</p></dd>
-<a name="glsT"></a><h3 class="title">T</h3>
 <dt><span class="glossterm"><a 
name="annotation-glossterm-transfer%20container"></a>transfer 
container</span></dt>
 <dd class="glossdef"><p>Free data container after the code is done.</p></dd>
-<a name="glsA"></a><h3 class="title">A</h3>
-<dt><span class="glossterm"><a 
name="annotation-glossterm-allow-none"></a>allow-none</span></dt>
-<dd class="glossdef"><p>NULL is ok, both for passing and for 
returning.</p></dd>
+<a name="glsE"></a><h3 class="title">E</h3>
+<dt><span class="glossterm"><a 
name="annotation-glossterm-element-type"></a>element-type</span></dt>
+<dd class="glossdef"><p>Generics and defining elements of containers and 
arrays.</p></dd>
 <a name="glsO"></a><h3 class="title">O</h3>
 <dt><span class="glossterm"><a 
name="annotation-glossterm-out"></a>out</span></dt>
 <dd class="glossdef"><p>Parameter for returning results. Default is <acronym 
title="Free data after the code is done."><span class="acronym">transfer 
full</span></acronym>.</p></dd>
@@ -77,6 +63,14 @@
 <a name="glsT"></a><h3 class="title">T</h3>
 <dt><span class="glossterm"><a 
name="annotation-glossterm-transfer%20full"></a>transfer full</span></dt>
 <dd class="glossdef"><p>Free data after the code is done.</p></dd>
+<a name="glsA"></a><h3 class="title">A</h3>
+<dt><span class="glossterm"><a 
name="annotation-glossterm-array"></a>array</span></dt>
+<dd class="glossdef"><p>Parameter points to an array of items.</p></dd>
+<dt><span class="glossterm"><a 
name="annotation-glossterm-allow-none"></a>allow-none</span></dt>
+<dd class="glossdef"><p>NULL is ok, both for passing and for 
returning.</p></dd>
+<a name="glsO"></a><h3 class="title">O</h3>
+<dt><span class="glossterm"><a 
name="annotation-glossterm-out%20caller-allocates"></a>out 
caller-allocates</span></dt>
+<dd class="glossdef"><p>Out parameter, where caller must allocate 
storage.</p></dd>
 </div>
 <div class="footer">
 <hr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pango-1.35.3/docs/html/api-index-full.html 
new/pango-1.36.0/docs/html/api-index-full.html
--- old/pango-1.35.3/docs/html/api-index-full.html      2013-09-02 
21:15:08.000000000 +0200
+++ new/pango-1.36.0/docs/html/api-index-full.html      2013-09-23 
14:04:04.000000000 +0200
@@ -2733,11 +2733,11 @@
 </dt>
 <dd></dd>
 <dt>
-<a class="link" href="pango-Version-Checking.html#pango-version-string" 
title="pango_version_string ()">pango_version_string</a>, function in <a 
class="link" href="pango-Version-Checking.html" title="Version 
Checking">Version Checking</a>
+<a class="link" href="pango-Version-Checking.html#PANGO-VERSION-STRING:CAPS" 
title="PANGO_VERSION_STRING">PANGO_VERSION_STRING</a>, macro in <a class="link" 
href="pango-Version-Checking.html" title="Version Checking">Version Checking</a>
 </dt>
 <dd></dd>
 <dt>
-<a class="link" href="pango-Version-Checking.html#PANGO-VERSION-STRING:CAPS" 
title="PANGO_VERSION_STRING">PANGO_VERSION_STRING</a>, macro in <a class="link" 
href="pango-Version-Checking.html" title="Version Checking">Version Checking</a>
+<a class="link" href="pango-Version-Checking.html#pango-version-string" 
title="pango_version_string ()">pango_version_string</a>, function in <a 
class="link" href="pango-Version-Checking.html" title="Version 
Checking">Version Checking</a>
 </dt>
 <dd></dd>
 <a name="idxW"></a><h3 class="title">W</h3>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pango-1.35.3/docs/html/index.html 
new/pango-1.36.0/docs/html/index.html
--- old/pango-1.35.3/docs/html/index.html       2013-09-02 21:15:08.000000000 
+0200
+++ new/pango-1.36.0/docs/html/index.html       2013-09-23 14:04:05.000000000 
+0200
@@ -14,7 +14,7 @@
 <div class="titlepage">
 <div>
 <div><table class="navigation" id="top" width="100%" cellpadding="2" 
cellspacing="0"><tr><th valign="middle"><p class="title">Pango Reference 
Manual</p></th></tr></table></div>
-<div><p class="releaseinfo">for Pango 1.35.3
+<div><p class="releaseinfo">for Pango 1.36.0
 </p></div>
 </div>
 <hr>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pango-1.35.3/docs/html/index.sgml 
new/pango-1.36.0/docs/html/index.sgml
--- old/pango-1.35.3/docs/html/index.sgml       2013-09-02 21:15:08.000000000 
+0200
+++ new/pango-1.36.0/docs/html/index.sgml       2013-09-23 14:04:04.000000000 
+0200
@@ -1114,14 +1114,14 @@
 <ANCHOR id="Description" href="pango/pango-querymodules.html#Description">
 <ANCHOR id="Environment" href="pango/pango-querymodules.html#Environment">
 <ANCHOR id="Bugs" href="pango/pango-querymodules.html#Bugs">
-<ANCHOR id="annotation-glossterm-out caller-allocates" 
href="pango/annotation-glossary.html#annotation-glossterm-out caller-allocates">
-<ANCHOR id="annotation-glossterm-inout" 
href="pango/annotation-glossary.html#annotation-glossterm-inout">
-<ANCHOR id="annotation-glossterm-element-type" 
href="pango/annotation-glossary.html#annotation-glossterm-element-type">
 <ANCHOR id="annotation-glossterm-closure" 
href="pango/annotation-glossary.html#annotation-glossterm-closure">
+<ANCHOR id="annotation-glossterm-inout" 
href="pango/annotation-glossary.html#annotation-glossterm-inout">
 <ANCHOR id="annotation-glossterm-transfer none" 
href="pango/annotation-glossary.html#annotation-glossterm-transfer none">
-<ANCHOR id="annotation-glossterm-array" 
href="pango/annotation-glossary.html#annotation-glossterm-array">
 <ANCHOR id="annotation-glossterm-transfer container" 
href="pango/annotation-glossary.html#annotation-glossterm-transfer container">
-<ANCHOR id="annotation-glossterm-allow-none" 
href="pango/annotation-glossary.html#annotation-glossterm-allow-none">
+<ANCHOR id="annotation-glossterm-element-type" 
href="pango/annotation-glossary.html#annotation-glossterm-element-type">
 <ANCHOR id="annotation-glossterm-out" 
href="pango/annotation-glossary.html#annotation-glossterm-out">
 <ANCHOR id="annotation-glossterm-scope call" 
href="pango/annotation-glossary.html#annotation-glossterm-scope call">
 <ANCHOR id="annotation-glossterm-transfer full" 
href="pango/annotation-glossary.html#annotation-glossterm-transfer full">
+<ANCHOR id="annotation-glossterm-array" 
href="pango/annotation-glossary.html#annotation-glossterm-array">
+<ANCHOR id="annotation-glossterm-allow-none" 
href="pango/annotation-glossary.html#annotation-glossterm-allow-none">
+<ANCHOR id="annotation-glossterm-out caller-allocates" 
href="pango/annotation-glossary.html#annotation-glossterm-out caller-allocates">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pango-1.35.3/docs/html/pango-Layout-Objects.html 
new/pango-1.36.0/docs/html/pango-Layout-Objects.html
--- old/pango-1.35.3/docs/html/pango-Layout-Objects.html        2013-09-02 
21:15:08.000000000 +0200
+++ new/pango-1.36.0/docs/html/pango-Layout-Objects.html        2013-09-23 
14:04:05.000000000 +0200
@@ -650,7 +650,7 @@
 </tr>
 <tr>
 <td><p><span class="term"><em class="parameter"><code>attrs</code></em> 
:</span></p></td>
-<td>a <a class="link" href="pango-Text-Attributes.html#PangoAttrList"><span 
class="type">PangoAttrList</span></a>, can be <a 
href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS";><code
 class="literal">NULL</code></a>. <span class="annotation">[<acronym 
title="NULL is ok, both for passing and for returning."><span 
class="acronym">allow-none</span></acronym>][<acronym title="Free data after 
the code is done."><span class="acronym">transfer full</span></acronym>]</span>
+<td>a <a class="link" href="pango-Text-Attributes.html#PangoAttrList"><span 
class="type">PangoAttrList</span></a>, can be <a 
href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS";><code
 class="literal">NULL</code></a>. <span class="annotation">[<acronym 
title="NULL is ok, both for passing and for returning."><span 
class="acronym">allow-none</span></acronym>][<acronym title="Don't free data 
after the code is done."><span class="acronym">transfer 
none</span></acronym>]</span>
 </td>
 </tr>
 </tbody>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pango-1.35.3/docs/html/pango-Version-Checking.html 
new/pango-1.36.0/docs/html/pango-Version-Checking.html
--- old/pango-1.35.3/docs/html/pango-Version-Checking.html      2013-09-02 
21:15:08.000000000 +0200
+++ new/pango-1.36.0/docs/html/pango-Version-Checking.html      2013-09-23 
14:04:05.000000000 +0200
@@ -114,7 +114,7 @@
 <hr>
 <div class="refsect2">
 <a name="PANGO-VERSION-MINOR:CAPS"></a><h3>PANGO_VERSION_MINOR</h3>
-<pre class="programlisting">#define PANGO_VERSION_MINOR 35
+<pre class="programlisting">#define PANGO_VERSION_MINOR 36
 </pre>
 <p>
 The minor component of the version of Pango available at compile-time.
@@ -123,7 +123,7 @@
 <hr>
 <div class="refsect2">
 <a name="PANGO-VERSION-MICRO:CAPS"></a><h3>PANGO_VERSION_MICRO</h3>
-<pre class="programlisting">#define PANGO_VERSION_MICRO 3
+<pre class="programlisting">#define PANGO_VERSION_MICRO 0
 </pre>
 <p>
 The micro component of the version of Pango available at compile-time.
@@ -132,7 +132,7 @@
 <hr>
 <div class="refsect2">
 <a name="PANGO-VERSION-STRING:CAPS"></a><h3>PANGO_VERSION_STRING</h3>
-<pre class="programlisting">#define PANGO_VERSION_STRING "1.35.3"
+<pre class="programlisting">#define PANGO_VERSION_STRING "1.36.0"
 </pre>
 <p>
 A string literal containing the version of Pango available at compile-time.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pango-1.35.3/docs/pango-querymodules.1 
new/pango-1.36.0/docs/pango-querymodules.1
--- old/pango-1.35.3/docs/pango-querymodules.1  2013-09-02 20:58:15.000000000 
+0200
+++ new/pango-1.36.0/docs/pango-querymodules.1  2013-09-23 12:44:35.000000000 
+0200
@@ -2,12 +2,12 @@
 .\"     Title: pango-querymodules
 .\"    Author: Owen Taylor
 .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
-.\"      Date: 09/02/2013
+.\"      Date: 09/23/2013
 .\"    Manual: User Commands
 .\"    Source: Pango
 .\"  Language: English
 .\"
-.TH "PANGO\-QUERYMODULES" "1" "09/02/2013" "Pango" "User Commands"
+.TH "PANGO\-QUERYMODULES" "1" "09/23/2013" "Pango" "User Commands"
 .\" -----------------------------------------------------------------
 .\" * Define some portability stuff
 .\" -----------------------------------------------------------------
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pango-1.35.3/docs/version.xml 
new/pango-1.36.0/docs/version.xml
--- old/pango-1.35.3/docs/version.xml   2013-09-02 20:56:56.000000000 +0200
+++ new/pango-1.36.0/docs/version.xml   2013-09-23 12:42:28.000000000 +0200
@@ -1 +1 @@
-1.35.3
+1.36.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pango-1.35.3/pango/fonts.c 
new/pango-1.36.0/pango/fonts.c
--- old/pango-1.35.3/pango/fonts.c      2012-08-16 03:44:01.000000000 +0200
+++ new/pango-1.36.0/pango/fonts.c      2013-09-23 12:39:03.000000000 +0200
@@ -890,7 +890,7 @@
 static const FieldMap gravity_map[] = {
   { PANGO_GRAVITY_SOUTH, "Not-Rotated" },
   { PANGO_GRAVITY_SOUTH, "South" },
-  { PANGO_GRAVITY_SOUTH, "Upside-Down" },
+  { PANGO_GRAVITY_NORTH, "Upside-Down" },
   { PANGO_GRAVITY_NORTH, "North" },
   { PANGO_GRAVITY_EAST,  "Rotated-Left" },
   { PANGO_GRAVITY_EAST,  "East" },
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pango-1.35.3/pango/pango-features.h 
new/pango-1.36.0/pango/pango-features.h
--- old/pango-1.35.3/pango/pango-features.h     2013-09-02 20:56:59.000000000 
+0200
+++ new/pango-1.36.0/pango/pango-features.h     2013-09-23 12:42:28.000000000 
+0200
@@ -3,10 +3,10 @@
 #define PANGO_FEATURES_H
 
 #define PANGO_VERSION_MAJOR 1
-#define PANGO_VERSION_MINOR 35
-#define PANGO_VERSION_MICRO 3
+#define PANGO_VERSION_MINOR 36
+#define PANGO_VERSION_MICRO 0
 
-#define PANGO_VERSION_STRING "1.35.3"
+#define PANGO_VERSION_STRING "1.36.0"
 
 
 #endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pango-1.35.3/pango/pango-layout.c 
new/pango-1.36.0/pango/pango-layout.c
--- old/pango-1.35.3/pango/pango-layout.c       2013-08-18 16:32:09.000000000 
+0200
+++ new/pango-1.36.0/pango/pango-layout.c       2013-09-10 23:33:06.000000000 
+0200
@@ -599,7 +599,7 @@
 /**
  * pango_layout_set_attributes:
  * @layout: a #PangoLayout
- * @attrs: (allow-none) (transfer full): a #PangoAttrList, can be %NULL
+ * @attrs: (allow-none) (transfer none): a #PangoAttrList, can be %NULL
  *
  * Sets the text attributes for a layout object.
  * References @attrs, so the caller can unref its reference.
@@ -1100,6 +1100,11 @@
 {
   g_return_val_if_fail (PANGO_IS_LAYOUT (layout), NULL);
 
+  /* We don't ever want to return NULL as the text.
+   */
+  if (G_UNLIKELY (!layout->text))
+    return "";
+
   return layout->text;
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pango-1.35.3/pango/pango-markup.c 
new/pango-1.36.0/pango/pango-markup.c
--- old/pango-1.35.3/pango/pango-markup.c       2013-08-31 03:45:04.000000000 
+0200
+++ new/pango-1.36.0/pango/pango-markup.c       2013-09-10 14:53:17.000000000 
+0200
@@ -1190,7 +1190,7 @@
          const char *end;
          gint n;
 
-         if ((end = size, !pango_scan_int (&end, &n)) || *end != '\0' || n < 0 
|| n > INT_MAX)
+         if ((end = size, !pango_scan_int (&end, &n)) || *end != '\0' || n < 0)
            {
              g_set_error (error,
                           G_MARKUP_ERROR,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pango-1.35.3/pango/pango.rc 
new/pango-1.36.0/pango/pango.rc
--- old/pango-1.35.3/pango/pango.rc     2013-09-02 20:56:55.000000000 +0200
+++ new/pango-1.36.0/pango/pango.rc     2013-09-23 12:42:28.000000000 +0200
@@ -1,8 +1,8 @@
 #include <winver.h>
 
 VS_VERSION_INFO VERSIONINFO
-  FILEVERSION 1,35,3,0
-  PRODUCTVERSION 1,35,3,0
+  FILEVERSION 1,36,0,0
+  PRODUCTVERSION 1,36,0,0
   FILEFLAGSMASK 0
   FILEFLAGS 0
   FILEOS VOS__WINDOWS32
@@ -15,12 +15,12 @@
       BEGIN
        VALUE "CompanyName", "Red Hat Software"
        VALUE "FileDescription", "Pango"
-       VALUE "FileVersion", "1.35.3.0"
+       VALUE "FileVersion", "1.36.0.0"
        VALUE "InternalName", "pango-1.0-0"
        VALUE "LegalCopyright", "Copyright � 1999 Red Hat Software."
        VALUE "OriginalFilename", "pango-1.0-0.dll"
        VALUE "ProductName", "Pango"
-       VALUE "ProductVersion", "1.35.3"
+       VALUE "ProductVersion", "1.36.0"
       END
     END
     BLOCK "VarFileInfo"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pango-1.35.3/pango/pangocairo.rc 
new/pango-1.36.0/pango/pangocairo.rc
--- old/pango-1.35.3/pango/pangocairo.rc        2013-09-02 20:56:55.000000000 
+0200
+++ new/pango-1.36.0/pango/pangocairo.rc        2013-09-23 12:42:28.000000000 
+0200
@@ -1,8 +1,8 @@
 #include <winver.h>
 
 VS_VERSION_INFO VERSIONINFO
-  FILEVERSION 1,35,3,0
-  PRODUCTVERSION 1,35,3,0
+  FILEVERSION 1,36,0,0
+  PRODUCTVERSION 1,36,0,0
   FILEFLAGSMASK 0
   FILEFLAGS 0
   FILEOS VOS__WINDOWS32
@@ -15,12 +15,12 @@
       BEGIN
        VALUE "CompanyName", "Red Hat Software"
        VALUE "FileDescription", "PangoCairo"
-       VALUE "FileVersion", "1.35.3.0"
+       VALUE "FileVersion", "1.36.0.0"
        VALUE "InternalName", "pangocairo-1.0-0"
        VALUE "LegalCopyright", "Copyright � 2010 Red Hat Software."
        VALUE "OriginalFilename", "pangocairo-1.0-0.dll"
        VALUE "ProductName", "PangoCairo"
-       VALUE "ProductVersion", "1.35.3"
+       VALUE "ProductVersion", "1.36.0"
       END
     END
     BLOCK "VarFileInfo"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pango-1.35.3/pango/pangoft2.rc 
new/pango-1.36.0/pango/pangoft2.rc
--- old/pango-1.35.3/pango/pangoft2.rc  2013-09-02 20:56:55.000000000 +0200
+++ new/pango-1.36.0/pango/pangoft2.rc  2013-09-23 12:42:28.000000000 +0200
@@ -1,8 +1,8 @@
 #include <winver.h>
 
 VS_VERSION_INFO VERSIONINFO
-  FILEVERSION 1,35,3,0
-  PRODUCTVERSION 1,35,3,0
+  FILEVERSION 1,36,0,0
+  PRODUCTVERSION 1,36,0,0
   FILEFLAGSMASK 0
   FILEFLAGS 0
   FILEOS VOS__WINDOWS32
@@ -15,12 +15,12 @@
       BEGIN
        VALUE "CompanyName", "Red Hat Software"
        VALUE "FileDescription", "PangoFT2"
-       VALUE "FileVersion", "1.35.3.0"
+       VALUE "FileVersion", "1.36.0.0"
        VALUE "InternalName", "pangoft2-1.0-0"
        VALUE "LegalCopyright", "Copyright � 1999 Red Hat Software. Copyright � 
2000 Tor Lillqvist"
        VALUE "OriginalFilename", "pangoft2-1.0-0.dll"
        VALUE "ProductName", "PangoFT2"
-       VALUE "ProductVersion", "1.35.3"
+       VALUE "ProductVersion", "1.36.0"
       END
     END
     BLOCK "VarFileInfo"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pango-1.35.3/pango/pangowin32.rc 
new/pango-1.36.0/pango/pangowin32.rc
--- old/pango-1.35.3/pango/pangowin32.rc        2013-09-02 20:56:55.000000000 
+0200
+++ new/pango-1.36.0/pango/pangowin32.rc        2013-09-23 12:42:28.000000000 
+0200
@@ -1,8 +1,8 @@
 #include <winver.h>
 
 VS_VERSION_INFO VERSIONINFO
-  FILEVERSION 1,35,3,0
-  PRODUCTVERSION 1,35,3,0
+  FILEVERSION 1,36,0,0
+  PRODUCTVERSION 1,36,0,0
   FILEFLAGSMASK 0
   FILEFLAGS 0
   FILEOS VOS__WINDOWS32
@@ -15,12 +15,12 @@
       BEGIN
        VALUE "CompanyName", "Red Hat Software"
        VALUE "FileDescription", "PangoWin32"
-       VALUE "FileVersion", "1.35.3.0"
+       VALUE "FileVersion", "1.36.0.0"
        VALUE "InternalName", "pangowin32-1.0-0"
        VALUE "LegalCopyright", "Copyright � 1999 Red Hat Software. Copyright � 
2000 Tor Lillqvist"
        VALUE "OriginalFilename", "pangowin32-1.0-0.dll"
        VALUE "ProductName", "PangoWin32"
-       VALUE "ProductVersion", "1.35.3"
+       VALUE "ProductVersion", "1.36.0"
       END
     END
     BLOCK "VarFileInfo"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pango-1.35.3/pango/pangoxft.rc 
new/pango-1.36.0/pango/pangoxft.rc
--- old/pango-1.35.3/pango/pangoxft.rc  2013-09-02 20:56:55.000000000 +0200
+++ new/pango-1.36.0/pango/pangoxft.rc  2013-09-23 12:42:28.000000000 +0200
@@ -1,8 +1,8 @@
 #include <winver.h>
 
 VS_VERSION_INFO VERSIONINFO
-  FILEVERSION 1,35,3,0
-  PRODUCTVERSION 1,35,3,0
+  FILEVERSION 1,36,0,0
+  PRODUCTVERSION 1,36,0,0
   FILEFLAGSMASK 0
   FILEFLAGS 0
   FILEOS VOS__WINDOWS32
@@ -15,12 +15,12 @@
       BEGIN
        VALUE "CompanyName", "Red Hat Software"
        VALUE "FileDescription", "Pangoxft"
-       VALUE "FileVersion", "1.35.3.0"
+       VALUE "FileVersion", "1.36.0.0"
        VALUE "InternalName", "pangoxft-1.0-0"
        VALUE "LegalCopyright", "Copyright � 1999 Red Hat Software."
        VALUE "OriginalFilename", "pangoxft-1.0-0.dll"
        VALUE "ProductName", "Pangoxft"
-       VALUE "ProductVersion", "1.35.3"
+       VALUE "ProductVersion", "1.36.0"
       END
     END
     BLOCK "VarFileInfo"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pango-1.35.3/pango-view/pango-view.1.in 
new/pango-1.36.0/pango-view/pango-view.1.in
--- old/pango-1.35.3/pango-view/pango-view.1.in 2013-09-02 20:58:12.000000000 
+0200
+++ new/pango-1.36.0/pango-view/pango-view.1.in 2013-09-23 12:44:33.000000000 
+0200
@@ -1,5 +1,5 @@
 .\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.43.3.
-.TH PANGO-VIEW "1" "September 2013" "pango-view (pango) 1.35.3" "User Commands"
+.TH PANGO-VIEW "1" "September 2013" "pango-view (pango) 1.36.0" "User Commands"
 .SH NAME
 pango-view \- Pango text viewer
 .SH DESCRIPTION

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

Reply via email to