Mailinglist Archive: opensuse-commit (1248 mails)

< Previous Next >
commit python-atspi for openSUSE:Factory
  • From: root@xxxxxxxxxxxxxxx (h_root)
  • Date: Thu, 01 Apr 2010 15:31:01 +0200
  • Message-id: <20100401133101.D771F202A6@xxxxxxxxxxxxxxx>

Hello community,

here is the log from the commit of package python-atspi for openSUSE:Factory
checked in at Thu Apr 1 15:31:01 CEST 2010.



--------
--- python-atspi/python-atspi.changes 2010-02-21 17:27:46.000000000 +0100
+++ /mounts/work_src_done/STABLE/python-atspi/python-atspi.changes
2010-03-31 01:28:17.000000000 +0200
@@ -1,0 +2,9 @@
+Wed Mar 31 01:27:30 CEST 2010 - vuntz@xxxxxxxxxxxx
+
+- Update to version 0.1.8:
+ + Support id property
+ + Set AT_SPI_CLIENT for use by at-spi2-atk
+ + Set ROLE_UNKNOWN for desktop for compatibility with CORBA
+ at-spi
+
+-------------------------------------------------------------------

calling whatdependson for head-i586


Old:
----
pyatspi-0.1.7.tar.bz2

New:
----
pyatspi-0.1.8.tar.bz2

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

Other differences:
------------------
++++++ python-atspi.spec ++++++
--- /var/tmp/diff_new_pack.sEYPHB/_old 2010-04-01 15:30:52.000000000 +0200
+++ /var/tmp/diff_new_pack.sEYPHB/_new 2010-04-01 15:30:52.000000000 +0200
@@ -1,5 +1,5 @@
#
-# spec file for package python-atspi (Version 0.1.7)
+# spec file for package python-atspi (Version 0.1.8)
#
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@@ -19,7 +19,7 @@

Name: python-atspi
%define _name pyatspi
-Version: 0.1.7
+Version: 0.1.8
Release: 1
Summary: Assistive Technology Service Provider Interface - Python
bindings
License: LGPLv2.0

++++++ pyatspi-0.1.7.tar.bz2 -> pyatspi-0.1.8.tar.bz2 ++++++
++++ 10919 lines of diff (skipped)
++++ retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh
old/pyatspi-0.1.7/config.h.in new/pyatspi-0.1.8/config.h.in
--- old/pyatspi-0.1.7/config.h.in 2010-02-12 05:21:33.000000000 +0100
+++ new/pyatspi-0.1.8/config.h.in 2010-03-30 23:42:18.000000000 +0200
@@ -49,9 +49,6 @@
/* Define to the one symbol short name of this package. */
#undef PACKAGE_TARNAME

-/* Define to the home page for this package. */
-#undef PACKAGE_URL
-
/* Define to the version of this package. */
#undef PACKAGE_VERSION

diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh
old/pyatspi-0.1.7/configure.ac new/pyatspi-0.1.8/configure.ac
--- old/pyatspi-0.1.7/configure.ac 2010-02-12 05:21:05.000000000 +0100
+++ new/pyatspi-0.1.8/configure.ac 2010-03-30 23:41:37.000000000 +0200
@@ -1,4 +1,4 @@
-AC_INIT([pyatspi], [0.1.7], [accessibility-atspi@xxxxxxxxxxxxxxxxxxxxxxxxxx])
+AC_INIT([pyatspi], [0.1.8], [accessibility-atspi@xxxxxxxxxxxxxxxxxxxxxxxxxx])
AC_CONFIG_AUX_DIR(config)

LT_RELEASE=$AT_SPI_MAJOR_VERSION.$AT_SPI_MINOR_VERSION
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh
old/pyatspi-0.1.7/pyatspi/application.py
new/pyatspi-0.1.8/pyatspi/application.py
--- old/pyatspi-0.1.7/pyatspi/application.py 2010-02-12 03:26:54.000000000
+0100
+++ new/pyatspi-0.1.8/pyatspi/application.py 2010-03-30 18:16:24.000000000
+0200
@@ -43,6 +43,14 @@
func = self.get_dbus_method("GetLocale",
dbus_interface=ATSPI_APPLICATION)
return func(local_type)

+ def get_id(self):
+ return dbus.Int32(self._pgetter(ATSPI_APPLICATION, "Id"))
+ _idDoc = \
+ """
+ The application instance's unique ID as assigned by the
registry.
+ """
+ id = property(fget=get_id, doc=_idDoc)
+
def get_toolkitName(self):
return dbus.String(self._pgetter(ATSPI_APPLICATION,
"ToolkitName"))
_toolkitNameDoc = \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh
old/pyatspi-0.1.7/pyatspi/cache.py new/pyatspi-0.1.8/pyatspi/cache.py
--- old/pyatspi-0.1.7/pyatspi/cache.py 2010-02-12 03:26:54.000000000 +0100
+++ new/pyatspi-0.1.8/pyatspi/cache.py 2010-03-30 23:41:37.000000000 +0200
@@ -16,7 +16,7 @@
import dbus

from interfaces import *
-from role import ROLE_INVALID
+from role import ROLE_UNKNOWN

from busutils import *

@@ -111,7 +111,7 @@
apps,
#Children
[ATSPI_ACCESSIBLE, ATSPI_COMPONENT],
#Interfaces
"main",
#Name
- ROLE_INVALID,
#Role
+ ROLE_UNKNOWN,
#Role
"",
#Description
[0,0]
#State
)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh
old/pyatspi-0.1.7/pyatspi/registry.py new/pyatspi-0.1.8/pyatspi/registry.py
--- old/pyatspi-0.1.7/pyatspi/registry.py 2010-02-12 05:22:27.000000000
+0100
+++ new/pyatspi-0.1.8/pyatspi/registry.py 2010-03-30 18:16:24.000000000
+0200
@@ -122,7 +122,9 @@
if main_loop_type == MAIN_LOOP_GLIB:
cache = AccessibleCache (app_name)

- factory = AccessibleFactory(cache)
+ factory = AccessibleFactory(cache)
+
+ _os.environ["AT_SPI_CLIENT"] = "1"

# Set up the device event controllers
_connection = SyncAccessibilityBus ()


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



Remember to have fun...

--
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx

< Previous Next >
This Thread
  • No further messages