Blame SPECS/shared-mime-info.spec

55ed9a
Summary: Shared MIME information database
55ed9a
Name: shared-mime-info
55ed9a
Version: 1.8
55ed9a
Release: 4%{?dist}
55ed9a
License: GPLv2+
55ed9a
Group: System Environment/Base
55ed9a
URL: http://freedesktop.org/Software/shared-mime-info
55ed9a
Source0: http://people.freedesktop.org/~hadess/%{name}-%{version}.tar.xz
55ed9a
Source1: gnome-mimeapps.list
55ed9a
# Generated with:
55ed9a
# for i in `cat /home/hadess/Projects/jhbuild/totem/data/mime-type-list.txt | grep -v audio/flac | grep -v ^#` ; do if grep MimeType /home/hadess/Projects/jhbuild/rhythmbox/data/rhythmbox.desktop.in.in | grep -q "$i;" ; then echo "$i=rhythmbox.desktop;org.gnome.Totem.desktop;" >> totem-defaults.list ; else echo "$i=org.gnome.Totem.desktop;" >> totem-defaults.list ; fi ; done ; for i in `cat /home/hadess/Projects/jhbuild/totem/data/uri-schemes-list.txt | grep -v ^#` ; do echo "x-scheme-handler/$i=org.gnome.Totem.desktop;" >> totem-defaults.list ; done
55ed9a
Source2: totem-defaults.list
55ed9a
# Generated with:
55ed9a
# for i in `grep MimeType= /usr/share/applications/org.gnome.FileRoller.desktop | sed 's/MimeType=//' | sed 's/;/ /g'` application/x-source-rpm ; do if ! `grep -q $i defaults.list` ; then echo $i=org.gnome.FileRoller.desktop\; >> file-roller-defaults.list ; fi ; done
55ed9a
Source3: file-roller-defaults.list
55ed9a
# Generated with:
55ed9a
# for i in `grep MimeType= /usr/share/applications/eog.desktop | sed 's/MimeType=//' | sed 's/;/ /g'` ; do echo $i=eog.desktop\; >> eog-defaults.list ; done
55ed9a
Source4: eog-defaults.list
55ed9a
55ed9a
# Work-around for https://bugs.freedesktop.org/show_bug.cgi?id=40354
55ed9a
Patch0: 0001-Remove-sub-classing-from-OO.o-mime-types.patch
55ed9a
55ed9a
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
55ed9a
BuildRequires:  libxml2-devel
55ed9a
BuildRequires:  glib2-devel
55ed9a
BuildRequires:  gettext
55ed9a
# For intltool:
55ed9a
BuildRequires: perl(XML::Parser) intltool
55ed9a
55ed9a
Requires(post): glib2
55ed9a
Requires(post): coreutils
55ed9a
55ed9a
# Disable pkgconfig autodep
55ed9a
%global __requires_exclude ^/usr/bin/pkg-config$
55ed9a
55ed9a
%description
55ed9a
This is the freedesktop.org shared MIME info database.
55ed9a
55ed9a
Many programs and desktops use the MIME system to represent the types of
55ed9a
files. Frequently, it is necessary to work out the correct MIME type for
55ed9a
a file. This is generally done by examining the file's name or contents,
55ed9a
and looking up the correct MIME type in a database.
55ed9a
55ed9a
%prep
55ed9a
%autosetup
55ed9a
55ed9a
%build
55ed9a
%configure --disable-silent-rules --disable-update-mimedb
55ed9a
# not smp safe, pretty small package anyway
55ed9a
make
55ed9a
55ed9a
%install
55ed9a
# speed build a bit
55ed9a
PKGSYSTEM_ENABLE_FSYNC=0 \
55ed9a
make install DESTDIR=$RPM_BUILD_ROOT
55ed9a
55ed9a
find $RPM_BUILD_ROOT%{_datadir}/mime -type d \
55ed9a
| sed -e "s|^$RPM_BUILD_ROOT|%%dir |" > %{name}.files
55ed9a
find $RPM_BUILD_ROOT%{_datadir}/mime -type f -not -path "*/packages/*" \
55ed9a
| sed -e "s|^$RPM_BUILD_ROOT|%%ghost |" >> %{name}.files
55ed9a
55ed9a
mkdir -p $RPM_BUILD_ROOT/%{_datadir}/applications
55ed9a
install -m 644 %SOURCE1 $RPM_BUILD_ROOT/%{_datadir}/applications/gnome-mimeapps.list
55ed9a
cat %SOURCE2 >> $RPM_BUILD_ROOT/%{_datadir}/applications/gnome-mimeapps.list
55ed9a
cat %SOURCE3 >> $RPM_BUILD_ROOT/%{_datadir}/applications/gnome-mimeapps.list
55ed9a
cat %SOURCE4 >> $RPM_BUILD_ROOT/%{_datadir}/applications/gnome-mimeapps.list
55ed9a
55ed9a
# Support fallback/generic mimeapps.list (currently based on gnome-mimeapps.list), see
55ed9a
# https://lists.fedoraproject.org/pipermail/devel/2015-July/212403.html
55ed9a
# https://bugzilla.redhat.com/show_bug.cgi?id=1243049
55ed9a
cp $RPM_BUILD_ROOT%{_datadir}/applications/gnome-mimeapps.list \
55ed9a
   $RPM_BUILD_ROOT%{_datadir}/applications/mimeapps.list
55ed9a
55ed9a
## remove bogus translation files
55ed9a
## translations are already in the xml file installed
55ed9a
rm -rf $RPM_BUILD_ROOT%{_datadir}/locale/*
55ed9a
55ed9a
55ed9a
%post
55ed9a
/bin/touch --no-create %{_datadir}/mime/packages &>/dev/null ||:
55ed9a
55ed9a
%posttrans
55ed9a
%{_bindir}/update-mime-database %{?fedora:-n} %{_datadir}/mime &> /dev/null ||:
55ed9a
55ed9a
%files -f %{name}.files
55ed9a
%{!?_licensedir:%global license %%doc}
55ed9a
%license COPYING
55ed9a
%doc README NEWS HACKING shared-mime-info-spec.xml
55ed9a
%{_bindir}/*
55ed9a
%{_datadir}/mime/packages/*
55ed9a
%{_datadir}/applications/mimeapps.list
55ed9a
%{_datadir}/applications/gnome-mimeapps.list
55ed9a
# better to co-own this dir than to pull in pkgconfig
55ed9a
%dir %{_datadir}/pkgconfig
55ed9a
%{_datadir}/pkgconfig/shared-mime-info.pc
55ed9a
%{_mandir}/man*/*
55ed9a
55ed9a
%changelog
55ed9a
* Wed Sep 20 2017 Bastien Nocera <bnocera@redhat.com> - 1.8-4
55ed9a
+ shared-mime-info-1.8-4
55ed9a
- Fix CSV files being associated with LibreOffice Math instead
55ed9a
  of LibreOffice Calc
55ed9a
- Resolves: #1438589
55ed9a
55ed9a
* Wed Mar 22 2017 Bastien Nocera <bnocera@redhat.com> - 1.8-3
55ed9a
+ shared-mime-info-1.8-3
55ed9a
- Remove triggers, they're not supported in RHEL 7.4's RPM
55ed9a
Resolves: #1433916
55ed9a
55ed9a
* Wed Mar 01 2017 Bastien Nocera <bnocera@redhat.com> - 1.8-2
55ed9a
+ shared-mime-info-1.8-2
55ed9a
- Rebase to 1.8
55ed9a
Resolves: #1387045
55ed9a
55ed9a
* Fri Jul 17 2015 Matthias Clasen <mclasen@redhat.com> 1.1-9
55ed9a
- Add support for raw disk images
55ed9a
  Related: #1211198
55ed9a
55ed9a
* Tue Jun 30 2015 Ray Strode <rstrode@redhat.com> 1.1-8
55ed9a
- Update default file assocations to match rebased names
55ed9a
  Resolves: #1235413
55ed9a
55ed9a
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 1.1-7
55ed9a
- Mass rebuild 2014-01-24
55ed9a
55ed9a
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1.1-6
55ed9a
- Mass rebuild 2013-12-27
55ed9a
55ed9a
* Sat Jun  8 2013 Matthias Clasen <mclasen@redhat.com> - 1.1-5
55ed9a
- Drop pkgconfig dep, instead co-own /usr/share/pkgconfig
55ed9a
55ed9a
* Thu Feb 21 2013 Kalev Lember <kalevlember@gmail.com> - 1.1-4
55ed9a
- Update for file-roller desktop file vendor prefix removal
55ed9a
55ed9a
* Thu Feb 21 2013 Kalev Lember <kalevlember@gmail.com> - 1.1-3
55ed9a
- Update for eog desktop file vendor prefix removal
55ed9a
55ed9a
* Sun Feb 17 2013 Christoph Wickert <cwickert@fedoraproject.org> - 1.1-2
55ed9a
- De-vendorize defaults.list (https://fedorahosted.org/fesco/ticket/1077)
55ed9a
55ed9a
* Wed Feb 13 2013 Bastien Nocera <bnocera@redhat.com> 1.1-1
55ed9a
- Update to 1.1
55ed9a
55ed9a
* Fri Nov 30 2012 Bastien Nocera <bnocera@redhat.com> 1.0-6
55ed9a
- Open src.rpm files in file-roller instead of PackageKit
55ed9a
55ed9a
* Mon Nov 05 2012 Bastien Nocera <bnocera@redhat.com> 1.0-6
55ed9a
- Rebuild file-roller's default list
55ed9a
55ed9a
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0-5
55ed9a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
55ed9a
55ed9a
* Tue May 22 2012 Rex Dieter <rdieter@fedoraproject.org> 
55ed9a
- 1.0-4
55ed9a
- defaults.list: s/mozilla-firefox/firefox/ (see #736558)
55ed9a
- defaults.list: s/gpk-install-file/gpk-install-local-file/
55ed9a
- defaults.list: application/x-catalog=gpk-install-catalog.desktop (#770019) 
55ed9a
55ed9a
* Fri May 11 2012 Bastien Nocera <bnocera@redhat.com> 1.0-3
55ed9a
- Use gnome-disk-image-mounter from gnome-disk-utility to handle
55ed9a
  CD images by default (#820403)
55ed9a
55ed9a
* Wed Mar  7 2012 Matthias Clasen <mclasen@redhat.com> - 1.0-2
55ed9a
- Own/%%ghost files generated by update-mime-database from
55ed9a
  freedesktop.org.xml (patch by Ville Skyttä, #716451))
55ed9a
55ed9a
* Tue Jan 17 2012 Bastien Nocera <bnocera@redhat.com> 1.0-1
55ed9a
- Update to 1.0
55ed9a
55ed9a
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.91-7
55ed9a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
55ed9a
55ed9a
* Mon Nov 21 2011 Jon Masters <jcm@jonmasters.org> 0.91-6
55ed9a
- Fix interpretation of MP3 files as application/x-designer (#755472)
55ed9a
55ed9a
* Mon Oct 24 2011 Rex Dieter <rdieter@fedoraproject.org> 0.91-5
55ed9a
- s/mozilla-firefox.desktop/firefox.desktop/ (f17+, #736558)
55ed9a
55ed9a
* Thu Oct 13 2011 Bastien Nocera <bnocera@redhat.com> 0.91-4
55ed9a
- Make Evolution the default calendar (and not Gedit...)
55ed9a
55ed9a
* Thu Oct 13 2011 Bastien Nocera <bnocera@redhat.com> 0.91-3
55ed9a
- Make shotwell the default for camera roll handling
55ed9a
- Make shotwell-viewer the default image viewer (for the
55ed9a
  image types it handles)
55ed9a
- Prefer Rhythmbox to Totem for music files
55ed9a
55ed9a
* Sun Sep 18 2011 Bastien Nocera <bnocera@redhat.com> 0.91-2
55ed9a
- Fix changelog entries
55ed9a
55ed9a
* Sun Sep 18 2011 Bastien Nocera <bnocera@redhat.com> 0.91-1
55ed9a
- Update to 0.91
55ed9a
55ed9a
* Thu Aug 25 2011 Bastien Nocera <bnocera@redhat.com> 0.90-9
55ed9a
- Never try to load OO.o files in file-roller
55ed9a
55ed9a
* Thu May 26 2011 Bastien Nocera <bnocera@redhat.com> 0.90-8
55ed9a
- Fix LibreOffice associations (patch from Caolan McNamara, #707971)
55ed9a
55ed9a
* Thu Apr 21 2011 Bastien Nocera <bnocera@redhat.com> 0.90-7
55ed9a
- Fix name of nautilus.desktop file (#698502)
55ed9a
55ed9a
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.90-6
55ed9a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
55ed9a
55ed9a
* Thu Dec 16 2010 Bastien Nocera <bnocera@redhat.com> 0.90-5
55ed9a
- Auto-generate file-roller's bindings as well
55ed9a
55ed9a
* Wed Dec 08 2010 Bastien Nocera <bnocera@redhat.com> 0.90-4
55ed9a
- Update defaults.list and update for newer desktop names,
55ed9a
  with help from Edward Sheldrake (#659457)
55ed9a
55ed9a
* Tue Dec 07 2010 Bastien Nocera <bnocera@redhat.com> 0.90-3
55ed9a
- Add Firefox as the default for application/xhtml+xml
55ed9a
  (#660657)
55ed9a
55ed9a
* Wed Dec 01 2010 Bastien Nocera <bnocera@redhat.com> 0.90-2
55ed9a
- Update list of defaults, adding new mime-types for Totem,
55ed9a
  as well as scheme handlers, and install defaults for
55ed9a
  Evolution and Firefox
55ed9a
55ed9a
* Wed Dec 01 2010 Bastien Nocera <bnocera@redhat.com> 0.90-1
55ed9a
- Update to 0.90
55ed9a
55ed9a
* Thu Nov  4 2010 Tom "spot" Callaway <tcallawa@redhat.com> 0.80-2
55ed9a
- rebuild for new libxml
55ed9a
55ed9a
* Thu Sep 30 2010 Bastien Nocera <bnocera@redhat.com> 0.80-1
55ed9a
- Update to 0.80
55ed9a
55ed9a
* Tue Jul  6 2010 Colin Walters <walters@verbum.org> - 0.71-4
55ed9a
- Fix previous change to be Requires(post); spotted by
55ed9a
  Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp>
55ed9a
55ed9a
* Sat Jul  3 2010 Colin Walters <walters@verbum.org> - 0.71-3
55ed9a
- Requires(pre) on glib, since update-mime-database uses it
55ed9a
- Remove /dev/null redirection, we should see future errors
55ed9a
  And really, RPM is dumb here - this stuff needs to go to
55ed9a
  log files.
55ed9a
55ed9a
* Tue Jun 01 2010 Bastien Nocera <bnocera@redhat.com> 0.71-2
55ed9a
- Update some OO.o defaults, patch from Caolan McNamara
55ed9a
55ed9a
* Mon Feb 01 2010 Bastien Nocera <bnocera@redhat.com> 0.71-1
55ed9a
- Update to 0.71
55ed9a
55ed9a
* Tue Oct 06 2009 Bastien Nocera <bnocera@redhat.com> 0.70-1
55ed9a
- Update to 0.70
55ed9a
55ed9a
* Thu Sep 24 2009 - Caolán McNamara <caolanm@redhat.com> - 0.60-5
55ed9a
- Resolves: rhbz#508559 openoffice.org desktop files changed name
55ed9a
55ed9a
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.60-4
55ed9a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
55ed9a
55ed9a
* Wed Mar 04 2009 - Bastien Nocera <bnocera@redhat.com> - 0.60-3
55ed9a
- Remove Totem as handling Blu-ray and HD-DVD
55ed9a
- Use brasero-ncb.desktop instead of nautilus-cd-burner for blank devices
55ed9a
- Update media mime-types for Rhythmbox/Totem
55ed9a
55ed9a
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.60-2
55ed9a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
55ed9a
55ed9a
* Sat Feb 21 2009 - Bastien Nocera <bnocera@redhat.com> - 0.60-1
55ed9a
- Update to 0.60
55ed9a
55ed9a
* Mon Dec 15 2008 - Bastien Nocera <bnocera@redhat.com> - 0.51-6
55ed9a
- Update with comments from Orcan Ogetbil <orcanbahri@yahoo.com>
55ed9a
55ed9a
* Wed Nov 26 2008 - Julian Sikorski <belegdol[at]gmail[dot]com> - 0.51-5
55ed9a
- Fix text/plain, gedit installs gedit.desktop and not gnome-gedit.desktop
55ed9a
55ed9a
* Wed Oct 29 2008 - Bastien Nocera <bnocera@redhat.com> - 0.51-4
55ed9a
- Add patch to avoid picture CD being anything with a pictures directory
55ed9a
  (#459365)
55ed9a
55ed9a
* Thu Oct 02 2008 - Bastien Nocera <bnocera@redhat.com> - 0.51-3
55ed9a
- Use evince, not tetex-xdvi.desktop for DVI files (#465242)
55ed9a
55ed9a
* Mon Sep 01 2008 - Bastien Nocera <bnocera@redhat.com> - 0.51-2
55ed9a
- Use Firefox and not redhat-web as the default app for HTML files (#452184)
55ed9a
55ed9a
* Wed Jul 23 2008 - Bastien Nocera <bnocera@redhat.com> - 0.51-1
55ed9a
- Update to 0.51
55ed9a
55ed9a
* Tue Jul 22 2008 - Bastien Nocera <bnocera@redhat.com> - 0.50-1
55ed9a
- Update to 0.50
55ed9a
55ed9a
* Sat Jun 14 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.40-2
55ed9a
- update license tag
55ed9a
55ed9a
* Wed Jun 11 2008 - Bastien Nocera <bnocera@redhat.com> - 0.40-1
55ed9a
- Update to 0.40
55ed9a
55ed9a
* Mon May 12 2008 - Bastien Nocera <bnocera@redhat.com> - 0.30-1
55ed9a
- Update to 0.30
55ed9a
55ed9a
* Fri May  2 2008 David Zeuthen <davidz@redhat.com> - 0.23-9
55ed9a
- Fix defaults for x-content/image-dcf (#445032)
55ed9a
55ed9a
* Thu Apr 17 2008 Matthias Clasen <mclasen@redhat.com> - 0.23-8
55ed9a
- Make mount-archive.desktop the default for iso images (#442960)
55ed9a
55ed9a
* Tue Apr 15 2008 Matthias Clasen <mclasen@redhat.com> - 0.23-7
55ed9a
- Update the desktop file name for Gimp, too
55ed9a
55ed9a
* Tue Apr 15 2008 Matthias Clasen <mclasen@redhat.com> - 0.23-6
55ed9a
- Change default for rpm to gpk-install-file (#442485)
55ed9a
55ed9a
* Thu Mar 27 2008 - Bastien Nocera <bnocera@redhat.com> - 0.23-5
55ed9a
- Make Totem the default for the mime-types it handles (#366101)
55ed9a
- And make sure Rhythmbox is the second default only for the mime-types
55ed9a
  it handles
55ed9a
55ed9a
* Thu Mar 20 2008 Matthias Clasen <mclasen@redhat.com> - 0.23-4
55ed9a
- Change default for rpm to pk-install-file
55ed9a
55ed9a
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.23-3
55ed9a
- Autorebuild for GCC 4.3
55ed9a
55ed9a
* Fri Jan 18 2008 Matthias Clasen <mclasen@redhat.com> - 0.23-2
55ed9a
- Add defaults for content types
55ed9a
55ed9a
* Tue Dec 18 2007 - Bastien Nocera <bnocera@redhat.com> - 0.23-1
55ed9a
- Update to 0.23
55ed9a
55ed9a
* Tue Nov 13 2007 - Bastien Nocera <bnocera@redhat.com> - 0.22-5
55ed9a
- Remove Totem as the default music/movie player, it will be the
55ed9a
  default for movies, as only it handles them, and Rhythmbox can
55ed9a
  handle missing plugins now
55ed9a
55ed9a
* Mon Nov 05 2007 - Bastien Nocera <bnocera@redhat.com> - 0.22-4
55ed9a
- Make Totem the default for the mime-types it handles (#366101)
55ed9a
55ed9a
* Fri Aug 24 2007 Adam Jackson <ajax@redhat.com> - 0.22-3
55ed9a
- Rebuild for PPC toolchain bug
55ed9a
- BuildRequires: gawk
55ed9a
55ed9a
* Tue Aug 21 2007 - Bastien Nocera <bnocera@redhat.com> - 0.22-2
55ed9a
- Don't say that webcal files are handled by evolution-2.0, it can't
55ed9a
- Disable vCard mapping as well, as evolution doesn't handle it
55ed9a
  (See http://bugzilla.gnome.org/show_bug.cgi?id=309073)
55ed9a
55ed9a
* Mon Jul 30 2007 - Bastien Nocera <bnocera@redhat.com> - 0.22-1
55ed9a
- Update to 0.22
55ed9a
55ed9a
* Tue Apr 17 2007 - Bastien Nocera <bnocera@redhat.com> - 0.20-2
55ed9a
- Fix the dia association (#194313)
55ed9a
55ed9a
* Tue Feb 06 2007 - Bastien Nocera <bnocera@redhat.com> - 0.20-1
55ed9a
- Update to 0.20, and remove outdated patches
55ed9a
55ed9a
* Fri Nov 10 2006 Christopher Aillon <caillon@redhat.com> - 0.19-2
55ed9a
- Alias image/pdf to application/pdf
55ed9a
55ed9a
* Fri Aug 25 2006 Christopher Aillon <caillon@redhat.com> - 0.19-1
55ed9a
- Update to 0.19
55ed9a
55ed9a
* Wed Jul 26 2006 Matthias Clasen <mclasen@redhat.com> - 0.18-2
55ed9a
- add an inode/directory entry to defaults.list (#187021)
55ed9a
55ed9a
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.18-1.1
55ed9a
- rebuild
55ed9a
55ed9a
* Wed Jul  5 2006 Kristian Høgsberg <krh@redhat.com> - 0.18-1
55ed9a
- Update to 0.18 and drop backported patches.
55ed9a
55ed9a
* Thu Jun 29 2006 Kristian Høgsberg <krh@redhat.com> - 0.17-3
55ed9a
- Adding PDF fix backported from CVS.
55ed9a
55ed9a
* Wed Mar 22 2006 Matthias Clasen <mclasen@redhat.com> - 0.17-2
55ed9a
- Backport upstream change to fix postscript vs. matlab confusion
55ed9a
55ed9a
* Thu Mar 16 2006 Matthias Clasen <mclasen@redhat.com> - 0.17-1
55ed9a
- Update to 0.17
55ed9a
55ed9a
* Mon Feb 13 2006 Ray Strode <rstrode@redhat.com> - 0.16.cvs20060212-3
55ed9a
- add gthumb as fallback
55ed9a
55ed9a
* Mon Feb 13 2006 Ray Strode <rstrode@redhat.com> - 0.16.cvs20060212-2
55ed9a
- make eog the default image viewer
55ed9a
55ed9a
* Sun Feb 12 2006 Christopher Aillon <caillon@redhat.com> - 0.16.cvs20060212-1
55ed9a
- Newer CVS snapshot
55ed9a
55ed9a
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 0.16.cvs20051219-2.1
55ed9a
- rebuilt for new gcc4.1 snapshot and glibc changes
55ed9a
55ed9a
* Mon Jan 30 2006 Caolan McNamara <caolanm@redhat.com> - 0.16.cvs20051219-2
55ed9a
- rh#179138# add openoffice.org as preferred app for oasis formats 
55ed9a
55ed9a
* Mon Dec 19 2005 Matthias Clasen <mclasen@redhat.com> - 0.16.cvs20051219-1
55ed9a
- Newer cvs snapshot
55ed9a
55ed9a
* Fri Dec 16 2005 Jesse Keating <jkeating@redhat.com>
55ed9a
- rebuilt
55ed9a
55ed9a
* Thu Dec  1 2005 Matthias Clasen <mclasen@redhat.com> - 0.16.cvs20051201-1
55ed9a
- Incorporate upstream changes
55ed9a
55ed9a
* Wed Nov 02 2005 John (J5) Palmieri <johnp@redhat.com> - 0.16.cvs20051018-2
55ed9a
- Change all refs of eog to gthumb in defaults.list
55ed9a
55ed9a
* Tue Oct 18 2005 Matthias Clasen <mclasen@redhat.com> - 0.16.cvs20051018-1
55ed9a
- Incorporate upstream changes
55ed9a
55ed9a
* Wed Oct 12 2005 Matthias Clasen <mclasen@redhat.com> - 0.16-6
55ed9a
- Add glade to defaults.list
55ed9a
55ed9a
* Mon Oct  3 2005 Matthias Clasen <mclasen@redhat.com> - 0.16-5
55ed9a
- Make sure Type1 fonts are recognized as such (#160909)
55ed9a
55ed9a
* Fri Jun 17 2005 David Zeuthen <davidz@redhat.com> - 0.16-4
55ed9a
- Add MIME-types for .pcf Cisco VPN settings files (fdo #3560)
55ed9a
55ed9a
* Fri May 20 2005 Dan Williams <dcbw@redhat.com> - 0.16-3
55ed9a
- Update OpenOffice.org desktop file names. #155353
55ed9a
- WordPerfect default now OOo Writer, since Abiword is in Extras
55ed9a
55ed9a
* Sun Apr  3 2005 David Zeuthen <davidz@redhat.com> - 0.16-2
55ed9a
- Make Evince the default for application/pdf and application/postscript
55ed9a
- Remove remaining references to gnome-ggv (application/x-gzpostscript and
55ed9a
  image/x-eps) as this is no longer in the distribution
55ed9a
55ed9a
* Fri Apr  1 2005 David Zeuthen <davidz@redhat.com> - 0.16-1
55ed9a
- Update to upstream release 0.16
55ed9a
- Drop all patches as they are in the new upstream release
55ed9a
55ed9a
* Wed Mar  9 2005 David Zeuthen <davidz@redhat.com> - 0.15-11
55ed9a
- Add mimetypes for OOo2 (#150546)
55ed9a
55ed9a
* Mon Oct 18 2004 Alexander Larsson <alexl@redhat.com> - 0.15-10
55ed9a
- Fix for mime sniffing on big-endian
55ed9a
55ed9a
* Thu Oct 14 2004 Colin Walters <walters@redhat.com> - 0.15-9
55ed9a
- Handle renaming of hxplay.desktop to realplay.desktop
55ed9a
55ed9a
* Wed Oct 13 2004 Matthias Clasen <mclasen@redhat.com> - 0.15-8
55ed9a
- Handle XUL files. #134122
55ed9a
55ed9a
* Wed Oct 13 2004 Colin Walters <walters@redhat.com> - 0.15-7
55ed9a
- Make helix default for ogg and mp3, will switch wav/flac too 
55ed9a
  when support is added
55ed9a
55ed9a
* Wed Oct  6 2004 Alexander Larsson <alexl@redhat.com> - 0.15-6
55ed9a
- Change default pdf viewer to ggv
55ed9a
55ed9a
* Tue Sep  7 2004 Alexander Larsson <alexl@redhat.com> - 0.15-4
55ed9a
- Fixed evo desktop file reference in defaults.list
55ed9a
55ed9a
* Mon Sep  6 2004 Caolan McNamara <caolanm@redhat.com> - 0.15-3
55ed9a
- wpd can be opened in abiword, but not in openoffice.org (#114907)
55ed9a
55ed9a
* Fri Sep  3 2004 Alexander Larsson <alexl@redhat.com> - 0.15-2
55ed9a
- Add list of default apps (#131643)
55ed9a
55ed9a
* Mon Aug 30 2004 Jonathan Blandford <jrb@redhat.com> 0.15-1
55ed9a
- bump version
55ed9a
55ed9a
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
55ed9a
- rebuilt
55ed9a
55ed9a
* Mon Mar 22 2004 Alex Larsson <alexl@redhat.com> 0.14-1
55ed9a
- update to 0.14
55ed9a
55ed9a
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
55ed9a
- rebuilt
55ed9a
55ed9a
* Mon Jan 26 2004 Alexander Larsson <alexl@redhat.com> 0.13-1
55ed9a
- 0.13
55ed9a
55ed9a
* Fri Jan 16 2004 Alexander Larsson <alexl@redhat.com> mime-info
55ed9a
- Initial build.