atk package update
Signed-off-by: guibuilder_pel7ppc64bebuilder0 <guibuilder@powerel.org>master
parent
4f2f2fee7e
commit
a2dcf8fa0f
|
@ -0,0 +1,11 @@
|
|||
diff -up atk-2.22.0/atk/atkgobjectaccessible.c.invalid-unref atk-2.22.0/atk/atkgobjectaccessible.c
|
||||
--- atk-2.22.0/atk/atkgobjectaccessible.c.invalid-unref 2017-05-30 18:32:22.067833190 +0200
|
||||
+++ atk-2.22.0/atk/atkgobjectaccessible.c 2017-05-30 18:32:43.864810009 +0200
|
||||
@@ -163,7 +163,6 @@ atk_gobject_accessible_object_gone_cb (g
|
||||
g_object_set_qdata (G_OBJECT (data), quark_object, NULL);
|
||||
atk_object_notify_state_change (ATK_OBJECT (data), ATK_STATE_DEFUNCT,
|
||||
TRUE);
|
||||
- g_object_unref (data);
|
||||
}
|
||||
|
||||
static void
|
|
@ -0,0 +1,77 @@
|
|||
diff -up atk-2.22.0/atk/atkgobjectaccessible.c.use-after-free atk-2.22.0/atk/atkgobjectaccessible.c
|
||||
--- atk-2.22.0/atk/atkgobjectaccessible.c.use-after-free 2016-09-19 15:26:16.000000000 +0200
|
||||
+++ atk-2.22.0/atk/atkgobjectaccessible.c 2017-05-22 19:31:40.538875766 +0200
|
||||
@@ -37,7 +37,7 @@
|
||||
static void atk_gobject_accessible_class_init (AtkGObjectAccessibleClass *klass);
|
||||
static void atk_real_gobject_accessible_initialize (AtkObject *atk_obj,
|
||||
gpointer data);
|
||||
-static void atk_gobject_accessible_dispose (gpointer data);
|
||||
+static void atk_gobject_accessible_object_gone_cb (gpointer data);
|
||||
|
||||
static GQuark quark_accessible_object = 0;
|
||||
static GQuark quark_object = 0;
|
||||
@@ -88,8 +88,7 @@ atk_gobject_accessible_for_object (GObje
|
||||
g_return_val_if_fail (G_IS_OBJECT (obj), NULL);
|
||||
/* See if we have a cached accessible for this object */
|
||||
|
||||
- accessible = g_object_get_qdata (obj,
|
||||
- quark_accessible_object);
|
||||
+ accessible = quark_accessible_object ? g_object_get_qdata (obj, quark_accessible_object) : NULL;
|
||||
|
||||
if (!accessible)
|
||||
{
|
||||
@@ -146,12 +145,12 @@ atk_real_gobject_accessible_initialize (
|
||||
atk_obj->layer = ATK_LAYER_WIDGET;
|
||||
|
||||
g_object_weak_ref (data,
|
||||
- (GWeakNotify) atk_gobject_accessible_dispose,
|
||||
+ (GWeakNotify) atk_gobject_accessible_object_gone_cb,
|
||||
atk_gobj);
|
||||
}
|
||||
|
||||
static void
|
||||
-atk_gobject_accessible_dispose (gpointer data)
|
||||
+atk_gobject_accessible_object_gone_cb (gpointer data)
|
||||
{
|
||||
GObject *object;
|
||||
|
||||
@@ -168,9 +167,29 @@ atk_gobject_accessible_dispose (gpointer
|
||||
}
|
||||
|
||||
static void
|
||||
+atk_gobject_accessible_dispose (GObject *atk_obj)
|
||||
+{
|
||||
+ GObject *obj = atk_gobject_accessible_get_object (ATK_GOBJECT_ACCESSIBLE (atk_obj));
|
||||
+
|
||||
+ if (obj) {
|
||||
+ g_object_set_qdata (obj, quark_accessible_object, NULL);
|
||||
+ g_object_weak_unref (obj,
|
||||
+ (GWeakNotify) atk_gobject_accessible_object_gone_cb,
|
||||
+ atk_obj);
|
||||
+
|
||||
+ g_object_set_qdata (atk_obj, quark_object, NULL);
|
||||
+ atk_object_notify_state_change (ATK_OBJECT (atk_obj), ATK_STATE_DEFUNCT,
|
||||
+ TRUE);
|
||||
+ }
|
||||
+
|
||||
+ G_OBJECT_CLASS (parent_class)->dispose (atk_obj);
|
||||
+}
|
||||
+
|
||||
+static void
|
||||
atk_gobject_accessible_class_init (AtkGObjectAccessibleClass *klass)
|
||||
{
|
||||
AtkObjectClass *class;
|
||||
+ GObjectClass *object_class;
|
||||
|
||||
class = ATK_OBJECT_CLASS (klass);
|
||||
|
||||
@@ -178,6 +197,9 @@ atk_gobject_accessible_class_init (AtkGO
|
||||
|
||||
class->initialize = atk_real_gobject_accessible_initialize;
|
||||
|
||||
+ object_class = G_OBJECT_CLASS (klass);
|
||||
+ object_class->dispose = atk_gobject_accessible_dispose;
|
||||
+
|
||||
if (!quark_accessible_object)
|
||||
quark_accessible_object = g_quark_from_static_string ("accessible-object");
|
||||
quark_object = g_quark_from_static_string ("object-for-accessible");
|
|
@ -0,0 +1,512 @@
|
|||
%define glib2_version 2.31.2
|
||||
%define gobject_introspection_version 0.9.6
|
||||
|
||||
Name: atk
|
||||
Version: 2.22.0
|
||||
Release: 3%{?dist}
|
||||
Summary: Interfaces for accessibility support
|
||||
|
||||
License: LGPLv2+
|
||||
URL: http://developer.gnome.org/platform-overview/stable/atk
|
||||
Source0: http://download.gnome.org/sources/atk/2.22/atk-%{version}.tar.xz
|
||||
|
||||
Patch01: atk-use-after-free.patch
|
||||
Patch02: atk-invalid-unref.patch
|
||||
|
||||
BuildRequires: glib2-devel >= %{glib2_version}
|
||||
BuildRequires: gettext
|
||||
BuildRequires: gobject-introspection-devel >= %{gobject_introspection_version}
|
||||
# Bootstrap requirements
|
||||
BuildRequires: gnome-common gtk-doc
|
||||
|
||||
%description
|
||||
The ATK library provides a set of interfaces for adding accessibility
|
||||
support to applications and graphical user interface toolkits. By
|
||||
supporting the ATK interfaces, an application or toolkit can be used
|
||||
with tools such as screen readers, magnifiers, and alternative input
|
||||
devices.
|
||||
|
||||
%package devel
|
||||
Summary: Development files for the ATK accessibility toolkit
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
|
||||
%description devel
|
||||
This package includes libraries, header files, and developer documentation
|
||||
needed for development of applications or toolkits which use ATK.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%patch01 -p1 -b .use-after-free
|
||||
%patch02 -p1 -b .invalid-unref
|
||||
|
||||
%build
|
||||
(if ! test -x configure; then NOCONFIGURE=1 ./autogen.sh; CONFIGFLAGS=--enable-gtk-doc; fi;
|
||||
%configure $CONFIGFLAGS)
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
%make_install
|
||||
|
||||
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
|
||||
|
||||
%find_lang atk10
|
||||
|
||||
%post -p /sbin/ldconfig
|
||||
|
||||
%postun -p /sbin/ldconfig
|
||||
|
||||
|
||||
%files -f atk10.lang
|
||||
%license COPYING
|
||||
%doc README AUTHORS NEWS
|
||||
%{_libdir}/libatk-1.0.so.*
|
||||
%{_libdir}/girepository-1.0
|
||||
|
||||
%files devel
|
||||
%{_libdir}/libatk-1.0.so
|
||||
%{_includedir}/atk-1.0
|
||||
%{_libdir}/pkgconfig/atk.pc
|
||||
%{_datadir}/gtk-doc/html/atk
|
||||
%{_datadir}/gir-1.0
|
||||
|
||||
%changelog
|
||||
* Wed May 31 2017 Milan Crha <mcrha@redhat.com> - 2.22.0-3
|
||||
- Add patch to fix invalid unref at atk_gobject_accessible_object_gone_cb()
|
||||
- Resolves: #1457206
|
||||
|
||||
* Tue May 23 2017 Milan Crha <mcrha@redhat.com> - 2.22.0-2
|
||||
- Add patch to fix crash under atk_gobject_accessible_dispose()
|
||||
- Resolves: #1444405
|
||||
|
||||
* Mon Sep 19 2016 Kalev Lember <klember@redhat.com> - 2.22.0-1
|
||||
- Update to 2.22.0
|
||||
- Resolves: #1386807
|
||||
|
||||
* Mon Sep 22 2014 Kalev Lember <kalevlember@gmail.com> - 2.14.0-1
|
||||
- Update to 2.14.0
|
||||
- Resolves: #1174433
|
||||
|
||||
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 2.8.0-4
|
||||
- Mass rebuild 2014-01-24
|
||||
|
||||
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 2.8.0-3
|
||||
- Mass rebuild 2013-12-27
|
||||
|
||||
* Fri Jul 12 2013 Matthias Clasen <mclasen@redhat.com> - 2.8.0-2
|
||||
- Fix an off-by-one error in role names that breaks lsb tests
|
||||
|
||||
* Tue Mar 26 2013 Kalev Lember <kalevlember@gmail.com> - 2.8.0-1
|
||||
- Update to 2.8.0
|
||||
|
||||
* Thu Feb 21 2013 Kalev Lember <kalevlember@gmail.com> - 2.7.91-1
|
||||
- Update to 2.7.91
|
||||
|
||||
* Thu Feb 21 2013 Kalev Lember <kalevlember@gmail.com> - 2.7.90-1
|
||||
- Update to 2.7.90
|
||||
|
||||
* Tue Feb 05 2013 Kalev Lember <kalevlember@gmail.com> - 2.7.5-1
|
||||
- Update to 2.7.5
|
||||
|
||||
* Tue Jan 15 2013 Matthias Clasen <mclasen@redhat.com> - 2.7.4-1
|
||||
- Update to 2.7.4
|
||||
|
||||
* Thu Dec 20 2012 Kalev Lember <kalevlember@gmail.com> - 2.7.3-1
|
||||
- Update to 2.7.3
|
||||
|
||||
* Tue Sep 25 2012 Kalev Lember <kalevlember@gmail.com> - 2.6.0-1
|
||||
- Update to 2.6.0
|
||||
|
||||
* Tue Sep 04 2012 Richard Hughes <hughsient@gmail.com> - 2.5.91-1
|
||||
- Update to 2.5.91
|
||||
|
||||
* Fri Jul 27 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.4-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Tue Jul 17 2012 Richard Hughes <hughsient@gmail.com> - 2.5.4-1
|
||||
- Update to 2.5.4
|
||||
|
||||
* Tue Jun 26 2012 Richard Hughes <hughsient@gmail.com> - 2.5.3-1
|
||||
- Update to 2.5.3
|
||||
|
||||
* Tue Mar 27 2012 Matthias Clasen <mclasen@redhat.com> - 2.4.0-1
|
||||
- Update to 2.4.0
|
||||
|
||||
* Tue Mar 20 2012 Kalev Lember <kalevlember@gmail.com> - 2.3.95-1
|
||||
- Update to 2.3.95
|
||||
|
||||
* Sat Mar 9 2012 Matthias Clasen <mclasen@redhat.com> - 2.3.93-1
|
||||
- Update to 2.3.93
|
||||
|
||||
* Mon Mar 5 2012 Matthias Clasen <mclasen@redhat.com> - 2.3.91-1
|
||||
- Update to 2.3.91
|
||||
|
||||
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.3-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Tue Dec 20 2011 Matthias Clasen <mclasen@redhat.com> - 2.3.3-1
|
||||
- Update to 2.3.3
|
||||
|
||||
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.0-2
|
||||
- Rebuilt for glibc bug#747377
|
||||
|
||||
* Mon Sep 26 2011 Ray <rstrode@redhat.com> - 2.2.0-1
|
||||
- Update to 2.2.0
|
||||
|
||||
* Mon Sep 19 2011 Matthias Clasen <mclasen@redhat.com> - 2.1.92-1
|
||||
- Update to 2.1.92
|
||||
|
||||
* Mon Sep 5 2011 Matthias Clasen <mclasen@redhat.com> - 2.1.91-1
|
||||
- Update to 2.1.91
|
||||
|
||||
* Tue Aug 16 2011 Matthias Clasen <mclasen@redhat.com> - 2.1.5-1
|
||||
- Update to 2.1.5
|
||||
|
||||
* Mon Jul 25 2011 Matthias Clasen <mclasen@redhat.com> - 2.1.0-1
|
||||
- Update to 2.1.0
|
||||
|
||||
* Tue Jun 14 2011 Tomas Bzatek <tbzatek@redhat.com> - 2.0.1-1
|
||||
- Update to 2.0.1
|
||||
|
||||
* Mon Apr 4 2011 Christopher Aillon <caillon@redhat.com> 2.0.0-1
|
||||
- Update to 2.0.0
|
||||
|
||||
* Wed Mar 23 2011 Matthias Clasen <mclasen@redhat.com> 1.91.92-1
|
||||
- Update to 1.91.92
|
||||
|
||||
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.33.6-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Wed Feb 2 2011 Matthias Clasen <mclasen@redhat.com> 1.33.2-1
|
||||
- Update to 1.33.2
|
||||
|
||||
* Mon Oct 04 2010 Bastien Nocera <bnocera@redhat.com> 1.32.0-2
|
||||
- Update to 1.32.0
|
||||
|
||||
* Wed Sep 29 2010 jkeating - 1.30.0-8.gitb122c67.1
|
||||
- Rebuilt for gcc bug 634757
|
||||
|
||||
* Tue Sep 21 2010 Matthias Clasen <mclasen@redhat.com> - 1.30.0-7.gitb122c67.1
|
||||
- Bump gobject-introspection dep to 0.9.6
|
||||
|
||||
* Tue Sep 21 2010 Matthias Clasen <mclasen@redhat.com> - 1.30.0-7.gitb122c67
|
||||
- Update to a git snapshot
|
||||
|
||||
* Tue Sep 14 2010 Colin Walters <walters@verbum.org> - 1.30.0-6
|
||||
- introspection: Add patch to export pkg-config file; necessary
|
||||
for dependent packages to build with introspection.
|
||||
|
||||
* Thu Jul 15 2010 Colin Walters <walters@verbum.org> - 1.30.0-5
|
||||
- Rebuild with new gobject-introspection
|
||||
|
||||
* Tue Jun 29 2010 Colin Walters <walters@verbum.org> - 1.30.0-4
|
||||
- Support builds from snapshots
|
||||
|
||||
* Mon Jun 21 2010 Colin Walters <walters@verbum.org> - 1.30.0-2
|
||||
- BR gtk-doc in case we run autogen
|
||||
- Drop the gir-repository-devel BR, it no longer exists
|
||||
|
||||
* 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
|
||||
- Add a VCS key
|
||||
- Minor packaging cleanups
|
||||
|
||||
* Tue Dec 22 2009 Matthias Clasen <mclasen@redhat.com> - 1.29.4-2
|
||||
- Enable introspection
|
||||
|
||||
* Tue Dec 22 2009 Matthias Clasen <mclasen@redhat.com> - 1.29.4-1
|
||||
- Update to 1.29.4
|
||||
|
||||
* Wed Dec 2 2009 Matthias Clasen <mclasen@redhat.com> - 1.29.3-2
|
||||
- Drop BR
|
||||
|
||||
* Mon Nov 30 2009 Matthias Clasen <mclasen@redhat.com> - 1.29.3-1
|
||||
- Update to 1.29.3
|
||||
|
||||
* Wed Oct 7 2009 Stepan Kasal <skasal@redhat.com> - 1.28.0-2
|
||||
- drop gtk-doc requirement from atk-devel
|
||||
|
||||
* Wed Sep 23 2009 Matthias Clasen <mclasen@redhat.com> - 1.28.0-1
|
||||
- Update to 2.28.0
|
||||
|
||||
* Mon Aug 10 2009 Matthias Clasen <mclasen@redhat.com> - 1.27.90-1
|
||||
- Update to 2.27.90
|
||||
|
||||
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.25.2-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||
|
||||
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.25.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||
|
||||
* Wed Dec 3 2008 Matthias Clasen <mclasen@redhat.com> - 1.25.2-1
|
||||
- Update to 2.25.2
|
||||
|
||||
* Fri Nov 21 2008 Matthias Clasen <mclasen@redhat.com> - 1.24.0-2
|
||||
- Tweak %%summary and %%description
|
||||
|
||||
* Mon Sep 22 2008 Matthias Clasen <mclasen@redhat.com> - 1.24.0-1
|
||||
- Update to 1.24.0
|
||||
|
||||
* Mon Jul 21 2008 Matthias Clasen <mclasen@redhat.com> - 1.23.5-1
|
||||
- Update to 1.23.5
|
||||
|
||||
* Mon Mar 10 2008 Matthias Clasen <mclasen@redhat.com> - 1.22.0-1
|
||||
- Update to 1.22.0
|
||||
|
||||
* 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
|
||||
|
||||
* Mon Sep 17 2007 Matthias Clasen <mclasen@redhat.com> - 1.20.0-1
|
||||
- Update to 1.20.0
|
||||
|
||||
* Wed Aug 15 2007 Matthias Clasen <mclasen@redhat.com> - 1.19.6-3
|
||||
- Small fixes
|
||||
|
||||
* Mon Aug 6 2007 Matthias Clasen <mclasen@redhat.com> - 1.19.6-2
|
||||
- Update license field
|
||||
|
||||
* Mon Jul 30 2007 Matthias Clasen <mclasen@redhat.com> - 1.19.6-1
|
||||
- Update to 1.19.6
|
||||
|
||||
* Mon Jun 4 2007 Matthias Clasen <mclasen@redhat.com> - 1.19.3-1
|
||||
- Update to 1.19.3
|
||||
|
||||
* Sun May 20 2007 Matthias Clasen <mclasen@redhat.com> - 1.19.1-1
|
||||
- Update to 1.19.1
|
||||
|
||||
* Tue Mar 13 2007 Matthias Clasen <mclasen@redhat.com> - 1.18.0-1
|
||||
- Update to 1.18.0
|
||||
|
||||
* 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.13.2-1
|
||||
- Update to 1.13.2
|
||||
|
||||
* Wed Jan 10 2007 Matthias Clasen <mclasen@redhat.com> - 1.13.1-1
|
||||
- Update to 1.13.1
|
||||
|
||||
* Tue Dec 19 2006 Matthias Clasen <mclasen@redhat.com> - 1.12.4-1
|
||||
- Update to 1.12.4
|
||||
|
||||
* Fri Oct 20 2006 Matthias Clasen <mclasen@redhat.com> - 1.12.3-1
|
||||
- Update to 1.12.3
|
||||
- Require pkgconfig in the -devel package
|
||||
|
||||
* Mon Aug 21 2006 Matthias Clasen <mclasen@redhat.com> - 1.12.2-1.fc6
|
||||
- Update to 1.12.2
|
||||
|
||||
* Wed Jul 12 2006 Matthias Clasen <mclasen@redhat.com> - 1.12.1-2
|
||||
- Rebuild
|
||||
|
||||
* Wed Jul 12 2006 Matthias Clasen <mclasen@redhat.com> - 1.12.1-1
|
||||
- Update to 1.12.1
|
||||
|
||||
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.11.4-4.1
|
||||
- rebuild
|
||||
|
||||
* Thu Jun 8 2006 Matthias Clasen <mclasen@redhat.com> - 1.11.4-4
|
||||
- Rebuild
|
||||
|
||||
* Thu Jun 1 2006 Matthias Clasen <mclasen@redhat.com> - 1.11.4-3
|
||||
- Rebuild
|
||||
|
||||
* Tue Apr 4 2006 Matthias Clasen <mclasen@redhat.com> - 1.11.4-2
|
||||
- Update to 1.11.4
|
||||
|
||||
* Mon Mar 13 2006 Matthias Clasen <mclasen@redhat.com> - 1.11.3-1
|
||||
- Update to 1.11.3
|
||||
|
||||
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.11.2-1.2
|
||||
- bump again for double-long bug on ppc(64)
|
||||
|
||||
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.11.2-1.1
|
||||
- rebuilt for new gcc4.1 snapshot and glibc changes
|
||||
|
||||
* Tue Jan 17 2006 Matthias Clasen <mclasen@redhat.com> - 1.11.2-1
|
||||
- Update to 1.11.2
|
||||
|
||||
* Mon Jan 16 2006 Matthias Clasen <mclasen@redhat.com> - 1.11.0-1
|
||||
- Update to 1.11.0
|
||||
|
||||
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
|
||||
- rebuilt
|
||||
|
||||
* Wed Sep 7 2005 Matthias Clasen <mclasen@redhat.com> - 1.10.3-1
|
||||
- Update to 1.10.3
|
||||
|
||||
* Tue Jun 28 2005 Matthias Clasen <mclasen@redhat.com> - 1.10.1-1
|
||||
- Update to 1.10.1
|
||||
|
||||
* Mon Mar 14 2005 Matthias Clasen <mclasen@redhat.com> - 1.9.1-1
|
||||
- Update to 1.9.1
|
||||
|
||||
* Wed Mar 2 2005 Matthias Clasen <mclasen@redhat.com> - 1.9.0-2
|
||||
- Rebuilt
|
||||
|
||||
* Wed Jan 26 2005 Matthias Clasen <mclasen@redhat.com> - 1.9.0-1
|
||||
- update to 1.9.0
|
||||
|
||||
* Tue Oct 12 2004 Matthias Clasen <mclasen@redhat.com> - 1.8.0-2
|
||||
- convert tamil translations to UTF-8 (#135343)
|
||||
|
||||
* Wed Sep 22 2004 Matthias Clasen <mclasen@redhat.com> - 1.8.0-1
|
||||
- update to 2.8.0
|
||||
|
||||
* Mon Aug 16 2004 Matthias Clasen <mclasen@redhat.com> - 1.7.3-2
|
||||
- Remove unnecessary BuildPrereqs
|
||||
|
||||
* Fri Jul 30 2004 Matthias Clasen <clasen@redhat.com> 1.7.3-1
|
||||
- update to 2.7.3
|
||||
|
||||
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
|
||||
- rebuilt
|
||||
|
||||
* Fri Mar 12 2004 Alex Larsson <alexl@redhat.com> 1.6.0-1
|
||||
- update to 2.6.0
|
||||
|
||||
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
|
||||
- rebuilt
|
||||
|
||||
* Wed Feb 25 2004 Mark McLoughlin <markmc@redhat.com> 1.5.5-1
|
||||
- Update to 1.5.5.
|
||||
|
||||
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
|
||||
- rebuilt
|
||||
|
||||
* Fri Jan 23 2004 Jonathan Blandford <jrb@redhat.com> 1.5.2-1
|
||||
- new version
|
||||
|
||||
* Tue Sep 9 2003 Jonathan Blandford <jrb@redhat.com> 1.4.0-1
|
||||
- new version
|
||||
|
||||
* Tue Aug 19 2003 Jonathan Blandford <jrb@redhat.com> 1.3.5-1
|
||||
- new version for 2.4
|
||||
|
||||
* Wed Jul 9 2003 Owen Taylor <otaylor@redhat.com> 1.2.4-3.0
|
||||
- Remove specific version requirement from libtool
|
||||
|
||||
* Tue Jul 8 2003 Owen Taylor <otaylor@redhat.com> 1.2.4-2.0
|
||||
- Bump for rebuild
|
||||
|
||||
* Tue Jun 10 2003 Owen Taylor <otaylor@redhat.com> 1.2.4-1
|
||||
- Version 1.2.4
|
||||
|
||||
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
|
||||
- rebuilt
|
||||
|
||||
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
|
||||
- rebuilt
|
||||
|
||||
* Fri Dec 20 2002 Owen Taylor <otaylor@redhat.com>
|
||||
- Package documentation, instead of blowing it away
|
||||
- Version 1.2.0
|
||||
|
||||
* Wed Nov 27 2002 Tim Powers <timp@redhat.com> 1.0.3-3
|
||||
- remove unpackaged files from the buildroot
|
||||
|
||||
* Mon Oct 7 2002 Havoc Pennington <hp@redhat.com>
|
||||
- require glib 2.0.6-3
|
||||
|
||||
* Wed Jul 31 2002 Owen Taylor <otaylor@redhat.com>
|
||||
- Remove fixed-ltmain.sh
|
||||
- Version 1.0.3
|
||||
|
||||
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
|
||||
- automated rebuild
|
||||
|
||||
* Tue Jun 04 2002 Havoc Pennington <hp@redhat.com>
|
||||
- rebuild in different environment
|
||||
|
||||
* Tue Jun 4 2002 Havoc Pennington <hp@redhat.com>
|
||||
- 1.0.2
|
||||
|
||||
* Thu May 23 2002 Tim Powers <timp@redhat.com>
|
||||
- automated rebuild
|
||||
|
||||
* Wed Apr 24 2002 Havoc Pennington <hp@redhat.com>
|
||||
- rebuild in different environment
|
||||
|
||||
* Wed Apr 3 2002 Alex Larsson <alexl@redhat.com>
|
||||
- Update to version 1.0.1
|
||||
|
||||
* Fri Mar 8 2002 Owen Taylor <otaylor@redhat.com>
|
||||
- Version 1.0.0
|
||||
|
||||
* Mon Feb 25 2002 Alex Larsson <alexl@redhat.com>
|
||||
- Update to 0.13
|
||||
|
||||
* Thu Feb 21 2002 Alex Larsson <alexl@redhat.com>
|
||||
- Bump for rebuild
|
||||
|
||||
* Mon Feb 18 2002 Havoc Pennington <hp@redhat.com>
|
||||
- rebuild for glib 1.3.14
|
||||
|
||||
* Fri Feb 15 2002 Havoc Pennington <hp@redhat.com>
|
||||
- add horrible buildrequires hack
|
||||
|
||||
* Thu Feb 14 2002 Havoc Pennington <hp@redhat.com>
|
||||
- 0.12.90 cvs snap
|
||||
|
||||
* Tue Jan 29 2002 Owen Taylor <otaylor@redhat.com>
|
||||
- Version 0.10
|
||||
|
||||
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
|
||||
- automated rebuild
|
||||
|
||||
* Wed Jan 2 2002 Havoc Pennington <hp@redhat.com>
|
||||
- new snap 0.8.90
|
||||
|
||||
* Sun Nov 25 2001 Havoc Pennington <hp@redhat.com>
|
||||
- rebuild with glib hacked to work on 64-bit
|
||||
|
||||
* Sun Nov 25 2001 Havoc Pennington <hp@redhat.com>
|
||||
- Version 0.7
|
||||
- add explicit check for required glib2 version before we do the build,
|
||||
so we don't end up with bad RPMs on --nodeps builds
|
||||
|
||||
* Fri Oct 26 2001 Havoc Pennington <hp@redhat.com>
|
||||
- rebuild due to hosage on ia64 build system causing link to old glib
|
||||
|
||||
* Thu Oct 25 2001 Owen Taylor <otaylor@redhat.com>
|
||||
- Version 0.6
|
||||
|
||||
* Thu Sep 27 2001 Havoc Pennington <hp@redhat.com>
|
||||
- 0.5
|
||||
- sync with Owen's version
|
||||
|
||||
* Wed Sep 19 2001 Havoc Pennington <hp@redhat.com>
|
||||
- 0.4
|
||||
- fix requires
|
||||
- --enable-static
|
||||
- put static libs back in file list
|
||||
|
||||
* Mon Sep 10 2001 Havoc Pennington <hp@redhat.com>
|
||||
- update to CVS snapshot
|
||||
|
||||
* Wed Sep 05 2001 Havoc Pennington <hp@redhat.com>
|
||||
- require specific pango version
|
||||
- fix ltmain.sh to destroy all relinking BS
|
||||
|
||||
* Tue Sep 4 2001 root <root@dhcpd37.meridian.redhat.com>
|
||||
- Version 0.2
|
||||
|
||||
* Sat Jul 21 2001 Owen Taylor <otaylor@redhat.com>
|
||||
- Configure with --disable-gtk-doc
|
||||
|
||||
* Tue Jul 10 2001 Trond Eivind Glomsrod <teg@redhat.com>
|
||||
- Add post- and postun-sections running ldconfig
|
||||
|
||||
* Wed Jun 13 2001 Havoc Pennington <hp@redhat.com>
|
||||
- 0.2
|
||||
|
||||
* Fri May 4 2001 Owen Taylor <otaylor@redhat.com>
|
||||
- Initial version
|
Loading…
Reference in New Issue