You are not logged in.
Nobody seems to see that the new tracker search engine is online (ftp://ftp.gnome.org/pub/gnome/sources/tracker/0.7/ . After months of development this is a must have for everybody...Now I've already invited the arch developer to update the package but I received no answers. So...If someone want to stay a step ahead...it's welcome.
Offline
Nobody seems to see that the new tracker search engine is online (ftp://ftp.gnome.org/pub/gnome/sources/tracker/0.7/ . After months of development this is a must have for everybody...Now I've already invited the arch developer to update the package but I received no answers. So...If someone want to stay a step ahead...it's welcome.
in my opinion "inviting" a arch developer to update a package is not constructive at all. the package is mark out of date and he gets the notification, the same way you did.
a better email would be one that has attached a up to date PKGBUILD.
those are my 2cents
Give what you have. To someone, it may be better than you dare to think.
Offline
Well...I have to admit that "invite" is not the most proper term. I've simply put the package out of date. That's all. In case somebody wants to create a pkgbuild to build and use the new tracker search engine I'd be grateful. Stop. Cheers
Offline
Try to take the PKBUILD using abs and change the $pkgver and the md5sum. Often there is not more than that to do.
Offline
Thanx for your advices but it's not that simple. Tracker has changed many internal architectures....
Offline
Hi, I've taken the PKGBUILD from community and changed very little, like some dependency and the link to new version... it's NOT perfect, for example it complains that some configure options are not understood but for what I can tell it works.
PKGBUILD updated belowBye ![]()
Last edited by vaquerito (2009-10-08 00:34:10)
Offline
to see the configure options just run ./configure --help and get rid of those that are deprecated and maybe add more:D
Give what you have. To someone, it may be better than you dare to think.
Offline
yeah, you're right, here it is
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
# Maintainer: Alexander Fehr <pizzapunk gmail com>
pkgname=tracker
pkgver=0.7.1
pkgrel=1
pkgdesc="Powerful object database, tag/metadata database, search tool and indexer"
arch=('i686' 'x86_64')
url="http://www.gnome.org/projects/tracker/"
license=('GPL')
depends=('sqlite3' 'hal' 'gmime' 'poppler-glib'
'libexif' 'libgsf' 'exempi' 'gstreamer0.10'
'gnome-desktop' 'libnotify' 'xdg-utils' 'raptor'
'glib2>=2.16.0' 'gtk2>=2.16.0' 'dbus>=1.0' 'dbus-glib>=0.78'
'libgee>=0.3')
makedepends=('intltool' 'deskbar-applet' 'vala')
optdepends=('deskbar-applet')
options=('!libtool')
conflicts=('')
install=tracker.install
source=(http://ftp.gnome.org/pub/GNOME/sources/tracker/0.7/tracker-$pkgver.tar.bz2)
build() {
cd $startdir/src/tracker-$pkgver
./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib/$pkgname \
--disable-unac \
--enable-libtrackergtk \
--enable-deskbar-applet --enable-tracker-search-tool
make || return 1
make DESTDIR=$startdir/pkg install
}
md5sums=('8ab7433d2cc6468e492c11e47940618f')There are a couple things: with the 0.7 tracker you'll break the current nautilus (recompiling 2.6.23 nor .24 worked) due to a dependency, that you can currently solve by installing just libtracker-0.6.95 along with tracker 0.7, integration won't work anyway but nautilus won't crash, patch have already been send upstream from tracker team so maybe next nautilus release will be fine with this.
It was known : http://mail.gnome.org/archives/tracker- … 00029.html
but even if they say
2. 0.6 and 0.7 _CAN_ co-exist at the same time, that's how it has been designed.
I wasn't able to, maybe just some file overlapping that if tomorrow my slackness permits I'll give a look at.
Bye ![]()
Last edited by vaquerito (2009-10-08 00:55:10)
Offline