Compare commits

...
Sign in to create a new pull request.

5 commits

Author SHA1 Message Date
Deji Akingunola
858948276d Revert back to 0.9.0 release 2012-09-24 09:05:04 -04:00
Deji Akingunola
8b8a85e182 Update to 0.9.5 2012-09-23 20:36:44 -04:00
Deji Akingunola
0ae74f4230 Update to 0.9.0
- Apply upstream patch to fix a crasher bug.
2012-05-21 23:17:46 -04:00
Deji Akingunola
a990f04473 Revert post-install script to restart zeitgeist daemon on update 2011-10-22 11:04:49 -04:00
Deji Akingunola
4afbd987a9 Update to 0.8.2
Restart the zeitgeist daemon on update (BZ #627982)
2011-10-19 23:24:30 -04:00
3 changed files with 45 additions and 13 deletions

View file

@ -1 +1 @@
4b6cfe8c9a123f1af8b998187f1dd18b zeitgeist-0.8.1.tar.gz
fc2706611f435a027cd520f0da0982d7 zeitgeist-0.9.0.tar.bz2

View file

@ -0,0 +1,14 @@
diff --git a/extensions/fts++/indexer.cpp b/extensions/fts++/indexer.cpp
index 72a5c73..483caf7 100644
--- a/extensions/fts++/indexer.cpp
+++ b/extensions/fts++/indexer.cpp
@@ -566,7 +566,8 @@ bool Indexer::IndexUri (std::string const& uri, std::string const& origin)
}
else
{
- basename = g_file_get_basename (f);
+ // g_file_get_basename would unescape the uri, we don't want that here
+ basename = g_path_get_basename (uri.c_str ());
}
// step 2) unescape and check that it's valid utf8

View file

@ -2,20 +2,20 @@
Summary: Framework providing Desktop activity awareness
Name: zeitgeist
Version: 0.8.1
Version: 0.9.0
Release: 1%{?dist}
Group: User Interface/Desktops
License: LGPLv2+
URL: https://launchpad.net/zeitgeist
Source0: http://launchpad.net/%{name}/0.8/0.8.1/+download/%{name}-%{version}.tar.gz
BuildRequires: python-devel python-rdflib
BuildRequires: raptor
Source0: http://launchpad.net/%{name}/0.9/0.9.0/+download/%{name}-%{version}.tar.bz2
Patch1: zeitgeist-0.9.0-crash-fix.patch
BuildRequires: vala, python-devel, python-rdflib
BuildRequires: glib2-devel, dbus-devel, sqlite-devel
BuildRequires: raptor2, xapian-core-devel
BuildRequires: gettext, perl(XML::Parser), intltool
Requires: dbus zeitgeist-datahub
Requires: dbus-python pygobject2 pyxdg
BuildArch: noarch
%description
Zeitgeist is a service which logs the users's activities and events (files
opened, websites visites, conversations hold with other people, etc.) and makes
@ -26,6 +26,11 @@ together with several different user interfaces.
%prep
%setup -q
%patch -p1
## nuke unwanted rpaths, see also
## https://fedoraproject.org/wiki/Packaging/Guidelines#Beware_of_Rpath
sed -i -e 's|"/lib /usr/lib|"/%{_lib} %{_libdir}|' configure
%build
%configure
@ -33,21 +38,34 @@ make %{?_smp_mflags}
%install
rm -rf %{buildroot}
make DESTDIR=%{buildroot} pkgconfigdir=%{_datadir}/pkgconfig install
make DESTDIR=%{buildroot} install
%find_lang %{name}
#%find_lang %{name}
%files -f %{name}.lang
#%files -f %{name}.lang
%files
%defattr(-,root,root,-)
%doc AUTHORS ChangeLog COPYING COPYRIGHT NEWS README
%doc AUTHORS COPYING NEWS
%{_bindir}/zeitgeist-daemon
%{_libexecdir}/zeitgeist-fts
%{_datadir}/%{name}/
%{_datadir}/pkgconfig/zeitgeist-daemon.pc
%{python_sitelib}/zeitgeist/
%{_datadir}/dbus-1/services/org.gnome.zeitgeist.service
%{_datadir}/dbus-1/services/org.gnome.zeitgeist*.service
%{_mandir}/man1/zeitgeist-*.*
%exclude %{_prefix}/doc/zeitgeist/
%changelog
* Mon May 21 2012 Deji Akingunola <dakingun@gmail.com> - 0.9.0-1
- Update to 0.9.0
- Apply upstream patch to fix a crasher bug.
* Sat Oct 22 2011 Deji Akingunola <dakingun@gmail.com> - 0.8.2-2
- Revert post-install script to restart zeitgeist daemon on update
* Tue Oct 18 2011 Deji Akingunola <dakingun@gmail.com> - 0.8.2-1
- Update to 0.8.2
- Restart the zeitgeist daemon on update (BZ #627982)
* Wed Jul 20 2011 Deji Akingunola <dakingun@gmail.com> - 0.8.1-1
- Update to 0.8.1