Hello community,

here is the log from the commit of package at-spi2-atk for openSUSE:Factory
checked in at Wed Aug 3 11:26:57 CEST 2011.



--------
--- GNOME/at-spi2-atk/at-spi2-atk.changes       2011-07-05 07:47:35.000000000 
+0200
+++ /mounts/work_src_done/STABLE/at-spi2-atk/at-spi2-atk.changes        
2011-07-26 09:31:28.000000000 +0200
@@ -1,0 +2,8 @@
+Tue Jul 26 09:29:53 CEST 2011 - vu...@opensuse.org
+
+- Update to version 2.1.4:
+  + Ensure the detail integers are initialized before sending
+    events.
+  + Map some new atk roles.
+
+-------------------------------------------------------------------

calling whatdependson for head-i586


Old:
----
  at-spi2-atk-2.1.3.tar.bz2

New:
----
  at-spi2-atk-2.1.4.tar.bz2

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

Other differences:
------------------
++++++ at-spi2-atk.spec ++++++
--- /var/tmp/diff_new_pack.WsUATT/_old  2011-08-03 11:26:45.000000000 +0200
+++ /var/tmp/diff_new_pack.WsUATT/_new  2011-08-03 11:26:45.000000000 +0200
@@ -18,7 +18,7 @@
 
 
 Name:           at-spi2-atk
-Version:        2.1.3
+Version:        2.1.4
 Release:        1
 Summary:        Assistive Technology Service Provider Interface - GTK+ module
 License:        GPLv2+

++++++ at-spi2-atk-2.1.3.tar.bz2 -> at-spi2-atk-2.1.4.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-atk-2.1.3/NEWS new/at-spi2-atk-2.1.4/NEWS
--- old/at-spi2-atk-2.1.3/NEWS  2011-07-04 23:45:16.000000000 +0200
+++ new/at-spi2-atk-2.1.4/NEWS  2011-07-25 23:27:27.000000000 +0200
@@ -1,3 +1,9 @@
+What's new in at-spi2-atk 2.1.4:
+
+* Ensure the detail integers are initialized before sending events.
+
+* Map some new atk roles.
+
 What's new in at-spi2-atk 2.1.3:
 
 * Fix for BGO#652797: Remove unused AtkMisc instance.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-atk-2.1.3/atk-adaptor/event.c 
new/at-spi2-atk-2.1.4/atk-adaptor/event.c
--- old/at-spi2-atk-2.1.3/atk-adaptor/event.c   2011-07-04 23:44:54.000000000 
+0200
+++ new/at-spi2-atk-2.1.4/atk-adaptor/event.c   2011-07-25 23:08:44.000000000 
+0200
@@ -759,7 +759,7 @@
   AtkObject *accessible;
   GSignalQuery signal_query;
   const gchar *name, *minor;
-  gint detail1;
+  gint detail1 = 0;
 
   g_signal_query (signal_hint->signal_id, &signal_query);
   name = signal_query.signal_name;
@@ -793,7 +793,7 @@
   GSignalQuery signal_query;
   const gchar *name, *minor;
   gchar *selected;
-  gint detail1, detail2;
+  gint detail1 = 0, detail2 = 0;
 
   g_signal_query (signal_hint->signal_id, &signal_query);
   name = signal_query.signal_name;
@@ -832,7 +832,7 @@
   GSignalQuery signal_query;
   const gchar *name;
   gchar *minor, *text;
-  gint detail1, detail2;
+  gint detail1 = 0, detail2 = 0;
 
   accessible = ATK_OBJECT (g_value_get_object (&param_values[0]));
   /* Get signal name for 'Gtk:AtkText:text-changed' so
@@ -880,7 +880,7 @@
   GSignalQuery signal_query;
   const gchar *name;
   gchar *minor, *text;
-  gint detail1, detail2;
+  gint detail1 = 0, detail2 = 0;
 
   accessible = ATK_OBJECT (g_value_get_object (&param_values[0]));
   /* Get signal name for 'Gtk:AtkText:text-changed' so
@@ -931,7 +931,7 @@
   AtkObject *accessible;
   GSignalQuery signal_query;
   const gchar *name, *minor;
-  gint detail1, detail2;
+  gint detail1 = 0, detail2 = 0;
 
   g_signal_query (signal_hint->signal_id, &signal_query);
   name = signal_query.signal_name;
@@ -969,7 +969,7 @@
 {
   GSignalQuery signal_query;
   const gchar *name, *minor;
-  gint detail1, detail2 = 0;
+  gint detail1 = 0, detail2 = 0;
 
   AtkObject *accessible, *ao=NULL;
   gpointer child;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-atk-2.1.3/atk-adaptor/object.c 
new/at-spi2-atk-2.1.4/atk-adaptor/object.c
--- old/at-spi2-atk-2.1.3/atk-adaptor/object.c  2010-08-05 08:31:59.000000000 
+0200
+++ new/at-spi2-atk-2.1.4/atk-adaptor/object.c  2011-07-25 23:08:50.000000000 
+0200
@@ -436,6 +436,21 @@
   role_table[ATK_ROLE_LINK] = Accessibility_ROLE_LINK;
   role_table[ATK_ROLE_INPUT_METHOD_WINDOW] =
     Accessibility_ROLE_INPUT_METHOD_WINDOW;
+  role_table[ATK_ROLE_TABLE_ROW] = Accessibility_ROLE_TABLE_ROW;
+  role_table[ATK_ROLE_TREE_ITEM] = Accessibility_ROLE_TREE_ITEM;
+  role_table[ATK_ROLE_DOCUMENT_SPREADSHEET] =
+    Accessibility_ROLE_DOCUMENT_SPREADSHEET;
+  role_table[ATK_ROLE_DOCUMENT_PRESENTATION] =
+    Accessibility_ROLE_DOCUMENT_PRESENTATION;
+  role_table[ATK_ROLE_DOCUMENT_TEXT] = Accessibility_ROLE_DOCUMENT_TEXT;
+  role_table[ATK_ROLE_DOCUMENT_WEB] = Accessibility_ROLE_DOCUMENT_WEB;
+  role_table[ATK_ROLE_DOCUMENT_EMAIL] = Accessibility_ROLE_DOCUMENT_EMAIL;
+  role_table[ATK_ROLE_COMMENT] = Accessibility_ROLE_COMMENT;
+  role_table[ATK_ROLE_LIST_BOX] = Accessibility_ROLE_LIST_BOX;
+  role_table[ATK_ROLE_GROUPING] = Accessibility_ROLE_GROUPING;
+  role_table[ATK_ROLE_IMAGE_MAP] = Accessibility_ROLE_IMAGE_MAP;
+  role_table[ATK_ROLE_NOTIFICATION] = Accessibility_ROLE_NOTIFICATION;
+  role_table[ATK_ROLE_INFO_BAR] = Accessibility_ROLE_INFO_BAR;
   return TRUE;
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-atk-2.1.3/common/generated-types.h 
new/at-spi2-atk-2.1.4/common/generated-types.h
--- old/at-spi2-atk-2.1.3/common/generated-types.h      2009-11-16 
19:18:51.000000000 +0100
+++ new/at-spi2-atk-2.1.4/common/generated-types.h      2011-07-25 
23:08:50.000000000 +0200
@@ -654,6 +654,19 @@
  * @Accessibility_ROLE_FORM: <![CDATA[     The object is a containing instance 
of document content which       has within it components with which the user 
can interact in order to       input information; i.e. the object is a 
container for pushbuttons,       comboboxes, text input fields, and other 'GUI' 
components.       ROLE_FORM should not, in general, be used for toplevel GUI 
containers       or dialogs, but should be reserved for 'GUI' containers which 
occur within       document content, for instance within Web documents, 
presentations, or        text documents.  Unlike other GUI containers and 
dialogs which occur inside       application instances, ROLE_FORM containers' 
components are associated with       the current document, rather than the 
current foreground application or       viewer instance.     ]]>
  * @Accessibility_ROLE_LINK: <![CDATA[     The object is a hypertext anchor, 
i.e. a "link" in a       hypertext document.  Such objects are distinct from 
'inline'       content which may also use the Hypertext/Hyperlink interfaces    
   to indicate the range/location within a text object where       an inline or 
embedded object lies.     ]]>
  * @Accessibility_ROLE_INPUT_METHOD_WINDOW: <![CDATA[     The object is a 
window or similar viewport which is used       to allow composition or input of 
a 'complex character',       in other words it is an "input method window."     
]]>
+ * @Accessibility_ROLE_TABLE_ROW: <![CDATA[A row in a table.]]>
+ * @Accessibility_ROLE_TREE_ITEM: <![CDATA[An object that represents an 
element of a tree.]]>
+ * @Accessibility_ROLE_DOCUMENT_SPREADSHEET: <![CDATA[A document frame which 
contains a spreadsheet.]]>
+ * @Accessibility_ROLE_DOCUMENT_PRESENTATION: <![CDATA[A document frame which 
contains a presentation or slide content.]]>
+ * @Accessibility_ROLE_DOCUMENT_TEXT: <![CDATA[A document frame which contains 
textual content, such as found in a word processing application.]]>
+ * @Accessibility_ROLE_DOCUMENT_WEB: <![CDATA[A document frame which contains 
HTML or other markup suitable for display in a web browser.]]>
+ * @Accessibility_ROLE_DOCUMENT_EMAIL: <![CDATA[A document frame which 
contains email content to be displayed or composed either in plain text or 
HTML.]]>
+ * @Accessibility_ROLE_COMMENT: <![CDATA[An object found within a document and 
designed to present a comment, note, or other annotation. In some cases, this 
object might not be visible until activated.]]>
+ * @Accessibility_ROLE_LIST_BOX: <![CDATA[A non-collapsible list of choices 
the user can select from.]]>
+ * @Accessibility_ROLE_GROUPING: <![CDATA[A group of related widgets. This 
group typically has a label.]]>
+ * @Accessibility_ROLE_IMAGE_MAP: <![CDATA[An image map object. Usually a 
graphic with multiple hotspots, where each hotspot can be activated resulting 
in the loading of another document or section of a document.]]>
+ * @Accessibility_ROLE_NOTIFICATION: <![CDATA[A transitory object designed to 
present a message to the user, typically at the desktop level rather than 
inside a particular application.]]>
+ * @Accessibility_ROLE_INFO_BAR: <![CDATA[An object designed to present a 
message to the user within an existing window.]]>
  * @Accessibility_ROLE_LAST_DEFINED: <![CDATA[     Not a valid role, used for 
finding end of enumeration.    ]]>
  *
  * Bitfield/set of flags generated from the AT-SPI specification.
@@ -749,6 +762,19 @@
     Accessibility_ROLE_FORM,
     Accessibility_ROLE_LINK,
     Accessibility_ROLE_INPUT_METHOD_WINDOW,
+    Accessibility_ROLE_TABLE_ROW,
+    Accessibility_ROLE_TREE_ITEM,
+    Accessibility_ROLE_DOCUMENT_SPREADSHEET,
+    Accessibility_ROLE_DOCUMENT_PRESENTATION,
+    Accessibility_ROLE_DOCUMENT_TEXT,
+    Accessibility_ROLE_DOCUMENT_WEB,
+    Accessibility_ROLE_DOCUMENT_EMAIL,
+    Accessibility_ROLE_COMMENT,
+    Accessibility_ROLE_LIST_BOX,
+    Accessibility_ROLE_GROUPING,
+    Accessibility_ROLE_IMAGE_MAP,
+    Accessibility_ROLE_NOTIFICATION,
+    Accessibility_ROLE_INFO_BAR,
     Accessibility_ROLE_LAST_DEFINED,
 } Accessibility_Role;
 
@@ -757,7 +783,7 @@
  *
  * 1 higher than the highest valid value of #Accessibility_Role.
  */
-#define NUM_ACCESSIBILITY_ROLES (90+1)
+#define NUM_ACCESSIBILITY_ROLES (103+1)
 
 
 #ifdef __cplusplus
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-atk-2.1.3/configure 
new/at-spi2-atk-2.1.4/configure
--- old/at-spi2-atk-2.1.3/configure     2011-07-04 23:47:07.000000000 +0200
+++ new/at-spi2-atk-2.1.4/configure     2011-07-26 00:18:04.000000000 +0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.68 for at-spi2-atk 2.1.3.
+# Generated by GNU Autoconf 2.68 for at-spi2-atk 2.1.4.
 #
 # Report bugs to <accessibility-at...@lists.linux-foundation.org>.
 #
@@ -709,8 +709,8 @@
 # Identity of this package.
 PACKAGE_NAME='at-spi2-atk'
 PACKAGE_TARNAME='at-spi2-atk'
-PACKAGE_VERSION='2.1.3'
-PACKAGE_STRING='at-spi2-atk 2.1.3'
+PACKAGE_VERSION='2.1.4'
+PACKAGE_STRING='at-spi2-atk 2.1.4'
 PACKAGE_BUGREPORT='accessibility-at...@lists.linux-foundation.org'
 PACKAGE_URL=''
 
@@ -1513,7 +1513,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 at-spi2-atk 2.1.3 to adapt to many kinds of systems.
+\`configure' configures at-spi2-atk 2.1.4 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1587,7 +1587,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of at-spi2-atk 2.1.3:";;
+     short | recursive ) echo "Configuration of at-spi2-atk 2.1.4:";;
    esac
   cat <<\_ACEOF
 
@@ -1712,7 +1712,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-at-spi2-atk configure 2.1.3
+at-spi2-atk configure 2.1.4
 generated by GNU Autoconf 2.68
 
 Copyright (C) 2010 Free Software Foundation, Inc.
@@ -1990,7 +1990,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by at-spi2-atk $as_me 2.1.3, which was
+It was created by at-spi2-atk $as_me 2.1.4, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   $ $0 $@
@@ -2825,7 +2825,7 @@
 
 # Define the identity of the package.
  PACKAGE='at-spi2-atk'
- VERSION='2.1.3'
+ VERSION='2.1.4'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -12182,12 +12182,12 @@
     pkg_cv_ATK_CFLAGS="$ATK_CFLAGS"
  elif test -n "$PKG_CONFIG"; then
     if test -n "$PKG_CONFIG" && \
-    { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists 
--print-errors \"atk >= 1.29.3\""; } >&5
-  ($PKG_CONFIG --exists --print-errors "atk >= 1.29.3") 2>&5
+    { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists 
--print-errors \"atk >= 2.1.0\""; } >&5
+  ($PKG_CONFIG --exists --print-errors "atk >= 2.1.0") 2>&5
   ac_status=$?
   $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
   test $ac_status = 0; }; then
-  pkg_cv_ATK_CFLAGS=`$PKG_CONFIG --cflags "atk >= 1.29.3" 2>/dev/null`
+  pkg_cv_ATK_CFLAGS=`$PKG_CONFIG --cflags "atk >= 2.1.0" 2>/dev/null`
 else
   pkg_failed=yes
 fi
@@ -12198,12 +12198,12 @@
     pkg_cv_ATK_LIBS="$ATK_LIBS"
  elif test -n "$PKG_CONFIG"; then
     if test -n "$PKG_CONFIG" && \
-    { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists 
--print-errors \"atk >= 1.29.3\""; } >&5
-  ($PKG_CONFIG --exists --print-errors "atk >= 1.29.3") 2>&5
+    { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists 
--print-errors \"atk >= 2.1.0\""; } >&5
+  ($PKG_CONFIG --exists --print-errors "atk >= 2.1.0") 2>&5
   ac_status=$?
   $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
   test $ac_status = 0; }; then
-  pkg_cv_ATK_LIBS=`$PKG_CONFIG --libs "atk >= 1.29.3" 2>/dev/null`
+  pkg_cv_ATK_LIBS=`$PKG_CONFIG --libs "atk >= 2.1.0" 2>/dev/null`
 else
   pkg_failed=yes
 fi
@@ -12223,14 +12223,14 @@
         _pkg_short_errors_supported=no
 fi
         if test $_pkg_short_errors_supported = yes; then
-               ATK_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "atk 
>= 1.29.3" 2>&1`
+               ATK_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "atk 
>= 2.1.0" 2>&1`
         else
-               ATK_PKG_ERRORS=`$PKG_CONFIG --print-errors "atk >= 1.29.3" 2>&1`
+               ATK_PKG_ERRORS=`$PKG_CONFIG --print-errors "atk >= 2.1.0" 2>&1`
         fi
        # Put the nasty error message in config.log where it belongs
        echo "$ATK_PKG_ERRORS" >&5
 
-       as_fn_error $? "Package requirements (atk >= 1.29.3) were not met:
+       as_fn_error $? "Package requirements (atk >= 2.1.0) were not met:
 
 $ATK_PKG_ERRORS
 
@@ -14213,7 +14213,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by at-spi2-atk $as_me 2.1.3, which was
+This file was extended by at-spi2-atk $as_me 2.1.4, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -14279,7 +14279,7 @@
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; 
s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-at-spi2-atk config.status 2.1.3
+at-spi2-atk config.status 2.1.4
 configured by $0, generated by GNU Autoconf 2.68,
   with options \\"\$ac_cs_config\\"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-atk-2.1.3/configure.ac 
new/at-spi2-atk-2.1.4/configure.ac
--- old/at-spi2-atk-2.1.3/configure.ac  2011-07-04 23:46:59.000000000 +0200
+++ new/at-spi2-atk-2.1.4/configure.ac  2011-07-26 00:17:57.000000000 +0200
@@ -1,4 +1,4 @@
-AC_INIT([at-spi2-atk], [2.1.3], 
[accessibility-at...@lists.linux-foundation.org])
+AC_INIT([at-spi2-atk], [2.1.4], 
[accessibility-at...@lists.linux-foundation.org])
 AC_CONFIG_AUX_DIR(config)
 
 AT_SPI_ATK_MAJOR_VERSION=0
@@ -51,7 +51,7 @@
 AC_SUBST(GMODULE_LIBS)
 AC_SUBST(GMODULE_CFLAGS)
 
-PKG_CHECK_MODULES(ATK, [atk >= 1.29.3])
+PKG_CHECK_MODULES(ATK, [atk >= 2.1.0])
 AC_SUBST(ATK_LIBS)
 AC_SUBST(ATK_CFLAGS)
 


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



Remember to have fun...

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

Reply via email to