tracker/tracker.spec

393 lines
13 KiB
RPMSpec
Raw Normal View History

2007-07-24 02:24:50 +00:00
Summary: An object database, tag/metadata database, search tool and indexer
Name: tracker
2010-09-02 16:07:33 +00:00
Version: 0.8.17
2010-06-28 17:46:56 +00:00
Release: 1%{?dist}
2007-08-03 18:25:19 +00:00
License: GPLv2+
2007-07-24 02:24:50 +00:00
Group: Applications/System
2009-02-10 03:18:10 +00:00
URL: http://projects.gnome.org/tracker/
2010-04-01 18:25:07 +00:00
Source0: http://ftp.gnome.org/pub/GNOME/sources/tracker/0.8/%{name}-%{version}.tar.bz2
2010-04-19 17:04:48 +00:00
Patch0: tracker-0.8-doc-build.patch
Patch1: tracker-eds-build-fix.patch
2007-07-24 02:24:50 +00:00
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
2010-09-02 16:07:33 +00:00
BuildRequires: poppler-glib-devel libxml2-devel libgsf-devel
2010-03-03 16:08:51 +00:00
BuildRequires: libuuid-devel libnotify-devel dbus-devel
BuildRequires: gnome-desktop-devel nautilus-devel gnome-panel-devel
BuildRequires: libjpeg-devel libexif-devel exempi-devel raptor-devel
BuildRequires: libiptcdata-devel libtiff-devel libpng-devel
BuildRequires: sqlite-devel vala-devel libgee-devel pygtk2-devel
BuildRequires: gstreamer-plugins-base-devel gstreamer-devel id3lib-devel
BuildRequires: totem-pl-parser-devel libvorbis-devel flac-devel enca-devel
2010-09-02 16:07:33 +00:00
BuildRequires: upower-devel gnome-keyring-devel evolution-data-server-devel
2010-03-03 16:08:51 +00:00
BuildRequires: desktop-file-utils intltool gettext graphviz
2010-03-25 20:41:24 +00:00
Requires: odt2txt
%description
Tracker is a powerful desktop-neutral first class object database,
tag/metadata database, search tool and indexer.
It consists of a common object database that allows entities to have an
almost infinte number of properties, metadata (both embedded/harvested as
well as user definable), a comprehensive database of keywords/tags and
links to other entities.
It provides additional features for file based objects including context
linking and audit trails for a file object.
It has the ability to index, store, harvest metadata. retrieve and search
2010-03-03 16:08:51 +00:00
all types of files and other first class objects
%package devel
2007-07-24 02:24:50 +00:00
Summary: Headers for developing programs that will use %{name}
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}
Requires: pkgconfig
2007-09-26 03:45:04 +00:00
Requires: dbus-glib-devel gtk2-devel
%description devel
This package contains the static libraries and header files needed for
developing with tracker
%package search-tool
2007-07-24 02:24:50 +00:00
Summary: Tracker search tool(s)
Group: User Interface/Desktops
Requires: %{name} = %{version}-%{release}
Obsoletes: paperbox <= 0.4.4
%description search-tool
2010-03-25 20:41:24 +00:00
Graphical frontend to tracker search and tagging facilities. This has
dependencies on GNOME libraries
%package evolution-plugin
Summary: Tracker's evolution plugin
Group: User Interface/Desktops
Requires: %{name} = %{version}-%{release}
%description evolution-plugin
Tracker's evolution plugin
2010-03-03 16:08:51 +00:00
%package docs
Summary: Documentations for tracker
Group: Documentation
BuildArch: noarch
%description docs
This package contains the documentation for tracker
%prep
%setup -q
2010-08-20 15:30:31 +00:00
%patch0 -p0
%patch1 -p0
2010-03-03 16:08:51 +00:00
%global evo_plugins_dir %(pkg-config evolution-plugin --variable=plugindir)
2009-03-29 00:35:11 +00:00
2007-09-26 03:45:04 +00:00
%build
2010-04-19 17:04:48 +00:00
%configure --disable-static --enable-tracker-search-bar \
--enable-gtk-doc --disable-functional-tests
# Disable rpath
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
2010-03-03 16:08:51 +00:00
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
2010-03-03 16:08:51 +00:00
make V=1 %{?_smp_mflags}
%install
rm -rf %{buildroot}
2007-07-24 02:24:50 +00:00
make DESTDIR=%{buildroot} install
mkdir -p %{buildroot}%{_sysconfdir}/ld.so.conf.d
2010-04-01 18:25:07 +00:00
echo "%{_libdir}/tracker-0.8" \
2009-03-13 18:04:27 +00:00
> %{buildroot}%{_sysconfdir}/ld.so.conf.d/tracker-%{_arch}.conf
2007-07-24 02:24:50 +00:00
desktop-file-install --delete-original \
--vendor="fedora" \
--dir=%{buildroot}%{_datadir}/applications \
%{buildroot}%{_datadir}/applications/%{name}-search-tool.desktop
find %{buildroot} -type f -name "*.la" -exec rm -f {} ';'
2010-04-19 17:04:48 +00:00
rm -rf %{buildroot}%{_datadir}/tracker-tests
%find_lang %{name}
%clean
rm -rf %{buildroot}
%post -p /sbin/ldconfig
%post search-tool
touch --no-create %{_datadir}/icons/hicolor
if [ -x %{_bindir}/gtk-update-icon-cache ]; then
%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
fi
%postun -p /sbin/ldconfig
%postun search-tool
touch --no-create %{_datadir}/icons/hicolor
if [ -x %{_bindir}/gtk-update-icon-cache ]; then
%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
fi
%files -f %{name}.lang
%defattr(-, root, root, -)
%doc AUTHORS ChangeLog COPYING NEWS README
%{_bindir}/tracker*
2009-02-10 03:18:10 +00:00
%{_libexecdir}/tracker*
%{_datadir}/tracker/
2010-03-03 16:08:51 +00:00
%{_datadir}/dbus-1/services/org.freedesktop.Tracker*
%{_libdir}/*.so.*
2010-04-01 18:25:07 +00:00
%{_libdir}/tracker-0.8/
2007-07-24 02:24:50 +00:00
%{_mandir}/*/tracker*.gz
2010-03-03 16:08:51 +00:00
%{_sysconfdir}/ld.so.conf.d/tracker-%{_arch}.conf
%{_sysconfdir}/xdg/autostart/tracker*.desktop
%exclude %{_bindir}/tracker-preferences
%exclude %{_bindir}/tracker-search-tool
%exclude %{_libexecdir}/tracker-search-bar
2010-03-03 16:08:51 +00:00
%exclude %{_mandir}/man1/tracker-search-bar.1.gz
2009-06-04 10:45:39 +00:00
%exclude %{_mandir}/man1/tracker-preferences.1.gz
%exclude %{_mandir}/man1/tracker-search-tool.1.gz
%files devel
%defattr(-, root, root, -)
2010-04-01 18:25:07 +00:00
%{_includedir}/tracker-0.8/
%{_libdir}/*.so
%{_libdir}/pkgconfig/*.pc
%{_datadir}/vala/vapi/tracker*.*
%files search-tool
%defattr(-, root, root, -)
2007-07-24 02:24:50 +00:00
%{_bindir}/tracker-preferences
%{_bindir}/tracker-search-tool
%{_libexecdir}/tracker-search-bar
2010-03-25 20:41:24 +00:00
%{_libdir}/nautilus/extensions-2.0/libnautilus-tracker-tags.so
%{_libdir}/bonobo/servers/GNOME_Search_Bar_Applet.server
2007-07-24 02:24:50 +00:00
%{_datadir}/icons/*/*/apps/tracker.*
%{_datadir}/applications/*.desktop
2010-03-03 16:08:51 +00:00
%{_mandir}/man1/tracker-search-bar.1.gz
2009-06-04 10:45:39 +00:00
%{_mandir}/man1/tracker-preferences.1.gz
%{_mandir}/man1/tracker-search-tool.1.gz
%files evolution-plugin
%defattr(-, root, root, -)
%{evo_plugins_dir}/liborg-freedesktop-Tracker-evolution-plugin.so
%{evo_plugins_dir}/org-freedesktop-Tracker-evolution-plugin.eplug
2010-03-03 16:08:51 +00:00
%files docs
%defattr(-, root, root, -)
%doc docs/reference/COPYING
2010-03-03 16:08:51 +00:00
%{_datadir}/gtk-doc/html/libtracker-common/
%{_datadir}/gtk-doc/html/libtracker-miner/
%{_datadir}/gtk-doc/html/libtracker-client/
%{_datadir}/gtk-doc/html/libtracker-extract/
%{_datadir}/gtk-doc/html/ontology/
2010-01-28 08:53:37 +00:00
2010-03-03 16:08:51 +00:00
%changelog
2010-09-02 16:07:33 +00:00
* Thu Sep 02 2010 Deji Akingunola <dakingun@gmail.com> - 0.8.17-1
- Update to 0.8.17 release
2010-08-20 15:30:31 +00:00
* Fri Aug 20 2010 Deji Akingunola <dakingun@gmail.com> - 0.8.16-1
- Update to 0.8.16 release
2010-08-19 16:50:33 +00:00
* Thu Aug 19 2010 Rex Dieter <rdieter@fedoraproject.org> - 0.8.15-2
- rebuild (poppler)
* Fri Jul 16 2010 Deji Akingunola <dakingun@gmail.com> - 0.8.15-1
- Update to 0.8.15 release
- Package the docs licensing file
- Patch for EDS API changes (Migrate from CamelException to GError)
- Backport a memory leak fix
2010-06-28 17:46:56 +00:00
* Mon Jun 28 2010 Deji Akingunola <dakingun@gmail.com> - 0.8.13-1
- Update to 0.8.13 release
2010-06-22 14:34:14 +00:00
* Tue Jun 22 2010 Matthias Clasen <mclasen@redhat.com> - 0.8.11-2
- Rebuild against new poppler
* Tue Jun 15 2010 Deji Akingunola <dakingun@gmail.com> - 0.8.11-1
- Update to 0.8.11 release
- Adapt to EDS Camel API changes (Convert CamelObject events to GObject signals), patch not tested yet.
* Thu May 27 2010 Deji Akingunola <dakingun@gmail.com> - 0.8.9-1
- Update to 0.8.9 release
* Thu May 06 2010 Deji Akingunola <dakingun@gmail.com> - 0.8.5-1
- Update to 0.8.5 release
- Provide an upgrade path for paperbox (make ~-search-tool obsolete it) on F-13.
- Patch to build with eds-2.31.1 (Camel headers locked down)
2010-04-29 17:41:09 +00:00
* Thu Apr 29 2010 Deji Akingunola <dakingun@gmail.com> - 0.8.4-1
- Update to 0.8.4 release
2010-04-19 17:04:48 +00:00
* Mon Apr 19 2010 Deji Akingunola <dakingun@gmail.com> - 0.8.2-1
- Update to 0.8.2 release
2010-04-01 18:25:07 +00:00
* Thu Apr 01 2010 Deji Akingunola <dakingun@gmail.com> - 0.8.0-1
- Update to 0.8.0 release
2010-03-25 20:41:24 +00:00
* Thu Mar 25 2010 Deji Akingunola <dakingun@gmail.com> - 0.7.28-1
- Update to 0.7.28 release
2010-03-11 18:17:20 +00:00
* Thu Mar 11 2010 Deji Akingunola <dakingun@gmail.com> - 0.7.25-1
- Update to 0.7.25 release
2010-03-03 16:08:51 +00:00
* Tue Mar 02 2010 Deji Akingunola <dakingun@gmail.com> - 0.7.23-1
- Update to 0.7.23 release
* Sat Aug 29 2009 Deji Akingunola <dakingun@gmail.com> - 0.6.95-4
- Explicitly require apps needed in the text filters of common documents (Fedora bug #517930)
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.95-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
* Thu Jun 04 2009 Deji Akingunola <dakingun@gmail.com> - 0.6.95-2
- Ship the manpages in the appropriate sub-packages (Fedora bug #479278)
2009-05-29 12:44:43 +00:00
* Fri May 22 2009 Deji Akingunola <dakingun@gmail.com> - 0.6.95-1
- Update to 0.6.95 release
2009-05-01 18:55:25 +00:00
* Fri May 01 2009 Deji Akingunola <dakingun@gmail.com> - 0.6.94-1
- Update to 0.6.94 release
2009-04-11 02:15:59 +00:00
* Thu Apr 09 2009 Deji Akingunola <dakingun@gmail.com> - 0.6.93-1
- Update to 0.6.93 release
2009-03-29 00:35:11 +00:00
* Fri Mar 28 2009 Deji Akingunola <dakingun@gmail.com> - 0.6.92-1
- Update to 0.6.92 release
2009-03-13 18:04:27 +00:00
* Fri Mar 13 2009 Deji Akingunola <dakingun@gmail.com> - 0.6.91-1
- Update to 0.6.91 release
2009-02-10 03:18:10 +00:00
* Mon Feb 09 2009 Deji Akingunola <dakingun@gmail.com> - 0.6.90-1
- New release, with tons of changes
2008-12-23 15:37:24 +00:00
* Tue Dec 23 2008 - Caolán McNamara <caolanm@redhat.com> - 0.6.6-10
- make build
2008-12-15 21:56:01 +00:00
* Mon Dec 15 2008 - Bastien Nocera <bnocera@redhat.com> - 0.6.6-9
- Add libtool BR
* Mon Dec 15 2008 - Bastien Nocera <bnocera@redhat.com> - 0.6.6-8
- Update patch to actually apply, way to do releases often
2008-12-15 20:58:57 +00:00
* Mon Dec 15 2008 - Bastien Nocera <bnocera@redhat.com> - 0.6.6-7
- Add patch to port to GMime 2.4
2008-12-10 00:54:16 +00:00
* Wed Dec 10 2008 - Bastien Nocera <bnocera@redhat.com> - 0.6.6-6
- Rebuild for gmime dependency
2008-12-01 15:00:54 +00:00
* Mon Dec 01 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.6.6-5
- Rebuild for Python 2.6
2008-11-28 15:45:13 +00:00
* Fri Nov 28 2008 Caolán McNamara <caolanm@redhat.com> - 0.6.6-4
- rebuild for dependancies
2008-06-05 13:18:39 +00:00
* Thu Jun 05 2008 Caolán McNamara <caolanm@redhat.com> - 0.6.6-3
- rebuild for dependancies
* Fri Mar 14 2008 Deji Akingunola <dakingun@gmail.com> - 0.6.6-2
- BR poppler-glib-devel instead of poppler-devel for pdf extract module (Thanks to Karsten Hopp mass rebuild work for bringing this to light)
2008-03-03 05:06:39 +00:00
* Sun Mar 02 2008 Deji Akingunola <dakingun@gmail.com> - 0.6.6-1
- New release 0.6.6
2008-02-28 05:55:33 +00:00
* Thu Feb 28 2008 Deji Akingunola <dakingun@gmail.com> - 0.6.5-1
- New release 0.6.5
* Fri Feb 22 2008 Deji Akingunola <dakingun@gmail.com> - 0.6.4-7
- Ship the tracker-applet program in the tracker-search-tool subpackage
(Bug #434551)
2008-02-11 04:52:16 +00:00
* Sun Feb 10 2008 Deji Akingunola <dakingun@gmail.com> - 0.6.4-6
- Rebuild for gcc43
* Thu Jan 24 2008 Deji Akingunola <dakingun@gmail.com> - 0.6.4-5
- Backport assorted fixes from upstream svn (Fix Fedora bug 426060)
* Mon Jan 21 2008 Deji Akingunola <dakingun@gmail.com> - 0.6.4-4
- Now require the externally packaged o3read to provide o3totxt
* Fri Dec 14 2007 Deji Akingunola <dakingun@gmail.com> - 0.6.4-3
- Undo the patch, seems to be issues (bug #426060)
* Fri Dec 14 2007 Deji Akingunola <dakingun@gmail.com> - 0.6.4-2
- Backport crasher fixes from upstream svn trunk
2007-12-11 19:58:25 +00:00
* Mon Dec 11 2007 Deji Akingunola <dakingun@gmail.com> - 0.6.4-1
- Version 0.6.4
2007-12-05 05:02:16 +00:00
* Tue Dec 04 2007 Deji Akingunola <dakingun@gmail.com> - 0.6.3-3
- Rebuild for exempi-1.99.5
* Sun Nov 25 2007 Brian Pepple <bpepple@fedoraproject.org> - 0.6.3-2
- Add missing gtk+ icon cache scriptlets.
2007-09-26 03:45:04 +00:00
* Tue Sep 25 2007 Deji Akingunola <dakingun@gmail.com> - 0.6.3-1
- Version 0.6.3
* Tue Sep 11 2007 Deji Akingunola <dakingun@gmail.com> - 0.6.2-2
- Make trackerd start on x86_64 (Bug #286361, fix by Will Woods)
2007-09-06 00:31:22 +00:00
* Wed Sep 05 2007 Deji Akingunola <dakingun@gmail.com> - 0.6.2-1
- Version 0.6.2
2007-08-25 12:24:50 +00:00
* Sat Aug 25 2007 Deji Akingunola <dakingun@gmail.com> - 0.6.1-2
- Rebuild
2007-08-08 23:47:52 +00:00
* Wed Aug 08 2007 Deji Akingunola <dakingun@gmail.com> - 0.6.1-1
- Update to 0.6.1
2007-08-03 18:25:19 +00:00
* Fri Aug 03 2007 Deji Akingunola <dakingun@gmail.com> - 0.6.0-3
- License tag update
2007-07-25 17:28:15 +00:00
* Wed Jul 25 2007 Jeremy Katz <katzj@redhat.com> - 0.6.0-2.1
- rebuild for toolchain bug
2007-07-24 02:24:50 +00:00
* Mon Jul 23 2007 Deji Akingunola <dakingun@gmail.com> - 0.6.0-1
- Update to 0.6.0
- Manually specify path to deskbar-applet handler directory, koji can't find it
2007-02-13 20:08:59 +00:00
* Mon Jan 29 2007 Deji Akingunola <dakingun@gmail.com> - 0.5.4-2
- Split out tracker-search-tool sub-packages, for the GUI facility
- Add proper requires for the -devel subpackage
- Deal with the rpmlint complaints on rpath
2007-01-27 19:20:11 +00:00
* Sat Jan 27 2007 Deji Akingunola <dakingun@gmail.com> - 0.5.4-1
- Update to 0.5.4
2006-12-26 14:07:51 +00:00
* Tue Dec 26 2006 Deji Akingunola <dakingun@gmail.com> - 0.5.3-1
- Update to 0.5.3
* Mon Nov 27 2006 Deji Akingunola <dakingun@gmail.com> - 0.5.2-2
- Apply patch on Makefile.am instead of Makefile.in
2006-11-28 00:06:49 +00:00
- Add libtool to BR
* Mon Nov 06 2006 Deji Akingunola <dakingun@gmail.com> - 0.5.2-1
- Update to 0.5.2
* Mon Nov 06 2006 Deji Akingunola <dakingun@gmail.com> - 0.5.1-1
- Update to new version
* Mon Nov 06 2006 Deji Akingunola <dakingun@gmail.com> - 0.5.0-7
- Have the devel subpackage require pkgconfig
- Make the description field not have more than 76 characters on a line
- Fix up the RPM group
* Mon Nov 06 2006 Deji Akingunola <dakingun@gmail.com> - 0.5.0-6
- Explicitly require dbus-devel and dbus-glib (needed for FC < 6)
* Sun Nov 05 2006 Deji Akingunola <dakingun@gmail.com> - 0.5.0-5
- Remove unneeded BRs (gnome-utils-devel and openssl-devel)
* Sun Nov 05 2006 Deji Akingunola <dakingun@gmail.com> - 0.5.0-4
- Add autostart desktop file.
- Edit the package description as suggested in review
* Sat Nov 04 2006 Deji Akingunola <dakingun@gmail.com> - 0.5.0-3
- More cleaups to the spec file.
* Sat Nov 04 2006 Deji Akingunola <dakingun@gmail.com> - 0.5.0-2
- Add needed BRs
* Sat Nov 04 2006 Deji Akingunola <dakingun@gmail.com> - 0.5.0-1
- Initial packaging for Fedora Extras