eog/eog.spec

653 lines
18 KiB
RPMSpec
Raw Normal View History

2008-08-23 01:32:19 +00:00
%define gtk2_version 2.13.1
2008-04-25 19:24:03 +00:00
%define glib2_version 2.15.3
2007-07-10 14:55:11 +00:00
%define libgnomeui_version 2.6.0
2005-07-08 17:37:19 +00:00
%define libglade_version 2.3.6
2007-01-10 18:38:40 +00:00
%define libart_version 2.3.16
%define gnome_desktop_version 2.10.0
%define gnome_icon_theme_version 2.17.1
2007-07-10 14:55:11 +00:00
%define desktop_file_utils_version 0.9
%define gail_version 1.2.0
%define libexif_version 0.6.12
Summary: Eye of GNOME image viewer
Name: eog
2010-08-31 14:58:03 +00:00
Version: 2.31.91
Release: 1%{?dist}
2008-11-22 02:36:56 +00:00
URL: http://projects.gnome.org/eog/
2010-03-29 23:33:09 +00:00
#VCS: git:git://git.gnome.org/eog
2010-08-17 17:44:18 +00:00
Source: http://download.gnome.org/sources/eog/2.31/%{name}-%{version}.tar.bz2
2008-05-21 21:09:11 +00:00
# The GFDL has an "or later version" clause embedded inside the license.
# There is no need to add the + here.
License: GPLv2+ and GFDL
Group: User Interface/Desktops
BuildRequires: glib2-devel >= %{glib2_version}
BuildRequires: gtk2-devel >= %{gtk2_version}
2005-07-08 17:37:19 +00:00
BuildRequires: libglade2-devel >= %{libglade_version}
BuildRequires: gail-devel >= %{gail_version}
2005-07-08 17:37:19 +00:00
BuildRequires: libexif-devel >= %{libexif_version}
2007-08-14 14:05:31 +00:00
BuildRequires: exempi-devel
2008-01-15 01:56:47 +00:00
BuildRequires: lcms-devel
2007-01-10 18:28:31 +00:00
BuildRequires: libart_lgpl-devel >= %{libart_version}
BuildRequires: intltool
BuildRequires: libjpeg-devel
BuildRequires: scrollkeeper
BuildRequires: gettext
BuildRequires: desktop-file-utils >= %{desktop_file_utils_version}
2006-05-21 03:52:05 +00:00
BuildRequires: gnome-doc-utils
2007-01-10 18:28:31 +00:00
BuildRequires: gnome-desktop-devel >= %{gnome_desktop_version}
BuildRequires: gnome-icon-theme >= %{gnome_icon_theme_version}
2006-05-21 03:52:05 +00:00
BuildRequires: libXt-devel
2008-11-13 02:50:59 +00:00
BuildRequires: libxml2-devel
2006-05-09 16:56:22 +00:00
Requires(post): desktop-file-utils >= %{desktop_file_utils_version}
Requires(post): GConf2
2006-10-18 16:48:17 +00:00
Requires(pre): GConf2
2006-05-09 16:56:22 +00:00
Requires(preun): GConf2
Requires(postun): desktop-file-utils >= %{desktop_file_utils_version}
2006-05-09 16:56:22 +00:00
%description
2009-03-03 17:02:32 +00:00
The Eye of GNOME image viewer (eog) is the official image viewer for the
GNOME desktop. It can view single image files in a variety of formats, as
2008-11-21 23:17:45 +00:00
well as large image collections.
eog is extensible through a plugin system.
2007-05-20 01:36:45 +00:00
%package devel
2008-11-21 23:17:45 +00:00
Summary: Support for developing plugins for the eog image viewer
2007-05-20 01:36:45 +00:00
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}
Requires: gtk2-devel
Requires: libglade2-devel
Requires: GConf2-devel
%description devel
2009-03-03 17:02:32 +00:00
The Eye of GNOME image viewer (eog) is the official image viewer for the
2008-11-21 23:17:45 +00:00
GNOME desktop. This package allows you to develop plugins that add new
functionality to eog.
2007-05-20 01:36:45 +00:00
%prep
%setup -q
2007-08-16 05:18:41 +00:00
echo "NoDisplay=true" >> data/eog.desktop.in
2007-08-09 17:00:33 +00:00
# just in case
2007-08-16 05:18:41 +00:00
echo "NoDisplay=true" >> data/eog.desktop.in.in
%build
2009-03-03 17:02:32 +00:00
%configure --disable-scrollkeeper
make
%install
export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
2007-02-27 17:02:18 +00:00
make install DESTDIR=$RPM_BUILD_ROOT
unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL
desktop-file-install --vendor gnome --delete-original \
--dir $RPM_BUILD_ROOT%{_datadir}/applications \
2010-03-29 23:33:09 +00:00
--remove-category Application \
$RPM_BUILD_ROOT%{_datadir}/applications/*
2007-08-06 05:33:21 +00:00
%find_lang %{name} --with-gnome
2006-12-05 15:50:05 +00:00
# grr, --disable-scrollkeeper seems broken
rm -rf $RPM_BUILD_ROOT/var/scrollkeeper
2009-12-04 03:37:42 +00:00
rm -rf $RPM_BUILD_ROOT%{_libdir}/eog/plugins/*.la
2007-05-20 01:36:45 +00:00
2008-10-09 04:00:51 +00:00
# save space by linking identical images in translated docs
helpdir=$RPM_BUILD_ROOT%{_datadir}/gnome/help/%{name}
for f in $helpdir/C/figures/*.png; do
b="$(basename $f)"
for d in $helpdir/*; do
if [ -d "$d" -a "$d" != "$helpdir/C" ]; then
g="$d/figures/$b"
if [ -f "$g" ]; then
if cmp -s $f $g; then
rm "$g"; ln -s "../../C/figures/$b" "$g"
fi
fi
fi
done
done
%post
2006-05-09 16:56:22 +00:00
update-desktop-database -q
2010-04-27 15:09:56 +00:00
%gconf_schema_upgrade eog
2010-03-29 23:33:09 +00:00
touch %{_datadir}/icons/hicolor >&/dev/null || :
2006-10-18 16:48:17 +00:00
2010-06-09 01:52:51 +00:00
2006-10-18 16:48:17 +00:00
%pre
2010-04-27 15:09:56 +00:00
%gconf_schema_prepare eog
2006-05-09 16:56:22 +00:00
%preun
2010-04-27 15:09:56 +00:00
%gconf_schema_remove eog
%postun
2006-05-09 16:56:22 +00:00
update-desktop-database -q
2010-03-29 23:33:09 +00:00
if [ $1 -eq 0 ]; then
touch --no-create %{_datadir}/icons/hicolor >&/dev/null || :
gtk-update-icon-cache %{_datadir}/icons/hicolor >&/dev/null || :
2007-05-20 00:22:04 +00:00
fi
2010-03-29 23:33:09 +00:00
%posttrans
gtk-update-icon-cache %{_datadir}/icons/hicolor >&/dev/null || :
%files -f %{name}.lang
%defattr(-,root,root)
2007-08-06 05:33:21 +00:00
%doc AUTHORS COPYING NEWS README
%{_datadir}/eog
2006-09-08 03:46:54 +00:00
%{_datadir}/applications/*
%{_datadir}/omf/*
2007-07-10 15:22:08 +00:00
%{_datadir}/icons/hicolor/*/apps/*
%{_bindir}/*
%{_sysconfdir}/gconf/schemas/*.schemas
2007-05-20 01:36:45 +00:00
%{_libdir}/eog
%files devel
%defattr(-,root,root)
2007-07-10 15:22:08 +00:00
%{_includedir}/eog-2.20
2007-05-20 01:36:45 +00:00
%{_libdir}/pkgconfig/eog.pc
2010-08-23 18:16:06 +00:00
%{_datadir}/gtk-doc/
%changelog
2010-08-31 14:58:03 +00:00
* Tue Aug 31 2010 Matthias Clasen <mclasen@redhat.com> 2.31.91-1
- Update to 2.31.91
2010-08-23 18:16:06 +00:00
* Mon Aug 23 2010 Matthias Clasen <mclasen@redhat.com> 2.31.90-2
- Co-own /usr/share/gtk-doc
2010-08-17 17:44:18 +00:00
* Tue Aug 17 2010 Matthias Clasen <mclasen@redhat.com> 2.31.90-1
- Update to 2.31.90
* Wed Jun 23 2010 Matthias Clasen <mclasen@redhat.com> 2.31.4-0.1.20100623git
- git snapshot that works with glib 2.25.9
* Wed Jun 16 2010 Matthias Clasen <mclasen@redhat.com> 2.31.3-2
- Make installed gsettings schema compile
2010-06-09 01:26:07 +00:00
* Tue Jun 8 2010 Matthias Clasen <mclasen@redhat.com> 2.31.3-1
- Update to 2.31.3
2010-05-28 00:49:18 +00:00
* Thu May 27 2010 Matthias Clasen <mclasen@redhat.com> 2.31.2-1
- Update to 2.31.2
2010-05-16 01:47:55 +00:00
* Sat May 15 2010 Matthias Clasen <mclasen@redhat.com> 2.31.1-1
- Update to 2.31.1
2010-04-27 15:09:56 +00:00
* Tue Apr 27 2010 Matthias Clasen <mclasen@redhat.com> 2.30.1-1
- Update to 2.30.1
2010-03-29 23:33:09 +00:00
* Mon Mar 29 2010 Matthias Clasen <mclasen@redhat.com> 2.30.0-1
- Update to 2.30.0
2010-02-23 03:31:50 +00:00
* Mon Feb 22 2010 Matthias Clasen <mclasen@redhat.com> 2.29.91-1
- Update to 2.29.91
2010-02-10 16:00:15 +00:00
* Wed Feb 10 2010 Bastien Nocera <bnocera@redhat.com> 2.29.90-1
- Update to 2.29.90
2010-01-17 22:45:44 +00:00
* Sun Jan 17 2010 Matthias Clasen <mclasen@redhat.com> 2.29.5-2
- Rebuild
2010-01-13 04:09:09 +00:00
* Tue Jan 12 2010 Matthias Clasen <mclasen@redhat.com> 2.29.5-1
2010-01-17 22:45:44 +00:00
- Update to 2.29.5
2010-01-13 04:09:09 +00:00
2009-12-04 03:43:47 +00:00
* Thu Dec 3 2009 Matthias Clasen <mclasen@redhat.com> 2.29.3-2
- Don't ship .la files
2009-12-01 14:38:25 +00:00
* Tue Dec 01 2009 Bastien Nocera <bnocera@redhat.com> 2.29.3-1
- Update to 2.29.3
2009-09-22 03:05:52 +00:00
* Mon Sep 21 2009 Matthias Clasen <mclasen@redhat.com> 2.28.0-1
- Update to 2.28.0
2009-09-08 19:27:33 +00:00
* Tue Sep 8 2009 Matthias Clasen <mclasen@redhat.com> 2.27.92-1
- Update to 2.27.92
2009-08-25 02:43:17 +00:00
* Mon Aug 24 2009 Matthias Clasen <mclasen@redhat.com> 2.27.91-1
- Update to 2.27.91
2009-08-14 22:47:05 +00:00
* Fri Aug 14 2009 Matthias Clasen <mclasen@redhat.com> 2.27.90-1
- 2.27.90
2009-07-28 13:23:13 +00:00
* Tue Jul 28 2009 Matthias Clasen <mclasen@redhat.com> 2.27.5-1
- Update to 2.27.5
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.27.4-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
2009-07-14 16:12:04 +00:00
* Tue Jul 14 2009 Matthias Clasen <mclasen@redhat.com> 2.27.4-1
- Update to 2.27.4
2009-06-16 14:37:50 +00:00
* Tue Jun 16 2009 Matthias Clasen <mclasen@redhat.com> 2.27.3-1
- Update to 2.27.3
2009-05-27 09:52:30 +00:00
* Wed May 27 2009 Bastien Nocera <bnocera@redhat.com> 2.27.2-1
- Update to 2.27.2
2009-05-16 05:06:24 +00:00
* Sat May 16 2009 Matthias Clasen <mclasen@redhat.com> - 2.27.1-1
- Update to 2.27.1
2009-04-14 01:10:13 +00:00
* Mon Apr 13 2009 Matthias Clasen <mclasen@redhat.com> - 2.26.1-1
- Update to 2.26.1
- See http://download.gnome.org/sources/eog/2.26/eog-2.26.1.news
2009-03-17 01:36:15 +00:00
* Mon Mar 16 2009 Matthias Clasen <mclasen@redhat.com> - 2.26.0-1
- Update to 2.26.0
2009-03-03 17:02:32 +00:00
* Tue Mar 3 2009 Matthias Clasen <mclasen@redhat.com> - 2.25.92-1
- Update to 2.25.92
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.25.91-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
2009-02-19 00:36:51 +00:00
* Wed Feb 18 2009 Matthias Clasen <mclasen@redhat.com> - 2.25.91-1
- Update to 2.25.91
2009-02-03 17:25:24 +00:00
* Tue Feb 3 2009 Matthias Clasen <mclasen@redhat.com> - 2.25.90-1
- Update to 2.25.90
2009-01-20 19:00:42 +00:00
* Tue Jan 20 2009 Matthias Clasen <mclasen@redhat.com> - 2.25.5-1
- Update to 2.25.5
2009-01-06 16:17:15 +00:00
* Tue Jan 6 2009 Matthias Clasen <mclasen@redhat.com> - 2.25.4-1
- Update to 2.25.4
2008-12-17 17:45:08 +00:00
* Wed Dec 17 2008 Matthias Clasen <mclasen@redhat.com> - 2.25.3-2
2008-12-17 17:23:54 +00:00
- Update to 2.25.3
2008-12-03 23:55:41 +00:00
* Wed Dec 3 2008 Matthias Clasen <mclasen@redhat.com> - 2.25.2-1
- Update to 2.25.2
2008-11-22 02:36:56 +00:00
* Fri Nov 21 2008 Matthias Clasen <mclasen@redhat.com> - 2.25.1-5
- Better URL
2008-11-21 23:17:45 +00:00
* Fri Nov 21 2008 Matthias Clasen <mclasen@redhat.com> - 2.25.1-4
- Tweak %%summary and %%description
2008-11-13 03:07:25 +00:00
* Wed Nov 12 2008 Matthias Clasen <mclasen@redhat.com> - 2.25.1-3
2008-11-13 01:40:03 +00:00
- Update to 2.25.1
2008-10-21 01:24:29 +00:00
* Mon Oct 20 2008 Matthias Clasen <mclasen@redhat.com> - 2.24.1-1
- Update to 2.24.1
2008-10-09 04:00:51 +00:00
* Thu Oct 9 2008 Matthias Clasen <mclasen@redhat.com> - 2.24.0-2
- Save some space
2008-09-23 03:50:45 +00:00
* Mon Sep 22 2008 Matthias Clasen <mclasen@redhat.com> - 2.24.0-1
- Update to 2.24.0
2008-09-09 01:35:36 +00:00
* Mon Sep 8 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.92-1
- Update to 2.23.92
2008-09-03 02:29:55 +00:00
* Tue Sep 2 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.91-1
- Update to 2.23.91
2008-08-23 01:32:19 +00:00
* Fri Aug 22 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.90-1
- Update to 2.23.90
2008-08-12 05:02:46 +00:00
* Tue Aug 12 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.6-2
- Add a possible fix for a deadlock
2008-08-05 04:11:14 +00:00
* Tue Aug 5 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.6-1
- Update to 2.23.6
2008-08-01 15:32:05 +00:00
* Fri Aug 1 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.5-2
- Use standard icon names
2008-07-22 04:15:52 +00:00
* Tue Jul 22 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.5-1
- Update to 2.23.5
2008-06-18 04:46:57 +00:00
* Wed Jun 18 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.4.1-1
- Update to 2.23.4.1
2008-06-04 17:04:19 +00:00
* Wed Jun 4 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.3-1
- Update to 2.23.3
2008-05-21 21:09:11 +00:00
* Wed May 21 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2.23.2-2
- fix license tag
2008-05-14 02:19:34 +00:00
* Tue May 13 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.2-1
- Update to 2.23.2
2008-04-25 19:24:03 +00:00
* Fri Apr 25 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.1-1
- Update to 2.23.1
2008-04-07 21:04:38 +00:00
* Mon Apr 7 2008 Matthias Clasen <mclasen@redhat.com> - 2.22.1-1
- Update to 2.22.1
2008-03-10 21:05:57 +00:00
* Mon Mar 10 2008 Matthias Clasen <mclasen@redhat.com> - 2.22.0-1
- Update to 2.22.0
2008-02-26 03:43:48 +00:00
* Mon Feb 25 2008 Matthias Clasen <mclasen@redhat.com> - 2.21.92-1
- Update to 2.21.92
2008-02-13 05:16:12 +00:00
* Wed Feb 13 2008 Matthias Clasen <mclasen@redhat.com> - 2.21.90-1
- Update to 2.21.90
2008-01-15 01:56:47 +00:00
* Mon Jan 14 2008 Matthias Clasen <mclasen@redhat.com> - 2.21.4-1
- Update to 2.21.4
2007-12-18 17:34:51 +00:00
* Tue Dec 18 2007 Matthias Clasen <mclasen@redhat.com> - 2.21.3-1
- Update to 2.21.3
2007-12-05 03:27:10 +00:00
* Tue Dec 4 2007 Matthias Clasen <mclasen@redhat.com> - 2.21.2-1
- Update to 2.21.2
2007-11-13 05:11:46 +00:00
* Tue Nov 13 2007 Matthias Clasen <mclasen@redhat.com> - 2.21.1-1
- Update to 2.21.1
2007-10-23 04:41:06 +00:00
* Tue Oct 23 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.1-2
- Rebuild against new dbus-glib
2007-10-15 22:15:58 +00:00
* Mon Oct 15 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.1-1
- Update to 2.20.1 (bug fixes and translation updates)
2007-09-18 03:07:30 +00:00
* Mon Sep 17 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.0-1
- Update to 2.20.0
2007-09-04 03:54:28 +00:00
* Mon Sep 3 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.92-1
- Update to 2.19.92
2007-08-16 05:18:41 +00:00
* Thu Aug 16 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.5-3
- Hide it from the menus _again_
2007-08-14 14:05:31 +00:00
* Tue Aug 14 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.5-2
- Build with XMP support
2007-08-14 03:35:38 +00:00
* Mon Aug 13 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.5-1
- Update to 2.19.5
2007-08-09 17:00:33 +00:00
* Thu Aug 9 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.4-4
- Hide it from the menus again
2007-08-06 05:33:21 +00:00
* Mon Aug 6 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.4-3
- Update license field
- Use %%find_lang for help files, too
2007-07-25 01:00:19 +00:00
* Tue Jul 24 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.4-2
- Fix a undefined macro use (#248689)
2007-07-10 14:55:11 +00:00
* Tue Jul 10 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.4-1
- Update to 2.19.4
2007-07-07 03:32:15 +00:00
* Fri Jul 6 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.3-2
- Fix a directory ownership issue
2007-06-05 03:08:55 +00:00
* Mon Jun 4 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.3-1
- Update to 2.19.3
2007-05-20 00:22:04 +00:00
* Sat May 19 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.2-1
- Update to 2.19.2
2007-05-20 01:36:45 +00:00
- Split off a -devel package
2007-05-20 00:22:04 +00:00
- Small spec fixes
2007-05-20 00:23:49 +00:00
* Sun Apr 1 2007 Matthias Clasen <mclasen@redhat.com> - 2.18.0.1-27
2007-04-01 14:47:10 +00:00
- Fix a problem with the svgz patch
2007-03-13 04:00:12 +00:00
* Tue Mar 13 2007 Matthias Clasen <mclasen@redhat.com> - 2.18.0.1-1
- Update to 2.18.0.1
2007-02-27 17:02:18 +00:00
* Tue Feb 27 2007 Matthias Clasen <mclasen@redhat.com> - 2.17.92-1
- Update to 2.17.92
2007-02-13 04:58:53 +00:00
* Tue Feb 13 2007 Matthias Clasen <mclasen@redhat.com> - 2.17.91-1
- Update to 2.17.91
2007-01-22 21:02:30 +00:00
* Mon Jan 22 2007 Matthias Clasen <mclasen@redhat.com> - 2.17.90-1
- Update to 2.17.90
2007-01-10 17:46:36 +00:00
* Wed Jan 10 2007 Matthias Clasen <mclasen@redhat.com> - 2.17.4-1
- Update to 2.17.4
* Tue Jan 09 2007 Behdad Esfahbod <besfahbo@redhat.com> - 2.17.3-2
- Handle svgz images
- Resolves: #219782
2006-12-19 21:31:23 +00:00
* Tue Dec 19 2006 Matthias Clasen <mclasen@redhat.com> - 2.17.3-1
- Update to 2.17.3
2006-12-05 07:04:33 +00:00
* Tue Dec 5 2006 Matthias Clasen <mclasen@redhat.com> - 2.17.2-1
- Update to 2.17.2
2006-10-21 02:28:10 +00:00
* Fri Oct 20 2006 Matthias Clasen <mclasen@redhat.com> - 2.17.1-1
- Update to 2.17.1
2006-10-18 16:48:17 +00:00
* Wed Oct 18 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.0.1-3
- Fix scripts according to the packaging guidelines
2006-09-08 03:46:54 +00:00
* Thu Sep 7 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.0.1-2.fc6
- Fix some directory ownership issues
2006-09-05 00:06:22 +00:00
* Mon Sep 4 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.0.1-1.fc6
- Update to 2.16.0.1
2006-08-21 18:49:36 +00:00
* Mon Aug 21 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.92-1.fc6
- Update to 2.15.92
2006-08-12 23:25:59 +00:00
* Sat Aug 12 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.91-1.fc6
- Update to 2.15.91
2006-08-03 02:18:00 +00:00
* Wed Aug 2 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.90-1.fc6
- Update to 2.15.90
2006-07-12 18:40:45 +00:00
* Wed Jul 12 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.4-1
- Update to 2.15.4
2006-07-12 05:44:53 +00:00
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.15.3-1.1
- rebuild
2006-06-13 04:23:13 +00:00
* Tue Jun 13 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.3-1
- Update to 2.15.3
2006-05-23 02:27:03 +00:00
* Mon May 22 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.2-1
2006-05-23 02:24:41 +00:00
- Update to 2.15.2
2006-05-21 03:52:05 +00:00
* Sat May 20 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.1-2
- Add missing BuildRequires (#129025)
2006-05-09 16:56:22 +00:00
* Tue May 9 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.1-1
- Update to 2.15.1
2006-05-09 17:25:42 +00:00
- Remove workaround for a long-fixed bug
2006-05-09 16:56:22 +00:00
2006-04-11 04:17:02 +00:00
* Mon Apr 10 2006 Matthias Clasen <mclasen@redhat.com> - 2.14.1-2
- Update to 2.14.1
2006-03-13 21:16:29 +00:00
* Mon Mar 13 2006 Matthias Clasen <mclasen@redhat.com> - 2.14.0-1
- Update to 2.14.0
2006-03-04 05:40:44 +00:00
* Sat Mar 4 2006 Matthias Clasen <mclasen@redhat.com> - 2.13.92-1
- Update to 2.13.92
- Drop upstreamed patch
2006-02-16 03:32:24 +00:00
* Wed Feb 15 2006 Matthias Clasen <mclasen@redhat.com> - 2.13.91-2
- silence excessive debug output
2006-02-15 06:35:37 +00:00
* Wed Feb 15 2006 Matthias Clasen <mclasen@redhat.com> - 2.13.91-1
- Update to 2.13.91
2006-02-13 15:48:07 +00:00
* Mon Feb 13 2006 Matthias Clasen <mclasen@redhat.com> - 2.13.90-2
- Append NoDisplay=true to the right file
2006-02-11 02:38:18 +00:00
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.13.90-1.2
- bump again for double-long bug on ppc(64)
2006-02-07 11:30:02 +00:00
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.13.90-1.1
- rebuilt for new gcc4.1 snapshot and glibc changes
2006-01-30 20:33:19 +00:00
* Mon Jan 30 2006 Matthias Clasen <mclasen@redhat.com> 2.13.90-1
- Update to 2.13.90
2006-01-17 03:46:37 +00:00
* Mon Jan 16 2006 Matthias Clasen <mclasen@redhat.com> 2.13.5-1
- Update to 2.13.5
2006-01-13 18:07:16 +00:00
* Fri Jan 13 2006 Matthias Clasen <mclasen@redhat.com> 2.13.4-1
2006-01-13 18:06:13 +00:00
- Update to 2.13.4
2005-12-14 20:47:45 +00:00
* Wed Dec 14 2005 Matthias Clasen <mclasen@redhat.com> 2.13.3-1
- Update to 2.13.3
2005-12-09 22:40:19 +00:00
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
- rebuilt
2005-11-30 18:06:10 +00:00
* Wed Nov 30 2005 Matthias Clasen <mclasen@redhat.com> 2.13.2-1
- Update to 2.13.2
2005-10-06 04:36:16 +00:00
* Thu Oct 6 2005 Matthias Clasen <mclasen@redhat.com> 2.12.1-1
- Update to 2.12.1
2005-09-07 18:38:18 +00:00
* Wed Sep 7 2005 Matthias Clasen <mclasen@redhat.com> 2.12.0-1
- Update to 2.12.0
2005-08-16 16:54:00 +00:00
* Tue Aug 16 2005 Matthias Clasen <mclasen@redhat.com>
- Rebuilt
2005-08-04 17:33:01 +00:00
* Thu Aug 4 2005 Matthias Clasen <mclasen@redhat.com> 2.11.90-1
- Newer upstream version
2005-07-08 17:37:19 +00:00
* Fri Jul 8 2005 Matthias Clasen <mclasen@redhat.com> 2.11.0-1
- Update to 2.11.0
2005-03-29 03:12:26 +00:00
* Mon Mar 28 2005 Matthias Clasen <mclasen@redhat.com> 2.10.0-1
- Update to 2.10.0
2005-03-03 15:07:56 +00:00
* Thu Mar 3 2005 Marco Pesenti Gritti <mpg@redhat.com> 2.9.0-2
- Rebuild
2005-01-31 05:11:44 +00:00
* Mon Jan 31 2005 Matthias Clasen <mclasen@redhat.com> 2.9.0-1
- Update to 2.9.0
2004-11-06 13:03:45 +00:00
* Sat Nov 6 2004 Marco Pesenti Gritti <mpg@redhat.com> 2.8.1-1
- Update to 2.8.1
* Thu Sep 30 2004 Christopher Aillon <caillon@redhat.com> 2.8.0-3
- Prereq desktop-file-utils >= 0.9
- update-desktop-database on uninstall
* Sun Sep 26 2004 Christopher Aillon <caillon@redhat.com> 2.8.0-2
- Remove the graphics menu entry (#131724)
2004-09-22 09:29:18 +00:00
* Wed Sep 22 2004 Christopher Aillon <caillon@redhat.com> 2.8.0-1
- Update to 2.8.0
* Wed Aug 19 2004 Christopher Aillon <caillon@redhat.com> 2.7.1-1
- Update to 2.7.1
* Mon Aug 16 2004 Christopher Aillon <caillon@redhat.com> 2.7.0-3
- Use update-desktop-database instead of rebuild-mime-info-cache
* Sun Aug 15 2004 Christopher Aillon <caillon@redhat.com> 2.7.0-2
- Rebuild MIME info cache
* Sun Aug 15 2004 Christopher Aillon <caillon@redhat.com> 2.7.0-1
- Update to 2.7.0
* Tue Jun 29 2004 Christopher Aillon <caillon@redhat.com> 2.6.1-1
- Update to 2.6.1
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
- rebuilt
* Sat Apr 10 2004 Warren Togami <wtogami@redhat.com> 2.6.0-2
- BR intltool libjpeg-devel scrollkeeper gettext
* Fri Apr 2 2004 Alex Larsson <alexl@redhat.com> 2.6.0-1
- update to 2.6.0
* Wed Mar 10 2004 Alex Larsson <alexl@redhat.com> 2.5.90-1
- update to 2.5.90
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
- rebuilt
* Thu Feb 26 2004 Alexander Larsson <alexl@redhat.com> 2.5.6-1
- update to 2.5.6
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
- rebuilt
* Fri Jan 30 2004 Alexander Larsson <alexl@redhat.com> 2.5.3-1
- update to 2.5.3
* Fri Oct 3 2003 Alexander Larsson <alexl@redhat.com> 2.4.0-1
- 2.4.0
* Fri Aug 29 2003 Alexander Larsson <alexl@redhat.com> 2.3.5-2
- prereq gconf2 (#90698)
* Tue Aug 19 2003 Alexander Larsson <alexl@redhat.com> 2.3.5-1
- update for gnome 2.3
* Tue Jul 29 2003 Havoc Pennington <hp@redhat.com> 2.2.2-2
- rebuild
* Mon Jul 7 2003 Havoc Pennington <hp@redhat.com> 2.2.2-1
- 2.2.2
- remove arg-escaping patch now upstream
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
- rebuilt
* Tue Apr 1 2003 Havoc Pennington <hp@redhat.com> 2.2.0-2
- add patch to better escape filenames passed in as arguments
- add eel2-devel buildreq
* Thu Feb 6 2003 Havoc Pennington <hp@redhat.com> 2.2.0-1
- 2.2.0
- fix dependency versions
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
- rebuilt
* Fri Dec 13 2002 Tim Powers <timp@redhat.com> 1.1.3-1
- update to 1.1.3
- include glade file
* Sun Dec 1 2002 Havoc Pennington <hp@redhat.com>
- 1.1.2
* Tue Aug 6 2002 Havoc Pennington <hp@redhat.com>
- 1.0.2
- remove --copy-generic-name-to-name because there's no GenericName
anymore
- include libexecdir stuff
* Mon Jul 29 2002 Havoc Pennington <hp@redhat.com>
- copy generic name to name and move to -Extra
* Mon Jul 29 2002 Havoc Pennington <hp@redhat.com>
- 1.0.1, rebuild with new gail
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
- automated rebuild
* Sun Jun 16 2002 Havoc Pennington <hp@redhat.com>
- 1.0.0
- use desktop-file-install
* Fri Jun 07 2002 Havoc Pennington <hp@redhat.com>
- rebuild in different environment
* Wed Jun 05 2002 Havoc Pennington <hp@redhat.com>
- rebuild in different environment
* Sun May 26 2002 Tim Powers <timp@redhat.com>
- automated rebuild
* Tue May 21 2002 Havoc Pennington <hp@redhat.com>
- rebuild in different environment
- build requires libgnomeprint
* Tue May 21 2002 Havoc Pennington <hp@redhat.com>
- 0.118.0
* Fri May 3 2002 Havoc Pennington <hp@redhat.com>
- 0.117.0
* Thu Apr 25 2002 Havoc Pennington <hp@redhat.com>
- initial build