summaryrefslogtreecommitdiff
blob: f1dbc941c7802606ec9369e82064cbd1dd3cb505 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
# ChangeLog for app-misc/tracker
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/tracker/ChangeLog,v 1.190 2015/06/26 09:20:57 ago Exp $

  26 Jun 2015; Agostino Sarubbo <ago@gentoo.org> tracker-1.2.6.ebuild:
  Stable for x86, wrt bug #551814

  24 Jun 2015; Pacho Ramos <pacho@gentoo.org> tracker-1.4.0.ebuild:
  Use newstyle libav/ffmpeg USEs

  21 Jun 2015; Mikle Kolyada <zlogene@gentoo.org> tracker-1.2.6.ebuild:
  amd64 stable wrt bug #551814

*tracker-1.4.0 (09 Jun 2015)

  09 Jun 2015; Gilles Dartiguelongue <eva@gentoo.org> +tracker-1.4.0.ebuild,
  +files/tracker-1.4.0-have-gstreamer-fix.patch, metadata.xml:
  Version bump for Gnome 3.16.

  02 May 2015; Gilles Dartiguelongue <eva@gentoo.org> tracker-1.2.5.ebuild,
  tracker-1.2.6.ebuild:
  Pin to tiff:0.

*tracker-1.2.6 (02 May 2015)

  02 May 2015; Gilles Dartiguelongue <eva@gentoo.org> -tracker-1.0.2.ebuild,
  -tracker-1.0.5.ebuild, -tracker-1.0.6.ebuild, +tracker-1.2.6.ebuild:
  Version bump. Clean up old revisions.

  08 Apr 2015; Michał Górny <mgorny@gentoo.org> tracker-1.0.2.ebuild,
  tracker-1.0.5.ebuild, tracker-1.0.6.ebuild, tracker-1.2.5.ebuild:
  Remove old Python implementations

  15 Mar 2015; Pacho Ramos <pacho@gentoo.org> tracker-1.2.5.ebuild:
  x86 stable, bug 534012

  14 Mar 2015; Pacho Ramos <pacho@gentoo.org> tracker-1.2.5.ebuild:
  amd64 stable, bug 534012

*tracker-1.2.5 (23 Dec 2014)

  23 Dec 2014; Gilles Dartiguelongue <eva@gentoo.org> +tracker-1.2.5.ebuild:
  Version bump for Gnome 3.14.

  19 Dec 2014; Pacho Ramos <pacho@gentoo.org> tracker-1.0.6.ebuild:
  amd64 stable, bug 529964

  18 Dec 2014; Pacho Ramos <pacho@gentoo.org> tracker-1.0.6.ebuild:
  x86 stable, bug 529964

*tracker-1.0.6 (11 Nov 2014)

  11 Nov 2014; Pacho Ramos <pacho@gentoo.org> +tracker-1.0.6.ebuild,
  -tracker-1.0.4.ebuild:
  Version bump, drop old

*tracker-1.0.5 (30 Oct 2014)

  30 Oct 2014; Pacho Ramos <pacho@gentoo.org> +tracker-1.0.5.ebuild:
  Version bump

  26 Sep 2014; Pacho Ramos <pacho@gentoo.org> tracker-1.0.4.ebuild:
  Needs to be rebuilt with upower-glib .so version updates

*tracker-1.0.4 (05 Sep 2014)

  05 Sep 2014; Pacho Ramos <pacho@gentoo.org> +tracker-1.0.4.ebuild,
  -files/tracker-1.0.1-libmediaart-disabled.patch, -tracker-0.16.4.ebuild,
  -tracker-1.0.1.ebuild, metadata.xml:
  Version bump, drop old

  24 Jul 2014; Samuli Suominen <ssuominen@gentoo.org> metadata.xml,
  tracker-0.16.4.ebuild, tracker-1.0.1.ebuild, tracker-1.0.2.ebuild:
  Use global USE flag "upower" for use of UPower

  23 Jul 2014; Agostino Sarubbo <ago@gentoo.org> tracker-1.0.2.ebuild:
  Stable for x86, wrt bug #512012

  22 Jul 2014; Agostino Sarubbo <ago@gentoo.org> tracker-1.0.2.ebuild:
  Stable for amd64, wrt bug #512912

*tracker-1.0.2 (14 Jul 2014)

  14 Jul 2014; Pacho Ramos <pacho@gentoo.org> +tracker-1.0.2.ebuild:
  Version bump

  25 Jun 2014; Pacho Ramos <pacho@gentoo.org>
  +files/tracker-1.0.1-libmediaart-disabled.patch, tracker-1.0.1.ebuild:
  Try to finally fix bug #509048

  01 Jun 2014; Pacho Ramos <pacho@gentoo.org> tracker-0.16.4.ebuild:
  Old tracker only supports old upower

  31 May 2014; Pacho Ramos <pacho@gentoo.org> -tracker-1.0.0.ebuild,
  tracker-1.0.1.ebuild:
  tracker is compatible with all upower versions \o/, drop old

*tracker-1.0.1 (29 May 2014)

  29 May 2014; Pacho Ramos <pacho@gentoo.org> +tracker-1.0.1.ebuild:
  Version bump

*tracker-1.0.0 (27 Apr 2014)

  27 Apr 2014; Gilles Dartiguelongue <eva@gentoo.org> +tracker-1.0.0.ebuild:
  Version bump for Gnome 3.12.

  23 Apr 2014; Pacho Ramos <pacho@gentoo.org> -tracker-0.16.3.ebuild:
  Drop old

  08 Dec 2013; Pacho Ramos <pacho@gentoo.org> tracker-0.16.4.ebuild:
  x86 stable, bug #478252

  30 Nov 2013; Pacho Ramos <pacho@gentoo.org> tracker-0.16.4.ebuild:
  amd64 stable, bug #478252

*tracker-0.16.4 (23 Nov 2013)

  23 Nov 2013; Pacho Ramos <pacho@gentoo.org> +tracker-0.16.4.ebuild,
  -tracker-0.16.2.ebuild:
  Version bump, drop old

*tracker-0.16.3 (10 Nov 2013)

  10 Nov 2013; Pacho Ramos <pacho@gentoo.org> +tracker-0.16.3.ebuild,
  -tracker-0.14.5.ebuild, -tracker-0.16.1.ebuild, metadata.xml:
  Version bump, drop old, this is being only maintained by gnome team for a long
  time.

*tracker-0.16.2 (01 Aug 2013)

  01 Aug 2013; Pacho Ramos <pacho@gentoo.org> +tracker-0.16.2.ebuild,
  -tracker-9999.ebuild:
  Version bump, drop old

  14 May 2013; Gilles Dartiguelongue <eva@gentoo.org> tracker-0.14.5.ebuild,
  -tracker-0.16.0.ebuild, tracker-0.16.1.ebuild:
  Move vala_depend to DEPEND, add missing libgif configure switch (kill
  automagic), uncomment test workaround which was reported upstream.

  05 May 2013; Pacho Ramos <pacho@gentoo.org> tracker-0.16.1.ebuild:
  Really use vala.eclass (reported by Ewgeny B via mail)

  03 May 2013; Pacho Ramos <pacho@gentoo.org> tracker-0.16.1.ebuild:
  Update tests handling

  02 May 2013; Pacho Ramos <pacho@gentoo.org> tracker-0.14.5.ebuild:
  Run eautoreconf also for 0.14 (#367975#c49)

*tracker-0.16.1 (01 May 2013)

  01 May 2013; Pacho Ramos <pacho@gentoo.org> +tracker-0.16.1.ebuild:
  Version bump

  28 Apr 2013; Pacho Ramos <pacho@gentoo.org> tracker-0.16.0.ebuild:
  Add an eautoreconf call to prevent compilation problems caused by upstream
  refusing to use upstream libtool and using patched Debian one instead
  (#367975)

  09 Apr 2013; Gilles Dartiguelongue <eva@gentoo.org> -tracker-0.14.4.ebuild,
  tracker-0.14.5.ebuild, tracker-0.16.0.ebuild, tracker-9999.ebuild:
  Clean up live bits from non-live ebuilds. Raise totem-pl-parser dependency,
  bug #461220. Use slotted libgrss. Clean up old revision.

  06 Apr 2013; Alexandre Rostovtsev <tetromino@gentoo.org>
  tracker-0.14.4.ebuild, tracker-0.14.5.ebuild, tracker-0.16.0.ebuild,
  tracker-9999.ebuild:
  Fix libpng dependencies in 0.14.x, alphabetize a few things in 0.16.0, and
  update live ebuild.

  05 Apr 2013; Pacho Ramos <pacho@gentoo.org> tracker-0.16.0.ebuild:
  Fix subslot dep on libpng

  30 Mar 2013; Gilles Dartiguelongue <eva@gentoo.org> tracker-0.14.4.ebuild,
  tracker-0.14.5.ebuild, tracker-0.16.0.ebuild, tracker-9999.ebuild:
  Set slot for gupnp-dlna.

*tracker-0.16.0 (28 Mar 2013)

  28 Mar 2013; Pacho Ramos <pacho@gentoo.org> +tracker-0.16.0.ebuild,
  metadata.xml:
  Version bump for Gnome 3.8

  28 Mar 2013; Gilles Dartiguelongue <eva@gentoo.org> tracker-0.14.4.ebuild,
  tracker-0.14.5.ebuild, tracker-9999.ebuild:
  Adjust sqlite dependency, bug #462388

  04 Mar 2013; Gilles Dartiguelongue <eva@gentoo.org>
  -files/tracker-0.12.3-strigi.patch, -tracker-0.12.10-r1.ebuild,
  -files/tracker-0.14.2-icu-no-LC_ALL.patch, -tracker-0.14.3.ebuild,
  tracker-0.14.5.ebuild:
  Clean up old revisions. Remove unneeded extra blank lines.

*tracker-0.14.5 (04 Mar 2013)

  04 Mar 2013; Gilles Dartiguelongue <eva@gentoo.org> +tracker-0.14.5.ebuild,
  tracker-9999.ebuild:
  Version bump. Switch to python-any-r1, revisit test restrictions, add
  subslot.

  02 Mar 2013; Markos Chandras <hwoarang@gentoo.org> tracker-0.12.10-r1.ebuild,
  tracker-0.14.3.ebuild, tracker-0.14.4.ebuild, tracker-9999.ebuild:
  Move Qt dependencies to the new category

  02 Feb 2013; Agostino Sarubbo <ago@gentoo.org> tracker-0.14.4.ebuild:
  Add ~arm, wrt bug #449220

  25 Jan 2013; Gilles Dartiguelongue <eva@gentoo.org> tracker-0.14.4.ebuild,
  tracker-9999.ebuild:
  Switch to EAPI=5, move configuration stuff to src_configure. Fix xps USE flag
  handling. Be more complete in REQUIRED_USE.

  06 Jan 2013; Agostino Sarubbo <ago@gentoo.org> tracker-0.14.4.ebuild:
  Add ~sparc, wrt bug #449220

  01 Jan 2013; Agostino Sarubbo <ago@gentoo.org> tracker-0.14.4.ebuild:
  Add ~alpha, wrt bug #449220

  01 Jan 2013; Agostino Sarubbo <ago@gentoo.org> tracker-0.14.4.ebuild:
  Add ~ia64, wrt bug #449220

  31 Dec 2012; Agostino Sarubbo <ago@gentoo.org> tracker-0.14.4.ebuild:
  Add ~ppc64, wrt bug #449220

  31 Dec 2012; Agostino Sarubbo <ago@gentoo.org> tracker-0.14.4.ebuild:
  Add ~ppc, wrt bug #449220

  15 Dec 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
  -files/tracker-0.8.0-strigi.patch,
  -files/tracker-0.8.17-build-with-eds232.patch,
  -files/tracker-0.8.17-poppler-0.16.patch,
  -files/tracker-0.8.17-tests-fixes.patch,
  -files/tracker-0.8.17-use-upower.patch, tracker-0.12.10-r1.ebuild,
  -tracker-0.14.2-r1.ebuild, tracker-0.14.3.ebuild, tracker-0.14.4.ebuild,
  tracker-9999.ebuild, metadata.xml:
  Rename upnp USE flag to upnp-av (bug #435768, thanks to Michał Górny). Drop
  old.

*tracker-0.14.4 (21 Nov 2012)

  21 Nov 2012; Gilles Dartiguelongue <eva@gentoo.org> +tracker-0.14.4.ebuild,
  metadata.xml:
  Version bump. Add XPS support.

  07 Nov 2012; Alexandre Rostovtsev <tetromino@gentoo.org> tracker-9999.ebuild:
  Slot gstreamer dependencies in preparation for gstreamer-1.0.

  25 Oct 2012; Gilles Dartiguelongue <eva@gentoo.org> -tracker-0.10.35.ebuild,
  -tracker-0.12.10.ebuild, tracker-0.12.10-r1.ebuild, tracker-0.14.2-r1.ebuild,
  tracker-0.14.3.ebuild, metadata.xml:
  Add missing gstreamer slots. Drop unused local USE flag descriptions.

*tracker-0.14.3 (25 Oct 2012)

  25 Oct 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
  -tracker-0.14.2.ebuild, +tracker-0.14.3.ebuild, tracker-9999.ebuild,
  metadata.xml:
  Version bump with various crash fixes and performance improvements. The
  tracker-miner-fs filesystem indexer is now optional. Drop old.

  28 Sep 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
  -tracker-0.10.27.ebuild, tracker-0.10.35.ebuild, tracker-0.12.10.ebuild,
  tracker-0.12.10-r1.ebuild, -tracker-0.14.1.ebuild, tracker-0.14.2.ebuild,
  tracker-0.14.2-r1.ebuild, files/tracker-0.14.2-icu-no-LC_ALL.patch,
  tracker-9999.ebuild:
  Evolution plugin fundamentally incompatible with evolution-3.6, see bug
  #436460. Update license. Unify tracker-0.14.2-r1 and -9999 ebuilds as much as
  possible for ease of maintenance. Update icu patch to upstreamed version.
  Vala is not needed for 0.14.2 tarball release. Drop old versions.

  08 Sep 2012; Nirbheek Chauhan <nirbheek@gentoo.org> tracker-0.14.2-r1.ebuild:
  Use either vala-0.14, or vala-0.18

*tracker-0.14.2-r1 (20 Jul 2012)
*tracker-0.12.10-r1 (20 Jul 2012)

  20 Jul 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
  +tracker-0.12.10-r1.ebuild, +tracker-0.14.2-r1.ebuild,
  +files/tracker-0.14.2-icu-no-LC_ALL.patch:
  Fix the "Error initializing libicu support: 'U_ILLEGAL_ARGUMENT_ERROR'" error
  (bug #426276; thanks to Juergen Rose and Bernd Feige).

*tracker-0.14.2 (05 Jul 2012)

  05 Jul 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
  +tracker-0.14.2.ebuild:
  Version bump, fixes various crashes.

*tracker-0.14.1 (07 May 2012)

  07 May 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
  -tracker-0.12.9.ebuild, +tracker-0.14.1.ebuild, tracker-9999.ebuild,
  metadata.xml:
  Version bump for gnome-3.4, adds support for extracting metadata from CD
  images, lots of bugfixes and performance improvements. Update live ebuild.
  Drop old.

  03 May 2012; Jeff Horelick <jdhore@gentoo.org> tracker-0.10.27.ebuild,
  tracker-0.10.35.ebuild, tracker-0.12.9.ebuild, tracker-0.12.10.ebuild,
  tracker-9999.ebuild:
  dev-util/pkgconfig -> virtual/pkgconfig

  02 Apr 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
  tracker-0.12.9.ebuild, tracker-0.12.10.ebuild, tracker-9999.ebuild:
  Drop unneeded odt2txt dependency.

*tracker-0.12.10 (16 Feb 2012)

  16 Feb 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
  -tracker-0.12.8.ebuild, +tracker-0.12.10.ebuild:
  Version bump, lots of bugs fixed. Drop old.

  18 Jan 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
  tracker-0.10.27.ebuild, tracker-0.10.35.ebuild, tracker-0.12.8.ebuild,
  tracker-0.12.9.ebuild, tracker-9999.ebuild:
  Update homepage URL (bug #398963, thanks to Wicher Minnaard).

  28 Dec 2011; Alexandre Rostovtsev <tetromino@gentoo.org>
  tracker-0.12.9.ebuild:
  Update to EAPI4.

*tracker-0.12.9 (28 Dec 2011)

  28 Dec 2011; Alexandre Rostovtsev <tetromino@gentoo.org>
  -tracker-0.12.7.ebuild, +tracker-0.12.9.ebuild:
  Version bump. Notable changes: fixes crashes and memory leaks, improves
  glib-2.31 compatibility, adds support for TRACKER_USE_CONFIG_FILES env
  variable (makes tracker store settings in text files in ~/.config/tracker/
  instead of using gsettings). Drop old.

*tracker-0.12.8 (26 Nov 2011)

  26 Nov 2011; Alexandre Rostovtsev <tetromino@gentoo.org>
  tracker-0.12.7.ebuild, +tracker-0.12.8.ebuild:
  Bump, fixes a number of crashes and leaks. Also, loosen version restriction
  on nautilus-tracker-tags to make updates easier.

  08 Nov 2011; Gilles Dartiguelongue <eva@gentoo.org> tracker-0.12.7.ebuild,
  tracker-9999.ebuild:
  Sync live ebuild with 0.12 series ebuild.

*tracker-0.10.35 (08 Nov 2011)

  08 Nov 2011; Gilles Dartiguelongue <eva@gentoo.org> -tracker-0.8.17.ebuild,
  -tracker-0.10.26.ebuild, +tracker-0.10.35.ebuild, metadata.xml:
  Version bump for 0.10 series. Clean up old revisions.

*tracker-0.12.7 (02 Nov 2011)

  02 Nov 2011; Alexandre Rostovtsev <tetromino@gentoo.org>
  +files/tracker-0.12.3-strigi.patch, +tracker-0.12.7.ebuild, metadata.xml:
  Add 0.12.7 from the gnome overlay. Used by gnome-3.2. Lots of changes and
  improvements, including optional firefox and thunderbird support (firefox
  support is controlled by USE=firefox-bookmarks so that users don't enable it
  by accident, since it can slow down the browser). Some ugly hacks are
  required to avoid thunderbird- and firefox-related access violations. The
  nautilus extension has been split off into a separate package
  (nautilus-tracker-tags) to avoid circular dependencies with nautilus-3.2.

  20 Sep 2011; Michał Górny <mgorny@gentoo.org> tracker-9999.ebuild:
  Migrate to git-2.

*tracker-0.10.27 (15 Sep 2011)

  15 Sep 2011; Gilles Dartiguelongue <eva@gentoo.org> tracker-0.8.17.ebuild,
  -tracker-0.10.24.ebuild, tracker-0.10.26.ebuild, +tracker-0.10.27.ebuild,
  tracker-9999.ebuild:
  Version bump. Pin dependency on libgee to slot 0.

  09 Sep 2011; Gilles Dartiguelongue <eva@gentoo.org> tracker-0.10.26.ebuild:
  Fix a typo in gstreamer backend selection.

*tracker-0.10.26 (08 Sep 2011)

  08 Sep 2011; Gilles Dartiguelongue <eva@gentoo.org> -tracker-0.10.16.ebuild,
  -tracker-0.10.21.ebuild, +tracker-0.10.26.ebuild, tracker-9999.ebuild:
  Version bump.

*tracker-0.10.24 (29 Aug 2011)

  29 Aug 2011; Gilles Dartiguelongue <eva@gentoo.org> +tracker-0.10.24.ebuild,
  tracker-9999.ebuild:
  Version bump. Bug fixes.

*tracker-0.10.21 (24 Jul 2011)

  24 Jul 2011; Gilles Dartiguelongue <eva@gentoo.org> -tracker-0.10.12.ebuild,
  +tracker-0.10.21.ebuild, tracker-9999.ebuild:
  Version bump, bug #375665. Re-add dbus-glib to R/DEPEND, it is needed for
  libtracker-client at least.

*tracker-0.10.16 (07 Jun 2011)

  07 Jun 2011; Gilles Dartiguelongue <eva@gentoo.org> -tracker-0.10.10.ebuild,
  -tracker-0.10.11.ebuild, +tracker-0.10.16.ebuild:
  Version bump. Clean up old revisions.

*tracker-0.10.12 (09 May 2011)

  09 May 2011; Gilles Dartiguelongue <eva@gentoo.org> -tracker-0.10.8.ebuild,
  -tracker-0.10.9.ebuild, +tracker-0.10.12.ebuild:
  Version bump. Add backup/restore feature. Add rss miner command line
  utilities. Clean up old revisions.

*tracker-0.10.11 (30 Apr 2011)

  30 Apr 2011; Gilles Dartiguelongue <eva@gentoo.org> +tracker-0.10.11.ebuild:
  Version bump.

*tracker-0.10.10 (26 Apr 2011)

  26 Apr 2011; Gilles Dartiguelongue <eva@gentoo.org> +tracker-0.10.10.ebuild,
  tracker-9999.ebuild, metadata.xml:
  Version bump. Enable flickr support.

  16 Apr 2011; Gilles Dartiguelongue <eva@gentoo.org> tracker-0.10.8.ebuild,
  tracker-0.10.9.ebuild, tracker-9999.ebuild:
  Fix a typo for iptc USE flag. Sync live ebuild.

*tracker-0.10.9 (16 Apr 2011)

  16 Apr 2011; Gilles Dartiguelongue <eva@gentoo.org> +tracker-0.10.9.ebuild:
  Version bump.

  14 Apr 2011; Gilles Dartiguelongue <eva@gentoo.org> tracker-0.8.17.ebuild,
  -tracker-0.10.5.ebuild, -tracker-0.10.6.ebuild, tracker-0.10.8.ebuild:
  Restrict nautilus version, bug #363313.

*tracker-0.10.8 (11 Apr 2011)

  11 Apr 2011; Gilles Dartiguelongue <eva@gentoo.org> +tracker-0.10.8.ebuild,
  metadata.xml:
  Version bump. Add support for introspection for sparql & co.

*tracker-0.10.6 (03 Apr 2011)

  03 Apr 2011; Gilles Dartiguelongue <eva@gentoo.org> tracker-0.10.5.ebuild,
  +tracker-0.10.6.ebuild, tracker-9999.ebuild:
  Version bump. Fix qt4 handling, bug #360839.

  27 Mar 2011; Samuli Suominen <ssuominen@gentoo.org> tracker-0.8.17.ebuild,
  tracker-0.10.5.ebuild, tracker-9999.ebuild:
  Remove support for sys-apps/hal wrt #313389.

*tracker-0.10.5 (26 Mar 2011)

  26 Mar 2011; Gilles Dartiguelongue <eva@gentoo.org> -tracker-0.9.38.ebuild,
  -tracker-0.10.0.ebuild, -tracker-0.10.4.ebuild, +tracker-0.10.5.ebuild,
  tracker-9999.ebuild:
  Version bump. Restore compatibility with evolution-2.32.

*tracker-0.10.4 (18 Mar 2011)

  18 Mar 2011; Gilles Dartiguelongue <eva@gentoo.org> +tracker-0.10.4.ebuild,
  tracker-9999.ebuild:
  Version bump.

*tracker-0.10.0 (21 Feb 2011)

  21 Feb 2011; Gilles Dartiguelongue <eva@gentoo.org> -tracker-0.9.35.ebuild,
  -tracker-0.9.37.ebuild, +tracker-0.10.0.ebuild, tracker-9999.ebuild:
  Version bump. Use libicu for unicode support for performance. Depend on
  gtk+:3 and recent gnome 3 libs. Clean up old revisions.

*tracker-0.9.38 (14 Feb 2011)

  14 Feb 2011; Gilles Dartiguelongue <eva@gentoo.org> -tracker-0.9.30.ebuild,
  -tracker-0.9.33.ebuild, +tracker-0.9.38.ebuild:
  Version bump. Clean up old revisions.

*tracker-0.9.37 (08 Feb 2011)

  08 Feb 2011; Gilles Dartiguelongue <eva@gentoo.org> +tracker-0.9.37.ebuild,
  tracker-9999.ebuild:
  Version bump. bonobo dependency dropped, tracker-status merged into
  tracker-control.

  02 Feb 2011; Mark Loeser <halcy0n@gentoo.org> tracker-0.8.17.ebuild:
  Mark ~ppc64; bug #296794

  28 Jan 2011; Pacho Ramos <pacho@gentoo.org> tracker-0.8.17.ebuild,
  +files/tracker-0.8.17-poppler-0.16.patch:
  Fix build against poppler-0.16 with PLD linux patch (bug #349921).

*tracker-0.9.35 (23 Jan 2011)

  23 Jan 2011; Gilles Dartiguelongue <eva@gentoo.org> +tracker-0.9.35.ebuild,
  tracker-9999.ebuild:
  Version bump. Only a few libs not ported to gdbus.

  15 Jan 2011; Arun Raghavan <ford_prefect@gentoo.org> tracker-0.9.30.ebuild,
  tracker-0.9.33.ebuild:
  Restrict gupnp-dlna dependency to <0.5 (since it breaks API)

*tracker-0.9.33 (13 Jan 2011)

  13 Jan 2011; Gilles Dartiguelongue <eva@gentoo.org> +tracker-0.9.33.ebuild,
  tracker-9999.ebuild:
  Version bump.

  22 Dec 2010; Gilles Dartiguelongue <eva@gentoo.org> tracker-0.8.17.ebuild,
  +files/tracker-0.8.17-tests-fixes.patch,
  +files/tracker-0.8.17-use-upower.patch, -tracker-0.9.28.ebuild,
  tracker-0.9.30.ebuild, tracker-9999.ebuild:
  Arrange to build against upower since devicekit-power was removed a bit too
  early. Reduce testsuite hacks. Pin dependencies to appropriate slots. Remove
  old revision.

  08 Dec 2010; Pacho Ramos <pacho@gentoo.org> tracker-0.8.17.ebuild,
  tracker-0.9.28.ebuild, tracker-0.9.30.ebuild, tracker-9999.ebuild:
  Needs gnome-panel with bonobo support.

*tracker-0.9.30 (08 Dec 2010)

  08 Dec 2010; Gilles Dartiguelongue <eva@gentoo.org> tracker-0.8.17.ebuild,
  -tracker-0.9.27.ebuild, tracker-0.9.28.ebuild, +tracker-0.9.30.ebuild,
  tracker-9999.ebuild:
  Version bump. Still some missing files for functional tests. Fix usage of
  GCONF_DEBUG.

  28 Nov 2010; Raúl Porcel <armin76@gentoo.org> tracker-0.8.17.ebuild:
  Add ~alpha/~ia64/~sparc wrt #296794

*tracker-0.9.28 (14 Nov 2010)

  14 Nov 2010; Gilles Dartiguelongue <eva@gentoo.org>
  +tracker-0.9.28.ebuild, tracker-9999.ebuild:
  Version bump. Port to GDBus.

  14 Nov 2010; Gilles Dartiguelongue <eva@gentoo.org> tracker-0.8.17.ebuild,
  tracker-0.9.27.ebuild, tracker-9999.ebuild, metadata.xml:
  Add missing odt2txt dependency, per bug #325435.

  08 Nov 2010; Gilles Dartiguelongue <eva@gentoo.org> tracker-0.8.17.ebuild,
  tracker-0.9.27.ebuild, tracker-9999.ebuild:
  Allow use of alternate jpeg implementation.

*tracker-0.9.27 (28 Oct 2010)

  28 Oct 2010; Gilles Dartiguelongue <eva@gentoo.org>
  +tracker-0.9.27.ebuild, tracker-9999.ebuild, metadata.xml:
  Resync live ebuild to make current dev status. Add development release for
  testing purpose.

  20 Oct 2010; Gilles Dartiguelongue <eva@gentoo.org>
  -tracker-0.8.15.ebuild, tracker-0.8.17.ebuild,
  +files/tracker-0.8.17-build-with-eds232.patch, tracker-9999.ebuild:
  Fix build against evolution-data-server-2.32. Drop unneeded la files.

  28 Sep 2010; Samuli Suominen <ssuominen@gentoo.org> tracker-0.8.15.ebuild,
  tracker-0.8.17.ebuild, tracker-9999.ebuild:
  Remove sys-apps/devicekit-power from dependencies. Use sys-power/upower.

*tracker-0.8.17 (13 Sep 2010)

  13 Sep 2010; Gilles Dartiguelongue <eva@gentoo.org> -tracker-0.8.6.ebuild,
  -tracker-0.8.9.ebuild, tracker-0.8.15.ebuild, +tracker-0.8.17.ebuild,
  tracker-9999.ebuild:
  Version bump, add dbus[X] to depend per bug #330403. Loads of bug fixes,
  clean up old revisions.

  21 Aug 2010; Samuli Suominen <ssuominen@gentoo.org> tracker-0.8.15.ebuild,
  tracker-9999.ebuild:
  Fix devkit-power-gobject dependencies to accept also upower wrt #331243 by
  Philipp Reinkemeier.

  11 Aug 2010; Joseph Jezak <josejx@gentoo.org> tracker-0.8.9.ebuild,
  tracker-0.8.15.ebuild:
  Marked ~ppc for bug #296794.

*tracker-0.8.15 (30 Jul 2010)

  30 Jul 2010; Gilles Dartiguelongue <eva@gentoo.org>
  +tracker-0.8.15.ebuild, tracker-9999.ebuild:
  Version bump, closes: #329647.

  06 Jul 2010; Samuli Suominen <ssuominen@gentoo.org> tracker-0.8.9.ebuild:
  Keyword ~ppc64 wrt #296794

*tracker-0.8.9 (02 Jun 2010)

  02 Jun 2010; Gilles Dartiguelongue <eva@gentoo.org>
  -tracker-0.7.24.ebuild, -tracker-0.8.4.ebuild, +tracker-0.8.9.ebuild:
  Version bump.

  19 May 2010; Raúl Porcel <armin76@gentoo.org> tracker-0.8.4.ebuild,
  tracker-0.8.6.ebuild:
  Add ~alpha/~ia64/~sparc wrt #317945

*tracker-0.8.6 (14 May 2010)

  14 May 2010; Gilles Dartiguelongue <eva@gentoo.org> +tracker-0.8.6.ebuild,
  tracker-9999.ebuild:
  Version bump.

*tracker-0.8.4 (30 Apr 2010)

  30 Apr 2010; Gilles Dartiguelongue <eva@gentoo.org>
  +files/tracker-0.8.0-strigi.patch, +tracker-0.8.4.ebuild,
  tracker-9999.ebuild, metadata.xml:
  Version bump, bug #314803. Thanks to dev-zero for the strigi work.

  06 Apr 2010; Gilles Dartiguelongue <eva@gentoo.org> tracker-0.7.24.ebuild:
  Make imagemagick switchable with graphicsmagick, bug #309047.

  29 Mar 2010; Gilles Dartiguelongue <eva@gentoo.org>
  -tracker-0.7.23.ebuild, tracker-0.7.24.ebuild, tracker-9999.ebuild:
  Move libgee to RDEPEND, bug #311985. Update live ebuild.

*tracker-0.7.24 (04 Mar 2010)

  04 Mar 2010; Gilles Dartiguelongue <eva@gentoo.org>
  -tracker-0.7.21.ebuild, +tracker-0.7.24.ebuild:
  Version bump.

*tracker-0.7.23 (01 Mar 2010)

  01 Mar 2010; Gilles Dartiguelongue <eva@gentoo.org>
  -tracker-0.7.17.ebuild, -tracker-0.7.20.ebuild, +tracker-0.7.23.ebuild,
  tracker-9999.ebuild:
  Version bump, raise all gtk+ dependencies to 2.18, bug #306809.

*tracker-0.7.21 (24 Feb 2010)

  24 Feb 2010; Gilles Dartiguelongue <eva@gentoo.org>
  +tracker-0.7.21.ebuild:
  Version bump.

  17 Feb 2010; Gilles Dartiguelongue <eva@gentoo.org> tracker-0.7.17.ebuild,
  tracker-0.7.20.ebuild, tracker-9999.ebuild:
  Needs gtk+-2.18 with USE=nautilus, bug #304201.

  17 Feb 2010; Gilles Dartiguelongue <eva@gentoo.org> tracker-9999.ebuild:
  gtk-doc is needed for gtkdocize, bug #305647.

  15 Feb 2010; Fabio Erculiani <lxnay@gentoo.org> tracker-0.7.17.ebuild,
  tracker-0.7.20.ebuild, tracker-9999.ebuild:
  fix automagic dependencies against nautilus, when USE=-nautilus

*tracker-0.7.20 (14 Feb 2010)

  14 Feb 2010; Gilles Dartiguelongue <eva@gentoo.org>
  -tracker-0.7.12.ebuild, -tracker-0.7.14.ebuild, +tracker-0.7.20.ebuild,
  tracker-9999.ebuild:
  Version bump, bug #304825.

  10 Feb 2010; Samuli Suominen <ssuominen@gentoo.org> tracker-0.7.12.ebuild,
  tracker-0.7.14.ebuild, tracker-0.7.17.ebuild, tracker-9999.ebuild:
  Fix poppler depend.

  22 Jan 2010; Samuli Suominen <ssuominen@gentoo.org> tracker-0.7.17.ebuild,
  tracker-9999.ebuild:
  Require SLOT="0" of media-libs/jpeg for headers.

*tracker-0.7.17 (21 Jan 2010)

  21 Jan 2010; Gilles Dartiguelongue <eva@gentoo.org>
  +tracker-0.7.17.ebuild, tracker-9999.ebuild:
  Version bump.

*tracker-0.7.14 (03 Jan 2010)

  03 Jan 2010; Gilles Dartiguelongue <eva@gentoo.org>
  -tracker-0.7.10.ebuild, -tracker-0.7.11.ebuild, +tracker-0.7.14.ebuild:
  Version bump. Clean up old revisions.

  01 Jan 2010; Raúl Porcel <armin76@gentoo.org> tracker-0.7.10.ebuild,
  tracker-0.7.11.ebuild, tracker-0.7.12.ebuild:
  Add ~alpha/~ia64/~sparc wrt #296794

*tracker-0.7.12 (21 Dec 2009)

  21 Dec 2009; Gilles Dartiguelongue <eva@gentoo.org> tracker-0.7.10.ebuild,
  tracker-0.7.11.ebuild, +tracker-0.7.12.ebuild, tracker-9999.ebuild,
  metadata.xml:
  Version bump. Add nautilus extension, various other improvments.

*tracker-0.7.11 (13 Dec 2009)

  13 Dec 2009; Gilles Dartiguelongue <eva@gentoo.org> tracker-0.7.10.ebuild,
  +tracker-0.7.11.ebuild, tracker-9999.ebuild, metadata.xml:
  Version bump.

*tracker-0.7.10 (10 Dec 2009)

  10 Dec 2009; Gilles Dartiguelongue <eva@gentoo.org>
  -tracker-0.6.6-r1.ebuild, +tracker-0.7.10.ebuild, tracker-9999.ebuild,
  metadata.xml:
  Version bump. 0.7 series is API/ABI incompatible with 0.6 series. Sync
  live ebuild and convert it to git.

  30 Mar 2009; Peter Alfredsen <loki_val@gentoo.org> tracker-0.6.3.ebuild,
  tracker-0.6.6.ebuild, tracker-0.6.6-r1.ebuild, tracker-9999.ebuild:
  Update dependencies w.r.t. bug 264230, fully-split-out poppler transition.

  15 Jan 2009; Peter Alfredsen <loki_val@gentoo.org> metadata.xml:
  Compnerd retired. Freedesktop gets it.

  10 Jan 2009; Markus Meier <maekke@gentoo.org> tracker-0.6.6-r1.ebuild:
  amd64/x86 stable, bug #254034

  09 Jan 2009; Brent Baude <ranger@gentoo.org> tracker-0.6.6-r1.ebuild:
  Marking tracker-0.6.6-r1 ppc64 for bug 254034

  11 Oct 2008; Gilles Dartiguelongue <eva@gentoo.org> tracker-0.6.3.ebuild,
  tracker-0.6.6.ebuild, tracker-0.6.6-r1.ebuild, tracker-9999.ebuild:
  Use gmime-2.2*, bug #239412.

  07 Sep 2008; Brent Baude <ranger@gentoo.org> tracker-0.6.6-r1.ebuild:
  Marking tracker-0.6.6-r1 ppc stable for gnome dependancies

  12 Aug 2008; Raúl Porcel <armin76@gentoo.org> tracker-0.6.6-r1.ebuild:
  alpha/ia64/sparc stable wrt #229709

  31 Jul 2008; Ulrich Mueller <ulm@gentoo.org> metadata.xml:
  Add USE flag description to metadata wrt GLEP 56.

*tracker-9999 (30 Jul 2008)

  30 Jul 2008; Gilles Dartiguelongue <eva@gentoo.org> +tracker-9999.ebuild:
  add a live ebuild.

  24 Apr 2008; Markus Rothe <corsair@gentoo.org> tracker-0.6.6-r1.ebuild:
  Added ~ppc64; bug #218794

  22 Apr 2008; Raúl Porcel <armin76@gentoo.org> tracker-0.6.6-r1.ebuild:
  Add ~alpha/~ia64 wrt #218794

  09 Mar 2008; Gilles Dartiguelongue <eva@gentoo.org>
  tracker-0.6.6-r1.ebuild:
  fix tests and use emake at src_install to respect MAKEOPTS

*tracker-0.6.6-r1 (05 Mar 2008)

  05 Mar 2008; Saleem Abdulrasool <compnerd@gentoo.org>
  +tracker-0.6.6-r1.ebuild:
  Force the use of the internal qdbm

  04 Mar 2008; Saleem Abdulrasool <compnerd@gentoo.org>
  -tracker-0.6.4.ebuild, -tracker-0.6.5.ebuild:
  Prune some unused versions

*tracker-0.6.6 (04 Mar 2008)

  04 Mar 2008; Saleem Abdulrasool <compnerd@gentoo.org>
  +tracker-0.6.6.ebuild:
  Version bump from upstream

*tracker-0.6.5 (01 Mar 2008)

  01 Mar 2008; Saleem Abdulrasool <compnerd@gentoo.org>
  +tracker-0.6.5.ebuild:
  Version bump from upstream

  29 Feb 2008; Brent Baude <ranger@gentoo.org> tracker-0.6.4.ebuild:
  keyworded ~arch for ppc64, bug 211733

  14 Dec 2007; Saleem Abdulrasool <compnerd@gentoo.org>
  tracker-0.6.3.ebuild:
  Add intltoolize --force after eatuoreconf for intltool (bug #200423)

  13 Dec 2007; Saleem Abdulrasool <compnerd@gentoo.org>
  tracker-0.6.4.ebuild:
  Restore sqlite dep as the bug is fixed in the 0.6.4 release. Adjust sqlite
  useflag accordingly. Fix poppler check to be conditional.

*tracker-0.6.4 (12 Dec 2007)

  12 Dec 2007; Saleem Abdulrasool <compnerd@gentoo.org>
  +tracker-0.6.4.ebuild:
  Version bump from upstream

  07 Dec 2007; Petteri Räty <betelgeuse@gentoo.org>
  -tracker-0.6.2-r1.ebuild, tracker-0.6.3.ebuild:
  Adjust the ebuild to account for the threadsafe use flag changes in
  dev-db/sqlite-3.5.3. Fixes bug #200114. Thanks to Arfrever Frehtes Taifersar
  Arahesis <Arfrever.FTA@GMail.Com>.

  26 Nov 2007; Markus Rothe <corsair@gentoo.org> tracker-0.6.3.ebuild:
  Stable on ppc64; bug #199740

  24 Nov 2007; Markus Rothe <corsair@gentoo.org> tracker-0.6.3.ebuild:
  Added ~ppc64

  22 Nov 2007; Raúl Porcel <armin76@gentoo.org> tracker-0.6.3.ebuild:
  sparc stable wrt #199740

  21 Nov 2007; Dawid Węgliński <cla@gentoo.org> tracker-0.6.3.ebuild:
  Stable on x86 (bug #199740)

  20 Nov 2007; Samuli Suominen <drac@gentoo.org> tracker-0.6.3.ebuild:
  amd64 stable wrt #199740

  28 Oct 2007; Saleem Abdulrasool <compnerd@gentoo.org>
  +files/tracker-0.6.3-really-disable-libtrackergtk.patch,
  tracker-0.6.3.ebuild:
  Add fix for libtrackergtk building (bug #196420)

  10 Oct 2007; Saleem Abdulrasool <compnerd@gentoo.org>
  +files/tracker-0.6.3-tracker-extract-needs-gthread.patch,
  tracker-0.6.3.ebuild:
  Add patch for gthread for bug #194479

  09 Oct 2007; Gilles Dartiguelongue <eva@gentoo.org> tracker-0.6.3.ebuild:
  fix POTFILES test breakage

  07 Oct 2007; Saleem Abdulrasool <compnerd@gentoo.org>
  tracker-0.6.3.ebuild:
  Fix deskbar applet support (bug #194899)

*tracker-0.6.3 (02 Oct 2007)

  02 Oct 2007; Saleem Abdulrasool <compnerd@gentoo.org>
  -files/tracker-0.5.3-convert-pdf-thumbnailer.patch,
  -files/tracker-0.5.4-deskbar-encoding.patch,
  -files/tracker-0.5.4-deskbar-handler.patch,
  +files/tracker-0.6.3-fix-unac-option.patch, -tracker-0.5.4-r1.ebuild,
  -tracker-0.6.0.ebuild, -tracker-0.6.1.ebuild, -tracker-0.6.2.ebuild,
  +tracker-0.6.3.ebuild:
  Version bump from upstream, prune old versions

*tracker-0.6.2-r1 (22 Sep 2007)

  22 Sep 2007; Saleem Abdulrasool <compnerd@gentoo.org>
  +files/tracker-0.6.2-implicit-pointer-conversion.patch,
  +tracker-0.6.2-r1.ebuild:
  Add implicit pointer conversion patch to fix segfault on AMD64.  Resolves bug
  #192668.

*tracker-0.6.2 (07 Sep 2007)

  07 Sep 2007; Saleem Abdulrasool <compnerd@gentoo.org>
  +tracker-0.6.2.ebuild:
  Version bump from upstream

*tracker-0.6.1 (11 Aug 2007)

  11 Aug 2007; Saleem Abdulrasool <compnerd@gentoo.org>
  +tracker-0.6.1.ebuild:
  Version bump from upstream

  02 Aug 2007; Michael Sterrett <mr_bones_@gentoo.org>
  tracker-0.5.4-r1.ebuild:
  correct dbus deps (bug #187369)

  25 Jul 2007; Saleem Abdulrasool <compnerd@gentoo.org>
  tracker-0.6.0.ebuild:
  minor stylistic cleanups and redigesting for updated tarball

*tracker-0.6.0 (24 Jul 2007)

  24 Jul 2007; Saleem Abdulrasool <compnerd@gentoo.org>
  +tracker-0.6.0.ebuild:
  version bump from upstream

  08 Jul 2007; Michael Sterrett <mr_bones_@gentoo.org>
  tracker-0.5.4-r1.ebuild:
  remove reference to old, removed dbus (bug #183696)

  11 May 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  tracker-0.5.4-r1.ebuild:
  Keyworded ~ppc

  23 Apr 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  tracker-0.5.4-r1.ebuild:
  Keyworded ~sparc and IUSE QA fix

  22 Mar 2007; <compnerd@gentoo.org> tracker-0.5.4-r1.ebuild:
  Update homepage (bug #170619)

  16 Feb 2007; Saleem Abdulrasool <compnerd@gentoo.org>
  -tracker-0.5.4.ebuild:
  remove 0.5.4, as -r1 fixes a few bugs

  15 Feb 2007; Saleem Abdulrasool <compnerd@gentoo.org>
  tracker-0.5.4-r1.ebuild:
  Add mplayer or totem as a dependency in the case that you build without
  gstreamer or xine

  15 Feb 2007; Daniel Gryniewicz <dang@gentoo.org> tracker-0.5.4-r1.ebuild:
  amd64 keyword for tracker; don't link to gstreamer, it cores on 64-bit

  15 Feb 2007; Saleem Abdulrasool <compnerd@gentoo.org>
  tracker-0.5.4-r1.ebuild:
  Fix disabling of media extrators

  09 Feb 2007; Saleem Abdulrasool <compnerd@gentoo.org>
  files/tracker-0.5.4-deskbar-encoding.patch:
  Fix the encoding patch

*tracker-0.5.4-r1 (08 Feb 2007)

  08 Feb 2007; Saleem Abdulrasool <compnerd@gentoo.org>
  +files/tracker-0.5.4-deskbar-encoding.patch,
  +files/tracker-0.5.4-deskbar-handler.patch, +tracker-0.5.4-r1.ebuild:
  Revbump to fix installed files, and tracker-handler encoding (bug #165881)

  27 Jan 2007; Saleem Abdulrasool <compnerd@gentoo.org>
  tracker-0.5.4.ebuild:
  add minor hack for misinstalled file that I didnt catch

  27 Jan 2007; Saleem Abdulrasool <compnerd@gentoo.org>
  -files/tracker-0.5.3-delete-services-missing.patch,
  -files/tracker-0.5.3-disable-debug.patch,
  -files/tracker-0.5.3-disable-tests.patch,
  -files/tracker-0.5.3-imagemagick-5.2.1-needed.patch,
  -files/tracker-0.5.3-remove-mysql.patch,
  -files/tracker-0.5.3-requires-libpng.patch,
  -files/tracker-0.5.3-sqlite-cleanups.patch,
  -files/tracker-0.5.3-thumbnailer-create-dir.patch,
  -files/tracker-0.5.3-trackerd-test-compile-fix.patch,
  -tracker-0.5.3.ebuild:
  Prune old version and its patches

*tracker-0.5.4 (27 Jan 2007)

  27 Jan 2007; Saleem Abdulrasool <compnerd@gentoo.org>
  +tracker-0.5.4.ebuild:
  Version bump from upstream with numerous enhancements

  11 Jan 2007; Saleem Abdulrasool <compnerd@gentoo.org>
  -files/tracker-0.5.2-configure.in.patch, -tracker-0.5.2.ebuild:
  prune old version

*tracker-0.5.3 (11 Jan 2007)

  11 Jan 2007; Saleem Abdulrasool <compnerd@gentoo.org>
  +files/tracker-0.5.3-convert-pdf-thumbnailer.patch,
  +files/tracker-0.5.3-delete-services-missing.patch,
  +files/tracker-0.5.3-disable-debug.patch,
  +files/tracker-0.5.3-disable-tests.patch,
  +files/tracker-0.5.3-imagemagick-5.2.1-needed.patch,
  +files/tracker-0.5.3-remove-mysql.patch,
  +files/tracker-0.5.3-requires-libpng.patch,
  +files/tracker-0.5.3-sqlite-cleanups.patch,
  +files/tracker-0.5.3-thumbnailer-create-dir.patch,
  +files/tracker-0.5.3-trackerd-test-compile-fix.patch,
  +tracker-0.5.3.ebuild:
  Version bump from upstream, with patches from myself

*tracker-0.5.2 (21 Nov 2006)

  21 Nov 2006; Saleem Abdulrasool <compnerd@gentoo.org>
  +files/tracker-0.5.2-configure.in.patch, +tracker-0.5.2.ebuild:
  Initial import, patch and ebuild by Saleem Abdulrasool <compnerd@gentoo.org>