Blame SPECS/gnome-vfs2.spec

fc2bfa
%define po_package gnome-vfs-2.0
fc2bfa
fc2bfa
# don't use HAL from F-16 on
fc2bfa
%if 0%{?fedora} >= 16 || 0%{?rhel} >= 7
fc2bfa
%bcond_with hal
fc2bfa
%else
fc2bfa
%bcond_without hal
fc2bfa
%endif
fc2bfa
fc2bfa
Summary: The GNOME virtual file-system libraries
fc2bfa
Name: gnome-vfs2
fc2bfa
Version: 2.24.4
fc2bfa
Release: 14%{?dist}
fc2bfa
License: LGPLv2+ and GPLv2+
fc2bfa
# the daemon and the library are LGPLv2+
fc2bfa
# the modules are LGPLv2+ and GPLv2+
fc2bfa
Group: System Environment/Libraries
fc2bfa
#VCS: git:git://git.gnome.org/gnome-vfs
fc2bfa
Source0: http://download.gnome.org/sources/gnome-vfs/2.24/gnome-vfs-%{version}.tar.bz2
fc2bfa
URL: http://www.gnome.org/
fc2bfa
Requires(post): GConf2 
fc2bfa
Requires(pre): GConf2 
fc2bfa
Requires(preun): GConf2 
fc2bfa
BuildRequires: GConf2-devel 
fc2bfa
BuildRequires: libxml2-devel, zlib-devel
fc2bfa
BuildRequires: glib2-devel 
fc2bfa
BuildRequires: popt, bzip2-devel, ORBit2-devel, openjade
fc2bfa
BuildRequires: pkgconfig
fc2bfa
BuildRequires: automake
fc2bfa
BuildRequires: libtool
fc2bfa
BuildRequires: intltool
fc2bfa
BuildRequires: autoconf
fc2bfa
BuildRequires: gtk-doc 
fc2bfa
BuildRequires: perl-XML-Parser 
fc2bfa
BuildRequires: libsmbclient-devel 
fc2bfa
BuildRequires: openssl-devel gamin-devel
fc2bfa
BuildRequires: krb5-devel
fc2bfa
BuildRequires: avahi-glib-devel 
fc2bfa
%if %{with hal}
fc2bfa
BuildRequires: hal-devel
fc2bfa
%endif
fc2bfa
BuildRequires: dbus-devel 
fc2bfa
BuildRequires: dbus-glib-devel 
fc2bfa
BuildRequires: gettext
fc2bfa
BuildRequires: libacl-devel
fc2bfa
BuildRequires: libselinux-devel
fc2bfa
BuildRequires: keyutils-libs-devel
fc2bfa
# For gvfs-open
fc2bfa
Requires: gvfs
fc2bfa
fc2bfa
Patch3: gnome-vfs-2.9.90-modules-conf.patch
fc2bfa
fc2bfa
# remove gnome-mime-data dependency
fc2bfa
Patch4: gnome-vfs-2.24.1-disable-gnome-mime-data.patch
fc2bfa
fc2bfa
# CVE-2009-2473 neon, gnome-vfs2 embedded neon: billion laughs DoS attack
fc2bfa
# https://bugzilla.redhat.com/show_bug.cgi?id=518215
fc2bfa
Patch5: gnome-vfs-2.24.3-CVE-2009-2473.patch
fc2bfa
fc2bfa
# send to upstream
fc2bfa
Patch101:	gnome-vfs-2.8.2-schema_about_for_upstream.patch
fc2bfa
fc2bfa
# Default
fc2bfa
Patch104:	gnome-vfs-2.8.2-browser_default.patch
fc2bfa
fc2bfa
# Applied upstream.
fc2bfa
# Patch201: gnome-vfs-2.8.1-console-mount-opt.patch
fc2bfa
fc2bfa
# RH bug #197868
fc2bfa
Patch6: gnome-vfs-2.15.91-mailto-command.patch
fc2bfa
fc2bfa
# https://bugzilla.redhat.com/show_bug.cgi?id=333041
fc2bfa
# https://bugzilla.redhat.com/show_bug.cgi?id=335241
fc2bfa
Patch300: gnome-vfs-2.20.0-ignore-certain-mountpoints.patch
fc2bfa
fc2bfa
fc2bfa
# backported from upstream
fc2bfa
fc2bfa
# gnome-vfs-daemon exits on dbus, and constantly restarted causing dbus/hal to hog CPU
fc2bfa
# https://bugzilla.redhat.com/show_bug.cgi?id=486286
fc2bfa
Patch404: gnome-vfs-2.24.xx-utf8-mounts.patch
fc2bfa
fc2bfa
# https://bugzilla.gnome.org/show_bug.cgi?id=435653
fc2bfa
Patch405: 0001-Add-default-media-application-schema.patch
fc2bfa
fc2bfa
# from upstream
fc2bfa
Patch7: gnome-vfs-2.24.5-file-method-chmod-flags.patch
fc2bfa
fc2bfa
# fix compilation against new glib2
fc2bfa
Patch8: gnome-vfs-2.24.4-enable-deprecated.patch
fc2bfa
fc2bfa
fc2bfa
%description
fc2bfa
GNOME VFS is the GNOME virtual file system. It is the foundation of
fc2bfa
the Nautilus file manager. It provides a modular architecture and
fc2bfa
ships with several modules that implement support for file systems,
fc2bfa
http, ftp, and others. It provides a URI-based API, backend
fc2bfa
supporting asynchronous file operations, a MIME type manipulation
fc2bfa
library, and other features.
fc2bfa
fc2bfa
%package devel
fc2bfa
Summary: Libraries and include files for developing GNOME VFS applications
fc2bfa
Group: Development/Libraries
fc2bfa
Requires:   %{name} = %{version}-%{release}
fc2bfa
fc2bfa
%description devel
fc2bfa
This package provides the necessary development libraries for writing
fc2bfa
GNOME VFS modules and applications that use the GNOME VFS APIs.
fc2bfa
fc2bfa
%package smb
fc2bfa
Summary: Windows fileshare support for gnome-vfs
fc2bfa
Group: System Environment/Libraries
fc2bfa
Requires:   %{name} = %{version}-%{release}
fc2bfa
Requires: libsmbclient
fc2bfa
fc2bfa
%description smb
fc2bfa
This package provides support for reading and writing files on windows
fc2bfa
shares (SMB) to applications using GNOME VFS.
fc2bfa
fc2bfa
%prep
fc2bfa
%setup -q -n gnome-vfs-%{version} 
fc2bfa
fc2bfa
%patch3 -p1 -b .modules-conf
fc2bfa
%patch4 -p1 -b .mime-data
fc2bfa
%patch5 -p1 -b .CVE-2009-2473
fc2bfa
fc2bfa
%patch6 -p1 -b .mailto-command
fc2bfa
%patch7 -p1 -b .file-method-chmod-flags
fc2bfa
%patch8 -p1 -b .enable-deprecated
fc2bfa
fc2bfa
# send to upstream
fc2bfa
%patch101 -p1 -b .schema_about
fc2bfa
fc2bfa
%patch104 -p1 -b .browser_default
fc2bfa
fc2bfa
%patch300 -p1 -b .ignore-certain-mount-points
fc2bfa
fc2bfa
%patch404 -p1 -b .utf8-mounts
fc2bfa
fc2bfa
%patch405 -p1 -b .default-media
fc2bfa
fc2bfa
# for patch 10 and 4
fc2bfa
libtoolize --force  || :
fc2bfa
aclocal  || :
fc2bfa
autoheader  || :
fc2bfa
automake --add-missing || :
fc2bfa
autoconf  || :
fc2bfa
fc2bfa
%build
fc2bfa
if pkg-config openssl ; then
fc2bfa
	CPPFLAGS=`pkg-config --cflags openssl`; export CPPFLAGS
fc2bfa
	LDFLAGS=`pkg-config --libs-only-L openssl`; export LDFLAGS
fc2bfa
fi
fc2bfa
fc2bfa
CFLAGS="%optflags -fno-strict-aliasing" %configure \
fc2bfa
    --with-samba-includes=/usr/include/samba-4.0 \
fc2bfa
    --disable-gtk-doc \
fc2bfa
%if %{with hal}
fc2bfa
    --enable-hal \
fc2bfa
%endif
fc2bfa
    --disable-static
fc2bfa
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
fc2bfa
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
fc2bfa
make %{?_smp_mflags}
fc2bfa
fc2bfa
# strip unneeded translations from .mo files
fc2bfa
# ideally intltool (ha!) would do that for us
fc2bfa
# http://bugzilla.gnome.org/show_bug.cgi?id=474987
fc2bfa
cd po
fc2bfa
grep -v ".*[.]desktop[.]in[.]in$\|.*[.]server[.]in[.]in$" POTFILES.in > POTFILES.keep
fc2bfa
mv POTFILES.keep POTFILES.in
fc2bfa
intltool-update --pot
fc2bfa
PO_FAKE_DATE="2009-08-03 18:00+0200"   # fake this to be equal in every build
fc2bfa
PO_FAKE_DATE_EXPR='\(.*POT-Creation-Date: *\)\(.*\)\(\\n.*\)'
fc2bfa
sed --in-place "s/${PO_FAKE_DATE_EXPR}/\1${PO_FAKE_DATE}\3/" %{po_package}.pot
fc2bfa
for p in *.po; do
fc2bfa
  msgmerge $p %{po_package}.pot > $p.out
fc2bfa
  msgfmt -o `basename $p .po`.gmo $p.out
fc2bfa
done
fc2bfa
fc2bfa
fc2bfa
%install
fc2bfa
export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
fc2bfa
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
fc2bfa
unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL
fc2bfa
fc2bfa
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
fc2bfa
fc2bfa
%find_lang %{po_package}
fc2bfa
fc2bfa
fc2bfa
%post
fc2bfa
/sbin/ldconfig
fc2bfa
%gconf_schema_upgrade system_http_proxy system_dns_sd system_smb desktop_gnome_url_handlers desktop_default_applications
fc2bfa
fc2bfa
%pre
fc2bfa
%gconf_schema_prepare system_http_proxy system_dns_sd system_smb desktop_gnome_url_handlers desktop_default_applications
fc2bfa
fc2bfa
%preun
fc2bfa
%gconf_schema_remove system_http_proxy system_dns_sd system_smb desktop_gnome_url_handlers desktop_default_applications
fc2bfa
fc2bfa
%postun -p /sbin/ldconfig
fc2bfa
fc2bfa
%files -f %{po_package}.lang
fc2bfa
%defattr(-, root, root, -)
fc2bfa
%doc AUTHORS COPYING COPYING.LIB NEWS README
fc2bfa
%dir %{_sysconfdir}/gnome-vfs-2.0
fc2bfa
%dir %{_sysconfdir}/gnome-vfs-2.0/modules
fc2bfa
%config %{_sysconfdir}/gnome-vfs-2.0/modules/*.conf
fc2bfa
%exclude %{_sysconfdir}/gnome-vfs-2.0/modules/smb-module.conf
fc2bfa
%{_bindir}/*
fc2bfa
%{_libexecdir}/*
fc2bfa
%{_libdir}/*.so.*
fc2bfa
%exclude %{_libdir}/gnome-vfs-2.0/modules/libsmb.so
fc2bfa
%{_libdir}/gnome-vfs-2.0/modules
fc2bfa
%dir %{_libdir}/gnome-vfs-2.0
fc2bfa
%{_sysconfdir}/gconf/schemas/*
fc2bfa
%{_datadir}/dbus-1/services/gnome-vfs-daemon.service
fc2bfa
fc2bfa
%files devel
fc2bfa
%defattr(-, root, root,-)
fc2bfa
%{_libdir}/lib*.so
fc2bfa
%{_libdir}/pkgconfig/*
fc2bfa
%{_libdir}/gnome-vfs-2.0/include
fc2bfa
%{_includedir}/*
fc2bfa
%{_datadir}/gtk-doc/html/gnome-vfs-2.0
fc2bfa
fc2bfa
%files smb
fc2bfa
%defattr(-, root, root,-)
fc2bfa
%{_libdir}/gnome-vfs-2.0/modules/libsmb.so
fc2bfa
%config %{_sysconfdir}/gnome-vfs-2.0/modules/smb-module.conf
fc2bfa
fc2bfa
%changelog
fc2bfa
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 2.24.4-14
fc2bfa
- Mass rebuild 2014-01-24
fc2bfa
fc2bfa
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 2.24.4-13
fc2bfa
- Mass rebuild 2013-12-27
fc2bfa
fc2bfa
* Wed Mar 27 2013 Tomas Bzatek <tbzatek@redhat.com> - 2.24.4-12
fc2bfa
- Disable -DG_DISABLE_DEPRECATED
fc2bfa
fc2bfa
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.24.4-11
fc2bfa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
fc2bfa
fc2bfa
* Mon Dec 10 2012 Tomas Bzatek <tbzatek@redhat.com> - 2.24.4-10
fc2bfa
- Compile with -fno-strict-aliasing
fc2bfa
- Backport file-method chmod flags patch from upstream
fc2bfa
fc2bfa
* Wed Nov 28 2012 Tomas Bzatek <tbzatek@redhat.com> - 2.24.4-9
fc2bfa
- Rebuilt for bug 878494
fc2bfa
- Fix build against samba4
fc2bfa
fc2bfa
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.24.4-8
fc2bfa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
fc2bfa
fc2bfa
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.24.4-7
fc2bfa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
fc2bfa
fc2bfa
* Thu Apr 21 2011 Nils Philippsen <nils@redhat.com> - 2.24.4-6
fc2bfa
- build without HAL from F-16/EL-7 on
fc2bfa
fc2bfa
* Tue Apr 12 2011 Christopher Aillon <caillon@redhat.com> - 2.24.4-5
fc2bfa
- Change the default http,https handler to gvfs-open
fc2bfa
fc2bfa
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.24.4-4
fc2bfa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
fc2bfa
fc2bfa
* Tue Oct 26 2010 Parag Nemade <paragn AT fedoraproject.org> - 2.24.4-3
fc2bfa
- Gconf2 scriptlet accepts schema file names without file extension.
fc2bfa
fc2bfa
* Fri Oct 15 2010 Parag Nemade <paragn AT fedoraproject.org> - 2.24.4-2
fc2bfa
- Merge-review cleanup (#225843)
fc2bfa
fc2bfa
* Tue Sep 28 2010 Matthias Clasen <mclasen@redhat.com> - 2.24.4-1
fc2bfa
- Update to 2.24.4
fc2bfa
fc2bfa
* Tue Mar 30 2010 Matthias Clasen <mclasen@redhat.com> - 2.24.3-1
fc2bfa
- Update to 2.24.3
fc2bfa
fc2bfa
* Fri Mar 12 2010 Tomas Bzatek <tbzatek@redhat.com> - 2.24.2-4
fc2bfa
- ftp: Don't crash if we get a NULL symlink (#542006)
fc2bfa
fc2bfa
* Wed Dec  2 2009 Tomas Bzatek <tbzatek@redhat.com> - 2.24.2-3
fc2bfa
- Patch security hole in embedded neon (CVE-2009-2473)
fc2bfa
fc2bfa
* Wed Nov 04 2009 Bastien Nocera <bnocera@redhat.com> 2.24.2-2
fc2bfa
- Set a default media player application in the schemas
fc2bfa
fc2bfa
* Thu Oct  8 2009 Alexander Larsson <alexl@redhat.com> - 2.24.2-1
fc2bfa
- update to 2.24.2 - fixes mimetypes
fc2bfa
fc2bfa
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 2.24.1-9
fc2bfa
- rebuilt with new openssl
fc2bfa
fc2bfa
* Fri Aug 14 2009 Tomas Bzatek <tbzatek@redhat.com> - 2.24.1-8
fc2bfa
- Drop gnome-mount and gnome-mime-data dependencies
fc2bfa
fc2bfa
* Mon Aug 10 2009 Ville Skyttä <ville.skytta at iki.fi> - 2.24.1-7
fc2bfa
- Convert specfile to UTF-8.
fc2bfa
fc2bfa
* Tue Aug  4 2009 Tomas Bzatek <tbzatek@redhat.com> - 2.24.1-6
fc2bfa
- Backport some upstream patches
fc2bfa
fc2bfa
* Mon Aug  3 2009 Tomas Bzatek <tbzatek@redhat.com> - 2.24.1-5
fc2bfa
- Fake POT-Creation-Date to prevent multilib issues (#514990)
fc2bfa
fc2bfa
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.24.1-4
fc2bfa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
fc2bfa
fc2bfa
* Mon Apr 27 2009 Matthias Clasen <mclasen@redhat.com> - 2.24.1-3
fc2bfa
- Don't drop schemas translations from po files anymore
fc2bfa
fc2bfa
* Thu Apr  2 2009 Tomas Bzatek <tbzatek@redhat.com> - 2.24.1-2
fc2bfa
- Rebuilt to solve multilib issues (#492926)
fc2bfa
fc2bfa
* Tue Mar 17 2009 Tomas Bzatek <tbzatek@redhat.com> - 2.24.1-1
fc2bfa
- Update to 2.24.1
fc2bfa
fc2bfa
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.24.0-5
fc2bfa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
fc2bfa
fc2bfa
* Fri Jan 16 2009 Tomas Mraz <tmraz@redhat.com> - 2.24.0-4
fc2bfa
- rebuild with new openssl
fc2bfa
fc2bfa
* Thu Sep 25 2008 Matthias Clasen  <mclasen@redhat.com> - 2.24.0-3
fc2bfa
- Save some space
fc2bfa
fc2bfa
* Mon Sep 22 2008 Matthias Clasen  <mclasen@redhat.com> - 2.24.0-2
fc2bfa
- Update to 2.24.0
fc2bfa
- Drop upstreamed patches
fc2bfa
fc2bfa
* Thu Sep 11 2008 Matthias Clasen  <mclasen@redhat.com> - 2.23.0-1
fc2bfa
- Rebuild against new bluez-libs
fc2bfa
fc2bfa
* Thu Jul 24 2008 Matthias Clasen  <mclasen@redhat.com> - 2.22.0-4
fc2bfa
- Use newer xdgmime 
fc2bfa
fc2bfa
* Wed Jul 23 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2.22.0-3
fc2bfa
- fix license tag
fc2bfa
- don't apply Patch201, upstreamed
fc2bfa
fc2bfa
* Sun May  4 2008 Matthias Clasen <mclasen@redhat.com> - 2.22.0-2
fc2bfa
- Fix source url
fc2bfa
fc2bfa
* Mon Mar 10 2008 Matthias Clasen <mclasen@redhat.com> - 2.22.0-1
fc2bfa
- Update to 2.22.0
fc2bfa
fc2bfa
* Wed Jan 30 2008 Matthias Clasen <mclasen@redhat.com> - 2.21.90-1
fc2bfa
- Update to 2.21.90
fc2bfa
fc2bfa
* Tue Dec  4 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.1-4
fc2bfa
- Reinstate the gnome-mount BR
fc2bfa
fc2bfa
* Mon Dec  3 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.1-3
fc2bfa
- Rebuild against new openssl
fc2bfa
- Temporarily drop gnome-mount BR
fc2bfa
fc2bfa
* Mon Dec  3 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.1-2
fc2bfa
- Build the mime.cache handling code
fc2bfa
fc2bfa
* Mon Nov 12 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.1-1
fc2bfa
- Update to 2.20.1 (fixes a dns-sd crash)
fc2bfa
fc2bfa
* Tue Oct 23 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.0-4
fc2bfa
- Rebuild against new dbus-glib
fc2bfa
fc2bfa
* Tue Oct 16 2007 David Zeuthen <davidz@redhat.com> - 2.20.0-3
fc2bfa
- Also avoid showing /var/tmp as an icon on the desktop (#335241)
fc2bfa
fc2bfa
* Mon Oct 15 2007 David Zeuthen <davidz@redhat.com> - 2.20.0-2
fc2bfa
- Don't show /var/log/audit on the desktop (#333041)
fc2bfa
fc2bfa
* Mon Sep 17 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.0-1
fc2bfa
- Update to 2.20.0
fc2bfa
fc2bfa
* Wed Sep 12 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.91-2
fc2bfa
- Fix a small memory leak
fc2bfa
fc2bfa
* Mon Sep  3 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.91-1
fc2bfa
- Re-add gnome-mount dependency
fc2bfa
- Update to 2.19.91
fc2bfa
- Drop upstreamed posix patch
fc2bfa
fc2bfa
* Sun Sep  2 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.3-3
fc2bfa
- Temporarily drop gnome-mount requires to break PolicyKit-gnome 
fc2bfa
  dependency cycle
fc2bfa
fc2bfa
* Sat Aug 11 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.3-2
fc2bfa
- Fix the build
fc2bfa
- Update the license field
fc2bfa
fc2bfa
* Fri Jul 27 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.3-1
fc2bfa
- Update to 2.19.3
fc2bfa
fc2bfa
* Sat May 19 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.2-1
fc2bfa
- Update to 2.19.2
fc2bfa
fc2bfa
* Tue May  8 2007  <alexl@redhat.com> - 2.18.1-4
fc2bfa
- Add keyutils-libs-devel build requires
fc2bfa
fc2bfa
* Tue May  8 2007 Alexander Larsson <alexl@redhat.com> - 2.18.1-3
fc2bfa
- Fix ftp symlink crash (#435823)
fc2bfa
fc2bfa
* Wed Apr 11 2007 Alexander Larsson <alexl@redhat.com> - 2.18.1-2
fc2bfa
- Require libsmbclient, not samba-common
fc2bfa
fc2bfa
* Wed Apr 11 2007 Alexander Larsson <alexl@redhat.com> - 2.18.1-1
fc2bfa
- Update to 2.18.1
fc2bfa
fc2bfa
* Tue Mar 13 2007 Alexander Larsson <alexl@redhat.com> - 2.18.0.1-1
fc2bfa
- Update to 2.18.0.1
fc2bfa
fc2bfa
* Mon Mar 12 2007 Alexander Larsson <alexl@redhat.com> - 2.18.0-1
fc2bfa
- update to 2.18.0
fc2bfa
fc2bfa
* Wed Mar  7 2007 Alexander Larsson <alexl@redhat.com> - 2.17.91-2
fc2bfa
- Handle ipv6 link-local addresses better in network:/// (#212565)
fc2bfa
fc2bfa
* Mon Feb 12 2007 Matthias Clasen <mclasen@redhat.com> - 2.17.91-1
fc2bfa
- Update to 2.17.91
fc2bfa
fc2bfa
* Mon Jan 22 2007 Matthias Clasen <mclasen@redhat.com> - 2.17.90-1
fc2bfa
- Update to 2.17.90
fc2bfa
fc2bfa
* Tue Dec 19 2006 Matthias Clasen <mclasen@redhat.com> - 2.17.2-1
fc2bfa
- Update to 2.17.2
fc2bfa
fc2bfa
* Tue Dec 19 2006 Matthias Clasen <mclasen@redhat.com> - 2.17.1-1
fc2bfa
- Update to 2.17.1
fc2bfa
fc2bfa
* Tue Dec  5 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.3-1
fc2bfa
- Update to 2.16.3
fc2bfa
- Don't ship static libraries
fc2bfa
fc2bfa
* Tue Nov  7 2006 Alexander Larsson <alexl@redhat.com> - 2.16.2-2.fc7
fc2bfa
- Update to 2.16.2
fc2bfa
fc2bfa
* Sat Oct 21 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.1-1
fc2bfa
- Update to 2.16.1
fc2bfa
fc2bfa
* Wed Oct 19 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.0-8
fc2bfa
- Rebuild
fc2bfa
fc2bfa
* Wed Oct 18 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.0-6
fc2bfa
- Fix scripts according to packaging guidelines
fc2bfa
fc2bfa
* Tue Oct 17 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.0-5
fc2bfa
- Tighten up Requires (#203813)
fc2bfa
- Require pkgconfig in the -devel package
fc2bfa
fc2bfa
* Sun Oct 01 2006 Jesse Keating <jkeating@redhat.com> - 2.16.0-4
fc2bfa
- rebuilt for unwind info generation, broken in gcc-4.1.1-21
fc2bfa
fc2bfa
* Tue Sep 19 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.0-3
fc2bfa
- Prevent excessive warnings when dbus is not available (#207121)
fc2bfa
fc2bfa
* Tue Sep 19 2006 Alexander Larsson <alexl@redhat.com> - 2.16.0-2
fc2bfa
- Backport fixes from cvs:
fc2bfa
-  Fix crash on shutdown (gnome bug 347470)
fc2bfa
-  Import gtk+ fixes to xdgmime
fc2bfa
fc2bfa
* Mon Sep  4 2006 Alexander Larsson <alexl@redhat.com> - 2.16.0-1
fc2bfa
- update to 2.16.0
fc2bfa
fc2bfa
* Wed Aug 30 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.92-2
fc2bfa
- Make error handling for http redirect more robust (203678)
fc2bfa
fc2bfa
* Mon Aug 21 2006 Alexander Larsson <alexl@redhat.com> - 2.15.92-1
fc2bfa
- update to 2.15.92
fc2bfa
fc2bfa
* Fri Aug 11 2006 Matthew Barnes <mbarnes@redhat.com> - 2.15.91-2.fc6
fc2bfa
- Add patch for RH bug #197868.
fc2bfa
fc2bfa
* Thu Aug 10 2006 Alexander Larsson <alexl@redhat.com> - 2.15.91-1
fc2bfa
- update to 2.15.91
fc2bfa
fc2bfa
* Fri Aug  4 2006 Matthias Clasen <mclasen@redhat.com> -2.15.90-2.fc6
fc2bfa
- Remove debug spew
fc2bfa
fc2bfa
* Thu Aug  3 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.90-1.fc6
fc2bfa
- Update to 2.15.90
fc2bfa
fc2bfa
* Thu Jul 27 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.3-7
fc2bfa
- Disable gtk-doc to fix multilib conflicts
fc2bfa
fc2bfa
* Tue Jul 18 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.3-6
fc2bfa
- Re-add gnome-mount dependency
fc2bfa
fc2bfa
* Tue Jul 18 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.3-5.1
fc2bfa
- Temporarily break dependency cycle with gnome-mount
fc2bfa
fc2bfa
* Tue Jul 18 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.3-5
fc2bfa
- Add BR for libselinux-devel
fc2bfa
fc2bfa
* Tue Jul 18 2006 John (J5) Palmieri <johnp@redhat.com> - 2.15.3-4
fc2bfa
- Add patch to fix deprecated function
fc2bfa
fc2bfa
* Tue Jul 18 2006 John (J5) Palmieri <johnp@redhat.com> - 2.15.3-3
fc2bfa
- Add BR for dbus-glib-devel
fc2bfa
fc2bfa
* Wed Jul 12 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.3-2 
fc2bfa
- Rebuild
fc2bfa
fc2bfa
* Wed Jul 12 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.3-1
fc2bfa
- Update to 2.15.3 
fc2bfa
fc2bfa
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.15.2-1.1
fc2bfa
- rebuild
fc2bfa
fc2bfa
* Tue Jun 13 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.2-1
fc2bfa
- Update to 2.15.2
fc2bfa
fc2bfa
* Mon May 29 2006 Alexander Larsson <alexl@redhat.com> - 2.15.1-2
fc2bfa
- buildrequires gettext (#193392)
fc2bfa
fc2bfa
* Wed May 17 2006 Matthias Clasen <mclasen@redhat.com> - 2.15.1-1
fc2bfa
- Update to 2.15.1
fc2bfa
fc2bfa
* Sat Apr 22 2006 Matthias Clasen <mclasen@redhat.com> - 2.14.1-4
fc2bfa
- fix a typo
fc2bfa
fc2bfa
* Thu Apr 20 2006 Matthias Clasen <mclasen@redhat.com> - 2.14.1-2
fc2bfa
- update to 2.14.1
fc2bfa
fc2bfa
* Wed Mar 15 2006 Ray Strode <rstrode@redhat.com> - 2.14.0-2
fc2bfa
- don't try to install a schema we don't ship anymore (bug 185549)
fc2bfa
fc2bfa
* Mon Mar 13 2006 Matthias Clasen <mclasen@redhat.com> - 2.14.0-1
fc2bfa
- Update to 2.14.0
fc2bfa
- Drop upstreamed patches
fc2bfa
fc2bfa
* Tue Feb 28 2006 Alexander Larsson <alexl@redhat.com> - 2.13.92-3
fc2bfa
- Fix smb browsing (#170922)
fc2bfa
fc2bfa
* Tue Feb 28 2006 Alexander Larsson <alexl@redhat.com> - 2.13.92-2
fc2bfa
- Add patch (from cvs) that fixes permission reading
fc2bfa
fc2bfa
* Mon Feb 27 2006 Matthias Clasen <mclasen@redhat.com> - 2.13.92-1
fc2bfa
- Update to 2.13.92
fc2bfa
fc2bfa
* Mon Feb 13 2006 Matthias Clasen <mclasen@redhat.com> - 2.13.91-1
fc2bfa
- Update to 2.13.91
fc2bfa
fc2bfa
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.13.4-7.2
fc2bfa
- bump again for double-long bug on ppc(64)
fc2bfa
fc2bfa
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.13.4-7.1
fc2bfa
- rebuilt for new gcc4.1 snapshot and glibc changes
fc2bfa
fc2bfa
* Sat Feb  4 2006 Matthias Clasen <mclasen@redhat.com> 2.13.4-7
fc2bfa
- Fix requires
fc2bfa
fc2bfa
* Thu Jan 19 2006 Matthias Clasen <mclasen@redhat.com> 2.13.4-6
fc2bfa
- Test build
fc2bfa
fc2bfa
* Thu Jan 19 2006 Ray Strode <rstrode@redhat.com> 2.13.4-5
fc2bfa
- s/sed -ie/sed -i -e/
fc2bfa
fc2bfa
* Thu Jan 19 2006 Ray Strode <rstrode@redhat.com> 2.13.4-4
fc2bfa
- fix fix for bonobo shlib multilib issue (bug 156982)
fc2bfa
fc2bfa
* Thu Jan 19 2006 Ray Strode <rstrode@redhat.com> 2.13.4-3
fc2bfa
- fix bonobo shlib multilib issue (bug 156982)
fc2bfa
fc2bfa
* Tue Jan 17 2006 John (J5) Palmieri <johnp@redhat.com> 2.13.4-2
fc2bfa
- Add a BuildRequires on gnome-mount-devel so we build with
fc2bfa
  gnome-mount support
fc2bfa
fc2bfa
* Mon Jan 16 2006 Matthias Clasen <mclasen@redhat.com> 2.13.4-1
fc2bfa
- Update to 2.13.4
fc2bfa
fc2bfa
* Mon Jan 09 2006 John (J5) Palmieri  <johnp@redhat.com> 2.13.3-3
fc2bfa
- Add patch so --hal-udi is sent in when mounting and unmounting
fc2bfa
 
fc2bfa
* Mon Jan 09 2006 John (J5) Palmieri  <johnp@redhat.com> 2.13.3-2
fc2bfa
- Add dependency on gnome-mount
fc2bfa
- Add configure options for gnome-mount
fc2bfa
fc2bfa
* Thu Dec 15 2005 Matthias Clasen  <mclasen@redhat.com> 2.13.3-1
fc2bfa
- Update to 2.13.3
fc2bfa
- Drop upstreamed patches
fc2bfa
fc2bfa
* Tue Dec 13 2005 Alexander Larsson <alexl@redhat.com> 2.13.2-1
fc2bfa
- update to 2.13.2
fc2bfa
fc2bfa
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com> - 2.13.1-1.1
fc2bfa
- rebuilt
fc2bfa
fc2bfa
* Fri Dec  2 2005 Matthias Clasen <mclasen@redhat.com> - 2.13.1-1
fc2bfa
- Update to 2.13.1
fc2bfa
fc2bfa
* Thu Dec 01 2005 John (J5) Palmieri <johnp@redhat.com> - 2.12.1.1-7
fc2bfa
- rebuild for new dbus
fc2bfa
fc2bfa
* Tue Nov 22 2005 Alexander Larsson <alexl@redhat.com> - 2.12.1.1-6
fc2bfa
- Update to use avahi 0.6
fc2bfa
fc2bfa
* Wed Nov  9 2005 Tomas Mraz <tmraz@redhat.com> 2.12.1.1-5
fc2bfa
- rebuilt with new openssl
fc2bfa
fc2bfa
* Tue Nov  1 2005 Alexander Larsson <alexl@redhat.com> 2.12.1.1-4
fc2bfa
- Remove XFree86-devel buildreq, as it doesn't exist anymore.
fc2bfa
  I don't think we actually require it.
fc2bfa
fc2bfa
* Tue Oct 25 2005 Alexander Larsson <alexl@redhat.com> - 2.12.1.1-3
fc2bfa
- Use avahi instead of howl
fc2bfa
fc2bfa
* Wed Oct 19 2005 Matthias Clasen <mclasen@redhat.com> 2.12.1.1-2
fc2bfa
- Fix the cache handling in xdgmime
fc2bfa
fc2bfa
* Thu Oct  6 2005 Matthias Clasen <mclasen@redhat.com> 2.12.1.1-1
fc2bfa
- Update to 2.12.1.1
fc2bfa
- Drop upstreamed patches
fc2bfa
fc2bfa
* Tue Sep 27 2005 John (J5) Palmieir <johnp@redhat.com> 2.12.0-2
fc2bfa
- Backported patch to fix bug #167985 which corrects the size of a
fc2bfa
  readlink buffer
fc2bfa
- Added a patch to fix bug #168743 which corrects the name of a
fc2bfa
  data member from close to close_fn
fc2bfa
fc2bfa
* Wed Sep  7 2005 Matthias Clasen <mclasen@redhat.com> 2.12.0-1
fc2bfa
- Update to 2.12.0
fc2bfa
- Drop upstreamed patches
fc2bfa
fc2bfa
* Thu Aug 11 2005 David Zeuthen <davidz@redhat.com> 2.11.90-3
fc2bfa
- Add system_storage.schemas to SCHEMAS (#165703)
fc2bfa
fc2bfa
* Wed Aug 10 2005 David Zeuthen <davidz@redhat.com> 2.11.90-2
fc2bfa
- Disable a few patches that are upstream/irrelavant
fc2bfa
- Add patch to detect mounts from drives we cannot poll
fc2bfa
fc2bfa
* Fri Aug  5 2005 Matthias Clasen <mclasen@redhat.com> 2.11.90-1
fc2bfa
- New upstream version
fc2bfa
- Remove patches and sources for the desktop method, since
fc2bfa
  we don't have start-here in the UI anymore.
fc2bfa
fc2bfa
* Fri Apr 29 2005 David Zeuthen <davidz@redhat.com> 2.10.0-5
fc2bfa
- Tweak the patch a bit so it applies
fc2bfa
fc2bfa
* Fri Apr 29 2005 David Zeuthen <davidz@redhat.com> 2.10.0-4
fc2bfa
- Make local neon copy support gssapi correctly (#150132)
fc2bfa
fc2bfa
* Tue Mar 29 2005 David Zeuthen <davidz@redhat.com> 2.10.0-3
fc2bfa
- Rebuild
fc2bfa
fc2bfa
* Fri Mar 18 2005 David Zeuthen <davidz@redhat.com> 2.10.0-2
fc2bfa
- Drop a patch that was applied upstream
fc2bfa
fc2bfa
* Fri Mar 18 2005 David Zeuthen <davidz@redhat.com> 2.10.0-1
fc2bfa
- New upstream version
fc2bfa
fc2bfa
* Mon Mar  7 2005 David Zeuthen <davidz@redhat.com> - 2.9.91-8
fc2bfa
- More gcc 4.0 build fixes
fc2bfa
fc2bfa
* Mon Mar  7 2005 David Zeuthen <davidz@redhat.com> - 2.9.91-7
fc2bfa
- Rebuild
fc2bfa
fc2bfa
* Mon Mar  7 2005 David Zeuthen <davidz@redhat.com> - 2.9.91-6
fc2bfa
- Fix for gcc 4.0 build
fc2bfa
fc2bfa
* Mon Mar  7 2005 David Zeuthen <davidz@redhat.com> - 2.9.91-5
fc2bfa
- Build with patch for new hal/dbus API's - require hal-devel >= 0.5.0
fc2bfa
fc2bfa
* Wed Mar  2 2005 Tomas Mraz <tmraz@redhat.com> - 2.9.91-3
fc2bfa
- rebuild with openssl-0.9.7e
fc2bfa
fc2bfa
* Wed Feb 16 2005 Alexander Larsson <alexl@redhat.com> - 2.9.91-2
fc2bfa
- Add patch from cvs that fixes #144607
fc2bfa
fc2bfa
* Fri Feb 11 2005 Matthias Clasen <mclasen@redhat.com> 2.9.91-1
fc2bfa
- Update to 2.9.91
fc2bfa
fc2bfa
* Mon Dec 20 2004 Daniel Reed <djr@redhat.com> 2.8.2-10
fc2bfa
- rebuild for new libhowl.so.0 library (for GnomeMeeting 1.2)
fc2bfa
fc2bfa
* Thu Nov 25 2004 Jeremy Katz <katzj@redhat.com> - 2.8.2-9
fc2bfa
- rebuild to fix broken dep on x86_64 (#140679)
fc2bfa
fc2bfa
* Tue Oct 19 2004 Jonathan Blandford <jrb@redhat.com> 2.8.2-6
fc2bfa
- add new samba requirement
fc2bfa
fc2bfa
* Mon Oct 18 2004  <jrb@redhat.com> - 2.8.2-4
fc2bfa
- change default http/https handler to firefox
fc2bfa
fc2bfa
* Fri Oct 15 2004 Alexander Larsson <alexl@redhat.com> - 2.8.2-4
fc2bfa
- Handle several mtab changes in the same second (#132976)
fc2bfa
fc2bfa
* Thu Oct 14 2004 David Zeuthen <davidz@redhat.com> 2.8.2-3
fc2bfa
- Change console to pamconsole to support new util-linux and hal packages
fc2bfa
fc2bfa
* Wed Oct 13 2004 Alexander Larsson <alexl@redhat.com> - 2.8.2-2
fc2bfa
- Fix bad buffer handling bug that broke ftp uploads
fc2bfa
fc2bfa
* Mon Oct 11 2004 Alexander Larsson <alexl@redhat.com> - 2.8.2-1
fc2bfa
- Update to 2.8.2
fc2bfa
fc2bfa
* Fri Oct  8 2004 Alexander Larsson <alexl@redhat.com> - 2.8.1-8
fc2bfa
- Backport some new fixes from cvs.
fc2bfa
fc2bfa
* Tue Oct  5 2004 Alexander Larsson <alexl@redhat.com> - 2.8.1-7
fc2bfa
- update cvs backport with ssl http fix
fc2bfa
fc2bfa
* Tue Oct  5 2004 Alexander Larsson <alexl@redhat.com> - 2.8.1-6
fc2bfa
- Add cvs-backport patch with various fixed from HEAD, including
fc2bfa
  a partial fix for #134627
fc2bfa
- Removed the patches that are in the cvs-backport patch.
fc2bfa
fc2bfa
* Fri Oct  1 2004 David Zeuthen <davidz@redhat.com> 2.8.1-5
fc2bfa
- Build with hal patch
fc2bfa
fc2bfa
* Wed Sep 29 2004 David Zeuthen <davidz@redhat.com> 2.8.1-4
fc2bfa
- Apply hal patch
fc2bfa
- Support the console mount option
fc2bfa
fc2bfa
* Wed Sep 29 2004 Ray Strode <rstrode@redhat.com> 2.8.1-3
fc2bfa
- Swap if and else in egg_desktop_entries_get_locale_encoding
fc2bfa
  to prevent allocating massive amounts of unneeded ram.
fc2bfa
fc2bfa
* Mon Sep 27 2004 Mark McLoughlin <markmc@redhat.com> 2.8.1-2
fc2bfa
- Remove menu-only-show-in patch - latest KDE packages don't use
fc2bfa
  non-standard <OnlyShowIn> anymore
fc2bfa
fc2bfa
* Tue Sep 21 2004 Alexander Larsson <alexl@redhat.com> - 2.8.1-1
fc2bfa
- update to 2.8.1
fc2bfa
fc2bfa
* Thu Sep 16 2004 Mark McLoughlin <markmc@redhat.com> - 2.8.0-3
fc2bfa
- Update to desktop-file-utils 0.8 and remove a bunch of
fc2bfa
  upstreamed patches
fc2bfa
fc2bfa
* Tue Sep 14 2004 Alexander Larsson <alexl@redhat.com> - 2.8.0-2
fc2bfa
- Backport some fixes from head, including ftp stuff
fc2bfa
fc2bfa
* Mon Sep 13 2004 Alexander Larsson <alexl@redhat.com> - 2.8.0-1
fc2bfa
- update to 2.8.0
fc2bfa
- remove upstreamed patch
fc2bfa
fc2bfa
* Fri Sep  3 2004 GNOME <jrb@redhat.com> - 2.7.92-2
fc2bfa
- remove mozilla as default browser
fc2bfa
fc2bfa
* Wed Sep  1 2004 Alexander Larsson <alexl@redhat.com> - 2.7.92-2
fc2bfa
- add fstab_sync patch from upstream
fc2bfa
fc2bfa
* Tue Aug 31 2004 Alex Larsson <alexl@redhat.com> 2.7.92-1
fc2bfa
- update to 2.7.92
fc2bfa
fc2bfa
* Thu Aug 19 2004 Alex Larsson <alexl@redhat.com> 2.7.91-1
fc2bfa
- update to 2.7.91
fc2bfa
fc2bfa
* Tue Aug 10 2004 Alexander Larsson <alexl@redhat.com> - 2.7.90-3
fc2bfa
- Build for new howl (requires patch)
fc2bfa
- Add dns-sd schema
fc2bfa
fc2bfa
* Sun Aug  8 2004 Christopher Aillon <caillon@redhat.com> 2.7.90-2
fc2bfa
- Add compiler fix for an enumerator with trailing comma.
fc2bfa
fc2bfa
* Wed Aug  4 2004 Mark McLoughlin <markmc@redhat.com> 2.7.90-1
fc2bfa
- Update to 2.7.90
fc2bfa
- Remove cvs-backport patch
fc2bfa
- Add BuildRequires for krb5-devel, howl-devel and hal-devel
fc2bfa
- Fixup the schema-about and mozilla patches
fc2bfa
fc2bfa
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
fc2bfa
- rebuilt
fc2bfa
fc2bfa
* Thu May 13 2004 Elliot Lee <sopwith@redhat.com> 2.6.0-8
fc2bfa
- Patch61 (desktop-file-utils-0.6-pleasecreate.patch) to fix #119446
fc2bfa
fc2bfa
* Tue May 04 2004 Dan Williams <dcbw@redhat.com> 2.6.0-7
fc2bfa
- Update to desktop-file-utils 0.6
fc2bfa
- Implement monitoring to detect addition/deletion of .desktop files
fc2bfa
- Fix RH #118553, crash when reading symlink that points to
fc2bfa
    nothing in libmenu.so VFS backend
fc2bfa
fc2bfa
* Thu Apr 22 2004 Mark McLoughlin <markmc@redhat.com> - 2.6.0-6
fc2bfa
- Fix crash when .desktop files aren't readable (bug #120014)
fc2bfa
fc2bfa
* Fri Apr 16 2004 Alexander Larsson <alexl@redhat.com> 2.6.0-5
fc2bfa
- Make mozilla default http handler since epi might not be installed
fc2bfa
fc2bfa
* Thu Apr 15 2004 Alexander Larsson <alexl@redhat.com> 2.6.0-4
fc2bfa
- New cvs backport with sftp fix
fc2bfa
fc2bfa
* Wed Apr 14 2004 Alexander Larsson <alexl@redhat.com> 2.6.0-3
fc2bfa
- install more schemas in post
fc2bfa
fc2bfa
* Wed Apr 14 2004 Alexander Larsson <alexl@redhat.com> 2.6.0-2
fc2bfa
- Add cvs fixes backport
fc2bfa
fc2bfa
* Tue Mar 23 2004 Alex Larsson <alexl@redhat.com> 2.6.0-1
fc2bfa
- update to 2.6.0
fc2bfa
fc2bfa
* Thu Mar 18 2004 Warren Togami <wtogami@redhat.com> 2.5.91-3
fc2bfa
- #118614 patches 100 and 101
fc2bfa
fc2bfa
* Wed Mar 17 2004 Dan Williams <dcbw@redhat.com> 2.5.91-2
fc2bfa
- Support .directory file "NoDisplay" keys in libmenu.so VFS backend
fc2bfa
fc2bfa
* Mon Mar 15 2004 Alex Larsson <alexl@redhat.com> 2.5.91-1
fc2bfa
- update to 2.5.91
fc2bfa
fc2bfa
* Fri Mar 12 2004 Dan Williams <dcbw@redhat.com> 2.5.90-3
fc2bfa
- Make OnlyShowIn for .desktop files actually work
fc2bfa
fc2bfa
* Thu Mar 11 2004 Dan Williams <dcbw@redhat.com> 2.5.90-2
fc2bfa
- Add desktop-file-utils to build the new libmenu.so VFS backend
fc2bfa
    for .menu files.  Its a hack for now, and will eventually
fc2bfa
    be replaced by upstreaming the d-f-u code
fc2bfa
fc2bfa
* Mon Mar  8 2004 Alexander Larsson <alexl@redhat.com> 2.5.90-1
fc2bfa
- update to 2.5.90
fc2bfa
fc2bfa
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
fc2bfa
- rebuilt
fc2bfa
fc2bfa
* Wed Feb 25 2004 Alexander Larsson <alexl@redhat.com> 2.5.8-2
fc2bfa
- fix some packaging issues (#115807)
fc2bfa
fc2bfa
* Mon Feb 23 2004 Alexander Larsson <alexl@redhat.com> 2.5.8-1
fc2bfa
- update to 2.5.8
fc2bfa
- fix smb filelist
fc2bfa
- add devel docs
fc2bfa
fc2bfa
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
fc2bfa
- rebuilt
fc2bfa
fc2bfa
* Fri Feb 13 2004 Alexander Larsson <alexl@redhat.com> 2.5.7-1
fc2bfa
- update to 2.5.7
fc2bfa
fc2bfa
* Mon Feb  9 2004 Alexander Larsson <alexl@redhat.com> 2.5.6-4
fc2bfa
- build-req fam-devel and openssl-devel (#111109)
fc2bfa
- Own libdir/gnome-vfs-2.0/include (#113045)
fc2bfa
fc2bfa
* Fri Feb  6 2004 Alexander Larsson <alexl@redhat.com> 2.5.6-3
fc2bfa
- Clean up the patch list
fc2bfa
- Fix the network: issue
fc2bfa
- Remove core file from tarball
fc2bfa
fc2bfa
* Thu Feb  5 2004 Alexander Larsson <alexl@redhat.com> 2.5.6-2
fc2bfa
- Fix daemon server file
fc2bfa
fc2bfa
* Fri Jan 30 2004 Alexander Larsson <alexl@redhat.com> 2.5.6-1
fc2bfa
- update to 2.5.6
fc2bfa
fc2bfa
* Thu Jan 29 2004 Jonathan Blandford <jrb@redhat.com> 2.5.5-5
fc2bfa
- re-add the vfolder patch
fc2bfa
fc2bfa
* Fri Jan 23 2004 Alexander Larsson <alexl@redhat.com> 2.5.5-4
fc2bfa
- Split smb into its own subpackage
fc2bfa
fc2bfa
* Wed Jan 21 2004 Alexander Larsson <alexl@redhat.com> 2.5.5-3
fc2bfa
- provide gnome-vfs-extras2
fc2bfa
fc2bfa
* Mon Jan 19 2004 Alexander Larsson <alexl@redhat.com> 2.5.5-2
fc2bfa
- add shared-mime-info dep
fc2bfa
- obsolete gnome-vfs2-extras
fc2bfa
fc2bfa
* Fri Jan 16 2004 Jonathan Blandford <jrb@redhat.com> 2.5.5-1
fc2bfa
- new version for GNOME 2.5
fc2bfa
fc2bfa
* Wed Oct 15 2003 Alexander Larsson <alexl@redhat.com> 2.4.1-1
fc2bfa
- Update to 2.4.1, fixes bug #107130
fc2bfa
fc2bfa
* Tue Sep  9 2003 Alexander Larsson <alexl@redhat.com> 2.4.0-1
fc2bfa
- update to 2.4.0
fc2bfa
fc2bfa
* Tue Sep  2 2003 Alexander Larsson <alexl@redhat.com> 2.3.90-1
fc2bfa
- update to 2.3.90
fc2bfa
fc2bfa
* Mon Aug 25 2003 Alexander Larsson <alexl@redhat.com> 2.3.8-1
fc2bfa
- update to 2.3.8
fc2bfa
fc2bfa
* Mon Aug 11 2003 Alexander Larsson <alexl@redhat.com> 2.3.7-1
fc2bfa
- update for gnome 2.3
fc2bfa
fc2bfa
* Tue Jul 22 2003 Nalin Dahyabhai <nalin@redhat.com> 2.2.5-3
fc2bfa
- rebuild, setting tagname to CC
fc2bfa
fc2bfa
* Tue Jul  8 2003 Alexander Larsson <alexl@redhat.com> 2.2.5-2.E
fc2bfa
- Rebuild
fc2bfa
fc2bfa
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
fc2bfa
- rebuilt
fc2bfa
fc2bfa
* Tue May 27 2003 Alexander Larsson <alexl@redhat.com> 2.2.5-1
fc2bfa
- Update to 2.2.5
fc2bfa
fc2bfa
* Mon Mar 31 2003 Alexander Larsson <alexl@redhat.com> 2.2.4-1
fc2bfa
- Update to 2.2.4
fc2bfa
fc2bfa
* Mon Feb 24 2003 Elliot Lee <sopwith@redhat.com>
fc2bfa
- debuginfo rebuild
fc2bfa
fc2bfa
* Mon Feb 24 2003 Alexander Larsson <alexl@redhat.com> 2.2.2-3
fc2bfa
- Added patch to fix smb crash (#84982)
fc2bfa
fc2bfa
* Mon Feb 24 2003 Alexander Larsson <alexl@redhat.com> 2.2.2-2
fc2bfa
- Add patch to fix notify race (#84668)
fc2bfa
fc2bfa
* Wed Feb 12 2003 Alexander Larsson <alexl@redhat.com> 2.2.2-1
fc2bfa
- 2.2.2, fixes bad memleak (#83791)
fc2bfa
fc2bfa
* Tue Feb 11 2003 Havoc Pennington <hp@redhat.com> 2.2.1-3
fc2bfa
- kill menu editing again, it was very very broken
fc2bfa
fc2bfa
* Mon Feb 10 2003 Bill Nottingham <notting@redhat.com> 2.2.1-2
fc2bfa
- fix file list (#68226)
fc2bfa
- prereq GConf2
fc2bfa
fc2bfa
* Mon Feb 10 2003 Alexander Larsson <alexl@redhat.com> 2.2.1-1
fc2bfa
- Update to 2.2.1. fixes gnome-theme-manager hang
fc2bfa
fc2bfa
* Thu Feb  6 2003 Havoc Pennington <hp@redhat.com> 2.2.0-7
fc2bfa
- move to menu editing modules.conf by default, we'll see if it works
fc2bfa
fc2bfa
* Tue Jan 28 2003 Matt Wilson <msw@redhat.com> 2.2.0-6
fc2bfa
- use LIBTOOL=/usr/bin/libtool
fc2bfa
fc2bfa
* Mon Jan 27 2003 Havoc Pennington <hp@redhat.com>
fc2bfa
- it would help to *install* the stupid menu edit conf file
fc2bfa
- update the vfolder-hacks patch with some fixes
fc2bfa
fc2bfa
* Fri Jan 24 2003 Havoc Pennington <hp@redhat.com>
fc2bfa
- hack up editable vfolder backend to maybe work
fc2bfa
  (still not the default config file)
fc2bfa
fc2bfa
* Wed Jan 22 2003 Havoc Pennington <hp@redhat.com>
fc2bfa
- include a non-default config file to use new vfolder method
fc2bfa
- build the new vfolder method
fc2bfa
fc2bfa
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
fc2bfa
- rebuilt
fc2bfa
fc2bfa
* Tue Jan 21 2003 Alexander Larsson <alexl@redhat.com>
fc2bfa
- Update to 2.2.0
fc2bfa
fc2bfa
* Mon Jan 13 2003 Havoc Pennington <hp@redhat.com>
fc2bfa
- variation on the subfolders hack to try to fix it
fc2bfa
fc2bfa
* Sat Jan 11 2003 Havoc Pennington <hp@redhat.com>
fc2bfa
- fix bug where empty folders with empty subfolders would
fc2bfa
  still be visible.
fc2bfa
fc2bfa
* Sat Jan 11 2003 Havoc Pennington <hp@redhat.com>
fc2bfa
- finish adapting desktop-method.c to underscore-prefixing action
fc2bfa
fc2bfa
* Sat Jan 11 2003 Havoc Pennington <hp@redhat.com>
fc2bfa
- adapt desktop-method.c to underscore-prefixing action
fc2bfa
fc2bfa
* Sat Jan 11 2003 Havoc Pennington <hp@redhat.com>
fc2bfa
- hardcode <DontShowIfEmpty>, it's stupid to ever override this.
fc2bfa
fc2bfa
* Sat Jan 11 2003 Havoc Pennington <hp@redhat.com>
fc2bfa
- make network:/// use libdesktop.so, and modify libdesktop.so 
fc2bfa
  to support it
fc2bfa
fc2bfa
* Sat Jan 11 2003 Havoc Pennington <hp@redhat.com>
fc2bfa
- Revert to George's vfolder backend from gnome-vfs-2.0.2 or so
fc2bfa
- put back libdesktop.so
fc2bfa
- don't build the new vfolder backend
fc2bfa
fc2bfa
* Wed Jan  8 2003 Alexander Larsson <alexl@redhat.com> 2.1.6-2
fc2bfa
- Removed __libdir fix that was fixed upstream
fc2bfa
fc2bfa
* Wed Jan  8 2003 Alexander Larsson <alexl@redhat.com> 2.1.6-1
fc2bfa
- Update to 2.1.6
fc2bfa
fc2bfa
* Tue Jan  7 2003 Nalin Dahyabhai <nalin@redhat.com> 2.1.5-3
fc2bfa
- rebuild
fc2bfa
fc2bfa
* Mon Dec 16 2002 Tim Powers <timp@redhat.com> 2.1.5-2
fc2bfa
- rebuild
fc2bfa
fc2bfa
* Mon Dec 16 2002 Alexander Larsson <alexl@redhat.com> 2.1.5-1
fc2bfa
- Update to 2.1.5
fc2bfa
fc2bfa
* Thu Dec 12 2002 Nalin Dahyabhai <nalin@redhat.com>
fc2bfa
- use OpenSSL's pkg-config information, if available
fc2bfa
fc2bfa
* Wed Dec  4 2002 Havoc Pennington <hp@redhat.com>
fc2bfa
- 2.1.3.1
fc2bfa
fc2bfa
* Sun Nov 10 2002 Havoc Pennington <hp@redhat.com>
fc2bfa
- 2.1.3
fc2bfa
- update moved-menu-files patch
fc2bfa
fc2bfa
* Wed Oct 23 2002 Havoc Pennington <hp@redhat.com>
fc2bfa
- add patch for OnlyShowIn support
fc2bfa
- use plain menu files for .vfolder-info-default
fc2bfa
- don't install unused vfolder-info files
fc2bfa
fc2bfa
* Tue Oct  8 2002 Havoc Pennington <hp@redhat.com>
fc2bfa
- require new gnome-mime-data in proper libdir
fc2bfa
- 2.0.4
fc2bfa
- drop most patches as they are now upstream or 
fc2bfa
  don't apply to new vfolder code
fc2bfa
fc2bfa
* Fri Aug 30 2002 Owen Taylor <otaylor@redhat.com>
fc2bfa
- Backport a gnome-vfs locking fix from CVS 
fc2bfa
  (Hopefully fixes #71419)
fc2bfa
fc2bfa
* Fri Aug 23 2002 Havoc Pennington <hp@redhat.com>
fc2bfa
- make vfolder method read-only #72208
fc2bfa
fc2bfa
* Mon Aug 19 2002 Jonathan Blandford <jrb@redhat.com>
fc2bfa
- notice when new files are installed
fc2bfa
fc2bfa
* Tue Aug 13 2002 Havoc Pennington <hp@redhat.com>
fc2bfa
- don't include pointless .a files
fc2bfa
fc2bfa
* Fri Aug  2 2002 Havoc Pennington <hp@redhat.com>
fc2bfa
- 2.0.2
fc2bfa
- use vfolders for system-settings and server-settings
fc2bfa
fc2bfa
* Tue Jul 16 2002 Havoc Pennington <hp@redhat.com>
fc2bfa
- fix OnlyShowIn
fc2bfa
fc2bfa
* Tue Jun 25 2002 Owen Taylor <otaylor@redhat.com>
fc2bfa
- Version 2.0.1, fix missing po files
fc2bfa
fc2bfa
* Sun Jun 16 2002 Havoc Pennington <hp@redhat.com>
fc2bfa
- 2.0.0
fc2bfa
- put schema files in file list, and install them
fc2bfa
- put libdir/vfs in file list
fc2bfa
fc2bfa
* Tue Jun 11 2002 Havoc Pennington <hp@redhat.com>
fc2bfa
- rebuild in different environment
fc2bfa
fc2bfa
* Tue Jun 11 2002 Havoc Pennington <hp@redhat.com>
fc2bfa
- look for menus in redhat-menus
fc2bfa
fc2bfa
* Fri Jun 07 2002 Havoc Pennington <hp@redhat.com>
fc2bfa
- rebuild in different environment
fc2bfa
fc2bfa
* Wed Jun  5 2002 Havoc Pennington <hp@redhat.com>
fc2bfa
- 1.9.16
fc2bfa
fc2bfa
* Sun May 26 2002 Tim Powers <timp@redhat.com>
fc2bfa
- automated rebuild
fc2bfa
fc2bfa
* Mon May 20 2002 Havoc Pennington <hp@redhat.com>
fc2bfa
- rebuild in different environment
fc2bfa
fc2bfa
* Mon May 20 2002 Havoc Pennington <hp@redhat.com>
fc2bfa
- 1.9.15
fc2bfa
- comment out docdir patch for now
fc2bfa
fc2bfa
* Fri May  3 2002 Havoc Pennington <hp@redhat.com>
fc2bfa
- 1.9.14
fc2bfa
fc2bfa
* Thu Apr  4 2002 Jeremy Katz <katzj@redhat.com>
fc2bfa
- 1.9.11
fc2bfa
- update file list
fc2bfa
fc2bfa
* Thu Feb 14 2002 Havoc Pennington <hp@redhat.com>
fc2bfa
- 1.9.7
fc2bfa
fc2bfa
* Thu Jan 31 2002 Owen Taylor <otaylor@redhat.com>
fc2bfa
- Fix location of installed docs not to conflict with gnome-vfs1
fc2bfa
fc2bfa
* Wed Jan 30 2002 Owen Taylor <otaylor@redhat.com>
fc2bfa
- Rebuild with new libs
fc2bfa
fc2bfa
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
fc2bfa
- automated rebuild
fc2bfa
fc2bfa
* Thu Jan  3 2002 Havoc Pennington <hp@redhat.com>
fc2bfa
- 1.0.4.91 snap
fc2bfa
fc2bfa
* Mon Nov 26 2001 Havoc Pennington <hp@redhat.com>
fc2bfa
- 1.9.4.90 snap
fc2bfa
- require gnome-mime-data
fc2bfa
fc2bfa
* Sun Oct 28 2001 Havoc Pennington <hp@redhat.com>
fc2bfa
- new snap, rebuild for glib 1.3.10
fc2bfa
fc2bfa
* Fri Oct  5 2001 Havoc Pennington <hp@redhat.com>
fc2bfa
- cvs snap
fc2bfa
fc2bfa
* Fri Sep 21 2001 Havoc Pennington <hp@redhat.com>
fc2bfa
- rebuild cvs snap with changes merged upstream
fc2bfa
- fix a requires
fc2bfa
- fix up requires/buildrequires a bit
fc2bfa
fc2bfa
* Tue Sep 18 2001 Havoc Pennington <hp@redhat.com>
fc2bfa
- initial gnome-vfs2 build, remove all patches
fc2bfa
- change config files not to be noreplace
fc2bfa
fc2bfa
* Mon Aug 27 2001 Havoc Pennington <hp@redhat.com>
fc2bfa
- Add po files from sources.redhat.com
fc2bfa
fc2bfa
* Mon Aug 20 2001 Havoc Pennington <hp@redhat.com>
fc2bfa
- fix #51864 (Gimp can't handle file: URIs)
fc2bfa
fc2bfa
* Mon Aug 20 2001 Alexander Larsson <alexl@redhat.com> 1.0.1-15
fc2bfa
- Moved gnome-conf and pkgconfig files to the devel package
fc2bfa
- Fixes SHOULD-FIX bug #49795
fc2bfa
fc2bfa
* Mon Aug  6 2001 Alexander Larsson <alexl@redhat.com> 1.0.1-14
fc2bfa
- Added a patch that fixed AbiWord mimetype handling.
fc2bfa
fc2bfa
* Fri Jul 27 2001 Jonathan Blandford <jrb@redhat.com>
fc2bfa
- Add .desktop file sniffing
fc2bfa
fc2bfa
* Tue Jul 24 2001 Havoc Pennington <hp@redhat.com>
fc2bfa
- don't do the giant trash scan thing; did not play nice
fc2bfa
  with NFS.
fc2bfa
fc2bfa
* Tue Jul 24 2001 Havoc Pennington <hp@redhat.com>
fc2bfa
- fix desktop-file.conf file
fc2bfa
fc2bfa
* Tue Jul 24 2001 Havoc Pennington <hp@redhat.com>
fc2bfa
- change some URI scheme names
fc2bfa
fc2bfa
* Fri Jul 20 2001 Alexander Larsson <alexl@redhat.com>
fc2bfa
- Add pkgconfig and gnome-libs-devel build reqs.
fc2bfa
- Remove dependency on gnome-vfs-devel by doing some
fc2bfa
- CPPFLAGS and LDFLAGS magic
fc2bfa
fc2bfa
* Wed Jul 11 2001 Havoc Pennington <hp@redhat.com>
fc2bfa
- add missing directories
fc2bfa
fc2bfa
* Tue Jul 10 2001 Havoc Pennington <hp@redhat.com>
fc2bfa
- fix a segv
fc2bfa
- change which dirs the desktop VFS module points to
fc2bfa
fc2bfa
* Sun Jul 08 2001 Havoc Pennington <hp@redhat.com>
fc2bfa
- add desktop VFS module hack
fc2bfa
fc2bfa
* Fri Jul  6 2001 Trond Eivind Glomsrød <teg@redhat.com>
fc2bfa
- Remove Distribution and Vendor
fc2bfa
- Make the config files noreplace
fc2bfa
- Move .so links to devel subpackage
fc2bfa
- langify
fc2bfa
- Add BuildRequires
fc2bfa
- Don't mess with /etc/ld.so.conf
fc2bfa
- Use %%{_tmppath}
fc2bfa
- s/Copyright/License/
fc2bfa
fc2bfa
* Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
fc2bfa
- Bump release + rebuild.
fc2bfa
fc2bfa
* Wed May  9 2001 Jonathan Blandford <jrb@redhat.com>
fc2bfa
- New Version.
fc2bfa
fc2bfa
* Tue Apr 17 2001 Jonathan Blandford <jrb@redhat.com>
fc2bfa
- New Version.
fc2bfa
- clean up spec file some.
fc2bfa
fc2bfa
* Mon Feb 19 2001 Gregory Leblanc <gleblanc@cu-portland.edu>
fc2bfa
- fix paths and macros
fc2bfa
fc2bfa
* Tue Feb 22 2000 Ross Golder <rossigee@bigfoot.com>
fc2bfa
- Integrate into source tree