guibuilder_pel7ppc64lebuilder0
5 years ago
2 changed files with 654 additions and 0 deletions
@ -0,0 +1,38 @@
@@ -0,0 +1,38 @@
|
||||
diff -up at-spi-1.25.2/atk-bridge/bridge.c.evo-crash at-spi-1.25.2/atk-bridge/bridge.c |
||||
--- at-spi-1.25.2/atk-bridge/bridge.c.evo-crash 2008-11-24 01:39:41.000000000 -0500 |
||||
+++ at-spi-1.25.2/atk-bridge/bridge.c 2008-12-02 10:34:11.000000000 -0500 |
||||
@@ -1153,20 +1153,23 @@ spi_atk_bridge_signal_listener (GSignalI |
||||
spi_atk_bridge_init_rect (&any, ATK_OBJECT (gobject), atk_rect); |
||||
} |
||||
else if ((signal_query.signal_id == atk_signal_children_changed) && gobject) |
||||
- { |
||||
+ { |
||||
gpointer child; |
||||
|
||||
- detail1 = g_value_get_uint (param_values + 1); |
||||
- child = g_value_get_pointer (param_values + 2); |
||||
- if (ATK_IS_OBJECT (child)) |
||||
- { |
||||
- ao = ATK_OBJECT (child); |
||||
- g_object_ref (ao); |
||||
- } |
||||
- else if ((detail != NULL) && (strcmp (detail, "add") == 0)) |
||||
+ if (detail != NULL) |
||||
{ |
||||
- ao = atk_object_ref_accessible_child (ATK_OBJECT (gobject), |
||||
- detail1); |
||||
+ detail1 = g_value_get_uint (param_values + 1); |
||||
+ child = g_value_get_pointer (param_values + 2); |
||||
+ if (ATK_IS_OBJECT (child)) |
||||
+ { |
||||
+ ao = ATK_OBJECT (child); |
||||
+ g_object_ref (ao); |
||||
+ } |
||||
+ else if ((detail != NULL) && (strcmp (detail, "add") == 0)) |
||||
+ { |
||||
+ ao = atk_object_ref_accessible_child (ATK_OBJECT (gobject), |
||||
+ detail1); |
||||
+ } |
||||
} |
||||
if (ao) |
||||
{ |
@ -0,0 +1,616 @@
@@ -0,0 +1,616 @@
|
||||
%{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} |
||||
|
||||
%define atk_version 1.29.2 |
||||
%define gtk2_version 2.10.0 |
||||
%define gail_version 1.9.0 |
||||
%define libbonobo_version 2.4.0 |
||||
%define orbit2_version 2.6.0 |
||||
%define pango_version 1.2.0 |
||||
|
||||
Summary: Assistive Technology Service Provider Interface |
||||
Name: at-spi |
||||
Version: 1.32.0 |
||||
Release: 12%{?dist} |
||||
URL: http://developer.gnome.org/projects/gap/ |
||||
#VCS: git:git://git.gnome.org/at-spi |
||||
Source0: http://download.gnome.org/sources/at-spi/1.32/%{name}-%{version}.tar.bz2 |
||||
|
||||
License: LGPLv2+ |
||||
Group: System Environment/Libraries |
||||
Requires: gtk2 >= %{gtk2_version} |
||||
Requires: libbonobo >= %{libbonobo_version} |
||||
Requires: ORBit2 >= %{orbit2_version} |
||||
Requires: gail >= %{gail_version} |
||||
Requires: atk >= %{atk_version} |
||||
|
||||
Requires(pre): GConf2 |
||||
Requires(post): GConf2 |
||||
Requires(preun): GConf2 |
||||
|
||||
BuildRequires: pango-devel >= %{pango_version} |
||||
BuildRequires: gtk2-devel >= %{gtk2_version} |
||||
BuildRequires: libbonobo-devel >= %{libbonobo_version} |
||||
BuildRequires: ORBit2-devel >= %{orbit2_version} |
||||
BuildRequires: gail-devel >= %{gail_version} |
||||
BuildRequires: atk-devel >= %{atk_version} |
||||
BuildRequires: dbus-glib-devel |
||||
BuildRequires: GConf2-devel |
||||
BuildRequires: fontconfig |
||||
BuildRequires: gettext |
||||
BuildRequires: intltool |
||||
BuildRequires: libX11-devel |
||||
BuildRequires: libXtst-devel |
||||
BuildRequires: libXi-devel |
||||
BuildRequires: libXevie-devel |
||||
BuildRequires: libXt-devel |
||||
BuildRequires: gnome-common |
||||
BuildRequires: automake, autoconf, libtool, intltool |
||||
|
||||
# http://bugzilla.gnome.org/show_bug.cgi?id=548782 |
||||
Patch0: evo-crash.patch |
||||
|
||||
%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. |
||||
|
||||
|
||||
%package devel |
||||
Summary: Development files for at-spi |
||||
Group: Development/Libraries |
||||
Requires: %name = %{version}-%{release} |
||||
Requires: atk-devel >= %{atk_version} |
||||
Requires: gtk2-devel >= %{gtk2_version} |
||||
Requires: libbonobo-devel >= %{libbonobo_version} |
||||
Requires: ORBit2-devel >= %{orbit2_version} |
||||
Requires: gail-devel >= %{gail_version} |
||||
Requires: pkgconfig |
||||
|
||||
%description devel |
||||
This package contains libraries, header files and developer documentation |
||||
needed for developing applications that interact directly with at-spi. |
||||
|
||||
|
||||
%package python |
||||
Summary: Python bindings for at-spi |
||||
Group: Development/Libraries |
||||
Requires: %name = %{version}-%{release} |
||||
Requires: python |
||||
Requires: pyorbit |
||||
Requires: gnome-python2-bonobo |
||||
|
||||
|
||||
%description python |
||||
This package contains Python bindings allowing to use at-spi in Python programs. |
||||
|
||||
|
||||
%prep |
||||
%setup -q |
||||
%patch0 -p1 -b .evo-crash |
||||
|
||||
%build |
||||
%configure --disable-gtk-doc --disable-static --enable-relocate |
||||
make |
||||
|
||||
%install |
||||
make install DESTDIR=$RPM_BUILD_ROOT |
||||
|
||||
%find_lang at-spi |
||||
|
||||
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la |
||||
rm -f $RPM_BUILD_ROOT%{_libdir}/gtk-2.0/modules/*/*.la |
||||
rm -f $RPM_BUILD_ROOT%{_libdir}/orbit-2.0/*.la |
||||
|
||||
mv $RPM_BUILD_ROOT%{_datadir}/doc/%{name}-%{version} \ |
||||
$RPM_BUILD_ROOT%{_datadir}/doc/%{name}-devel-%{version} |
||||
|
||||
%pre |
||||
%gconf_schema_prepare at-spi |
||||
|
||||
%preun |
||||
%gconf_schema_remove at-spi |
||||
|
||||
%post |
||||
/sbin/ldconfig |
||||
%gconf_schema_upgrade at-spi |
||||
|
||||
%postun -p /sbin/ldconfig |
||||
|
||||
%files -f at-spi.lang |
||||
%defattr(-,root,root) |
||||
%doc AUTHORS COPYING NEWS README |
||||
%{_libdir}/lib*.so.* |
||||
%{_libdir}/bonobo/servers/* |
||||
%{_libdir}/orbit-2.0/* |
||||
%{_libdir}/gtk-2.0/modules/at-spi-corba |
||||
%{_libexecdir}/* |
||||
%{_sysconfdir}/gconf/schemas/at-spi.schemas |
||||
%{_sysconfdir}/xdg/autostart/at-spi-registryd.desktop |
||||
|
||||
%files devel |
||||
%defattr(-,root,root) |
||||
%doc %{_datadir}/doc/%{name}-devel-%{version} |
||||
%{_datadir}/gtk-doc/html/* |
||||
%{_datadir}/idl/* |
||||
%{_libdir}/lib*.so |
||||
%{_libdir}/pkgconfig/* |
||||
%{_includedir}/* |
||||
|
||||
%files python |
||||
%defattr(-,root,root) |
||||
%{python_sitearch}/pyatspi_corba |
||||
|
||||
|
||||
%changelog |
||||
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 1.32.0-12 |
||||
- Mass rebuild 2014-01-24 |
||||
|
||||
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1.32.0-11 |
||||
- Mass rebuild 2013-12-27 |
||||
|
||||
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.32.0-10 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild |
||||
|
||||
* Fri Jul 27 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.32.0-9 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild |
||||
|
||||
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.32.0-8 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild |
||||
|
||||
* Mon Nov 7 2011 Matthias Clasen <mclasen@redhat.com> - 1.32.0-7 |
||||
- Rebuild against new libpng |
||||
|
||||
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.32.0-6 |
||||
- Rebuilt for glibc bug#747377 |
||||
|
||||
* Tue Mar 15 2011 Matthias Clasen <mclasen@redhat.com> - 1.32.0-5 |
||||
- Don't prefer ORBit stack anymore |
||||
|
||||
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.32.0-4 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild |
||||
|
||||
* Tue Jan 25 2011 Matthias Clasen <mclasen@redhat.com> - 1.32.0-3 |
||||
- Add more dependencies to at-spi-python (#651887) |
||||
|
||||
* Mon Oct 04 2010 Ray Strode <rstrode@redhat.com> 1.32.0-2 |
||||
- Switch back to orbit stack by default |
||||
http://lists.fedoraproject.org/pipermail/desktop/2010-October/006568.html |
||||
|
||||
* Thu Sep 30 2010 Matthias Clasen <mclasen@redhat.com> - 1.32.0-1 |
||||
- Update to 2.32.0 |
||||
|
||||
* Tue Aug 31 2010 Matthias Clasen <mclasen@redhat.com> - 1.31.91-1 |
||||
- Update to 1.31.91 |
||||
|
||||
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 1.31.1-3 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild |
||||
|
||||
* Tue Jun 1 2010 Matthias Clasen <mclasen@redhat.com> - 1.31.1-2 |
||||
- Relocate the corba a11y stack |
||||
|
||||
* Sat May 15 2010 Matthias Clasen <mclasen@redhat.com> - 1.31.1-1 |
||||
- Update to 1.31.1 |
||||
|
||||
* Mon Apr 26 2010 Matthias Clasen <mclasen@redhat.com> - 1.30.1-1 |
||||
- Update to 1.30.1 |
||||
- Packaging cleanups |
||||
|
||||
* Mon Mar 29 2010 Matthias Clasen <mclasen@redhat.com> - 1.30.0-1 |
||||
- Update to 1.30.0 |
||||
|
||||
* Tue Mar 9 2010 Matthias Clasen <mclasen@redhat.com> - 1.29.92-1 |
||||
- Update to 1.29.92 |
||||
|
||||
* Wed Feb 10 2010 Tomas Bzatek <tbzatek@redhat.com> - 1.29.90-1 |
||||
- Update to 1.29.90 |
||||
|
||||
* Tue Jan 26 2010 Matthias Clasen <mclasen@redhat.com> - 1.29.6-1 |
||||
- Update to 1.29.6 |
||||
|
||||
* Sat Jan 16 2010 Matthias Clasen <mclasen@redhat.com> - 1.29.5-1 |
||||
- Update to 1.29.5 |
||||
|
||||
* Wed Jan 6 2010 Matthias Clasen <mclasen@redhat.com> - 1.29.3-3 |
||||
- Improve Corba/DBus switching in pyatspi |
||||
|
||||
* Sat Dec 5 2009 Matthias Clasen <mclasen@redhat.com> - 1.29.3-2 |
||||
- Undo the relocation for now |
||||
|
||||
* Fri Dec 4 2009 Matthias Clasen <mclasen@redhat.com> - 1.29.3-1 |
||||
- Update to 1.29.3 |
||||
- The Python bindings have been relocated to pyatspi-corba to |
||||
coexist with the new dbus-based bindings |
||||
|
||||
* Sun Sep 27 2009 Matthias Clasen <mclasen@redhat.com> - 1.28.0-2 |
||||
- Use dbus sm api instead of xsmp, avoid segfault at logout (#519239) |
||||
|
||||
* Wed Sep 23 2009 Matthias Clasen <mclasen@redhat.com> - 1.28.0-1 |
||||
- Update to 1.28.0 |
||||
|
||||
* Mon Sep 7 2009 Matthias Clasen <mclasen@redhat.com> - 1.27.92-1 |
||||
- Update to 2.27.92 |
||||
|
||||
* Mon Aug 24 2009 Matthias Clasen <mclasen@redhat.com> - 1.27.91-1 |
||||
- Update to 2.27.91 |
||||
|
||||
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.26.0-3 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild |
||||
|
||||
* Thu Jul 2 2009 Matthias Clasen <mclasen@redhat.com> - 1.26.0-2 |
||||
- Rebuild |
||||
|
||||
* Mon Mar 16 2009 Matthias Clasen <mclasen@redhat.com> - 1.26.0-1 |
||||
- Update to 1.26.0 |
||||
|
||||
* Mon Mar 2 2009 Matthias Clasen <mclasen@redhat.com> - 1.25.92-1 |
||||
- Update to 1.25.92 |
||||
|
||||
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.25.5-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild |
||||
|
||||
* Tue Jan 20 2009 Matthias Clasen <mclasen@redhat.com> - 1.25.5-1 |
||||
- Update to 2.25.5 |
||||
|
||||
* Tue Jan 6 2009 Matthias Clasen <mclasen@redhat.com> - 1.25.4-2 |
||||
- Update to 1.25.4 |
||||
|
||||
* Wed Dec 10 2008 Matthias Clasen <mclasen@redhat.com> - 1.25.2-5 |
||||
- ...but keep all the needed deps |
||||
|
||||
* Mon Dec 8 2008 Matthias Clasen <mclasen@redhat.com> - 1.25.2-4 |
||||
- Reduce unused direct deps |
||||
|
||||
* Thu Dec 04 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1.25.2-3 |
||||
- Rebuild for Python 2.6 |
||||
|
||||
* Tue Dec 2 2008 Matthias Clasen <mclasen@redhat.com> - 1.25.2-2 |
||||
- Update to 1.25.2 |
||||
|
||||
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1.25.1-3 |
||||
- Rebuild for Python 2.6 |
||||
|
||||
* Fri Nov 21 2008 Matthias Clasen <mclasen@redhat.com> - 1.25.1-2 |
||||
- Tweak %%summary and %%description |
||||
|
||||
* Wed Nov 12 2008 Matthias Clasen <mclasen@redhat.com> - 1.25.1-1 |
||||
- Update to 1.25.1 |
||||
|
||||
* Tue Oct 21 2008 Matthias Clasen <mclasen@redhat.com> - 1.24.0-5 |
||||
- Prevent a crash in evo when changing components |
||||
|
||||
* Fri Oct 3 2008 Matthias Clasen <mclasen@redhat.com> - 1.24.0-4 |
||||
- Prevent at-spi module from being unloaded |
||||
|
||||
* Mon Sep 22 2008 Matthias Clasen <mclasen@redhat.com> - 1.24.0-2 |
||||
- Update to 1.24.0 |
||||
|
||||
* Mon Sep 8 2008 Matthias Clasen <mclasen@redhat.com> - 1.23.92-1 |
||||
- Update to 1.23.92 |
||||
- Drop upstreamed patch |
||||
|
||||
* Fri Sep 5 2008 Matthias Clasen <mclasen@redhat.com> - 1.23.91-3 |
||||
- Fix an evo crash caused by the greeter crash fix |
||||
|
||||
* Fri Sep 5 2008 Matthias Clasen <mclasen@redhat.com> - 1.23.91-2 |
||||
- Fix a greeter crash |
||||
|
||||
* Tue Sep 2 2008 Matthias Clasen <mclasen@redhat.com> - 1.23.91-1 |
||||
- Update to 1.23.91 |
||||
|
||||
* Wed Aug 20 2008 Jarod Wilson <jarod@redhat.com> - 1.23.6-2 |
||||
- Silence incessant atk-bridge spew filling xsession-errors (#459275) |
||||
|
||||
* Mon Aug 4 2008 Matthias Clasen <mclasen@redhat.com> - 1.23.6-1 |
||||
- Update to 1.23.6 |
||||
|
||||
* Mon Jul 21 2008 Matthias Clasen <mclasen@redhat.com> - 1.23.5-1 |
||||
- Update to 1.23.5 |
||||
|
||||
* Tue Jun 3 2008 Matthias Clasen <mclasen@redhat.com> - 1.23.3-1 |
||||
- Update to 1.23.3 |
||||
|
||||
* Mon May 5 2008 Matthias Clasen <mclasen@redhat.com> - 1.22.1-2 |
||||
- Bump rev |
||||
|
||||
* Mon Apr 7 2008 Matthias Clasen <mclasen@redhat.com> - 1.22.1-1 |
||||
- Update to 1.22.1 |
||||
|
||||
* Mon Mar 10 2008 Matthias Clasen <mclasen@redhat.com> - 1.22.0-1 |
||||
- Update to 1.22.0 |
||||
|
||||
* Wed Mar 5 2008 Christopher Aillon <caillon@redhat.com> - 1.21-92-2 |
||||
- Perf improvement work from Ginn Chen to help a11y-enabled-firefox3 |
||||
|
||||
* Mon Feb 25 2008 Matthias Clasen <mclasen@redhat.com> - 1.21.92-1 |
||||
- Update to 1.21.92 |
||||
|
||||
* Fri Feb 8 2008 Matthias Clasen <mclasen@redhat.com> - 1.21.5-2 |
||||
- Rebuild for gcc 4.3 |
||||
|
||||
* Mon Jan 14 2008 Matthias Clasen <mclasen@redhat.com> - 1.21.5-1 |
||||
- Update to 1.21.5 |
||||
|
||||
* Thu Dec 6 2007 Matthias Clasen <mclasen@redhat.com> - 1.21.3-1 |
||||
- Update to 1.21.3 |
||||
|
||||
* Tue Nov 13 2007 Matthias Clasen <mclasen@redhat.com> - 1.21.1-1 |
||||
- Update to 1.21.1 |
||||
|
||||
* Mon Oct 15 2007 Matthias Clasen <mclasen@redhat.com> - 1.20.1-1 |
||||
- Update to 1.20.1 |
||||
|
||||
* Mon Sep 17 2007 Matthias Clasen <mclasen@redhat.com> - 1.20.0-1 |
||||
- Update to 1.20.0 |
||||
|
||||
* Mon Aug 6 2007 Matthias Clasen <mclasen@redhat.com> - 1.19.5-2 |
||||
- Update license field |
||||
|
||||
* Tue Jul 10 2007 Matthias Clasen <mclasen@redhat.com> - 1.19.5-1 |
||||
- Update to 1.19.5 |
||||
|
||||
* Mon Jun 4 2007 Matthias Clasen <mclasen@redhat.com> - 1.19.3-1 |
||||
- Update to 1.19.3 |
||||
- Add a -python subpackage |
||||
|
||||
* Sun May 20 2007 Matthias Clasen <mclasen@redhat.com> - 1.19.1-1 |
||||
- Update to 1.19.1 |
||||
|
||||
* Sat Apr 21 2007 Matthias Clasen <mclasen@redhat.com> - 1.18.1-2 |
||||
- Don't ship .la files |
||||
|
||||
* Mon Apr 9 2007 Matthias Clasen <mclasen@redhat.com> - 1.18.1-1 |
||||
- Update to 1.18.1, which includes the previous patch |
||||
- Drop obsolete patch |
||||
- Fix a small memory leak |
||||
|
||||
* Mon Mar 26 2007 Matthias Clasen <mclasen@redhat.com> - 1.18.0-2 |
||||
- Backport a patch to fix deadlocks in applications |
||||
|
||||
* Tue Mar 13 2007 Matthias Clasen <mclasen@redhat.com> - 1.18.0-1 |
||||
- Update to 1.18.0 |
||||
- Drop obsolete patch |
||||
|
||||
* Thu Mar 8 2007 Ray Strode <rstrode@redhat.com> - 1.17.2-2 |
||||
- add a patch that might fix some deadlock issues (bug 329454) |
||||
|
||||
* Tue Feb 27 2007 Matthias Clasen <mclasen@redhat.com> - 1.17.2-1 |
||||
- Update to 1.17.2 |
||||
|
||||
* Tue Feb 27 2007 Matthias Clasen <mclasen@redhat.com> - 1.17.1-1 |
||||
- Update to 1.17.1 |
||||
|
||||
* Thu Feb 22 2007 Matthias Clasen <mclasen@redhat.com> - 1.17.0-2 |
||||
- Bump atk requirement |
||||
|
||||
* Tue Feb 13 2007 Matthias Clasen <mclasen@redhat.com> - 1.17.0-1 |
||||
- Update to 1.17.0 |
||||
|
||||
* Wed Jan 22 2007 Matthias Clasen <mclasen@redhat.com> - 1.7.16-1 |
||||
- Update to 1.7.16 |
||||
|
||||
* Wed Jan 10 2007 Matthias Clasen <mclasen@redhat.com> - 1.7.15-1 |
||||
- Update to 1.7.15 |
||||
|
||||
* Tue Dec 19 2006 Matthias Clasen <mclasen@redhat.com> - 1.7.14-1 |
||||
- Update to 1.7.14 |
||||
|
||||
* Sat Dec 9 2006 Matthias Clasen <mclasen@redhat.com> - 1.7.13-2 |
||||
- Small spec file cleanups |
||||
|
||||
* Tue Nov 7 2006 Matthias Clasen <mclasen@redhat.com> - 1.7.13-1 |
||||
- Update to 1.7.13 |
||||
|
||||
* Fri Oct 20 2006 Matthias Clasen <mclasen@redhat.com> - 1.7.12-1 |
||||
- Update to 1.7.12 |
||||
|
||||
* Wed Aug 23 2006 Matthias Clasen <mclasen@redhat.com> - 1.7.11-2.fc6 |
||||
- Remove debug spew |
||||
|
||||
* Mon Aug 21 2006 Matthias Clasen <mclasen@redhat.com> - 1.7.11-1.fc6 |
||||
- Update to 1.7.11 |
||||
- Drop upstreamed patch |
||||
- Require pkgconfig in the -devel package |
||||
|
||||
* Wed Aug 2 2006 Matthias Clasen <mclasen@redhat.com> - 1.7.10-1.fc6 |
||||
- Update to 1.7.10 |
||||
|
||||
* Fri Jul 28 2006 Alexander Larsson <alexl@redhat.com> - 1.7.9-3 |
||||
- Fix segfault if a11y enabled on x86-64 (#196063) |
||||
|
||||
* Wed Jul 12 2006 Matthias Clasen <mclasen@redhat.com> - 1.7.9-2 |
||||
- Rebuild |
||||
|
||||
* Wed Jul 12 2006 Matthias Clasen <mclasen@redhat.com> - 1.7.9-1 |
||||
- Update to 1.7.9 |
||||
|
||||
* Wed Jul 12 2006 Matthias Clasen <mclasen@redhat.com> - 1.7.8-1 |
||||
- Update to 1.7.8 |
||||
|
||||
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.7.7-8.1 |
||||
- rebuild |
||||
|
||||
* Thu Jun 8 2006 Matthias Clasen <mclasen@redhat.com> - 1.7.7-8 |
||||
- Add a BuildRequires |
||||
|
||||
* Mon May 22 2006 Matthias Clasen <mclasen@redhat.com> - 1.7.7-7 |
||||
- Make it build in mock |
||||
|
||||
* Mon Apr 17 2006 Matthias Clasen <mclasen@redhat.com> - 1.7.7-6 |
||||
- Revert the previous change |
||||
|
||||
* Tue Apr 4 2006 Matthias Clasen <mclasen@redhat.com> - 1.7.7-5 |
||||
- Fix a missing declaration |
||||
- Fix segfaults on x86_64 |
||||
|
||||
* Tue Apr 4 2006 Matthias Clasen <mclasen@redhat.com> - 1.7.7-1 |
||||
- Update to 1.7.7 |
||||
|
||||
* Thu Mar 9 2006 Matthias Clasen <mclasen@redhat.com> - 1.7.6-2 |
||||
- Fix a crash on x86_64 |
||||
|
||||
* Mon Feb 27 2006 Matthias Clasen <mclasen@redhat.com> - 1.7.6-1 |
||||
- Update to 1.7.6 |
||||
|
||||
* Tue Feb 21 2006 Matthias Clasen <mclasen@redhat.com> - 1.7.5-1 |
||||
- Update to 1.7.5 |
||||
|
||||
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.7.4-1.2 |
||||
- bump again for double-long bug on ppc(64) |
||||
|
||||
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.7.4-1.1 |
||||
- rebuilt for new gcc4.1 snapshot and glibc changes |
||||
|
||||
* Tue Jan 31 2006 Matthias Clasen <mclasen@redhat.com> 1.7.4-1 |
||||
- Update to 1.7.4 |
||||
|
||||
* Mon Jan 30 2006 Matthias Clasen <mclasen@redhat.com> 1.7.3-1 |
||||
- Update to 1.7.3 |
||||
|
||||
* Tue Jan 17 2006 Matthias Clasen <mclasen@redhat.com> 1.7.2-1 |
||||
- Update to 1.7.2 |
||||
|
||||
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com> |
||||
- rebuilt |
||||
|
||||
* Mon Oct 31 2005 Matthias Clasen <mclasen@redhat.com> 1.6.6-2 |
||||
- Switch requires to modular X |
||||
|
||||
* Wed Sep 7 2005 Matthias Clasen <mclasen@redhat.com> 1.6.6-1 |
||||
- Update to 1.6.6 |
||||
|
||||
* Tue Aug 16 2005 Matthias Clasen <mclasen@redhat.com> |
||||
- Rebuilt |
||||
|
||||
* Tue Jun 28 2005 Matthias Clasen <mclasen@redhat.com> 1.6.4-1 |
||||
- Update to 1.6.4 |
||||
|
||||
* Mon Mar 14 2005 Matthias Clasen <mclasen@redhat.com> 1.6.2-1 |
||||
- Update to 1.6.3 |
||||
|
||||
* Wed Mar 2 2005 Matthias Clasen <mclasen@redhat.com> 1.6.2-2 |
||||
- Rebuilt with gcc4 |
||||
|
||||
* Wed Jan 26 2005 Matthias Clasen <mclasen@redhat.com> 1.6.2-1 |
||||
- Update to 1.6.2 |
||||
|
||||
* Wed Sep 29 2004 Elliot Lee <sopwith@redhat.com> 1.6.0-3 |
||||
- Remove dependency on linc-devel |
||||
|
||||
* Fri Sep 24 2004 Mark McLoughlin <markmc@redhat.com> 1.6.0-2 |
||||
- Fix some random spec file issues (fixes #133430?) |
||||
|
||||
* Thu Sep 23 2004 Jonathan Blandford <jrb@redhat.com> 1.6.0-1 |
||||
- bump version |
||||
|
||||
* Wed Aug 4 2004 Mark McLoughlin <markmc@redhat.com> 1.5.3-1 |
||||
- Update to 1.5.3 |
||||
|
||||
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com> |
||||
- rebuilt |
||||
|
||||
* Wed Mar 31 2004 Mark McLoughlin <markmc@redhat.com> 1.4.0-1 |
||||
- Update to 1.4.0 |
||||
|
||||
* Wed Mar 10 2004 Mark McLoughlin <markmc@redhat.com> 1.3.15 |
||||
- Update to 1.3.15 |
||||
|
||||
* Thu Mar 04 2004 Mark McLoughlin <markmc@redhat.com> 1.3.14-1 |
||||
- Update to 1.3.14 |
||||
|
||||
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com> |
||||
- rebuilt |
||||
|
||||
* Thu Feb 26 2004 Alexander Larsson <alexl@redhat.com> 1.3.13-1 |
||||
- update to 1.3.13 |
||||
|
||||
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com> |
||||
- rebuilt |
||||
|
||||
* Fri Jan 30 2004 Jonathan Blandford <jrb@redhat.com> 1.3.11-1 |
||||
- new version |
||||
|
||||
* Thu Oct 2 2003 Jonathan Blandford <jrb@redhat.com> 1.3.7-1 |
||||
- new version |
||||
|
||||
* Wed Aug 20 2003 Elliot Lee <sopwith@redhat.com> 1.1.9-3 |
||||
- Fix rebuild failure (stderr.patch) |
||||
|
||||
* Tue Jul 15 2003 Havoc Pennington <hp@redhat.com> 1.1.9-2 |
||||
- disable gtk doc |
||||
|
||||
* Mon Jul 14 2003 Havoc Pennington <hp@redhat.com> |
||||
- automated rebuild |
||||
|
||||
* Mon Jul 7 2003 Havoc Pennington <hp@redhat.com> 1.1.9-1 |
||||
- 1.1.9 |
||||
- remove multilib patch fixed upstream |
||||
|
||||
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com> |
||||
- rebuilt |
||||
|
||||
* Fri Feb 14 2003 Havoc Pennington <hp@redhat.com> 1.1.8-3 |
||||
- kill Xft buildreq |
||||
|
||||
* Tue Feb 11 2003 Havoc Pennington <hp@redhat.com> 1.1.8-2 |
||||
- rebuild to fix self-dependency |
||||
|
||||
* Tue Feb 11 2003 Havoc Pennington <hp@redhat.com> 1.1.8-1 |
||||
|
||||
- extend multilib patch to cover -lXi |
||||
|
||||
* Tue Feb 4 2003 Havoc Pennington <hp@redhat.com> 1.1.8-1 |
||||
- 1.1.8 |
||||
|
||||
* Wed Jan 22 2003 Tim Powers <timp@redhat.com> |
||||
- rebuilt |
||||
|
||||
* Wed Dec 11 2002 Elliot Lee <sopwith@redhat.com> 1.0.1-6 |
||||
- Add patch to help multilib systems find libXtst |
||||
|
||||
* Fri Dec 6 2002 Havoc Pennington <hp@redhat.com> |
||||
- rebuild |
||||
|
||||
* Sat Jul 27 2002 Havoc Pennington <hp@redhat.com> |
||||
- rebuild with new libbonobo and gail |
||||
|
||||
* Fri Jun 21 2002 Tim Powers <timp@redhat.com> |
||||
- automated rebuild |
||||
|
||||
* Mon Jun 17 2002 Matt Wilson <msw@redhat.com> |
||||
- add libatk-bridge.so to the file list |
||||
|
||||
* Sun Jun 16 2002 Havoc Pennington <hp@redhat.com> |
||||
- 1.0.1 |
||||
- add at-spi-registryd to file list |
||||
|
||||
* Fri Jun 07 2002 Havoc Pennington <hp@redhat.com> |
||||
- rebuild in different environment |
||||
|
||||
* Tue Jun 4 2002 Havoc Pennington <hp@redhat.com> |
||||
- 1.0.0 |
||||
- add post/postun ldconfig |
||||
|
||||
* Wed May 29 2002 Bill Nottingham <notting@redhat.com> |
||||
- rebuild again? |
||||
|
||||
* Tue May 28 2002 Havoc Pennington <hp@redhat.com> |
||||
- rebuild in different environment |
||||
|
||||
* Tue May 28 2002 Havoc Pennington <hp@redhat.com> |
||||
- 0.12.1 |
||||
|
||||
* Wed Jan 30 2002 Owen Taylor <otaylor@redhat.com> |
||||
- Version 0.0.6 |
||||
|
||||
* Mon Jan 28 2002 Havoc Pennington <hp@redhat.com> |
||||
- rebuild in rawhide, seems to have been linked incorrectly |
||||
|
||||
* Thu Jan 24 2002 Havoc Pennington <hp@redhat.com> |
||||
- rebuild in rawhide, upgrade to 0.0.5 |
||||
- add gail deps |
||||
|
||||
* Mon Nov 26 2001 Havoc Pennington <hp@redhat.com> |
||||
- Initial build. |
||||
|
||||
|
Loading…
Reference in new issue