Blame SPECS/glade3.spec

c990ea
Summary:	User Interface Designer for GTK+ 2
c990ea
Name:		glade3
c990ea
Version:	3.8.3
c990ea
Release:	6%{?dist}
c990ea
Epoch:		2
c990ea
License:	GPLv2+
c990ea
Group:		Development/Tools
c990ea
URL:		http://glade.gnome.org/
c990ea
Source0:	http://ftp.gnome.org/pub/GNOME/sources/glade3/3.8/glade3-%{version}.tar.xz
c990ea
c990ea
Requires:	hicolor-icon-theme
c990ea
Requires:	%{name}-libgladeui = %{?epoch:%{epoch}:}%{version}-%{release}
c990ea
BuildRequires:	desktop-file-utils
c990ea
BuildRequires:	gettext
c990ea
BuildRequires:	gnome-doc-utils
c990ea
BuildRequires:	gtk2-devel
c990ea
BuildRequires:	gtk-doc
c990ea
BuildRequires:	intltool
c990ea
BuildRequires:	libgnomeui-devel
c990ea
BuildRequires:	libtool
c990ea
BuildRequires:	libxml2-devel
c990ea
BuildRequires:	pygtk2-devel
c990ea
BuildRequires:	python2-devel
c990ea
BuildRequires:	scrollkeeper
c990ea
BuildRequires:	chrpath
c990ea
BuildRequires:	autoconf
c990ea
BuildRequires:	gnome-common
c990ea
%description
c990ea
Glade is a RAD tool to enable quick and easy development of user interfaces for
c990ea
the GTK+ toolkit and the GNOME desktop environment.
c990ea
c990ea
The user interfaces designed in Glade are saved as XML, which can be used in
c990ea
numerous programming languages including C, C++, Java, Perl, Python, C#, Pike,
c990ea
Ruby, Haskell, Objective Caml and Scheme. Adding support for other languages
c990ea
is easy too.
c990ea
c990ea
The glade3 package contains a version of Glade for GTK+ 2.x. For GTK+ 3.x
c990ea
support, use the glade package instead.
c990ea
c990ea
%package libgladeui
c990ea
Summary:	Widget library for Glade UI designer
c990ea
# The libgladegtk.so modules is under (GPLv2+ and LGPLv2+), the icons are
c990ea
# under under LGPLv2, and the rest is GPLv2+.
c990ea
# For a breakdown of the licensing, see COPYING.
c990ea
License:	GPLv2+ and (GPLv2+ and LGPLv2+) and LGPLv2
c990ea
Group:		Development/Libraries
c990ea
c990ea
%description libgladeui
c990ea
Libgladeui consists of the widgets that compose the Glade GUI as a separate
c990ea
library to ease the integration of Glade into other applications.
c990ea
c990ea
%package libgladeui-devel
c990ea
Summary:	Development files for %{name}-libgladeui
c990ea
# The glade-parser.h header is under LGPLv2+, and the rest is GPLv2+.
c990ea
License:	GPLv2+ and LGPLv2+
c990ea
Group:		Development/Libraries
c990ea
Requires:	%{name}-libgladeui = %{?epoch:%{epoch}:}%{version}-%{release}
c990ea
Requires:	devhelp
c990ea
c990ea
%description libgladeui-devel
c990ea
This package contains development files for %{name}-libgladeui.
c990ea
c990ea
%prep
c990ea
%setup -q
c990ea
c990ea
# Suppress rpmlint warning.
c990ea
chmod 644 ./plugins/gtk+/glade-attributes.c
c990ea
chmod 644 ./plugins/gtk+/glade-attributes.h
c990ea
c990ea
%build
c990ea
autoreconf
c990ea
c990ea
%configure --disable-static \
c990ea
  --enable-gtk-doc \
c990ea
  --enable-python \
c990ea
  --enable-scrollkeeper
c990ea
c990ea
# Remove rpaths.
c990ea
rm -f ./libtool
c990ea
cp %{_bindir}/libtool .
c990ea
c990ea
# Omit unused direct shared library dependencies.
c990ea
sed --in-place --expression 's! -shared ! -Wl,--as-needed\0!g' libtool
c990ea
c990ea
make %{?_smp_mflags}
c990ea
c990ea
# Strip unneeded translations from .mo files:
c990ea
# http://bugzilla.gnome.org/474987
c990ea
pushd ./po
c990ea
  grep --invert-match \
c990ea
    ".*[.]desktop[.]in[.]in$\|.*[.]server[.]in[.]in$" \
c990ea
    POTFILES.in > POTFILES.keep
c990ea
  mv POTFILES.keep POTFILES.in
c990ea
  intltool-update --pot
c990ea
  for p in *.po; do
c990ea
    msgmerge $p glade3.pot > $p.out
c990ea
    msgfmt -o `basename $p .po`.gmo $p.out
c990ea
  done
c990ea
popd
c990ea
c990ea
%install
c990ea
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/ld.so.conf.d
c990ea
c990ea
make install INSTALL="%{__install} -p" DESTDIR=$RPM_BUILD_ROOT
c990ea
find $RPM_BUILD_ROOT -type f -name "*.la" -delete
c990ea
find $RPM_BUILD_ROOT -type f -name "*.a" -delete
c990ea
c990ea
%find_lang glade3
c990ea
c990ea
# Rpath
c990ea
chrpath --delete $RPM_BUILD_ROOT%{_libdir}/glade3/modules/libgladegnome.so
c990ea
chrpath --delete $RPM_BUILD_ROOT%{_libdir}/glade3/modules/libgladegtk.so
c990ea
chrpath --delete $RPM_BUILD_ROOT%{_libdir}/glade3/modules/libgladepython.so
c990ea
c990ea
%check
c990ea
desktop-file-validate $RPM_BUILD_ROOT%{_datadir}/applications/glade-3.desktop
c990ea
c990ea
%post
c990ea
update-desktop-database &> /dev/null || :
c990ea
touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
c990ea
c990ea
%postun
c990ea
update-desktop-database &> /dev/null || :
c990ea
if [ $1 -eq 0 ] ; then
c990ea
    touch --no-create %{_datadir}/icons/hicolor &>/dev/null
c990ea
    gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
c990ea
fi
c990ea
c990ea
%posttrans
c990ea
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
c990ea
c990ea
c990ea
%post libgladeui -p /sbin/ldconfig
c990ea
c990ea
%postun libgladeui -p /sbin/ldconfig
c990ea
c990ea
%files -f glade3.lang
c990ea
%defattr(-,root,root,-)
c990ea
%doc AUTHORS
c990ea
%doc ChangeLog
c990ea
%doc COPYING.GPL
c990ea
%doc NEWS
c990ea
%doc README
c990ea
%doc TODO
c990ea
%{_bindir}/glade-3
c990ea
%{_datadir}/applications/glade-3.desktop
c990ea
%{_datadir}/icons/hicolor/16x16/apps/glade-3.png
c990ea
%{_datadir}/icons/hicolor/22x22/apps/glade-3.png
c990ea
%{_datadir}/icons/hicolor/24x24/apps/glade-3.png
c990ea
%{_datadir}/icons/hicolor/32x32/apps/glade-3.png
c990ea
%{_datadir}/icons/hicolor/48x48/apps/glade-3.png
c990ea
%{_datadir}/icons/hicolor/scalable/apps/glade-3.svg
c990ea
c990ea
%dir %{_datadir}/gnome/help/glade3
c990ea
%{_datadir}/gnome/help/glade3/*
c990ea
c990ea
%dir %{_datadir}/omf/glade3
c990ea
%{_datadir}/omf/glade3/*
c990ea
c990ea
%files libgladeui
c990ea
%defattr(-,root,root,-)
c990ea
%doc COPYING
c990ea
%doc COPYING.GPL
c990ea
%doc COPYING.LGPL
c990ea
%{_libdir}/libgladeui-1.so.*
c990ea
c990ea
%dir %{_datadir}/glade3
c990ea
%{_datadir}/glade3/catalogs
c990ea
%{_datadir}/glade3/pixmaps
c990ea
c990ea
%dir %{_libdir}/glade3
c990ea
# Contains *.so files that are not symlinked to *.so.* files.
c990ea
%{_libdir}/glade3/modules
c990ea
c990ea
%files libgladeui-devel
c990ea
%defattr(-,root,root,-)
c990ea
%doc COPYING.GPL
c990ea
%{_libdir}/libgladeui-1.so
c990ea
%{_libdir}/pkgconfig/gladeui-1.0.pc
c990ea
c990ea
%dir %{_datadir}/gtk-doc/html/gladeui
c990ea
%doc %{_datadir}/gtk-doc/html/gladeui/*
c990ea
c990ea
%dir %{_includedir}/libgladeui-1.0
c990ea
%{_includedir}/libgladeui-1.0/gladeui
c990ea
c990ea
%changelog
c990ea
* Tue Sep 19 2017 Ray Strode <rstrode@redhat.com> - 2:3.8.3-6
c990ea
- Drop stray colon from glade3-libgladeui requires
c990ea
  Resolves: #1230929
c990ea
c990ea
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 2:3.8.3-5
c990ea
- Mass rebuild 2014-01-24
c990ea
c990ea
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 2:3.8.3-4
c990ea
- Mass rebuild 2013-12-27
c990ea
c990ea
* Sun Feb 24 2013 Kalev Lember <kalevlember@gmail.com> - 2:3.8.3-3
c990ea
- Remove the desktop file vendor prefix
c990ea
c990ea
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:3.8.3-2
c990ea
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
c990ea
c990ea
* Tue Dec 04 2012 Kalev Lember <kalevlember@gmail.com> - 2:3.8.3-1
c990ea
- Update to 3.8.3
c990ea
- Clarify the summary and description to show it's the gtk2 version (#882557)
c990ea
c990ea
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:3.8.2-2
c990ea
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
c990ea
c990ea
* Fri Apr 13 2012 Kalev Lember <kalevlember@gmail.com> - 2:3.8.2-1
c990ea
- Revert back to gtk2-based 3.8.2 -- following upstream, the gtk3
c990ea
  version is now in 'glade' package (#731227)
c990ea
c990ea
* Sat Mar 17 2012 Kalev Lember <kalevlember@gmail.com> - 1:3.11.0-2
c990ea
- Backport patch to add glade_signal_editor_get_widget(), needed for Anjuta
c990ea
c990ea
* Sun Feb 26 2012 Matthias Clasen <mclasen@redhat.com> - 1:3.11.0-1
c990ea
- Update to 3.11.0
c990ea
c990ea
* Mon Jan 30 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 1:3.10.2-3
c990ea
- Fix dependencies RHBZ 671592 and 604356
c990ea
c990ea
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.10.2-2
c990ea
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
c990ea
c990ea
* Fri Nov 24 2011 Matthias Clasen <mclasen@redhat.com> - 1:3.10.2-1
c990ea
- Update to 3.10.2
c990ea
c990ea
* Fri Sep 16 2011 John (J5) Palmieri <johnp@redhat.com> - 1:3.10.0-4
c990ea
- add gnome-common to the BuildRequires
c990ea
c990ea
* Fri Sep 16 2011 John (J5) Palmieri <johnp@redhat.com> - 1:3.10.0-3
c990ea
- add patch to make compile against pygobject3 so that we can
c990ea
  load custom python widgets
c990ea
c990ea
* Sat May 07 2011 Christopher Aillon <caillon@redhat.com> - 1:3.10.0-2
c990ea
- Update scriptlets
c990ea
c990ea
* Thu Apr 14 2011 Kalev Lember <kalev@smartlink.ee> - 1:3.10.0-1
c990ea
- Update to 3.10.0
c990ea
- Build with gtk3 (#678078)
c990ea
- Enabled introspection
c990ea
- Use pygobject instead of pygtk2 for glade-python
c990ea
- Dropped upstreamed glade-3.9.2-doc.patch
c990ea
c990ea
* Thu Mar 31 2011 Dan Horák <dan[at]danny.cz> - 1:3.9.2-3
c990ea
- better build fix
c990ea
c990ea
* Fri Mar 18 2011 Dan Horák <dan[at]danny.cz> - 1:3.9.2-2
c990ea
- fix build on s390(x)
c990ea
c990ea
* Tue Feb 22 2011 Rakesh Pandit <rakesh@fedoraproject.org> - 1:3.9.2-1
c990ea
- Added epoch to keep update path working
c990ea
- Removed old patches
c990ea
- Updated to 3.9.2 (GNOME 3)
c990ea
 * Added signal for IDEs to track created signal editors, 
c990ea
   Johannes Schmid.
c990ea
 * Stop installing catalog .xml.in files, Emilio Pozuelo Monfort.
c990ea
   Fixed various memory leaks.
c990ea
 * Removed GtkTreeSelection from the palette, it's only available as 
c990ea
   the internal child of a GtkTreeView
c990ea
 * Fixed Drag'n'Drop image drawing with cairo for signal editor, 
c990ea
   Johannes Schmid with help from Benjamin Otte.
c990ea
 * Fixed crashes and memory leaks in the GladeBaseEditor (the editor 
c990ea
   used for menu editing and treeview editing and the like).
c990ea
 * Edit->Preferences is now File->Properties
c990ea
 * Removed option for project naming policies, object ids in 
c990ea
   GtkBuilder are always unique across the whole file.
c990ea
 * Render project widgets in the workspace offscreen, this gives us 
c990ea
   more power over the widgets (combo boxes can now be selected, 
c990ea
   selection drawing is now enhanced), Juan Pablo Ugarte.
c990ea
 * Added support for GtkComboBoxText with a customized editor to 
c990ea
   edit the combo box items.
c990ea
 * Added GtkRecentFilter and GtkRecentManager to the palette,
c990ea
   GtkRecentFilter can specify patterns, mime-types and applications 
c990ea
   for the filtering.
c990ea
 * Added support to edit patterns and mime-types for GtkFileFilter
c990ea
 * Added <add-child-verify-function> to the plugin backend, 
c990ea
   we now use this to better police user activities in Glade 
c990ea
   (notably, you cannot paste a widget that is not a GtkToolItem
c990ea
   to a GtkToolBar or the like).
c990ea
 * Renamed various things from glade-3/glade3 to 'glade' 
c990ea
   (the Glade icon, the bugzilla database, the git repository etc, 
c990ea
   help from Javier Jardón).
c990ea
 * Glade now uses GtkApplication and is a single instance application.
c990ea
 * Added support for editing a GtkOffscreenWindow
c990ea
 * Changed the workspace to now include all toplevel project objects,
c990ea
   selecting an object from the inspector causes the workspace to scroll
c990ea
   to the selected widget, Juan Pablo Ugarte.
c990ea
c990ea
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.7.1-3
c990ea
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
c990ea
c990ea
* Fri Jul 23 2010 David Malcolm <dmalcolm@redhat.com> - 3.7.1-2
c990ea
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
c990ea
c990ea
* Tue May 18 2010 Adam Miller <maxamillion@fedorproject.org> 3.7.1-1
c990ea
- Update to 3.7.1
c990ea
c990ea
* Wed May 05 2010 Bastien Nocera <bnocera@redhat.com> 3.7.0-1
c990ea
- Update to 3.7.0
c990ea
c990ea
* Fri Jul 24 2009 Release Engineering <rel-eng@fedoraproject.org> - 3.6.7-2
c990ea
- Autorebuild for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
c990ea
c990ea
* Tue Jun 30 2009 Matthias Clasen <mclasen@redhat.com> - 3.6.7-1
c990ea
- Version bump to 3.6.7.
c990ea
  * Fixed crashes when handling GtkTextView in GtkBuilder format.
c990ea
  * Fixed loading and saving of GtkIconSources.
c990ea
  * GNOME Goal: removed deprecated Gtk+ symbols. (GNOME Bugzilla #572756)
c990ea
  * Fixed obscure crash when loading a project. (GNOME Bugzilla #585860)
c990ea
  * Introspect lowest GTK+ project dependancy when loading files with missing 
c990ea
    versioning information. (GNOME Bugzilla #586046)
c990ea
  * Detect correct modifiers and buttons to spawn a context menu in a platform
c990ea
    independant way. (GNOME Bugzilla #587128)
c990ea
  * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.7.news
c990ea
  * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.6.news
c990ea
  * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.7.changes
c990ea
  * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.6.changes
c990ea
- Drop the menu patch, since glade-3 is the version we install
c990ea
  by default now, and it didn't work right anyway
c990ea
c990ea
* Mon Jun 15 2009 Matthias Clasen <mclasen@redhat.com> - 3.6.5-1
c990ea
- Version bump to 3.6.5.
c990ea
  * GtkButton only accepts real stock items and GtkImage but not icons.
c990ea
  * Removed buggy query dialog from GtkNotebook creation. (GNOME Bugzilla
c990ea
    #578727)
c990ea
  * Removed hard coded size request to palette. (GNOME Bugzilla #579624)
c990ea
  * Atk proxy objects should always have unique names. (GNOME Bugzilla
c990ea
    #579565)
c990ea
  * Fixed output format for GtkLabel attributes. (GNOME Bugzilla #579793)
c990ea
  * Widget names should be unique withing the project. (GNOME Bugzilla
c990ea
    #580745)
c990ea
  * Dialogs should not disappear on pressing ESC. (GNOME Bugzilla #582559)
c990ea
  * Properly load sizes of fixed/layout children. (GNOME Bugzilla #584334)
c990ea
  * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.5.news
c990ea
  * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.4.news
c990ea
  * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.3.news
c990ea
  * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.5.changes
c990ea
  * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.4.changes
c990ea
  * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.3.changes
c990ea
c990ea
* Mon Apr 27 2009 Matthias Clasen <mclasen@redhat.com> - 3.6.2-2
c990ea
- Don't drop schemas translations from po files
c990ea
c990ea
* Fri Apr 17 2009 Debarshi Ray <rishi@fedoraproject.org> - 3.6.2-1
c990ea
- Version bump to 3.6.2.
c990ea
  * Fixed missing properties/attributes when serializing a GtkWindow. (GNOME
c990ea
    Bugzilla #578211)
c990ea
  * Fixed loading state of GtkCellRenderer attributes (whether to use
c990ea
    attribute or property directly). (GNOME Bugzilla #566928)
c990ea
  * Translation updates: es, sr and sr@latin.
c990ea
  * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.2.news
c990ea
  * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.2.changes
c990ea
- Fixed gladeui-1.0.pc.in by trimming 'Requires' list.
c990ea
c990ea
* Tue Apr 07 2009 Debarshi Ray <rishi@fedoraproject.org> - 3.6.1-1
c990ea
- Version bump to 3.6.1.
c990ea
  * Fixed crash during internal widget selection.
c990ea
  * Fixed Libglade regression. Libglade needs specific ordering of properties,
c990ea
    ATK props, signals and accelerators.
c990ea
  * Disable loading and displaying of 'data' property on GtkTreeStore. Only
c990ea
    GtkListStore understands the 'data' construct.
c990ea
  * Properly initialize a GValue on the stack. (GNOME Bugzilla #577822)
c990ea
  * Translation updates: ar and cs.
c990ea
  * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.1.news
c990ea
  * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.1.changes
c990ea
- Added 'Requires: devhelp' to glade3-libgladeui.
c990ea
- Removed 'Requires: gtk2-devel >= 2.14.0 libxml2-devel pkgconfig' from
c990ea
  glade3-libgladeui-devel. Let rpm-4.6 autogenerate them.
c990ea
c990ea
* Tue Mar 17 2009 Debarshi Ray <rishi@fedoraproject.org> - 3.6.0-1
c990ea
- Version bump to 3.6.0.
c990ea
  * Support for both GtkBuilder and Libglade, and conversion from one format
c990ea
    to the other.
c990ea
  * Support for GtkAction.
c990ea
  * New interface to allow plugins to define editor layouts on a class level
c990ea
    basis, and new customized editors for GtkButton, GtkImage and GtkEntry.
c990ea
  * New Python plugin for instrospecting and loading Python class properties
c990ea
    and signals, and adding them to the palette automatically.
c990ea
  * Support for filtering and searching the project using the inspector.
c990ea
  * Support for inline editing of widgets in a dialog.
c990ea
  * Cut and pasted widgets should retain original names. (GNOME Bugzilla
c990ea
    #567809)
c990ea
  * The "after" property for a signal handler should be saved to the project
c990ea
    file. (GNOME Bugzilla #573453)
c990ea
  * Fixed crash when choosing not to save a project with errors. (GNOME
c990ea
    Bugzilla #574706)
c990ea
  * Translation updates: el, fr, da, ml, gl, te, lt, pt, or, cs, it, th, en_GB,
c990ea
    sv, ru, fi, de, tr, lv, ko, es, sv, hu, eu, vi and pt_BR.
c990ea
- Updated License to reflect recent licensing changes according to Fedora
c990ea
  licensing guidelines.
c990ea
- Stripped redundant translations from .mo files. (GNOME Bugzilla #474987)
c990ea
c990ea
* Tue Feb 24 2009 Release Engineering <rel-eng@fedoraproject.org> - 3.5.7-2
c990ea
- Autorebuild for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
c990ea
c990ea
* Wed Feb 18 2009 Matthias Clasen <mclasen@redhat.com> - 3.5.7-1
c990ea
- Version bump to 3.5.7.
c990ea
  * Allow Anjuta to handle clicks on widgets in the designer. (GNOME Bugzilla
c990ea
    #542337)
c990ea
  * Allow custom signal editors. (GNOME Bugzilla #540691)
c990ea
  * Support running from gtk2-2.14 targetting gtk2-2.16.
c990ea
  * Translation updates: de, es, fi, he, ko and pt_BR.
c990ea
  * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.5/glade3-3.5.7.news
c990ea
  * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.5/glade3-3.5.7.changes
c990ea
c990ea
* Sat Jan 31 2009 Rakesh Pandit <rakesh@fedoraproject.org> - 3.5.6-1
c990ea
- Version bump to 3.5.6.
c990ea
  * Handles new GdkPixbuf properties. (GNOME Bugzilla #567454)
c990ea
  * Translation updates: es, nb and pt_BR.
c990ea
  * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.5/glade3-3.5.6.news
c990ea
  * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.5/glade3-3.5.6.changes
c990ea
- Fixed unowned directories in libgladeui-devel. (Red Hat Bugzilla #483311)
c990ea
c990ea
* Wed Jan 07 2009 Debarshi Ray <rishi@fedoraproject.org> - 3.5.5-1
c990ea
- Version bump to 3.5.5.
c990ea
  * Improved model data editor with sequential editing mode and better key
c990ea
    navigations.
c990ea
  * Translation updates: es.
c990ea
  * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.5/glade3-3.5.5.news
c990ea
  * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.5/glade3-3.5.5.changes
c990ea
- Removed 'Provides: glade'.
c990ea
- Addressed warnings generated by rpmlint.
c990ea
c990ea
* Thu Dec 18 2008 Debarshi Ray <rishi@fedoraproject.org> - 3.5.4-1
c990ea
- Version bump to 3.5.4.
c990ea
  * Some files in plugins/gtk+ have been relicensed from GPLv2+ to LGPLv2+.
c990ea
  * Support for GtkIconFactory, GtkAccelGroup, GtkSizeGroup, GtkListStore,
c990ea
    GtkTreeStore, GtkTreeViewColumn, GtkTreeView, GtkIconView, GtkComboBox and
c990ea
    GtkCellRenderer derivatives.
c990ea
  * GtkBuilder support for GtkMenu hierarchies.
c990ea
  * Added versioning support. One can chose the target version of a project
c990ea
    starting from gtk2-2.8.
c990ea
  * New GtkTreeView editor for combo-boxes and icon views.
c990ea
  * Beefed up editor widget with icon and class header.
c990ea
  * Better resizing in editors for property names, warnings and inputs.
c990ea
  * Simplified accelerator editor.
c990ea
  * New Pango attributes editor for GtkLabel.
c990ea
  * Widgets and their properties in .glade files are now saved in the same
c990ea
    order. (GNOME Bugzilla #422823)
c990ea
  * Permit working with non-GtkWindow top-level widgets. (GNOME Bugzilla
c990ea
    #532636)
c990ea
  * Simplified and improved stock-id properties to allow use of custom icons
c990ea
    from factories.
c990ea
  * Translation updates: ar, bg, da, de, en_gb, es, et, fi, fr, gl, gu, he,
c990ea
    hi, hu, it, ko, ml, mr, nl, oc, pl, pt, pt_BR, ru, sr.po, sr@latin, sv,
c990ea
    th, tr, vi, zh_HK and zh_TW.
c990ea
  * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.5/glade3-3.5.3.news
c990ea
  * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.5/glade3-3.5.2.news
c990ea
  * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.5/glade3-3.5.1.news
c990ea
  * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.5/glade3-3.5.4.changes
c990ea
  * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.5/glade3-3.5.3.changes
c990ea
  * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.5/glade3-3.5.2.changes
c990ea
  * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.5/glade3-3.5.1.changes
c990ea
c990ea
* Tue Sep 16 2008 Debarshi Ray <rishi@fedoraproject.org> - 3.4.5-1
c990ea
- Version bump to 3.4.5.
c990ea
  * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.4/glade3-3.4.5.news
c990ea
  * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.4/glade3-3.4.5.changes
c990ea
c990ea
* Wed Apr 19 2008 Debarshi Ray <rishi@fedoraproject.org> - 3.4.4-1
c990ea
- Version bump to 3.4.4.
c990ea
  * Duplicate widget names not allowed in a project.
c990ea
  * Translation updates: sq, tr, bg, da, es, en_GB, ml, pt_BR and hi.
c990ea
  * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.4/glade3-3.4.4.news
c990ea
  * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.4/glade3-3.4.4.changes
c990ea
c990ea
* Wed Mar 12 2008 Debarshi Ray <rishi@fedoraproject.org> - 3.4.3-1
c990ea
- Version bump to 3.4.3.
c990ea
  * Ported to GtkTooltip. (GNOME Bugzilla #500947)
c990ea
  * Translation updates: nb, ru, fr, lt, mk, it, hu, pt_BR, en_GB, gl, ca, fi,
c990ea
    de, pt, th, uk, he, tr, vi, oc, sv, ar, es and ja.
c990ea
  * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.4/glade3-3.4.3.news
c990ea
  * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.4/glade3-3.4.2.news
c990ea
  * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.4/glade3-3.4.3.changes
c990ea
  * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.4/glade3-3.4.2.changes
c990ea
c990ea
* Sun Mar 02 2008 Debarshi Ray <rishi@fedoraproject.org> - 3.4.1-5
c990ea
- Removed 'BuildRequires: gtk-doc' from all distributions, except Fedora 7.
c990ea
- Added 'Requires: gtk-doc' for glade3-libgladeui-devel.
c990ea
c990ea
* Sun Mar 02 2008 Debarshi Ray <rishi@fedoraproject.org> - 3.4.1-4
c990ea
- Replaced 'BuildRequires: chrpath' with 'BuildRequires: libtool' for removing
c990ea
  rpaths.
c990ea
c990ea
* Sun Feb 03 2008 Debarshi Ray <rishi@fedoraproject.org> - 3.4.1-3
c990ea
- Omitted unused direct shared library dependencies.
c990ea
c990ea
* Fri Dec 21 2007 Debarshi Ray <rishi@fedoraproject.org> - 3.4.1-2
c990ea
- Removed deletion of /var/lib/scrollkeeper from all distributions, except
c990ea
  Fedora 7.
c990ea
c990ea
* Thu Dec 20 2007 Debarshi Ray <rishi@fedoraproject.org> - 3.4.1-1
c990ea
- Version bump to 3.4.1.
c990ea
  * Translation updates: nb, sl, et, ar, tr, gl, ko, ja and pt_BR.
c990ea
  * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.4/glade3-3.4.1.news
c990ea
  * http://ftp.gnome.org/pub/GNOME/sources/glade3/3.4/glade3-3.4.1.changes
c990ea
c990ea
* Tue Nov 27 2007 Debarshi Ray <rishi@fedoraproject.org> - 3.4.0-5
c990ea
- Fixed usage of _remove_encoding to prevent failure on Fedora 7.
c990ea
- Added 'BuildRequires: gtk-doc' and 'BuildRequires: scrollkeeper' to prevent
c990ea
  failure on Fedora 7.
c990ea
c990ea
* Sun Nov 25 2007 Debarshi Ray <rishi@fedoraproject.org> - 3.4.0-4
c990ea
- Removed Encoding from Desktop Entry for all distributions, except Fedora 7.
c990ea
c990ea
* Tue Nov 13 2007 Debarshi Ray <rishi@fedoraproject.org> - 3.4.0-3
c990ea
- Clarified multiple licensing issues according to Fedora licensing guidelines.
c990ea
- Trimmed the 'BuildRequires' list.
c990ea
- Trimmed the 'Requires' list for glade3-libgladeui-devel.
c990ea
- Removed custom config files for /etc/ld.so.conf.d.
c990ea
c990ea
* Wed Nov 07 2007 Debarshi Ray <rishi@fedoraproject.org> - 3.4.0-2
c990ea
- Added 'BuildRequires: chrpath' for removing rpaths.
c990ea
c990ea
* Tue Nov 06 2007 Debarshi Ray <rishi@fedoraproject.org> - 3.4.0-1
c990ea
- Initial build. Imported SPEC written by Yijun Yuan and fixed by Tim
c990ea
  Lauridsen.
c990ea
  * Translation updates: et, es, fi, gl, sv, en_CA, ja, pt_BR, th, hu, pt, da,
c990ea
    vi, bg, lt, mk, nb, uk, it, de, si, bn, fr, ar, en_GB, ru, pl and ca.
c990ea
- Included custom config files for /etc/ld.so.conf.d.
c990ea
- Changed Name to differentiate with Glade-2.