From f268e42cebd843e25d7c945f190ee0c18f149aec Mon Sep 17 00:00:00 2001 From: CentOS Buildsys Date: Oct 30 2013 14:59:14 +0000 Subject: import at-spi2-core-2.8.0-4.el7.src.rpm --- diff --git a/.at-spi2-core.metadata b/.at-spi2-core.metadata new file mode 100644 index 0000000..2d2b903 --- /dev/null +++ b/.at-spi2-core.metadata @@ -0,0 +1 @@ +323b9b2332d50ceea999d33c10eb2fedc26b4c40 SOURCES/at-spi2-core-2.8.0.tar.xz diff --git a/README.md b/README.md deleted file mode 100644 index 0e7897f..0000000 --- a/README.md +++ /dev/null @@ -1,5 +0,0 @@ -The master branch has no content - -Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6 - -If you find this file in a distro specific branch, it means that no content has been checked in yet diff --git a/SOURCES/0001-Fix-atspi_component_contains.patch b/SOURCES/0001-Fix-atspi_component_contains.patch new file mode 100644 index 0000000..3744302 --- /dev/null +++ b/SOURCES/0001-Fix-atspi_component_contains.patch @@ -0,0 +1,29 @@ +From b0bb46370f5ddf8e6273cd80d0047ea0b413a9c6 Mon Sep 17 00:00:00 2001 +From: Mike Gorse +Date: Wed, 23 Oct 2013 15:47:17 -0500 +Subject: [PATCH] Fix atspi_component_contains + +Per the spec, org.a11y.Atspi.Component.Contains takes a uint32 for the coord +type, not an int16 + +https://bugzilla.gnome.org/show_bug.cgi?id=710730 +--- + atspi/atspi-component.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/atspi/atspi-component.c b/atspi/atspi-component.c +index 24d74d4..9cdd896 100644 +--- a/atspi/atspi-component.c ++++ b/atspi/atspi-component.c +@@ -84,7 +84,7 @@ atspi_component_contains (AtspiComponent *obj, + + g_return_val_if_fail (obj != NULL, FALSE); + +- _atspi_dbus_call (obj, atspi_interface_component, "Contains", error, "iin=>b", d_x, d_y, d_ctype, &retval); ++ _atspi_dbus_call (obj, atspi_interface_component, "Contains", error, "iiu=>b", d_x, d_y, d_ctype, &retval); + + return retval; + } +-- +1.8.3.1 + diff --git a/SPECS/at-spi2-core.spec b/SPECS/at-spi2-core.spec new file mode 100644 index 0000000..18b50a6 --- /dev/null +++ b/SPECS/at-spi2-core.spec @@ -0,0 +1,304 @@ +Name: at-spi2-core +Version: 2.8.0 +Release: 4%{?dist} +Summary: Protocol definitions and daemon for D-Bus at-spi + +Group: System Environment/Libraries +License: LGPLv2+ +URL: http://www.linuxfoundation.org/en/AT-SPI_on_D-Bus +Source0: http://download.gnome.org/sources/at-spi2-core/2.8/%{name}-%{version}.tar.xz +Patch0: 0001-Fix-atspi_component_contains.patch + +BuildRequires: dbus-devel +BuildRequires: dbus-glib-devel +BuildRequires: glib2-devel +BuildRequires: gobject-introspection-devel +BuildRequires: libXtst-devel +BuildRequires: libXevie-devel +BuildRequires: libXext-devel +BuildRequires: libXi-devel +BuildRequires: autoconf automake libtool +BuildRequires: intltool + +Requires: dbus + +%description +at-spi allows assistive technologies to access GTK-based +applications. Essentially it exposes the internals of applications for +automation, so tools such as screen readers, magnifiers, or even +scripting interfaces can query and interact with GUI controls. + +This version of at-spi is a major break from previous versions. +It has been completely rewritten to use D-Bus rather than +ORBIT / CORBA for its transport protocol. + +%package devel +Summary: Development files and headers for at-spi2-core +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} + +%description devel +The at-spi2-core-devel package includes the header files and +API documentation for libatspi. + +%prep +%setup -q +%patch0 -p1 + +%build +autoreconf -v --install --force +%configure --with-dbus-daemondir=/bin +make %{?_smp_mflags} + + +%install +make install DESTDIR=$RPM_BUILD_ROOT + +%{find_lang} %{name} + +rm $RPM_BUILD_ROOT%{_libdir}/libatspi.la + +%post -p /sbin/ldconfig +%postun -p /sbin/ldconfig + +%files -f %{name}.lang +%doc COPYING AUTHORS README +%{_libexecdir}/at-spi2-registryd +%{_datadir}/dbus-1/services/org.a11y.atspi.Registry.service +%{_sysconfdir}/at-spi2 +%{_sysconfdir}/xdg/autostart/at-spi-dbus-bus.desktop +%{_libdir}/libatspi.so.* +%{_libdir}/girepository-1.0/Atspi-2.0.typelib +%{_libexecdir}/at-spi-bus-launcher +%{_datadir}/dbus-1/services/org.a11y.Bus.service + + +%files devel +%{_libdir}/libatspi.so +%{_datadir}/gtk-doc/html/libatspi +%{_datadir}/gir-1.0/Atspi-2.0.gir +%{_includedir}/at-spi-2.0 +%{_libdir}/pkgconfig/atspi-2.pc + +%changelog +* Wed Oct 30 2013 Rui Matos - 2.8.0-4 +- Resolves: rhbz#1022934 atspi_component_contains uses incorrect method signature + +* Sun Jul 28 2013 Rui Matos - 2.8.0-3 +- Pass --force to autoreconf to be sure it does what we want + +* Sat Jul 20 2013 Rui Matos - 2.8.0-2 +- Run autoreconf instead of a sed hack to avoid RPATH embedding + +* Mon Mar 25 2013 Kalev Lember - 2.8.0-1 +- Update to 2.8.0 + +* Wed Mar 6 2013 Matthias Clasen - 2.7.91-1 +- Update to 2.7.91 + +* Thu Feb 21 2013 Kalev Lember - 2.7.90-1 +- Update to 2.7.90 + +* Tue Feb 05 2013 Kalev Lember - 2.7.5-1 +- Update to 2.7.5 + +* Tue Jan 15 2013 Matthias Clasen - 2.7.4.1-1 +- Update to 2.7.4.1 + +* Tue Jan 15 2013 Matthias Clasen - 2.7.4-1 +- Update to 2.7.4 + +* Thu Dec 20 2012 Kalev Lember - 2.7.3-1 +- Update to 2.7.3 + +* Fri Nov 09 2012 Kalev Lember - 2.7.1-1 +- Update to 2.7.1 + +* Wed Oct 17 2012 Kalev Lember - 2.6.1-1 +- Update to 2.6.1 + +* Tue Sep 25 2012 Richard Hughes - 2.6.0-1 +- Update to 2.6.0 + +* Wed Sep 19 2012 Richard Hughes - 2.5.92-1 +- Update to 2.5.92 + +* Tue Sep 04 2012 Richard Hughes - 2.5.91-1 +- Update to 2.5.91 + +* Tue Aug 07 2012 Richard Hughes - 2.5.5-1 +- Update to 2.5.5 + +* Fri Jul 27 2012 Fedora Release Engineering - 2.5.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Tue Jul 17 2012 Richard Hughes - 2.5.4-1 +- Update to 2.5.4 + +* Tue Jun 26 2012 Richard Hughes - 2.5.3-1 +- Update to 2.5.3 + +* Wed Jun 06 2012 Richard Hughes - 2.5.2-1 +- Update to 2.5.2 + +* Sat May 05 2012 Kalev Lember - 2.5.1-1 +- Update to 2.5.1 + +* Tue Apr 17 2012 Kalev Lember - 2.4.1-1 +- Update to 2.4.1 + +* Tue Mar 27 2012 Matthias Clasen - 2.4.0-1 +- Update to 2.4.0 + +* Wed Mar 21 2012 Kalev Lember - 2.3.92-1 +- Update to 2.3.92 + +* Mon Mar 6 2012 Matthias Clasen - 2.3.91-1 +- Update to 2.3.91 + +* Sat Feb 25 2012 Matthias Clasen - 2.3.90-1 +- Update to 2.3.90 + +* Tue Feb 7 2012 Matthias Clasen - 2.3.5-1 +- Update to 2.3.5 + +* Tue Jan 17 2012 Matthias Clasen - 2.3.4-1 +- Update to 2.3.4 + +* Tue Jan 10 2012 Peter Robinson - 2.3.3-2 +- Fix the rpath issue for building gobject-introspection properly as suggested from upstream + +* Tue Dec 20 2011 Matthias Clasen - 2.3.3-1 +- Update to 2.3.3 + +* Mon Nov 21 2011 Matthias Clasen - 2.3.2-1 +- Update to 2.3.2 + +* Wed Nov 2 2011 Matthias Clasen - 2.3.1-1 +- Update to 2.3.1 + +* Wed Oct 26 2011 Fedora Release Engineering - 2.2.1-2 +- Rebuilt for glibc bug#747377 + +* Tue Oct 18 2011 Matthias Clasen - 2.2.1-1 +- Update to 2.2.1 + +* Tue Sep 27 2011 Ray - 2.2.0-1 +- Update to 2.2.0 + +* Tue Sep 20 2011 Matthias Clasen - 2.1.92-1 +- Update to 2.1.92 + +* Mon Sep 5 2011 Matthias Clasen - 2.1.91-1 +- Update to 2.1.91 + +* Thu Sep 1 2011 Matthias Clasen - 2.1.90-3 +- Drop the %%{_isa} again, it seems to give autoqa trouble + +* Tue Aug 30 2011 Matthias Clasen - 2.1.90-2 +- Fix requires + +* Tue Aug 30 2011 Matthias Clasen - 2.1.90-1 +- Update to 2.1.90 + +* Tue Aug 16 2011 Matthias Clasen - 2.1.5-1 +- Update to 2.1.5 + +* Mon Jul 25 2011 Matthias Clasen - 2.1.4-1 +- Update to 2.1.4 + +* Thu Jun 16 2011 Tomas Bzatek - 2.1.2-1 +- Update to 2.1.2 + +* Wed May 11 2011 Tomas Bzatek - 2.1.1-1 +- Update to 2.1.1 + +* Tue Apr 26 2011 Matthias Clasen - 2.0.1-1 +- Update to 2.0.1 + +* Mon Apr 4 2011 Matthias Clasen - 2.0.0-1 +- Update to 2.0.0 + +* Fri Apr 1 2011 Matthias Clasen - 1.91.93-2 +- Fix 30 second wait during login (#691995) + +* Fri Mar 25 2011 Matthias Clasen - 1.91.93-1 +- Update to 1.91.93 + +* Mon Mar 21 2011 Matthias Clasen - 1.91.92-1 +- Update to 2.91.92 + +* Wed Mar 9 2011 Matthias Clasen - 1.91.91-2 +- Fix a crash on logout + +* Mon Mar 7 2011 Matthias Clasen - 1.91.91-1 +- Update to 1.91.91 + +* Tue Feb 22 2011 Matthias Clasen - 1.91.90-1 +- Update to 1.91.90 + +* Mon Feb 07 2011 Fedora Release Engineering - 1.91.6.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Wed Feb 2 2011 Christopher Aillon - 1.91.6.1-1 +- Update to 1.91.6.1 + +* Tue Feb 1 2011 Christopher Aillon - 1.91.6-1 +- Update to 1.91.6 + +* Fri Jan 21 2011 Christopher Aillon - 1.91.5-2 +- Add gobject-introspection support + +* Mon Jan 10 2011 Matthias Clasen - 1.91.5-1 +- Update to 1.91.5 + +* Thu Nov 11 2010 Matthias Clasen - 1.91.2-1 +- Update 1.91.2 + +* Mon Oct 4 2010 Matthias Clasen - 1.91.0-1 +- Update to 1.91.0 + +* Wed Sep 29 2010 Matthias Clasen - 0.4.0-1 +- Update to 0.4.0 + +* Tue Aug 31 2010 Matthias Clasen - 0.3.91-1 +- Update to 0.3.91 + +* Wed Aug 18 2010 Matthias Clasen - 0.3.90-1 +- Update to 0.3.90 + +* Tue Jun 29 2010 Matthias Clasen - 0.3.4-1 +- Update to 0.3.4 + +* Tue Jun 8 2010 Matthias Clasen - 0.3.3-1 +- Update to 0.3.3 + +* Tue Jun 1 2010 Matthias Clasen - 0.3.2-2 +- Don't relocate the dbus a11y stack + +* Fri May 28 2010 Matthias Clasen - 0.3.2-1 +- Update to 0.3.2 + +* Sat May 15 2010 Matthias Clasen - 0.3.1-1 +- Update to 0.3.1 + +* Tue Mar 30 2010 Matthias Clasen - 0.1.8-1 +- Update to 0.1.8 + +* Sat Feb 20 2010 Matthias Clasen - 0.1.7-1 +- Update to 0.1.7 + +* Wed Feb 10 2010 Tomas Bzatek - 0.1.6-1 +- Update to 0.1.6 + +* Wed Jan 20 2010 Matthias Clasen - 0.1.5-2 +- Specify the right location for the dbus daemon + +* Sun Jan 16 2010 Matthias Clasen - 0.1.5-1 +- Update to 0.1.5 + +* Tue Dec 22 2009 Matthias Clasen - 0.1.4-1 +- Update to 0.1.4 + +* Sat Dec 4 2009 Matthias Clasen - 0.1.3-1 +- Initial packaging