debian/0000775000000000000000000000000012267450512007174 5ustar debian/at-spi2-doc.install0000664000000000000000000000002212230117702012567 0ustar usr/share/gtk-doc debian/90qt-a11y0000664000000000000000000000054312230117702010456 0ustar # -*- sh -*- # Xsession.d script to set the QT_ACCESSIBILITY env variable when accessibility # is enabled. # # This file is sourced by Xsession(5), not executed. if [ -x "/usr/bin/gsettings" ]; then a11y_enabled=$(gsettings get org.gnome.desktop.interface toolkit-accessibility) if [ "$a11y_enabled" = "true" ]; then export QT_ACCESSIBILITY=1 fi fi debian/libatspi2.0-0.install0000664000000000000000000000003012230117702012730 0ustar usr/lib/*/libatspi.so.* debian/patches/0000775000000000000000000000000012232312703010612 5ustar debian/patches/series0000664000000000000000000000002012232312703012017 0ustar fix_crash.patch debian/patches/fix_crash.patch0000664000000000000000000000164612232312703013610 0ustar Index: at-spi2-core/registryd/registry-main.c =================================================================== --- at-spi2-core.orig/registryd/registry-main.c 2013-10-18 13:41:01.786933004 +1100 +++ at-spi2-core/registryd/registry-main.c 2013-10-25 08:45:32.252009521 +1100 @@ -157,8 +157,11 @@ startup_id), 0, 1000, NULL, &error); if (! res) { - g_warning ("Failed to register client: %s", error->message); - g_error_free (error); + const char *message = (error && error->message ? error->message + : "no error"); + g_warning ("Failed to register client: %s", message); + if (error) + g_error_free (error); return FALSE; } g_variant_get (res, "(o)", &client_id); debian/at-spi-dbus-bus.desktop0000664000000000000000000000020712230117702013474 0ustar [Desktop Entry] Type=Application Name=AT-SPI D-Bus Bus Exec=/usr/lib/at-spi2-core/at-spi-bus-launcher --launch-immediately Hidden=true debian/changelog0000664000000000000000000003007712267450463011062 0ustar at-spi2-core (2.10.2.is.2.10.1-0ubuntu1) trusty; urgency=medium * Revert to 2.10.1. This version is causing a lot of qmlscene crash (visible in the CI dashboard) on maguro devices when start apps. -- Didier Roche Tue, 21 Jan 2014 11:51:31 +0100 at-spi2-core (2.10.2-2ubuntu1) trusty; urgency=medium * Merge from Debian unstable, remaining changes: - Load the at-spi2 registry as part of the Ubuntu upstart user session -- Luke Yelavich Mon, 20 Jan 2014 10:07:03 +1100 at-spi2-core (2.10.2-2) unstable; urgency=medium * control: Build-depend on dh-autoreconf. * rules: Pass --with autoreconf to dh. -- Samuel Thibault Sat, 04 Jan 2014 14:17:21 +0100 at-spi2-core (2.10.2-1) unstable; urgency=low * New upstream release -- Samuel Thibault Sun, 15 Dec 2013 19:36:38 +0100 at-spi2-core (2.10.1-1) unstable; urgency=low [ Samuel Thibault ] * Bump Standards-Version to 3.9.5 (no changes). [ Luke Yelavich ] * New upstream release -- Samuel Thibault Tue, 05 Nov 2013 01:15:15 +0100 at-spi2-core (2.10.1-0ubuntu1) trusty; urgency=low * New upstream bugfix release (LP: #1241308) - Fix a leak introduced in 2.9.92 that adversely affected performance (BGO#709625). * debian/patches/revert-message-flow-optimization.patch: Drop, properly fixed upstream. * Add missing closing bracket to upstart file (LP: #1236346) * debian/patches/fix_crash.patch: - Fix crash in register_client (LP: #1037357) -- Luke Yelavich Fri, 25 Oct 2013 08:58:55 +1100 at-spi2-core (2.10.0-1) unstable; urgency=low [ Luke Yelavich ] * New upstream release * Bump shlibs -- Samuel Thibault Tue, 24 Sep 2013 23:39:36 +0200 at-spi2-core (2.10.0-0ubuntu2) saucy; urgency=low * Revert an upstream commit that simplified some message processing code, as it is causing more lag over time with accessibility activity, which is most evident with keyboard input. -- Luke Yelavich Mon, 30 Sep 2013 15:39:47 +1000 at-spi2-core (2.10.0-0ubuntu1) saucy; urgency=low * New upstream release -- Luke Yelavich Tue, 24 Sep 2013 16:02:48 +1000 at-spi2-core (2.9.92-0ubuntu1) saucy; urgency=low * New upstream release -- Luke Yelavich Tue, 17 Sep 2013 13:02:14 +1000 at-spi2-core (2.9.91-0ubuntu1) saucy; urgency=low * New upstream release * debian/patches/revert_x11_code_separation.patch: Dropped, fixed properly upstrea -- Luke Yelavich Mon, 09 Sep 2013 12:58:53 +1000 at-spi2-core (2.9.90-0ubuntu2) saucy; urgency=low * debian/patches/revert_x11_code_separation.patch: Revert upstream git commit 7ec6f416a192b7ff86d4b90fe7f405de41165342, which was the beginning of separating out the X specific code. It seems this is breaking accessibility when used accross user boundaries, i.e sudo. (LP: #1217757) * Use dh-autoreconf for the above. -- Luke Yelavich Fri, 30 Aug 2013 06:52:15 +1000 at-spi2-core (2.9.90-0ubuntu1) saucy; urgency=low * New upstream release * Bump shlibs -- Luke Yelavich Tue, 27 Aug 2013 11:16:30 +1000 at-spi2-core (2.9.5-2) unstable; urgency=low * Add libatspi0-udeb package, needed by libatk-bridge-2.0-0-udeb. (Closes: #723951) * Add at-spi2-core-udeb, for future d-i accessibility. -- Samuel Thibault Sat, 21 Sep 2013 22:49:23 +0200 at-spi2-core (2.9.5-1ubuntu1) saucy; urgency=low * Merge from Debian unstable, remaining changes: - Load the at-spi2 registry as part of the Ubuntu upstart user session -- Luke Yelavich Thu, 15 Aug 2013 09:14:11 +1000 at-spi2-core (2.9.5-1) unstable; urgency=low [ Luke Yelavich ] * New upstream release -- Samuel Thibault Tue, 13 Aug 2013 23:17:56 +0200 at-spi2-core (2.9.4-1ubuntu3) saucy; urgency=low * Remove second equals sign from pre-start script in the upstart job. -- Luke Yelavich Wed, 17 Jul 2013 16:02:49 +1000 at-spi2-core (2.9.4-1ubuntu2) saucy; urgency=low * Add an upstart user session override desktop file to ignore the usual .desktop file in /etc/xdg/autostart. * Respect the org.gnome.desktop.interface toolkit-accessibility gsettings key in the upstart user session job. -- Luke Yelavich Wed, 17 Jul 2013 10:23:41 +1000 at-spi2-core (2.9.4-1ubuntu1) saucy; urgency=low * Merge from Debian unstable, remaining changes: - Load the at-spi2 registry as part of the Ubuntu upstart user session -- Luke Yelavich Tue, 16 Jul 2013 08:31:04 +1000 at-spi2-core (2.9.4-1) unstable; urgency=low [ Luke Yelavich ] * Bump libatspi2.0-0 shlibs as required. We should move to using symbols, but this will solve the immediate problem for now. (Closes: #714314) * New upstream release [ Samuel Thibault ] * Bump Standards-Version to 3.9.4 (no changes). -- Samuel Thibault Sat, 13 Jul 2013 19:14:51 +0200 at-spi2-core (2.9.3-1ubuntu1) saucy; urgency=low * Load the at-spi2 registry as part of the Ubuntu upstart user session -- Luke Yelavich Mon, 24 Jun 2013 14:11:59 +1000 at-spi2-core (2.9.3-1) unstable; urgency=low [ Luke Yelavich ] * New upstream release -- Samuel Thibault Wed, 19 Jun 2013 00:16:03 +0200 at-spi2-core (2.9.2-1) unstable; urgency=low [ Luke Yelavich ] * New upstream release -- Samuel Thibault Wed, 29 May 2013 23:23:23 +0200 at-spi2-core (2.8.0-2) unstable; urgency=low * Upload to unstable -- Samuel Thibault Fri, 10 May 2013 00:58:34 +0200 at-spi2-core (2.8.0-1) experimental; urgency=low [ Luke Yelavich ] * New upstream release -- Samuel Thibault Tue, 26 Mar 2013 22:45:54 +0100 at-spi2-core (2.7.91-1) experimental; urgency=low [ Luke Yelavich ] * New upstream release -- Samuel Thibault Sun, 10 Mar 2013 17:55:58 +0100 at-spi2-core (2.7.5-1) experimental; urgency=low [ Luke Yelavich ] * New upstream release -- Samuel Thibault Mon, 25 Feb 2013 23:02:27 +0100 at-spi2-core (2.7.4.1-1) experimental; urgency=low [ Luke Yelavich ] * New upstream release -- Samuel Thibault Wed, 16 Jan 2013 11:13:40 +0100 at-spi2-core (2.7.3-1) experimental; urgency=low * New upstream release -- Samuel Thibault Tue, 18 Dec 2012 23:28:28 +0100 at-spi2-core (2.7.2-1) experimental; urgency=low [ Luke Yelavich ] * New upstream release -- Samuel Thibault Fri, 07 Dec 2012 04:02:28 +0100 at-spi2-core (2.7.1-1) experimental; urgency=low * New upstream release -- Samuel Thibault Mon, 22 Oct 2012 22:09:26 +0200 at-spi2-core (2.6.0-1) experimental; urgency=low * at-spi2-core.docs: Add NEWS. * copyright: update. * patches/pl: Remove upstream patch. -- Samuel Thibault Sun, 30 Sep 2012 18:17:21 +0200 at-spi2-core (2.6.0-0ubuntu1) quantal; urgency=low * New upstream release - Fix some annotations. - Exit, rather than crash, when unable to open an X display (BGO#660407). - Fix various memory leaks (BGO#684033). -- Luke Yelavich Tue, 25 Sep 2012 09:44:38 +1000 at-spi2-core (2.5.92-0ubuntu1) quantal; urgency=low * New upstream release - Fix some annotations. - Exit, rather than crash, when unable to open an X display (BGO#660407). - Fix various memory leaks (BGO#684033). -- Luke Yelavich Tue, 18 Sep 2012 14:30:32 +1000 at-spi2-core (2.5.91-0ubuntu1) quantal-proposed; urgency=low * New upstream release (LP: #1046583) - Fix build with -fno-common. - Add glib-2.0 to requires in at-spi2.pc (BGO#682595) -- Luke Yelavich Thu, 06 Sep 2012 09:14:23 +1000 at-spi2-core (2.5.5-0ubuntu1) quantal; urgency=low * New upstream release - Add atspi_action_get_localized_name (BGO#680598). - Allow building from out of source directory (BGO#680281) -- Luke Yelavich Tue, 07 Aug 2012 12:06:10 +1000 at-spi2-core (2.5.4-0ubuntu1) quantal; urgency=low [ Mario Lang ] * Add Breaks on gdm3 < 3.4 (Closes: Bug#663027). [ Luke Yelavich ] * New upstream release - Fix a missing return value. - Fix a crash when unable to remove a match rule. -- Luke Yelavich Tue, 17 Jul 2012 09:46:35 +1000 at-spi2-core (2.5.3-2) unstable; urgency=low [ Mario Lang ] * Add Breaks on gdm3 < 3.4 (Closes: Bug#663027). [ Samuel Thibault ] * patches/pl: Cherry-pick from upstream: Update pl translation. -- Samuel Thibault Sun, 30 Sep 2012 17:51:06 +0200 at-spi2-core (2.5.3-1) unstable; urgency=low [ Samuel Thibault ] * control: Fix Homepage URL, thanks DUCK! [ Luke Yelavich ] * New upstream release. -- Samuel Thibault Thu, 28 Jun 2012 23:35:54 -0300 at-spi2-core (2.5.2-1) unstable; urgency=low [ Luke Yelavich ] * debian/90qt-a11y: Add missing left brace. The script still works, but it helps to be complete and portable. [ Samuel Thibault ] * New upstream release. -- Samuel Thibault Wed, 06 Jun 2012 01:02:04 +0200 at-spi2-core (2.5.1-1) unstable; urgency=low [ Samuel Thibault ] * New upstream release. [ Luke Ylavich ] * Move the at-spi2-core binaries to usr/lib. -- Samuel Thibault Thu, 03 May 2012 01:31:10 +0200 at-spi2-core (2.4.1-1) unstable; urgency=low [ Jordi Mallach ] * Get rid of source/options, to get standard compression of the debian.tar. [ Samuel Thibault ] * New upstream release. -- Samuel Thibault Mon, 16 Apr 2012 22:55:37 +0200 at-spi2-core (2.4.0-1) unstable; urgency=low [ Mario Lang ] * Removing myself from Uploaders. [ Jordi Mallach ] * Add myself to Uploaders. * New upstream release. * Bump to debhelper v9. * Make -dev package depend on gir1.2-atspi-2.0, per g-i policy. * As gir packages are not M-A ready yet, drop M-A: same flag from -dev package, as it depends on a non-M-A package. * Promote ${misc:Depends} in -doc to Depends. -- Jordi Mallach Thu, 29 Mar 2012 15:18:23 +0200 at-spi2-core (2.3.92-1) unstable; urgency=low [ Samuel Thibault ] * New upstream release. [ Mario Lang ] * libatspi2.0-0: Downgrade Depends on at-spi2-core to Recommends (Closes: Bug#663112). -- Samuel Thibault Wed, 21 Mar 2012 01:08:27 +0100 at-spi2-core (2.3.91-1) unstable; urgency=low [ Samuel Thibault ] * New upstream release. * control: Fix gir1.2-atspi-2.0 section into 'introspection'. * watch: Include odd versions again, use .xz suffix. [ Mario Lang ] * Make sure libatspi2.0-0 depends on at-spi2-core. -- Samuel Thibault Tue, 06 Mar 2012 02:07:35 +0100 at-spi2-core (2.3.90-1) unstable; urgency=low [ Luke Yelavich ] * New upstream release * Build for multi-arch * Set the QT_ACCESSIBILITY environment variable if the toolkit-accessibility gsettings key is enabled * Add documentation in new at-spi2-doc package [ Mario Lang ] * debian/control: Put libatspi2.0-0 and gir1.2-atspi-2.0 in section libs. * Add NEWS to debian/at-spi2-core.docs. * Install atspi-2.pc. [ Samuel Thibault ] * control: Depend on hardening-check. * rules: Set DEB_BUILD_HARDENING=1 to enable hardening. * control: Bump Standards-Version to 3.9.3 (no changes). [ Jason White ] * Add at-spi2-core-dbg and libatspi2.0-0-dbg packages. -- Samuel Thibault Sun, 26 Feb 2012 15:55:35 +0100 at-spi2-core (2.0.2-1) unstable; urgency=low [ Mario Lang ] * Initial Debian package. (Closes: Bug#540332) [ Luke Yelavich ] * New upstream releases. [ Samuel Thibault ] * Add myself as uploader. [ Mario Lang ] * Make debian/copyright follow DEP5. -- Mario Lang Sat, 28 May 2011 17:46:58 +0200 debian/at-spi2-core.install0000664000000000000000000000030712230117702012760 0ustar etc usr/lib/at-spi2-core usr/share/dbus-1 debian/90qt-a11y etc/X11/Xsession.d debian/at-spi2-registryd.conf usr/share/upstart/sessions debian/at-spi-dbus-bus.desktop /usr/share/upstart/xdg/autostart debian/rules0000775000000000000000000000134612230117702010247 0ustar #!/usr/bin/make -f DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH) export DEB_BUILD_HARDENING=1 %: dh $@ --with autoreconf override_dh_auto_configure: dh_auto_configure -- --libdir=\$${prefix}/lib/$(DEB_HOST_MULTIARCH) \ --libexecdir=\$${prefix}/lib/at-spi2-core \ --enable-introspection \ --enable-gtk-doc override_dh_auto_install: dh_auto_install for file in $$(find debian/tmp/usr/lib/ -name "*.la"); do \ sed -i "/dependency_libs/ s/'.*'/''/" $$file ; \ done override_dh_auto_test: override_dh_makeshlibs: dh_makeshlibs -a dh_girepository -pgir1.2-atspi-2.0 override_dh_strip: dh_strip -plibatspi2.0-0 --dbg-package=libatspi2.0-0-dbg dh_strip -pat-spi2-core --dbg-package=at-spi2-core-dbg debian/gir1.2-atspi-2.0.install0000664000000000000000000000004412230117702013166 0ustar usr/lib/*/girepository-1.0/ usr/lib debian/control0000664000000000000000000000644112230117702010573 0ustar Source: at-spi2-core Section: misc Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Debian Accessibility Team Uploaders: Samuel Thibault , Jordi Mallach Vcs-Browser: http://git.debian.org/?p=pkg-a11y/at-spi2-core.git;a=summary Vcs-Git: git://git.debian.org/git/pkg-a11y/at-spi2-core.git Homepage: http://live.gnome.org/Accessibility Build-Depends: debhelper (>= 9), libdbus-glib-1-dev, dbus, libglib2.0-dev, libxtst-dev, libgirepository1.0-dev, gtk-doc-tools (>= 1.09), gobject-introspection, gir1.2-glib-2.0, hardening-wrapper, dh-autoreconf Standards-Version: 3.9.4 Package: at-spi2-core Architecture: any Multi-Arch: foreign Depends: ${misc:Depends}, ${shlibs:Depends} Breaks: gdm3 (<< 3.4) Description: Assistive Technology Service Provider Interface (dbus core) This package contains the core components of GNOME Accessibility. Package: at-spi2-core-dbg Architecture: any Section: debug Priority: extra Depends: ${misc:Depends}, ${shlibs:Depends}, at-spi2-core (= ${binary:Version}) Description: Assistive Technology Service Provider Interface - debugging symbols This package contains the debugging symboles for core components of GNOME Accessibility. Package: libatspi2.0-0 Section: libs Architecture: any Multi-Arch: same Pre-Depends: ${misc:Pre-Depends} Depends: ${misc:Depends}, ${shlibs:Depends} Recommends: at-spi2-core (= ${binary:Version}) Description: Assistive Technology Service Provider Interface - shared library This package contains the shared library for applications that wish to use the at-spi interface. Package: libatspi2.0-dev Section: libdevel Architecture: any Depends: ${misc:Depends}, gir1.2-atspi-2.0 (= ${binary:Version}), libatspi2.0-0 (= ${binary:Version}), libglib2.0-dev (>= 2.4.1-2), libdbus-1-dev, libdbus-glib-1-dev, dbus, libglib2.0-dev, libxtst-dev Replaces: gir-repository-dev Description: Development files for the assistive technology serice provider These are the development files for at-spi2, needed for compilation of programs which use it. Package: libatspi2.0-0-dbg Section: debug Priority: extra Architecture: any Multi-Arch: same Depends: ${misc:Depends}, ${shlibs:Depends}, libatspi2.0-0 (= ${binary:Version}) Description: Assistive Technology Service Provider Interface - debugging symbols This package contains the debugging symbols for the shared library for applications that wish to use the at-spi interface. Package: gir1.2-atspi-2.0 Section: introspection Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends}, ${gir:Depends} Replaces: gir1.0-gtk-2.0 (<< 2.22), gobject-introspection-repository Description: Assistive Technology Service Provider (GObject introspection) This package can be used by other packages using the GIRepository format to generate dynamic bindings Package: at-spi2-doc Section: doc Architecture: all Depends: ${misc:Depends} Recommends: devhelp Description: Assistive Technology Service Provider Interface (Documentation) This package contains documentation for the at-spi2 interface. debian/at-spi2-registryd.conf0000664000000000000000000000063112232312703013323 0ustar description "Assistive Technology Service Provider Interface" author "Luke Yelavich " start on started dbus and (starting gnome-session or starting unity) stop on desktop-end pre-start script [ "$(gsettings get org.gnome.desktop.interface toolkit-accessibility)" \ = "true" ] || exit 0 end script respawn exec /usr/lib/at-spi2-core/at-spi-bus-launcher --launch-immediately debian/libatspi2.0-0.shlibs0000664000000000000000000000004512230117702012554 0ustar libatspi 0 libatspi2.0-0 (>= 2.9.90) debian/copyright0000664000000000000000000001202712230117702011120 0ustar Format: http://dep.debian.net/deps/dep5/ Upstream-Name: at-spi2-core Source: http://download.gnome.org/sources/at-spi2-core/ Files: registryd/de-marshaller.c Copyright: Copyright 2008 Novell, Inc. License: LGPL-2+ On Debian systems the full text of the GNU Library General Public License can be found in the `/usr/share/common-licenses/LGPL-2' file. Files: registryd/registry.c Copyright: Copyright 2008, 2010 Codethink Ltd. Copyright 2001, 2002 Sun Microsystems Inc. Copyright 2001, 2002 Ximian, Inc. License: LGPL-2+ On Debian systems the full text of the GNU Library General Public License can be found in the `/usr/share/common-licenses/LGPL-2' file. Files: registryd/deviceeventcontroller.c Copyright: Copyright 2001, 2003 Sun Microsystems Inc. Copyright 2001, 2002 Ximian, Inc. License: LGPL-2+ On Debian systems the full text of the GNU Lesser General Public License can be found in the `/usr/share/common-licenses/LGPL-2' file. Files: registryd/reentrant-list.c registryd/registry-main.c Copyright: Copyright 2001, 2002 Sun Microsystems Inc. Copyright 2001, 2002 Ximian, Inc. License: LGPL-2+ On Debian systems the full text of the GNU Lesser General Public License can be found in the `/usr/share/common-licenses/LGPL-2' file. Files: registryd/display.c registryd/event-source.c Copyright: Copyright 2009 Nokia. License: LGPL-2+ On Debian systems the full text of the GNU Lesser General Public License can be found in the `/usr/share/common-licenses/LGPL-2' file. Files: registryd/ucs2keysym.c Copyright: Copyright Markus G. Kuhn, http://www.cl.cam.ac.uk/~mgk25/ University of Cambridge, April 2001 License: Public domain Files: atspi/atspi-accessible.c atspi/atspi-action.c atspi/atspi-application.c atspi/atspi-component.c atspi/atspi-document.c atspi/atspi-editabletext.c atspi/atspi.h atspi/atspi-hyperlink.c atspi/atspi-hypertext.c atspi/atspi-image.c atspi/atspi-matchrule.c atspi/atspi-misc.c atspi/atspi-object.c atspi/atspi-registry.c atspi/atspi-relation.c atspi/atspi-selection.c atspi/atspi-table.c atspi/atspi-text.c atspi/atspi-value.c Copyright: Copyright 2001, 2002 Ximian, Inc Copyright 2001, 2002 Sun Microsystems Inc. License: LGPL-2+ On Debian systems the full text of the GNU Library General Public License can be found in the `/usr/share/common-licenses/LGPL-2' file. Files: atspi/atspi-accessible.h atspi/atspi-action.h atspi/atspi-application.h atspi/atspi-collection.h atspi/atspi-component.h atspi/atspi-device-listener.h atspi/atspi-device-listener-private.h atspi/atspi-document.h atspi/atspi-editabletext.h atspi/atspi-event-listener.h atspi/atspi-event-listener-private.h atspi/atspi-device-listener.c atspi/atspi-event-listener.c atspi/atspi-hyperlink.h atspi/atspi-hypertext.h atspi/atspi-image.h atspi/atspi-matchrule.h atspi/atspi-matchrule-private.h atspi/atspi-misc.h atspi/atspi-misc-private.h atspi/atspi-object.h atspi/atspi-private.h atspi/atspi-registry.h atspi/atspi-relation.h atspi/atspi-selection.h atspi/atspi-table.h atspi/atspi-text.h atspi/atspi-types.h atspi/atspi-value.h Copyright: Copyright 2002 Ximian Inc Copyright 2002 Sun Microsystems, Inc License: LGPL-2+ On Debian systems the full text of the GNU Library General Public License can be found in the `/usr/share/common-licenses/LGPL-2' file. Files: atspi/atspi-constants.h Copyright: Copyright 2010, 2011 Novell, Inc. Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany. License: LGPL-2+ On Debian systems the full text of the GNU Library General Public License can be found in the `/usr/share/common-licenses/LGPL-2' file. Files: atspi/atspi-collection.c Copyright: Copyright: 2007 IBM Corp License: LGPL-2+ On Debian systems the full text of the GNU Library General Public License can be found in the `/usr/share/common-licenses/LGPL-2' file. Files: atspi/atspi-stateset.* Copyright: 2001, 2002 Sun Microsystems Inc. 2001, 2002 Ximian, Inc. 2010, 2011 Novell, Inc. License: LGPL-2+ On Debian systems the full text of the GNU Library General Public License can be found in the `/usr/share/common-licenses/LGPL-2' file. Files: atspi/atspi-gmain.c atspi/atspi-gmain.h Copyright: Copyright 2002, 2003 CodeFactory AB Copyright 2005 Red Hat, Inc. License: LGPL-2+ On Debian systems the full text of the GNU Library General Public License can be found in the `/usr/share/common-licenses/LGPL-2' file. Files: dbind/*.[ch] Copyright: 2008-2011 Novell, Inc. License: LGPL-2+ On Debian systems the full text of the GNU Library General Public License can be found in the `/usr/share/common-licenses/LGPL-2' file. Files: bus/at-spi-bus-launcher.c Copyright: Copyright 2011 Red Hat, Inc. License: LGPL-2+ On Debian systems the full text of the GNU Library General Public License can be found in the `/usr/share/common-licenses/LGPL-2' file. Files: debian/* Copyright: Copyright 2009, Mario Lang License: GPL-2 On Debian systems the full text of the GNU General Public License can be found in the `/usr/share/common-licenses/GPL-2' file. debian/libatspi2.0-dev.install0000664000000000000000000000011012230117702013346 0ustar usr/lib/*/pkgconfig usr/include usr/lib/*/libatspi.so usr/share/gir-1.0 debian/watch0000664000000000000000000000014612230117702010215 0ustar version=3 http://ftp.gnome.org/pub/GNOME/sources/at-spi2-core/(\d.[0-9])/at-spi2-core-([\d.]*).tar.xz debian/compat0000664000000000000000000000000212230117702010361 0ustar 9 debian/gbp.conf0000664000000000000000000000006512230117702010603 0ustar [DEFAULT] pristine-tar = True debian-branch = ubuntu debian/source/0000775000000000000000000000000012230117702010463 5ustar debian/source/format0000664000000000000000000000001412230117702011671 0ustar 3.0 (quilt) debian/at-spi2-core.docs0000664000000000000000000000001412230117702012235 0ustar README NEWS