Blame SPECS/shared-mime-info.spec

5a8e56
Summary: Shared MIME information database
5a8e56
Name: shared-mime-info
5a8e56
Version: 2.1
d0071d
Release: 5%{?dist}
5a8e56
License: GPLv2+
5a8e56
URL: http://freedesktop.org/Software/shared-mime-info
5a8e56
Source0: https://gitlab.freedesktop.org/xdg/shared-mime-info/uploads/0ee50652091363ab0d17e335e5e74fbe/shared-mime-info-2.1.tar.xz
5a8e56
5a8e56
Source1: mimeapps.list
5a8e56
5a8e56
%global xdgmime_commit de283fc430460b9b3a7e61432a6d273cd64cb102
5a8e56
# Tarball for https://gitlab.freedesktop.org/xdg/xdgmime/-/tree/%%{xdgmime_commit}
5a8e56
Source6: https://gitlab.freedesktop.org/xdg/xdgmime/-/archive/%{xdgmime_commit}/xdgmime-%{xdgmime_commit}.tar.bz2
5a8e56
5a8e56
# Work-around for https://bugs.freedesktop.org/show_bug.cgi?id=40354
5a8e56
Patch0: 0001-Remove-sub-classing-from-OO.o-mime-types.patch
d0071d
# Fix build with meson 0.60+
d0071d
Patch1: 0001-freedesktop_generate.sh-Don-t-hardcode-ninja.patch
d0071d
Patch2: 0002-meson-make-xmlto-optional-build-spec-only-if-found.patch
d0071d
Patch3: 0003-migrate-from-custom-itstool-to-builtin-msgfmt-for-cr.patch
5a8e56
5a8e56
BuildRequires:  gcc
5a8e56
BuildRequires:  libxml2-devel
5a8e56
BuildRequires:  xmlto
5a8e56
BuildRequires:  glib2-devel
5a8e56
BuildRequires:  gettext
5a8e56
BuildRequires:  itstool
5a8e56
BuildRequires:  make
5a8e56
BuildRequires:  meson
5a8e56
BuildRequires:  git-core
5a8e56
5a8e56
# Disable pkgconfig autodep
5a8e56
%global __requires_exclude ^/usr/bin/pkg-config$
5a8e56
5a8e56
%description
5a8e56
This is the freedesktop.org shared MIME info database.
5a8e56
5a8e56
Many programs and desktops use the MIME system to represent the types of
5a8e56
files. Frequently, it is necessary to work out the correct MIME type for
5a8e56
a file. This is generally done by examining the file's name or contents,
5a8e56
and looking up the correct MIME type in a database.
5a8e56
5a8e56
%prep
5a8e56
%autosetup -S git_am
5a8e56
tar xjf %SOURCE6
5a8e56
mv xdgmime-%{xdgmime_commit}/ xdgmime/
5a8e56
5a8e56
%build
5a8e56
%make_build -C xdgmime
5a8e56
# the updated mimedb is later owned as %%ghost to ensure proper file-ownership
5a8e56
# it also asserts it is possible to build it
5a8e56
%meson -Dupdate-mimedb=true -Dxdg-mime-path=./xdgmime/
5a8e56
%meson_build
5a8e56
5a8e56
%install
5a8e56
%meson_install
5a8e56
5a8e56
find $RPM_BUILD_ROOT%{_datadir}/mime -type d \
5a8e56
| sed -e "s|^$RPM_BUILD_ROOT|%%dir |" > %{name}.files
5a8e56
find $RPM_BUILD_ROOT%{_datadir}/mime -type f -not -path "*/packages/*" \
5a8e56
| sed -e "s|^$RPM_BUILD_ROOT|%%ghost |" >> %{name}.files
5a8e56
5a8e56
# Support fallback/generic mimeapps.list (currently based on an old version of
5a8e56
# gnome-mimeapps.list), see:
5a8e56
# https://lists.fedoraproject.org/pipermail/devel/2015-July/212403.html
5a8e56
# https://bugzilla.redhat.com/show_bug.cgi?id=1243049
5a8e56
mkdir -p $RPM_BUILD_ROOT/%{_datadir}/applications
5a8e56
install -m 644 %SOURCE1 $RPM_BUILD_ROOT/%{_datadir}/applications/mimeapps.list
5a8e56
5a8e56
## remove bogus translation files
5a8e56
## translations are already in the xml file installed
5a8e56
rm -rf $RPM_BUILD_ROOT%{_datadir}/locale/*
5a8e56
5a8e56
%check
5a8e56
%meson_test
5a8e56
5a8e56
%post
5a8e56
/bin/touch --no-create %{_datadir}/mime/packages &>/dev/null ||:
5a8e56
5a8e56
%transfiletriggerin -- %{_datadir}/mime
5a8e56
update-mime-database -n %{_datadir}/mime &> /dev/null ||:
5a8e56
5a8e56
%transfiletriggerpostun -- %{_datadir}/mime
5a8e56
update-mime-database -n %{_datadir}/mime &> /dev/null ||:
5a8e56
5a8e56
%files -f %{name}.files
5a8e56
%license COPYING
5a8e56
%doc README.md NEWS HACKING.md data/shared-mime-info-spec.xml
5a8e56
%{_bindir}/update-mime-database
5a8e56
%{_datadir}/mime/packages/*
5a8e56
%{_datadir}/applications/mimeapps.list
5a8e56
# better to co-own this dir than to pull in pkgconfig
5a8e56
%dir %{_datadir}/pkgconfig
5a8e56
%{_datadir}/pkgconfig/shared-mime-info.pc
5a8e56
%{_mandir}/man*/update-mime-database.*
5a8e56
%{_datadir}/gettext/its/shared-mime-info.its
5a8e56
%{_datadir}/gettext/its/shared-mime-info.loc
5a8e56
5a8e56
%changelog
d0071d
* Mon Nov 07 2022 Tomas Popela <tpopela@redhat.com> - 2.1-5
d0071d
- Fix build with a newer Meson (that we might rebase to)
d0071d
- Resolves: rhbz#2140541
d0071d
5a8e56
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 2.1-4
5a8e56
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
5a8e56
  Related: rhbz#1991688
5a8e56
5a8e56
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 2.1-3
5a8e56
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
5a8e56
5a8e56
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.1-2
5a8e56
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
5a8e56
5a8e56
* Mon Jan 04 2021 Miro Hrončok <mhroncok@redhat.com> - 2.1-1
5a8e56
- Update to 2.1
5a8e56
- Fixes: rhbz#1911850
5a8e56
5a8e56
* Sun Nov  8 2020 Miro Hrončok <mhroncok@redhat.com> - 2.0-5
5a8e56
- Own the generated files (as %%ghosts)
5a8e56
- Fixes: rhbz#1486468
5a8e56
5a8e56
* Tue Aug 25 2020 Bastien Nocera <bnocera@redhat.com> - 2.0-4
5a8e56
+ shared-mime-info-2.0-4
5a8e56
- Remove GNOME specific defaults apps list, move to gnome-desktop3
5a8e56
5a8e56
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.0-3
5a8e56
- Second attempt - Rebuilt for
5a8e56
  https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
5a8e56
5a8e56
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.0-2
5a8e56
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
5a8e56
5a8e56
* Wed May 06 2020 Bastien Nocera <bnocera@redhat.com> - 2.0-1
5a8e56
+ shared-mime-info-2.0-1
5a8e56
- Update to 2.0
5a8e56
5a8e56
* Tue May 05 2020 Bastien Nocera <bnocera@redhat.com> - 1.15-4
5a8e56
+ shared-mime-info-1.15-4
5a8e56
- Update mime defaults (eog, totem, evince, file-roller)
5a8e56
5a8e56
* Sun Mar 08 2020 Bastien Nocera <bnocera@redhat.com> - 1.15-3
5a8e56
+ shared-mime-info-1.15-3
5a8e56
- Update eog's defaults
5a8e56
5a8e56
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.15-2
5a8e56
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
5a8e56
5a8e56
* Tue Nov 05 2019 Bastien Nocera <bnocera@redhat.com> - 1.15-1
5a8e56
+ shared-mime-info-1.15-1
5a8e56
- Update to 1.15
5a8e56
5a8e56
* Fri Sep 20 2019 Bastien Nocera <bnocera@redhat.com> - 1.14-1
5a8e56
+ shared-mime-info-1.14-1
5a8e56
- Update to 1.14
5a8e56
- Update defaults.list
5a8e56
5a8e56
* Wed Sep 11 2019 Bastien Nocera <bnocera@redhat.com> - 1.13.1-1
5a8e56
+ shared-mime-info-1.13.1-1
5a8e56
- Update to 1.13.1
5a8e56
5a8e56
* Wed Sep 11 2019 Bastien Nocera <bnocera@redhat.com> - 1.13-1
5a8e56
+ shared-mime-info-1.13-1
5a8e56
- Update to 1.13
5a8e56
5a8e56
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.12-3
5a8e56
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
5a8e56
5a8e56
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.12-2
5a8e56
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
5a8e56
5a8e56
* Thu Jan 17 2019 Bastien Nocera <bnocera@redhat.com> - 1.12-1
5a8e56
+ shared-mime-info-1.12-1
5a8e56
- Update to 1.12
5a8e56
5a8e56
* Thu Jan 17 2019 Bastien Nocera <bnocera@redhat.com> - 1.11-1
5a8e56
+ shared-mime-info-1.11-1
5a8e56
- Update to 1.11
5a8e56
5a8e56
* Wed Dec 12 2018 Bastien Nocera <bnocera@redhat.com> - 1.10-4
5a8e56
+ shared-mime-info-1.10-4
5a8e56
- Add GNOME defaults for Evince
5a8e56
5a8e56
* Thu Oct 04 2018 Bastien Nocera <bnocera@redhat.com> - 1.10-3
5a8e56
+ shared-mime-info-1.10-3
5a8e56
- Update evince's desktop filename
5a8e56
5a8e56
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.10-2
5a8e56
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
5a8e56
5a8e56
* Thu Jun 28 2018 Bastien Nocera <bnocera@redhat.com> - 1.10-1
5a8e56
+ shared-mime-info-1.10-1
5a8e56
- Update to 1.10
5a8e56
5a8e56
* Wed Mar 07 2018 Rex Dieter <rdieter@fedoraproject.org> - 1.9-4
5a8e56
- BR: gcc, .spec cosmetics/cleanup
5a8e56
5a8e56
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.9-3
5a8e56
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
5a8e56
5a8e56
* Mon Feb 05 2018 Rex Dieter <rdieter@fedoraproject.org> - 1.9-2
5a8e56
- cleanup scriptlets
5a8e56
5a8e56
* Mon Sep 18 2017 Bastien Nocera <bnocera@redhat.com> - 1.9-1
5a8e56
+ shared-mime-info-1.9-1
5a8e56
- Update to 1.9
5a8e56
5a8e56
* Wed Sep 06 2017 Bastien Nocera <bnocera@redhat.com> - 1.8-6
5a8e56
+ shared-mime-info-1.8-6
5a8e56
- Update file-roller-defaults.list updates
5a8e56
5a8e56
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.8-5
5a8e56
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
5a8e56
5a8e56
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.8-4
5a8e56
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
5a8e56
5a8e56
* Tue Apr 11 2017 Bastien Nocera <bnocera@redhat.com> - 1.8-3
5a8e56
+ shared-mime-info-1.8-3
5a8e56
- Assign CSV files to LO Calc not Math
5a8e56
5a8e56
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.8-2
5a8e56
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
5a8e56
5a8e56
* Mon Dec 05 2016 Kalev Lember <klember@redhat.com> - 1.8-1
5a8e56
- Update to 1.8
5a8e56
5a8e56
* Mon Sep 05 2016 Bastien Nocera <bnocera@redhat.com> - 1.7-1
5a8e56
- Update to 1.7
5a8e56
5a8e56
* Sat Jun 04 2016 Bastien Nocera <bnocera@redhat.com> - 1.6-3
5a8e56
- Remove file-roller as handler for cbz/cbr files
5a8e56
  See https://bugzilla.gnome.org/show_bug.cgi?id=767244
5a8e56
5a8e56
* Sat Jun 04 2016 Bastien Nocera <bnocera@redhat.com> - 1.6-2
5a8e56
- Allow detecting multi-page DjVu files by filename
5a8e56
5a8e56
* Tue Feb 23 2016 Bastien Nocera <bnocera@redhat.com> 1.6-1
5a8e56
- Update to 1.6
5a8e56
5a8e56
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.5-3
5a8e56
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
5a8e56
5a8e56
* Thu Sep 24 2015 Rex Dieter <rdieter@fedoraproject.org> 1.5-2
5a8e56
- shared-mime-info requires /usr/bin/pkg-config (#1266089)
5a8e56
5a8e56
* Wed Sep 16 2015 Kalev Lember <klember@redhat.com> 1.5-1
5a8e56
- Update to 1.5
5a8e56
5a8e56
* Fri Aug 14 2015 Matthias Clasen <mclasen@redhat.com> 1.4-7
5a8e56
- Add file triggers for rebuilding the mime database
5a8e56
5a8e56
* Wed Jul 29 2015 Rex Dieter <rdieter@fedoraproject.org> 1.4-6
5a8e56
- Provide generic/fallback mimeapps.list too (#1243049)
5a8e56
5a8e56
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4-5
5a8e56
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
5a8e56
5a8e56
* Mon Apr 27 2015 Bastien Nocera <bnocera@redhat.com> 1.4-4
5a8e56
- Make LibreOffice Math the default for CSV files (#1214896)
5a8e56
5a8e56
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 1.4-3
5a8e56
- Rebuilt for Fedora 23 Change
5a8e56
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
5a8e56
5a8e56
* Thu Feb 05 2015 Bastien Nocera <bnocera@redhat.com> 1.4-2
5a8e56
- Rename defaults.list to be GNOME specific and follow
5a8e56
  the latest changes in the shared mime info spec
5a8e56
5a8e56
* Thu Feb 05 2015 Bastien Nocera <bnocera@redhat.com> 1.4-1
5a8e56
- Update to 1.4
5a8e56
5a8e56
* Tue Sep 30 2014 Bastien Nocera <bnocera@redhat.com> 1.3-15
5a8e56
- Fix Totem being the default music player (#1146001)
5a8e56
5a8e56
* Wed Sep 03 2014 Bastien Nocera <bnocera@redhat.com> 1.3-14
5a8e56
- Change default viewer to be eog (#1136953)
5a8e56
5a8e56
* Tue Sep 02 2014 Bastien Nocera <bnocera@redhat.com> 1.3-13
5a8e56
- Update for totem desktop name change in GNOME 3.14
5a8e56
5a8e56
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3-12
5a8e56
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
5a8e56
5a8e56
* Tue Aug  5 2014 Tom Callaway 
5a8e56
- fix license handling
5a8e56
5a8e56
* Thu Jul 31 2014 Kalev Lember <kalevlember@gmail.com> - 1.3-10
5a8e56
- Update defaults.list for gedit desktop filename change
5a8e56
5a8e56
* Tue Jul 08 2014 Colin Walters <walters@redhat.com> - 1.3-9
5a8e56
- Add requires(post) on coreutils to ensure /usr/bin/touch is present
5a8e56
- Resolves: rhbz#1114119
5a8e56
5a8e56
* Tue Jul 08 2014 Rex Dieter <rdieter@fedoraproject.org> 1.3-8
5a8e56
- scriptlet polish
5a8e56
5a8e56
* Thu Jul 03 2014 Bastien Nocera <bnocera@redhat.com> 1.3-7
5a8e56
- Update defaults.list for nautilus desktop filename change (#1095008)
5a8e56
5a8e56
* Fri Jun 27 2014 Rex Dieter <rdieter@fedoraproject.org> 1.3-6
5a8e56
- pull in upstream support for new -n option, re-enable fsync default on (#1052173)
5a8e56
5a8e56
* Thu Jun 26 2014 Rex Dieter <rdieter@fedoraproject.org> 1.3-5
5a8e56
- include PKGSYSTEM_ENABLE_FSYNC upstream implementation, except default off (#1052173)
5a8e56
5a8e56
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3-4
5a8e56
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
5a8e56
5a8e56
* Wed May 21 2014 Rex Dieter <rdieter@fedoraproject.org> 1.3-3
5a8e56
- support PKGSYSTEM_ENABLE_FSYNC (#1052173, #fdo70366)
5a8e56
5a8e56
* Tue May 20 2014 Rex Dieter <rdieter@fedoraproject.org> 1.3-2
5a8e56
- %%configure --disable-silent-rules
5a8e56
5a8e56
* Mon May 05 2014 Bastien Nocera <bnocera@redhat.com> 1.3-1
5a8e56
- Update to 1.3
5a8e56
5a8e56
* Mon May 05 2014 Bastien Nocera <bnocera@redhat.com> 1.2-3
5a8e56
- Fix file-roller's desktop filename for GNOME 3.12
5a8e56
5a8e56
* Thu Nov 07 2013 Bastien Nocera <bnocera@redhat.com> 1.2-2
5a8e56
- Update totem mime-type list
5a8e56
- Handle legacy Real Media files by default now that RealPlayer
5a8e56
  doesn't exist any more
5a8e56
5a8e56
* Mon Sep 30 2013 Bastien Nocera <bnocera@redhat.com> 1.2-1
5a8e56
- Update to 1.2
5a8e56
- Open disk images with gnome-disk-image-writer
5a8e56
5a8e56
* Mon Aug 26 2013 Kalev Lember <kalevlember@gmail.com> - 1.1-7
5a8e56
- Don't open XWD files in eog / gthumb (#735611)
5a8e56
5a8e56
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1-6
5a8e56
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
5a8e56
5a8e56
* Sat Jun  8 2013 Matthias Clasen <mclasen@redhat.com> - 1.1-5
5a8e56
- Drop pkgconfig dep, instead co-own /usr/share/pkgconfig
5a8e56
5a8e56
* Thu Feb 21 2013 Kalev Lember <kalevlember@gmail.com> - 1.1-4
5a8e56
- Update for file-roller desktop file vendor prefix removal
5a8e56
5a8e56
* Thu Feb 21 2013 Kalev Lember <kalevlember@gmail.com> - 1.1-3
5a8e56
- Update for eog desktop file vendor prefix removal
5a8e56
5a8e56
* Sun Feb 17 2013 Christoph Wickert <cwickert@fedoraproject.org> - 1.1-2
5a8e56
- De-vendorize defaults.list (https://fedorahosted.org/fesco/ticket/1077)
5a8e56
5a8e56
* Wed Feb 13 2013 Bastien Nocera <bnocera@redhat.com> 1.1-1
5a8e56
- Update to 1.1
5a8e56
5a8e56
* Fri Nov 30 2012 Bastien Nocera <bnocera@redhat.com> 1.0-6
5a8e56
- Open src.rpm files in file-roller instead of PackageKit
5a8e56
5a8e56
* Mon Nov 05 2012 Bastien Nocera <bnocera@redhat.com> 1.0-6
5a8e56
- Rebuild file-roller's default list
5a8e56
5a8e56
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0-5
5a8e56
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
5a8e56
5a8e56
* Tue May 22 2012 Rex Dieter <rdieter@fedoraproject.org> 
5a8e56
- 1.0-4
5a8e56
- defaults.list: s/mozilla-firefox/firefox/ (see #736558)
5a8e56
- defaults.list: s/gpk-install-file/gpk-install-local-file/
5a8e56
- defaults.list: application/x-catalog=gpk-install-catalog.desktop (#770019) 
5a8e56
5a8e56
* Fri May 11 2012 Bastien Nocera <bnocera@redhat.com> 1.0-3
5a8e56
- Use gnome-disk-image-mounter from gnome-disk-utility to handle
5a8e56
  CD images by default (#820403)
5a8e56
5a8e56
* Wed Mar  7 2012 Matthias Clasen <mclasen@redhat.com> - 1.0-2
5a8e56
- Own/%%ghost files generated by update-mime-database from
5a8e56
  freedesktop.org.xml (patch by Ville Skyttä, #716451))
5a8e56
5a8e56
* Tue Jan 17 2012 Bastien Nocera <bnocera@redhat.com> 1.0-1
5a8e56
- Update to 1.0
5a8e56
5a8e56
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.91-7
5a8e56
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
5a8e56
5a8e56
* Mon Nov 21 2011 Jon Masters <jcm@jonmasters.org> 0.91-6
5a8e56
- Fix interpretation of MP3 files as application/x-designer (#755472)
5a8e56
5a8e56
* Mon Oct 24 2011 Rex Dieter <rdieter@fedoraproject.org> 0.91-5
5a8e56
- s/mozilla-firefox.desktop/firefox.desktop/ (f17+, #736558)
5a8e56
5a8e56
* Thu Oct 13 2011 Bastien Nocera <bnocera@redhat.com> 0.91-4
5a8e56
- Make Evolution the default calendar (and not Gedit...)
5a8e56
5a8e56
* Thu Oct 13 2011 Bastien Nocera <bnocera@redhat.com> 0.91-3
5a8e56
- Make shotwell the default for camera roll handling
5a8e56
- Make shotwell-viewer the default image viewer (for the
5a8e56
  image types it handles)
5a8e56
- Prefer Rhythmbox to Totem for music files
5a8e56
5a8e56
* Sun Sep 18 2011 Bastien Nocera <bnocera@redhat.com> 0.91-2
5a8e56
- Fix changelog entries
5a8e56
5a8e56
* Sun Sep 18 2011 Bastien Nocera <bnocera@redhat.com> 0.91-1
5a8e56
- Update to 0.91
5a8e56
5a8e56
* Thu Aug 25 2011 Bastien Nocera <bnocera@redhat.com> 0.90-9
5a8e56
- Never try to load OO.o files in file-roller
5a8e56
5a8e56
* Thu May 26 2011 Bastien Nocera <bnocera@redhat.com> 0.90-8
5a8e56
- Fix LibreOffice associations (patch from Caolan McNamara, #707971)
5a8e56
5a8e56
* Thu Apr 21 2011 Bastien Nocera <bnocera@redhat.com> 0.90-7
5a8e56
- Fix name of nautilus.desktop file (#698502)
5a8e56
5a8e56
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.90-6
5a8e56
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
5a8e56
5a8e56
* Thu Dec 16 2010 Bastien Nocera <bnocera@redhat.com> 0.90-5
5a8e56
- Auto-generate file-roller's bindings as well
5a8e56
5a8e56
* Wed Dec 08 2010 Bastien Nocera <bnocera@redhat.com> 0.90-4
5a8e56
- Update defaults.list and update for newer desktop names,
5a8e56
  with help from Edward Sheldrake (#659457)
5a8e56
5a8e56
* Tue Dec 07 2010 Bastien Nocera <bnocera@redhat.com> 0.90-3
5a8e56
- Add Firefox as the default for application/xhtml+xml
5a8e56
  (#660657)
5a8e56
5a8e56
* Wed Dec 01 2010 Bastien Nocera <bnocera@redhat.com> 0.90-2
5a8e56
- Update list of defaults, adding new mime-types for Totem,
5a8e56
  as well as scheme handlers, and install defaults for
5a8e56
  Evolution and Firefox
5a8e56
5a8e56
* Wed Dec 01 2010 Bastien Nocera <bnocera@redhat.com> 0.90-1
5a8e56
- Update to 0.90
5a8e56
5a8e56
* Thu Nov  4 2010 Tom "spot" Callaway <tcallawa@redhat.com> 0.80-2
5a8e56
- rebuild for new libxml
5a8e56
5a8e56
* Thu Sep 30 2010 Bastien Nocera <bnocera@redhat.com> 0.80-1
5a8e56
- Update to 0.80
5a8e56
5a8e56
* Tue Jul  6 2010 Colin Walters <walters@verbum.org> - 0.71-4
5a8e56
- Fix previous change to be Requires(post); spotted by
5a8e56
  Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp>
5a8e56
5a8e56
* Sat Jul  3 2010 Colin Walters <walters@verbum.org> - 0.71-3
5a8e56
- Requires(pre) on glib, since update-mime-database uses it
5a8e56
- Remove /dev/null redirection, we should see future errors
5a8e56
  And really, RPM is dumb here - this stuff needs to go to
5a8e56
  log files.
5a8e56
5a8e56
* Tue Jun 01 2010 Bastien Nocera <bnocera@redhat.com> 0.71-2
5a8e56
- Update some OO.o defaults, patch from Caolan McNamara
5a8e56
5a8e56
* Mon Feb 01 2010 Bastien Nocera <bnocera@redhat.com> 0.71-1
5a8e56
- Update to 0.71
5a8e56
5a8e56
* Tue Oct 06 2009 Bastien Nocera <bnocera@redhat.com> 0.70-1
5a8e56
- Update to 0.70
5a8e56
5a8e56
* Thu Sep 24 2009 - Caolán McNamara <caolanm@redhat.com> - 0.60-5
5a8e56
- Resolves: rhbz#508559 openoffice.org desktop files changed name
5a8e56
5a8e56
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.60-4
5a8e56
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
5a8e56
5a8e56
* Wed Mar 04 2009 - Bastien Nocera <bnocera@redhat.com> - 0.60-3
5a8e56
- Remove Totem as handling Blu-ray and HD-DVD
5a8e56
- Use brasero-ncb.desktop instead of nautilus-cd-burner for blank devices
5a8e56
- Update media mime-types for Rhythmbox/Totem
5a8e56
5a8e56
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.60-2
5a8e56
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
5a8e56
5a8e56
* Sat Feb 21 2009 - Bastien Nocera <bnocera@redhat.com> - 0.60-1
5a8e56
- Update to 0.60
5a8e56
5a8e56
* Mon Dec 15 2008 - Bastien Nocera <bnocera@redhat.com> - 0.51-6
5a8e56
- Update with comments from Orcan Ogetbil <orcanbahri@yahoo.com>
5a8e56
5a8e56
* Wed Nov 26 2008 - Julian Sikorski <belegdol[at]gmail[dot]com> - 0.51-5
5a8e56
- Fix text/plain, gedit installs gedit.desktop and not gnome-gedit.desktop
5a8e56
5a8e56
* Wed Oct 29 2008 - Bastien Nocera <bnocera@redhat.com> - 0.51-4
5a8e56
- Add patch to avoid picture CD being anything with a pictures directory
5a8e56
  (#459365)
5a8e56
5a8e56
* Thu Oct 02 2008 - Bastien Nocera <bnocera@redhat.com> - 0.51-3
5a8e56
- Use evince, not tetex-xdvi.desktop for DVI files (#465242)
5a8e56
5a8e56
* Mon Sep 01 2008 - Bastien Nocera <bnocera@redhat.com> - 0.51-2
5a8e56
- Use Firefox and not redhat-web as the default app for HTML files (#452184)
5a8e56
5a8e56
* Wed Jul 23 2008 - Bastien Nocera <bnocera@redhat.com> - 0.51-1
5a8e56
- Update to 0.51
5a8e56
5a8e56
* Tue Jul 22 2008 - Bastien Nocera <bnocera@redhat.com> - 0.50-1
5a8e56
- Update to 0.50
5a8e56
5a8e56
* Sat Jun 14 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.40-2
5a8e56
- update license tag
5a8e56
5a8e56
* Wed Jun 11 2008 - Bastien Nocera <bnocera@redhat.com> - 0.40-1
5a8e56
- Update to 0.40
5a8e56
5a8e56
* Mon May 12 2008 - Bastien Nocera <bnocera@redhat.com> - 0.30-1
5a8e56
- Update to 0.30
5a8e56
5a8e56
* Fri May  2 2008 David Zeuthen <davidz@redhat.com> - 0.23-9
5a8e56
- Fix defaults for x-content/image-dcf (#445032)
5a8e56
5a8e56
* Thu Apr 17 2008 Matthias Clasen <mclasen@redhat.com> - 0.23-8
5a8e56
- Make mount-archive.desktop the default for iso images (#442960)
5a8e56
5a8e56
* Tue Apr 15 2008 Matthias Clasen <mclasen@redhat.com> - 0.23-7
5a8e56
- Update the desktop file name for Gimp, too
5a8e56
5a8e56
* Tue Apr 15 2008 Matthias Clasen <mclasen@redhat.com> - 0.23-6
5a8e56
- Change default for rpm to gpk-install-file (#442485)
5a8e56
5a8e56
* Thu Mar 27 2008 - Bastien Nocera <bnocera@redhat.com> - 0.23-5
5a8e56
- Make Totem the default for the mime-types it handles (#366101)
5a8e56
- And make sure Rhythmbox is the second default only for the mime-types
5a8e56
  it handles
5a8e56
5a8e56
* Thu Mar 20 2008 Matthias Clasen <mclasen@redhat.com> - 0.23-4
5a8e56
- Change default for rpm to pk-install-file
5a8e56
5a8e56
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.23-3
5a8e56
- Autorebuild for GCC 4.3
5a8e56
5a8e56
* Fri Jan 18 2008 Matthias Clasen <mclasen@redhat.com> - 0.23-2
5a8e56
- Add defaults for content types
5a8e56
5a8e56
* Tue Dec 18 2007 - Bastien Nocera <bnocera@redhat.com> - 0.23-1
5a8e56
- Update to 0.23
5a8e56
5a8e56
* Tue Nov 13 2007 - Bastien Nocera <bnocera@redhat.com> - 0.22-5
5a8e56
- Remove Totem as the default music/movie player, it will be the
5a8e56
  default for movies, as only it handles them, and Rhythmbox can
5a8e56
  handle missing plugins now
5a8e56
5a8e56
* Mon Nov 05 2007 - Bastien Nocera <bnocera@redhat.com> - 0.22-4
5a8e56
- Make Totem the default for the mime-types it handles (#366101)
5a8e56
5a8e56
* Fri Aug 24 2007 Adam Jackson <ajax@redhat.com> - 0.22-3
5a8e56
- Rebuild for PPC toolchain bug
5a8e56
- BuildRequires: gawk
5a8e56
5a8e56
* Tue Aug 21 2007 - Bastien Nocera <bnocera@redhat.com> - 0.22-2
5a8e56
- Don't say that webcal files are handled by evolution-2.0, it can't
5a8e56
- Disable vCard mapping as well, as evolution doesn't handle it
5a8e56
  (See http://bugzilla.gnome.org/show_bug.cgi?id=309073)
5a8e56
5a8e56
* Mon Jul 30 2007 - Bastien Nocera <bnocera@redhat.com> - 0.22-1
5a8e56
- Update to 0.22
5a8e56
5a8e56
* Tue Apr 17 2007 - Bastien Nocera <bnocera@redhat.com> - 0.20-2
5a8e56
- Fix the dia association (#194313)
5a8e56
5a8e56
* Tue Feb 06 2007 - Bastien Nocera <bnocera@redhat.com> - 0.20-1
5a8e56
- Update to 0.20, and remove outdated patches
5a8e56
5a8e56
* Fri Nov 10 2006 Christopher Aillon <caillon@redhat.com> - 0.19-2
5a8e56
- Alias image/pdf to application/pdf
5a8e56
5a8e56
* Fri Aug 25 2006 Christopher Aillon <caillon@redhat.com> - 0.19-1
5a8e56
- Update to 0.19
5a8e56
5a8e56
* Wed Jul 26 2006 Matthias Clasen <mclasen@redhat.com> - 0.18-2
5a8e56
- add an inode/directory entry to defaults.list (#187021)
5a8e56
5a8e56
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.18-1.1
5a8e56
- rebuild
5a8e56
5a8e56
* Wed Jul  5 2006 Kristian Høgsberg <krh@redhat.com> - 0.18-1
5a8e56
- Update to 0.18 and drop backported patches.
5a8e56
5a8e56
* Thu Jun 29 2006 Kristian Høgsberg <krh@redhat.com> - 0.17-3
5a8e56
- Adding PDF fix backported from CVS.
5a8e56
5a8e56
* Wed Mar 22 2006 Matthias Clasen <mclasen@redhat.com> - 0.17-2
5a8e56
- Backport upstream change to fix postscript vs. matlab confusion
5a8e56
5a8e56
* Thu Mar 16 2006 Matthias Clasen <mclasen@redhat.com> - 0.17-1
5a8e56
- Update to 0.17
5a8e56
5a8e56
* Mon Feb 13 2006 Ray Strode <rstrode@redhat.com> - 0.16.cvs20060212-3
5a8e56
- add gthumb as fallback
5a8e56
5a8e56
* Mon Feb 13 2006 Ray Strode <rstrode@redhat.com> - 0.16.cvs20060212-2
5a8e56
- make eog the default image viewer
5a8e56
5a8e56
* Sun Feb 12 2006 Christopher Aillon <caillon@redhat.com> - 0.16.cvs20060212-1
5a8e56
- Newer CVS snapshot
5a8e56
5a8e56
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 0.16.cvs20051219-2.1
5a8e56
- rebuilt for new gcc4.1 snapshot and glibc changes
5a8e56
5a8e56
* Mon Jan 30 2006 Caolan McNamara <caolanm@redhat.com> - 0.16.cvs20051219-2
5a8e56
- rh#179138# add openoffice.org as preferred app for oasis formats 
5a8e56
5a8e56
* Mon Dec 19 2005 Matthias Clasen <mclasen@redhat.com> - 0.16.cvs20051219-1
5a8e56
- Newer cvs snapshot
5a8e56
5a8e56
* Fri Dec 16 2005 Jesse Keating <jkeating@redhat.com>
5a8e56
- rebuilt
5a8e56
5a8e56
* Thu Dec  1 2005 Matthias Clasen <mclasen@redhat.com> - 0.16.cvs20051201-1
5a8e56
- Incorporate upstream changes
5a8e56
5a8e56
* Wed Nov 02 2005 John (J5) Palmieri <johnp@redhat.com> - 0.16.cvs20051018-2
5a8e56
- Change all refs of eog to gthumb in defaults.list
5a8e56
5a8e56
* Tue Oct 18 2005 Matthias Clasen <mclasen@redhat.com> - 0.16.cvs20051018-1
5a8e56
- Incorporate upstream changes
5a8e56
5a8e56
* Wed Oct 12 2005 Matthias Clasen <mclasen@redhat.com> - 0.16-6
5a8e56
- Add glade to defaults.list
5a8e56
5a8e56
* Mon Oct  3 2005 Matthias Clasen <mclasen@redhat.com> - 0.16-5
5a8e56
- Make sure Type1 fonts are recognized as such (#160909)
5a8e56
5a8e56
* Fri Jun 17 2005 David Zeuthen <davidz@redhat.com> - 0.16-4
5a8e56
- Add MIME-types for .pcf Cisco VPN settings files (fdo #3560)
5a8e56
5a8e56
* Fri May 20 2005 Dan Williams <dcbw@redhat.com> - 0.16-3
5a8e56
- Update OpenOffice.org desktop file names. #155353
5a8e56
- WordPerfect default now OOo Writer, since Abiword is in Extras
5a8e56
5a8e56
* Sun Apr  3 2005 David Zeuthen <davidz@redhat.com> - 0.16-2
5a8e56
- Make Evince the default for application/pdf and application/postscript
5a8e56
- Remove remaining references to gnome-ggv (application/x-gzpostscript and
5a8e56
  image/x-eps) as this is no longer in the distribution
5a8e56
5a8e56
* Fri Apr  1 2005 David Zeuthen <davidz@redhat.com> - 0.16-1
5a8e56
- Update to upstream release 0.16
5a8e56
- Drop all patches as they are in the new upstream release
5a8e56
5a8e56
* Wed Mar  9 2005 David Zeuthen <davidz@redhat.com> - 0.15-11
5a8e56
- Add mimetypes for OOo2 (#150546)
5a8e56
5a8e56
* Mon Oct 18 2004 Alexander Larsson <alexl@redhat.com> - 0.15-10
5a8e56
- Fix for mime sniffing on big-endian
5a8e56
5a8e56
* Thu Oct 14 2004 Colin Walters <walters@redhat.com> - 0.15-9
5a8e56
- Handle renaming of hxplay.desktop to realplay.desktop
5a8e56
5a8e56
* Wed Oct 13 2004 Matthias Clasen <mclasen@redhat.com> - 0.15-8
5a8e56
- Handle XUL files. #134122
5a8e56
5a8e56
* Wed Oct 13 2004 Colin Walters <walters@redhat.com> - 0.15-7
5a8e56
- Make helix default for ogg and mp3, will switch wav/flac too 
5a8e56
  when support is added
5a8e56
5a8e56
* Wed Oct  6 2004 Alexander Larsson <alexl@redhat.com> - 0.15-6
5a8e56
- Change default pdf viewer to ggv
5a8e56
5a8e56
* Tue Sep  7 2004 Alexander Larsson <alexl@redhat.com> - 0.15-4
5a8e56
- Fixed evo desktop file reference in defaults.list
5a8e56
5a8e56
* Mon Sep  6 2004 Caolan McNamara <caolanm@redhat.com> - 0.15-3
5a8e56
- wpd can be opened in abiword, but not in openoffice.org (#114907)
5a8e56
5a8e56
* Fri Sep  3 2004 Alexander Larsson <alexl@redhat.com> - 0.15-2
5a8e56
- Add list of default apps (#131643)
5a8e56
5a8e56
* Mon Aug 30 2004 Jonathan Blandford <jrb@redhat.com> 0.15-1
5a8e56
- bump version
5a8e56
5a8e56
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
5a8e56
- rebuilt
5a8e56
5a8e56
* Mon Mar 22 2004 Alex Larsson <alexl@redhat.com> 0.14-1
5a8e56
- update to 0.14
5a8e56
5a8e56
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
5a8e56
- rebuilt
5a8e56
5a8e56
* Mon Jan 26 2004 Alexander Larsson <alexl@redhat.com> 0.13-1
5a8e56
- 0.13
5a8e56
5a8e56
* Fri Jan 16 2004 Alexander Larsson <alexl@redhat.com> mime-info
5a8e56
- Initial build.