Compare commits
5 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
858948276d | ||
|
|
8b8a85e182 | ||
|
|
0ae74f4230 | ||
|
|
a990f04473 | ||
|
|
4afbd987a9 |
3 changed files with 45 additions and 13 deletions
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
4b6cfe8c9a123f1af8b998187f1dd18b zeitgeist-0.8.1.tar.gz
|
||||
fc2706611f435a027cd520f0da0982d7 zeitgeist-0.9.0.tar.bz2
|
||||
|
|
|
|||
14
zeitgeist-0.9.0-crash-fix.patch
Normal file
14
zeitgeist-0.9.0-crash-fix.patch
Normal 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
|
||||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue