aboutsummaryrefslogtreecommitdiff
blob: 3e15aa6f9dbdbf63ace32570eb877bf8c2dfc114 (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
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
# ChangeLog for media-libs/gst-plugins-base
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/gst-plugins-base/ChangeLog,v 1.234 2013/10/22 07:20:15 ago Exp $

  22 Oct 2013; Agostino Sarubbo <ago@gentoo.org> gst-plugins-base-1.0.10.ebuild:
  Stable for sparc, wrt bug #480908

  16 Oct 2013; Agostino Sarubbo <ago@gentoo.org> gst-plugins-base-1.0.10.ebuild:
  Stable for ia64, wrt bug #480908

  16 Oct 2013; Jeroen Roovers <jer@gentoo.org> gst-plugins-base-1.0.10.ebuild:
  Stable for HPPA (bug #480908).

  15 Oct 2013; Agostino Sarubbo <ago@gentoo.org> gst-plugins-base-1.0.10.ebuild:
  Stable for alpha, wrt bug #480908

  14 Oct 2013; Agostino Sarubbo <ago@gentoo.org> gst-plugins-base-1.0.10.ebuild:
  Stable for arm, wrt bug #480908

  13 Oct 2013; Agostino Sarubbo <ago@gentoo.org> gst-plugins-base-1.0.10.ebuild:
  Stable for ppc64, wrt bug #480908

  12 Oct 2013; Agostino Sarubbo <ago@gentoo.org> gst-plugins-base-1.0.10.ebuild:
  Stable for ppc, wrt bug #480908

  11 Oct 2013; Agostino Sarubbo <ago@gentoo.org> gst-plugins-base-1.0.10.ebuild:
  Stable for x86, wrt bug #480908

  10 Oct 2013; Agostino Sarubbo <ago@gentoo.org> gst-plugins-base-1.0.10.ebuild:
  Stable for amd64, wrt bug #480908

*gst-plugins-base-1.2.0 (29 Sep 2013)

  29 Sep 2013; Gilles Dartiguelongue <eva@gentoo.org>
  +gst-plugins-base-1.2.0.ebuild:
  Version bump.

*gst-plugins-base-1.0.10 (01 Sep 2013)

  01 Sep 2013; Gilles Dartiguelongue <eva@gentoo.org>
  +gst-plugins-base-1.0.10.ebuild:
  Version bump.

*gst-plugins-base-1.0.8 (26 Aug 2013)

  26 Aug 2013; Gilles Dartiguelongue <eva@gentoo.org>
  +gst-plugins-base-1.0.8.ebuild:
  Version bump.

*gst-plugins-base-1.0.7 (08 Jun 2013)

  08 Jun 2013; Gilles Dartiguelongue <eva@gentoo.org>
  +gst-plugins-base-1.0.7.ebuild:
  Version bump.

  12 May 2013; Markus Meier <maekke@gentoo.org>
  gst-plugins-base-1.0.5-r2.ebuild:
  add ~arm, bug #453200

  01 Apr 2013; Gilles Dartiguelongue <eva@gentoo.org>
  gst-plugins-base-1.0.6.ebuild:
  Add missing ~arch keywords after maksing ivorbis USE flag.

*gst-plugins-base-1.0.6 (31 Mar 2013)

  31 Mar 2013; Gilles Dartiguelongue <eva@gentoo.org>
  +gst-plugins-base-1.0.6.ebuild:
  Version bump.

  05 Mar 2013; Gilles Dartiguelongue <eva@gentoo.org>
  -gst-plugins-base-0.10.35.ebuild, -gst-plugins-base-1.0.3.ebuild,
  gst-plugins-base-1.0.5.ebuild, -gst-plugins-base-1.0.5-r1.ebuild:
  Clean up old revisions.

  03 Mar 2013; Agostino Sarubbo <ago@gentoo.org>
  gst-plugins-base-1.0.5-r2.ebuild:
  Stable for sh, wrt bug #458188

  24 Feb 2013; Agostino Sarubbo <ago@gentoo.org>
  gst-plugins-base-0.10.36.ebuild:
  Stable for sh, wrt bug #456476

  23 Feb 2013; Agostino Sarubbo <ago@gentoo.org> gst-plugins-base-1.0.5.ebuild:
  Stable for alpha, wrt bug #458188

  23 Feb 2013; Agostino Sarubbo <ago@gentoo.org>
  gst-plugins-base-1.0.5-r2.ebuild:
  Stable for hppa, wrt bug #458188

  23 Feb 2013; Agostino Sarubbo <ago@gentoo.org>
  gst-plugins-base-1.0.5-r2.ebuild:
  Stable for sparc, wrt bug #458188

  22 Feb 2013; Agostino Sarubbo <ago@gentoo.org> gst-plugins-base-1.0.5.ebuild:
  Stable for arm, wrt bug #458188

  22 Feb 2013; Agostino Sarubbo <ago@gentoo.org> gst-plugins-base-1.0.5.ebuild:
  Stable for ia64, wrt bug #458188

  21 Feb 2013; Agostino Sarubbo <ago@gentoo.org>
  gst-plugins-base-1.0.5-r2.ebuild:
  Stable for ppc64, wrt bug #458188

  21 Feb 2013; Agostino Sarubbo <ago@gentoo.org>
  gst-plugins-base-1.0.5-r2.ebuild:
  Stable for ppc, wrt bug #458188

  21 Feb 2013; Agostino Sarubbo <ago@gentoo.org>
  gst-plugins-base-1.0.5-r2.ebuild:
  Stable for x86, wrt bug #458188

  21 Feb 2013; Agostino Sarubbo <ago@gentoo.org>
  gst-plugins-base-1.0.5-r2.ebuild:
  Stable for amd64, wrt bug #458188

*gst-plugins-base-1.0.5-r2 (12 Feb 2013)

  12 Feb 2013; Alexandre Rostovtsev <tetromino@gentoo.org>
  +gst-plugins-base-1.0.5-r2.ebuild:
  Remove .la files (bug #456164, thanks to Paolo Pedroni).

  10 Feb 2013; Agostino Sarubbo <ago@gentoo.org>
  gst-plugins-base-0.10.36.ebuild:
  Stable for sparc, wrt bug #454906

  07 Feb 2013; Agostino Sarubbo <ago@gentoo.org>
  gst-plugins-base-0.10.36.ebuild:
  Stable for hppa, wrt bug #454906

  04 Feb 2013; Agostino Sarubbo <ago@gentoo.org>
  gst-plugins-base-0.10.36.ebuild:
  Stable for arm, wrt bug #454906

  04 Feb 2013; Agostino Sarubbo <ago@gentoo.org>
  gst-plugins-base-0.10.36.ebuild:
  Stable for alpha, wrt bug #454906

  03 Feb 2013; Agostino Sarubbo <ago@gentoo.org>
  gst-plugins-base-0.10.36.ebuild:
  Stable for ia64, wrt bug #454906

  01 Feb 2013; Agostino Sarubbo <ago@gentoo.org>
  gst-plugins-base-0.10.36.ebuild:
  Stable for ppc, wrt bug #454906

  01 Feb 2013; Agostino Sarubbo <ago@gentoo.org>
  gst-plugins-base-0.10.36.ebuild:
  Stable for ppc64, wrt bug #454906

  01 Feb 2013; Agostino Sarubbo <ago@gentoo.org>
  gst-plugins-base-0.10.36.ebuild:
  Stable for x86, wrt bug #454906

  01 Feb 2013; Agostino Sarubbo <ago@gentoo.org>
  gst-plugins-base-0.10.36.ebuild:
  Stable for amd64, wrt bug #454906

  30 Jan 2013; Alexis Ballier <aballier@gentoo.org>
  gst-plugins-base-1.0.5-r1.ebuild:
  keyword ~amd64-fbsd

  22 Jan 2013; Jeroen Roovers <jer@gentoo.org>
  gst-plugins-base-1.0.5-r1.ebuild:
  Marked ~hppa (bug #453200).

*gst-plugins-base-1.0.5-r1 (20 Jan 2013)

  20 Jan 2013; Gilles Dartiguelongue <eva@gentoo.org>
  +gst-plugins-base-1.0.5-r1.ebuild, metadata.xml:
  Version bump to add USE=ivorbis, bug #264329.

*gst-plugins-base-1.0.5 (13 Jan 2013)

  13 Jan 2013; Gilles Dartiguelongue <eva@gentoo.org>
  +gst-plugins-base-1.0.5.ebuild:
  Version bump, bug #451662.

  20 Dec 2012; Alexandre Rostovtsev <tetromino@gentoo.org> metadata.xml:
  Switch to global orc USE flag.

*gst-plugins-base-1.0.3 (03 Dec 2012)

  03 Dec 2012; Gilles Dartiguelongue <eva@gentoo.org>
  +gst-plugins-base-1.0.3.ebuild, metadata.xml:
  Version bump.

  02 Dec 2012; Gilles Dartiguelongue <eva@gentoo.org>
  gst-plugins-base-0.10.35.ebuild, gst-plugins-base-0.10.36.ebuild:
  Fix eclass usage. Drop redundant gettext dependency.

  02 Dec 2012; Gilles Dartiguelongue <eva@gentoo.org>
  -gst-plugins-base-0.10.32.ebuild, gst-plugins-base-0.10.36.ebuild:
  Clean up old revisions. Update ebuild to use new eclasses.

  07 Nov 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
  gst-plugins-base-0.10.32.ebuild, gst-plugins-base-0.10.35.ebuild,
  gst-plugins-base-0.10.36.ebuild:
  Slot gstreamer dependencies in preparation for gstreamer-1.0.

  23 Oct 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
  gst-plugins-base-0.10.36.ebuild:
  We can safely drop those .la files that belong to plugins.

*gst-plugins-base-0.10.36 (21 Oct 2012)

  21 Oct 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
  gst-plugins-base-0.10.32.ebuild, gst-plugins-base-0.10.35.ebuild,
  +gst-plugins-base-0.10.36.ebuild:
  Version bump (bug #418075); adds new GstAudioFormat API, various
  fixes/improvements in baseaudiosink, tags, decodebin2, playbin2, videorate,
  etc. Punt static libraries (we still need .la files, alas). Update license.

  12 May 2012; Alexis Ballier <aballier@gentoo.org>
  gst-plugins-base-0.10.35.ebuild:
  keyword ~amd64-fbsd

  05 May 2012; Jeff Horelick <jdhore@gentoo.org>
  gst-plugins-base-0.10.32.ebuild, gst-plugins-base-0.10.35.ebuild:
  dev-util/pkgconfig -> virtual/pkgconfig

  20 Nov 2011; Fabian Groffen <grobian@gentoo.org>
  gst-plugins-base-0.10.35.ebuild:
  Fix compilation on Darwin/Intel (bug #366931), remove non-effective, post
  configure, flag replacements.

  15 Oct 2011; Kacper Kowalik <xarthisius@gentoo.org>
  gst-plugins-base-0.10.35.ebuild:
  ppc/ppc64 stable wrt #382225

  11 Oct 2011; Jeroen Roovers <jer@gentoo.org> gst-plugins-base-0.10.35.ebuild:
  Stable for HPPA (bug #382225).

  09 Oct 2011; Raúl Porcel <armin76@gentoo.org>
  gst-plugins-base-0.10.35.ebuild:
  alpha/ia64/sh/sparc stable wrt #382225

  04 Oct 2011; Jeroen Roovers <jer@gentoo.org> gst-plugins-base-0.10.35.ebuild:
  Marked ~hppa (bug #382225).

  04 Oct 2011; Jeroen Roovers <jer@gentoo.org> gst-plugins-base-0.10.35.ebuild:
  Stable for HPPA (bug #373639).

  03 Oct 2011; Markus Meier <maekke@gentoo.org>
  gst-plugins-base-0.10.35.ebuild:
  arm stable, bug #382225

  25 Sep 2011; Tony Vroon <chainsaw@gentoo.org>
  gst-plugins-base-0.10.35.ebuild:
  Marked stable on AMD64 based on arch testing by Agostino "ago" Sarubbo &
  Tomáš "Mepho" Pružina in bug #382225.

  20 Sep 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  gst-plugins-base-0.10.35.ebuild:
  x86 stable wrt bug #382225

  25 Aug 2011; Nirbheek Chauhan <nirbheek@gentoo.org>
  -gst-plugins-base-0.10.31.ebuild, gst-plugins-base-0.10.35.ebuild:
  Fix introspection deps, use slot-deps, bump EAPI to 3. Remove old.

  25 Jul 2011; Kacper Kowalik <xarthisius@gentoo.org>
  gst-plugins-base-0.10.32.ebuild:
  ppc/ppc64 stable wrt #368281

  07 Jul 2011; Mart Raudsepp <leio@gentoo.org>
  -files/gst-plugins-base-0.10.29-make-382.patch,
  -files/gst-plugins-base-0.10.30-fix-tag-test-linking.patch,
  -gst-plugins-base-0.10.29.ebuild, gst-plugins-base-0.10.31.ebuild,
  gst-plugins-base-0.10.32.ebuild, gst-plugins-base-0.10.35.ebuild:
  Remove old, update homepage

*gst-plugins-base-0.10.35 (30 Jun 2011)

  30 Jun 2011; Mart Raudsepp <leio@gentoo.org>
  +gst-plugins-base-0.10.35.ebuild:
  Version bump. Don't let the upstream build system always pass -g (honoring
  CFLAGS in make.conf about it instead), also removed the debug USE flag,
  which affected nothing. Adds ARGB64, AYUV64 (16 bits per channel) and r210
  (10 bits per channel) format support to some elements. Many other
  improvements, some new API and bug fixes

  09 Jun 2011; Jeroen Roovers <jer@gentoo.org> gst-plugins-base-0.10.32.ebuild:
  Stable for HPPA (bug #368281).

  05 Jun 2011; Raúl Porcel <armin76@gentoo.org>
  gst-plugins-base-0.10.32.ebuild:
  alpha/ia64/sh/sparc stable wrt #368281

  05 Jun 2011; Markus Meier <maekke@gentoo.org>
  gst-plugins-base-0.10.32.ebuild:
  arm stable, bug #368281

  23 May 2011; Markos Chandras <hwoarang@gentoo.org>
  gst-plugins-base-0.10.32.ebuild:
  Stable on amd64 wrt bug #368281

  23 May 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  gst-plugins-base-0.10.32.ebuild:
  x86 stable wrt bug #368281

  28 Mar 2011; Mart Raudsepp <leio@gentoo.org> gst-plugins-base-0.10.32.ebuild:
  Add ~mips keyword

  18 Mar 2011; Gilles Dartiguelongue <eva@gentoo.org>
  gst-plugins-base-0.10.32.ebuild:
  Set GST_REGISTRY to avoid sandbox access violation, bug #356283. With
  approval of leio.

  18 Mar 2011; Mart Raudsepp <leio@gentoo.org>
  +files/gst-plugins-base-0.10.32-fix-tests-encodebin.patch,
  gst-plugins-base-0.10.32.ebuild:
  Fix tests for 0.10.32; second report on bug #352944

  13 Mar 2011; Kacper Kowalik <xarthisius@gentoo.org>
  gst-plugins-base-0.10.31.ebuild:
  ppc64 stable wrt #353434

  05 Mar 2011; Raúl Porcel <armin76@gentoo.org>
  gst-plugins-base-0.10.31.ebuild:
  alpha/ia64/sh/sparc stable wrt #353434

  01 Mar 2011; Jeroen Roovers <jer@gentoo.org> gst-plugins-base-0.10.31.ebuild:
  Stable for HPPA (bug #353434).

  27 Feb 2011; Brent Baude <ranger@gentoo.org>
  gst-plugins-base-0.10.31.ebuild:
  Marking gst-plugins-base-0.10.31 ppc stable for bug 353434

  24 Feb 2011; Mart Raudsepp <leio@gentoo.org> metadata.xml,
  -gst-plugins-base-0.10.24.ebuild, -gst-plugins-base-0.10.25.ebuild,
  -gst-plugins-base-0.10.28.ebuild, -gst-plugins-base-0.10.30.ebuild:
  Remove old. gstreamer@ is sole maintainer right now, document it

*gst-plugins-base-0.10.32 (24 Feb 2011)

  24 Feb 2011; Mart Raudsepp <leio@gentoo.org>
  +gst-plugins-base-0.10.32.ebuild:
  Version bump. Don't build examples as they aren't installed, avoids issues
  like bug 348623 too. Has new encodebin element as a playbin2 alike
  convenience aggregate element, but for encoding instead of playback for
  the benefit of encoding/transcoding applications once they port to it;
  encode profile system to go along with it to have 'profiles' of encoding
  targets. Many other improvements and bug fixes

  20 Feb 2011; Markus Meier <maekke@gentoo.org>
  gst-plugins-base-0.10.31.ebuild:
  arm stable, bug #353434

  14 Feb 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  gst-plugins-base-0.10.31.ebuild:
  x86 stable wrt bug #353434

  11 Feb 2011; Markos Chandras <hwoarang@gentoo.org>
  gst-plugins-base-0.10.31.ebuild:
  Stable on amd64 wrt bug #353434

  07 Feb 2011; Mart Raudsepp <leio@gentoo.org>
  +files/gst-plugins-base-0.10.31-fix-tag-test-linking.patch,
  gst-plugins-base-0.10.31.ebuild:
  Fix tests when ran during upgrade from a previous version, bug 352944

  07 Feb 2011; Mart Raudsepp <leio@gentoo.org>
  gst-plugins-base-0.10.31.ebuild:
  QA: Remove unnecessary build dependency

*gst-plugins-base-0.10.31 (12 Jan 2011)

  12 Jan 2011; Arun Raghavan <ford_prefect@gentoo.org>
  +gst-plugins-base-0.10.31.ebuild:
  Bump to 0.10.31. Adds new API for metadata discovery, codec info extraction,
  and lots of fixes.

  22 Nov 2010; Arun Raghavan <ford_prefect@gentoo.org>
  gst-plugins-base-0.10.30.ebuild:
  Enable the introspection flag by default. Doesn't really affect anyone
  yet, since the USE flag is masked.

  22 Nov 2010; Arun Raghavan <ford_prefect@gentoo.org>
  gst-plugins-base-0.10.30.ebuild,
  +files/gst-plugins-base-0.10.30-fix-tag-test-linking.patch:
  Fix include order problem in tags test. Fixes bug #346169.

  22 Nov 2010; Arun Raghavan <ford_prefect@gentoo.org>
  gst-plugins-base-0.10.30.ebuild:
  Fix gstreamer required version as pointed out by EvaSDK (bug #346363)

*gst-plugins-base-0.10.30 (19 Nov 2010)

  19 Nov 2010; Arun Raghavan <ford_prefect@gentoo.org>
  +gst-plugins-base-0.10.30.ebuild, metadata.xml:
  Bump to current upstream release. Ebuild now adds gobject-introspection
  and Orc support controller by USE-flags. Highlights of this release:
  Use of Orc to completely replace liboil
  Number of ffmpegcolorspace enhancements and fixes
  Other fixes and enhancements

  23 Sep 2010; Samuli Suominen <ssuominen@gentoo.org>
  gst-plugins-base-0.10.29.ebuild,
  +files/gst-plugins-base-0.10.29-make-382.patch:
  Fix building with make >= 3.82 wrt #335534 by Diego E. Pettenò.

  11 Sep 2010; <nixnut@gentoo.org> gst-plugins-base-0.10.29.ebuild:
  ppc stable #329703

  05 Sep 2010; Tobias Klausmann <klausman@gentoo.org>
  gst-plugins-base-0.10.29.ebuild:
  Stable on alpha, bug #329703

  05 Sep 2010; Raúl Porcel <armin76@gentoo.org>
  gst-plugins-base-0.10.29.ebuild:
  ia64/sh/sparc stable wrt #329703

  04 Sep 2010; Raúl Porcel <armin76@gentoo.org>
  gst-plugins-base-0.10.28.ebuild:
  alpha/ia64/sh/sparc stable wrt #324691

  10 Aug 2010; Jeroen Roovers <jer@gentoo.org>
  gst-plugins-base-0.10.29.ebuild:
  Stable for HPPA (bug #329703).

  05 Aug 2010; Samuli Suominen <ssuominen@gentoo.org>
  gst-plugins-base-0.10.29.ebuild:
  ppc64 stable wrt #324691

  03 Aug 2010; Markus Meier <maekke@gentoo.org>
  gst-plugins-base-0.10.29.ebuild:
  arm stable, bug #329703

  01 Aug 2010; Tobias Klausmann <klausman@gentoo.org>
  gst-plugins-base-0.10.28.ebuild:
  Stable on alpha, bug #324691

  28 Jul 2010; Mart Raudsepp <leio@gentoo.org>
  gst-plugins-base-0.10.29.ebuild:
  Fix QA warning about unrecognized configure option --enable-base, bug
  285539

  27 Jul 2010; Pacho Ramos <pacho@gentoo.org>
  gst-plugins-base-0.10.29.ebuild:
  amd64 stable, bug 329703

  27 Jul 2010; Christian Faulhammer <fauli@gentoo.org>
  gst-plugins-base-0.10.29.ebuild:
  x86 stable, bug 329703

  24 Jul 2010; Markus Meier <maekke@gentoo.org>
  gst-plugins-base-0.10.28.ebuild:
  arm stable, bug #324691

  12 Jul 2010; Jeroen Roovers <jer@gentoo.org>
  gst-plugins-base-0.10.28.ebuild:
  Stable for HPPA (bug #324691).

  01 Jul 2010; Christian Faulhammer <fauli@gentoo.org>
  gst-plugins-base-0.10.28.ebuild:
  x86 stable, bug 324691

*gst-plugins-base-0.10.29 (28 Jun 2010)

  28 Jun 2010; Mart Raudsepp <leio@gentoo.org>
  +gst-plugins-base-0.10.29.ebuild:
  Version bump with the following most noteworthy upstream changes:
  Basic XMP metadata support.
  On2 VP62 and VP7 support in riff-media.
  color-matrix/chroma-site field and 8/16-bit grayscale format support in
    video helper library.
  Various bug fixes and improvements.

  27 Jun 2010; <nixnut@gentoo.org> gst-plugins-base-0.10.28.ebuild:
  ppc stable #324691

  24 Jun 2010; Jeroen Roovers <jer@gentoo.org>
  gst-plugins-base-0.10.25.ebuild:
  Stable for HPPA (bug #308379).

  24 Jun 2010; Markos Chandras <hwoarang@gentoo.org>
  gst-plugins-base-0.10.28.ebuild:
  Stable on amd64 wrt bug #324691

  18 Apr 2010; <nixnut@gentoo.org> gst-plugins-base-0.10.25.ebuild:
  ppc stable #308379

  05 Apr 2010; Raúl Porcel <armin76@gentoo.org>
  gst-plugins-base-0.10.25.ebuild:
  alpha/arm/ia64/sh/sparc stable wrt #308379

  24 Mar 2010; Christian Faulhammer <fauli@gentoo.org>
  gst-plugins-base-0.10.25.ebuild:
  stable x86, bug 308379

  22 Mar 2010; Mart Raudsepp <leio@gentoo.org>
  -files/gst-plugins-base-0.10.22-CVE-2009-0586.patch:
  Remove stale patch

  19 Mar 2010; Pacho Ramos <pacho@gentoo.org>
  gst-plugins-base-0.10.25.ebuild:
  amd64 stable, bug 308379

  19 Mar 2010; Mart Raudsepp <leio@gentoo.org>
  -gst-plugins-base-0.10.22.ebuild, -gst-plugins-base-0.10.23.ebuild:
  Remove old

*gst-plugins-base-0.10.28 (19 Mar 2010)

  19 Mar 2010; Mart Raudsepp <leio@gentoo.org>
  +gst-plugins-base-0.10.28.ebuild:
  Version bump with the following most noteworthy upstream changes:
  Many improvements and refactoring to playbin2.
  ISO-639 language code utility functions in libgsttag (via iso-codes).
  DKS and QTtext subtitle format support in subparse.
  Bug fixes, performance improvements.

  15 Jan 2010; Christian Faulhammer <fauli@gentoo.org>
  gst-plugins-base-0.10.25.ebuild:
  Transfer Prefix keywords

  05 Jan 2010; nixnut <nixnut@gentoo.org> gst-plugins-base-0.10.24.ebuild:
  ppc stable #290343

  29 Dec 2009; Raúl Porcel <armin76@gentoo.org>
  gst-plugins-base-0.10.24.ebuild:
  ia64/sh/sparc stable wrt #290343

  27 Nov 2009; Markus Meier <maekke@gentoo.org>
  gst-plugins-base-0.10.24.ebuild:
  arm stable, bug #290343

  22 Nov 2009; Tobias Klausmann <klausman@gentoo.org>
  gst-plugins-base-0.10.24.ebuild:
  Stable on alpha, bug #290343

  18 Nov 2009; Christian Faulhammer <fauli@gentoo.org>
  gst-plugins-base-0.10.24.ebuild:
  x86 stable, bug 290343

  18 Nov 2009; Jeroen Roovers <jer@gentoo.org>
  gst-plugins-base-0.10.24.ebuild:
  Stable for HPPA (bug #290343).

  17 Nov 2009; Brent Baude <ranger@gentoo.org>
  gst-plugins-base-0.10.24.ebuild:
  Marking gst-plugins-base-0.10.24 ppc64 stable for bug 290343

  17 Nov 2009; Olivier Crête <tester@gentoo.org>
  gst-plugins-base-0.10.25.ebuild:
  Add dep on gst core 0.10.25

*gst-plugins-base-0.10.25 (16 Nov 2009)

  16 Nov 2009; Mart Raudsepp <leio@gentoo.org>
  +gst-plugins-base-0.10.25.ebuild:
  Version bump. Per-stream volume control support; interlaced content
  support in videoscale and ffmpegcolorspace; improved audio capture timing
  and audio output starting; many other bug fixes and improvements

  10 Nov 2009; Olivier Crête <tester@gentoo.org>
  gst-plugins-base-0.10.24.ebuild:
  Stable on amd64, bug #290343

  15 Sep 2009; Jeroen Roovers <jer@gentoo.org>
  gst-plugins-base-0.10.23.ebuild:
  Stable for HPPA (bug #280946).

  31 Aug 2009; Brent Baude <ranger@gentoo.org>
  gst-plugins-base-0.10.23.ebuild:
  Marking gst-plugins-base-0.10.23 ppc64 stable for bug 280946

  29 Aug 2009; Raúl Porcel <armin76@gentoo.org>
  gst-plugins-base-0.10.23.ebuild:
  alpha/arm/ia64/sh/sparc stable wrt #280946

  23 Aug 2009; nixnut <nixnut@gentoo.org> gst-plugins-base-0.10.23.ebuild:
  ppc stable #280946

  21 Aug 2009; Christian Faulhammer <fauli@gentoo.org>
  gst-plugins-base-0.10.23.ebuild:
  stable x86, bug 280946

*gst-plugins-base-0.10.24 (15 Aug 2009)

  15 Aug 2009; Olivier Crête <tester@gentoo.org>
  +gst-plugins-base-0.10.24.ebuild:
  Version bump

  15 Aug 2009; Olivier Crête <tester@gentoo.org>
  gst-plugins-base-0.10.23.ebuild:
  Stable on amd64, bug #280946

  10 Aug 2009; Mart Raudsepp <leio@gentoo.org>
  gst-plugins-base-0.10.22.ebuild, gst-plugins-base-0.10.23.ebuild:
  QA: Fix glib and liboil minimum requirements

  01 Jul 2009; Raúl Porcel <armin76@gentoo.org>
  gst-plugins-base-0.10.22.ebuild:
  arm/ia64/sh/sparc stable wrt #266986

  23 May 2009; Jeroen Roovers <jer@gentoo.org>
  gst-plugins-base-0.10.22.ebuild:
  Stable for HPPA (bug #266986).

  21 May 2009; Brent Baude <ranger@gentoo.org>
  gst-plugins-base-0.10.22.ebuild:
  Marking gst-plugins-base-0.10.22 ppc64 stable for bug 266986

  21 May 2009; Brent Baude <ranger@gentoo.org> ChangeLog:
  Marking gst-plugins-base-0.10.22 ppc stable for bug 266986

  14 May 2009; Markus Meier <maekke@gentoo.org>
  gst-plugins-base-0.10.22.ebuild:
  amd64 stable, bug #266986

  12 May 2009; Christian Faulhammer <fauli@gentoo.org>
  gst-plugins-base-0.10.22.ebuild:
  stable x86, bug 266986

*gst-plugins-base-0.10.23 (11 May 2009)

  11 May 2009; Olivier Crête <tester@gentoo.org>
  +gst-plugins-base-0.10.23.ebuild:
  Version bump

  03 May 2009; Tobias Klausmann <klausman@gentoo.org>
  gst-plugins-base-0.10.22.ebuild:
  Stable on alpha, bug #266986

  05 Apr 2009; Raúl Porcel <armin76@gentoo.org>
  gst-plugins-base-0.10.20.ebuild:
  arm/sh stable wrt #232054

*gst-plugins-base-0.10.22 (30 Mar 2009)

  30 Mar 2009; Olivier Crête <tester@gentoo.org>
  +gst-plugins-base-0.10.22.ebuild:
  Version bump, also fix CVE-2009-0586 (bug #261594)

*gst-plugins-base-0.10.21-r1 (24 Dec 2008)

  24 Dec 2008; <ssuominen@gentoo.org> +gst-plugins-base-0.10.21-r1.ebuild:
  Stop using separate plugins, drop .la files, disable static libs to speed
  up

  09 Dec 2008; <ssuominen@gentoo.org> gst-plugins-base-0.10.21.ebuild:
  Depend on >= gstreamer-0.10.21 wrt #250339, thanks to Jeroen Roovers.

*gst-plugins-base-0.10.21 (05 Dec 2008)

  05 Dec 2008; <ssuominen@gentoo.org>
  +files/gst-plugins-base-0.10.21-gtkdoc.patch,
  +gst-plugins-base-0.10.21.ebuild:
  Version bump.

  23 Sep 2008; Jeroen Roovers <jer@gentoo.org>
  gst-plugins-base-0.10.20.ebuild:
  Stable for HPPA (bug #232054).

  08 Aug 2008; Markus Meier <maekke@gentoo.org>
  gst-plugins-base-0.10.20.ebuild:
  x86 stable, bug #232054

  08 Aug 2008; Raúl Porcel <armin76@gentoo.org>
  gst-plugins-base-0.10.20.ebuild:
  alpha stable

  31 Jul 2008; Raúl Porcel <armin76@gentoo.org>
  gst-plugins-base-0.10.20.ebuild:
  ia64/sparc stable wrt #232054

  01 Aug 2008; Brent Baude <ranger@gentoo.org>
  gst-plugins-base-0.10.20.ebuild:
  Marking gst-plugins-base-0.10.20 ppc64 stable for bug 232054

  30 Jul 2008; Brent Baude <ranger@gentoo.org>
  gst-plugins-base-0.10.20.ebuild:
  Marking gst-plugins-base-0.10.20 ppc stable for bug 232054

  30 Jul 2008; Brent Baude <ranger@gentoo.org>
  gst-plugins-base-0.10.20.ebuild:
  Marking gst-plugins-base-0.10.20 ppc stable for bug 232054

  26 Jul 2008; Olivier Crête <tester@gentoo.org>
  gst-plugins-base-0.10.20.ebuild:
  Stable on amd64, bug #232054

*gst-plugins-base-0.10.20 (29 Jun 2008)

  29 Jun 2008; Samuli Suominen <drac@gentoo.org>
  +gst-plugins-base-0.10.20.ebuild:
  Version bump.

  14 May 2008; Markus Rothe <corsair@gentoo.org>
  gst-plugins-base-0.10.19.ebuild:
  Added ~ppc64

*gst-plugins-base-0.10.19 (15 Apr 2008)

  15 Apr 2008; Zaheer Merali <zaheerm@gentoo.org> 
  +gst-plugins-base-0.10.19.ebuild:
  version bump

  14 Apr 2008; Ferris McCormick <fmccor@gentoo.org>
  gst-plugins-base-0.10.17.ebuild:
  Sparc stable, required for Security Bug #217609.

  14 Apr 2008; Markus Rothe <corsair@gentoo.org>
  gst-plugins-base-0.10.17.ebuild:
  Stable on ppc64

  02 Feb 2008; Samuli Suominen <drac@gentoo.org>
  -files/gst-plugins-base-0.10.15-netinet.patch,
  -gst-plugins-base-0.10.15.ebuild:
  Remove unused version.

  01 Feb 2008; Christian Faulhammer <opfer@gentoo.org>
  gst-plugins-base-0.10.15.ebuild:
  revert stable x86

  01 Feb 2008; Samuli Suominen <drac@gentoo.org>
  -files/gst-plugins-base-0.10.4-typefindfunctions-m4v-NULL-terminator.diff,
  -files/gst-plugins-base.audioresample.patch,
  -gst-plugins-base-0.10.4-r1.ebuild, -gst-plugins-base-0.10.6.ebuild,
  -gst-plugins-base-0.10.7.ebuild, -gst-plugins-base-0.10.8.ebuild,
  -gst-plugins-base-0.10.9.ebuild, -gst-plugins-base-0.10.10.ebuild,
  -gst-plugins-base-0.10.11.ebuild, -gst-plugins-base-0.10.12.ebuild,
  -gst-plugins-base-0.10.16.ebuild:
  Remove unused versions.

  01 Feb 2008; Christian Faulhammer <opfer@gentoo.org>
  gst-plugins-base-0.10.15.ebuild:
  stable x86, bug 208366

*gst-plugins-base-0.10.17 (31 Jan 2008)

  31 Jan 2008; Zaheer Merali <zaheerm@gentoo.org> 
  +gst-plugins-base-0.10.17.ebuild:
  version bump

*gst-plugins-base-0.10.16 (29 Jan 2008)

  29 Jan 2008; Zaheer Merali <zaheerm@gentoo.org> 
  +gst-plugins-base-0.10.16.ebuild:
  version bump

  20 Nov 2007; Joe Peterson <lavajoe@gentoo.org>
  +files/gst-plugins-base-0.10.15-netinet.patch,
  gst-plugins-base-0.10.15.ebuild:
  Patch to build on FreeBSD (bug #199630)

  18 Nov 2007; Samuli Suominen <drac@gentoo.org>
  gst-plugins-base-0.10.15.ebuild:
  Restore flag filtering, it still breaks.

*gst-plugins-base-0.10.15 (17 Nov 2007)

  17 Nov 2007; Samuli Suominen <drac@gentoo.org>
  +gst-plugins-base-0.10.15.ebuild:
  Version bump.

  01 Nov 2007; Raúl Porcel <armin76@gentoo.org>
  gst-plugins-base-0.10.14.ebuild:
  sparc stable wrt #190900, thanks to Alex Maclean for testing

  11 Oct 2007; Tom Gall <tgall@gentoo.org>
  gst-plugins-base-0.10.14.ebuild:
  stable on ppc64

  26 Sep 2007; Raúl Porcel <armin76@gentoo.org>
  gst-plugins-base-0.10.14.ebuild:
  alpha/ia64 stable wrt #190900

  21 Sep 2007; Chris Gianelloni <wolf31o2@gentoo.org>
  gst-plugins-base-0.10.14.ebuild:
  Stable on amd64 wrt bug #190900.

  10 Sep 2007; nixnut <nixnut@gentoo.org> gst-plugins-base-0.10.14.ebuild:
  Stable on ppc wrt bug 190900

  09 Sep 2007; Christian Faulhammer <opfer@gentoo.org>
  gst-plugins-base-0.10.14.ebuild:
  x86 stable, bug 190900

  09 Sep 2007; Samuli Suominen <drac@gentoo.org>
  gst-plugins-base-0.10.14.ebuild:
  Remove INSTALL and TODO from dodoc.

  03 Sep 2007; Jeroen Roovers <jer@gentoo.org>
  gst-plugins-base-0.10.14.ebuild:
  Stable for HPPA (bug #190900).

  09 Aug 2007; Zaheer Abbas Merali <zaheerm@gentoo.org>
  -gst-plugins-base-0.10.13.ebuild, gst-plugins-base-0.10.14.ebuild:
  remove 0.10.13 and fix ebuild

*gst-plugins-base-0.10.14 (09 Aug 2007)

  09 Aug 2007; Zaheer Abbas Merali <zaheerm@gentoo.org>
  +gst-plugins-base-0.10.14.ebuild:
  version bump

  26 Jul 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  gst-plugins-base-0.10.12.ebuild:
  Stable on sparc

*gst-plugins-base-0.10.13 (25 Jul 2007)

  25 Jul 2007; Zaheer Abbas Merali <zaheerm@gentoo.org>
  +gst-plugins-base-0.10.13.ebuild:
  version bump

  28 Jun 2007; Joseph Jezak <josejx@gentoo.org>
  gst-plugins-base-0.10.11.ebuild:
  Marked ppc stable for bug #163541.

  20 Mar 2007; Zaheer Abbas Merali <zaheerm@gentoo.org>
  gst-plugins-base-0.10.12.ebuild:
  fix dep

*gst-plugins-base-0.10.12 (16 Mar 2007)

  16 Mar 2007; Zaheer Abbas Merali <zaheerm@gentoo.org>
  +files/gst-plugins-base.audioresample.patch,
  +gst-plugins-base-0.10.12.ebuild:
  version bump

  16 Feb 2007; Roy Marples <uberlord@gentoo.org>
  gst-plugins-base-0.10.11.ebuild:
  Added ~x86-fbsd keyword.

  12 Feb 2007; Christian Faulhammer <opfer@gentoo.org>
  gst-plugins-base-0.10.11.ebuild:
  stable x86; bug 163541

  31 Jan 2007; Markus Rothe <corsair@gentoo.org>
  gst-plugins-base-0.10.11.ebuild:
  Stable on ppc64; bug #163541

  30 Jan 2007; Jeroen Roovers <jer@gentoo.org>
  gst-plugins-base-0.10.11.ebuild:
  Stable for HPPA (bug #163541).

  27 Jan 2007; Olivier Crête <tester@gentoo.org>
  gst-plugins-base-0.10.11.ebuild:
  Stable on amd64 for bug #163541

  23 Jan 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  gst-plugins-base-0.10.11.ebuild:
  Stable on sparc

  21 Dec 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  gst-plugins-base-0.10.11.ebuild:
  Back to ~sparc

  11 Dec 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
  gst-plugins-base-0.10.11.ebuild:
  fix version dep, fixes #157701

*gst-plugins-base-0.10.11 (07 Dec 2006)

  07 Dec 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
  +gst-plugins-base-0.10.11.ebuild:
  version bump

  15 Sep 2006; Hanno Boeck <hanno@gentoo.org>
  gst-plugins-base-0.10.10.ebuild:
  Fix dep for gstreamer to 0.10.10.

*gst-plugins-base-0.10.10 (14 Sep 2006)

  14 Sep 2006; <zaheerm@gentoo.org> +gst-plugins-base-0.10.10.ebuild:
  version bump

  13 Sep 2006; Aron Griffis <agriffis@gentoo.org>
  gst-plugins-base-0.10.8.ebuild:
  Mark 0.10.8 stable on ia64. #139612

  16 Aug 2006; Markus Rothe <corsair@gentoo.org>
  gst-plugins-base-0.10.8.ebuild:
  Stable on ppc64

  22 Jul 2006; Thomas Cort <tcort@gentoo.org>
  gst-plugins-base-0.10.8.ebuild:
  Stable on alpha.

  17 Jul 2006; Daniel Gryniewicz <dang@gentoo.org>
  gst-plugins-base-0.10.8.ebuild:
  Marked stable on amd64 for bug #139612

  16 Jul 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  gst-plugins-base-0.10.8.ebuild:
  hppa stable, bug #139612

*gst-plugins-base-0.10.9 (15 Jul 2006)

  15 Jul 2006; <zaheerm@gentoo.org> +gst-plugins-base-0.10.9.ebuild:
  version bump

  14 Jul 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  gst-plugins-base-0.10.8.ebuild:
  ppc stable, bug #139612

  12 Jul 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  gst-plugins-base-0.10.8.ebuild:
  Stable on x86 wrt bug #139612.

  10 Jul 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  gst-plugins-base-0.10.8.ebuild:
  Stable on sparc wrt #139612

*gst-plugins-base-0.10.8 (12 Jun 2006)

  12 Jun 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
  +gst-plugins-base-0.10.8.ebuild:
  version bump, also from now on gstreamer 0.10 requires glib 2.8

  29 May 2006; Guy Martin <gmsoft@gentoo.org>
  gst-plugins-base-0.10.4-r1.ebuild:
  Stable on hppa.

  21 May 2006; Thomas Cort <tcort@gentoo.org>
  gst-plugins-base-0.10.4-r1.ebuild:
  Stable on alpha.

*gst-plugins-base-0.10.7 (15 May 2006)

  15 May 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
  +gst-plugins-base-0.10.7.ebuild:
  version bump

  14 May 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  gst-plugins-base-0.10.6.ebuild:
  Added ~hppa

  05 May 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  gst-plugins-base-0.10.4-r1.ebuild:
  ppc stable, bug #128737

  03 May 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  gst-plugins-base-0.10.4-r1.ebuild:
  Stable on sparc wrt #128737

*gst-plugins-base-0.10.6 (28 Apr 2006)

  28 Apr 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
  +gst-plugins-base-0.10.6.ebuild:
  version bump

  26 Apr 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
  -gst-plugins-base-0.10.0.ebuild, -gst-plugins-base-0.10.1.ebuild,
  -gst-plugins-base-0.10.2.ebuild, -gst-plugins-base-0.10.3.ebuild,
  -gst-plugins-base-0.10.4.ebuild:
  prune old versions

  23 Apr 2006; Saleem Abdulrasool <compnerd@gentoo.org>
  gst-plugins-base-0.10.4-r1.ebuild:
  stable on x86 (bug #128737)

  17 Apr 2006; Markus Rothe <corsair@gentoo.org>
  gst-plugins-base-0.10.4-r1.ebuild:
  Stable on ppc64; bug #128737

  13 Apr 2006; Thomas Cort <tcort@gentoo.org>
  gst-plugins-base-0.10.4-r1.ebuild:
  Added ~alpha keyword.

  08 Apr 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  gst-plugins-base-0.10.4-r1.ebuild:
  Added to ~ppc, bug #125235

  05 Apr 2006; Patrick McLean <chutzpah@gentoo.org>
  gst-plugins-base-0.10.4-r1.ebuild:
  Stable on amd64 (bug #128737).

  25 Mar 2006; Aron Griffis <agriffis@gentoo.org>
  gst-plugins-base-0.10.4-r1.ebuild:
  Mark 0.10.4-r1 ~ia64

  24 Mar 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
  +files/gst-plugins-base-0.10.4-typefindfunctions-m4v-NULL-terminator.diff,
  gst-plugins-base-0.10.4-r1.ebuild:
  fix typefind m4v null for ppc

  23 Mar 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  gst-plugins-base-0.10.4-r1.ebuild:
  Keyworded ~sparc wrt #125232

*gst-plugins-base-0.10.4-r1 (21 Mar 2006)

  21 Mar 2006; Marinus Schraal <foser@gentoo.org> gst-plugins-base-0.10.4-r1.ebuild :
  Split ximage support to seperate ebuild
  Add pdepends for optional audio/video sinks, so we get a base to work on

  16 Mar 2006; Markus Rothe <corsair@gentoo.org>
  gst-plugins-base-0.10.4.ebuild:
  Added ~ppc64

  13 Mar 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
  gst-plugins-base-0.10.4.ebuild:
  fix dep on gstreamer

*gst-plugins-base-0.10.4 (11 Mar 2006)

  11 Mar 2006; Saleem Abdulrasool <compnerd@gentoo.org>
  gst-plugins-base-0.10.0.ebuild, gst-plugins-base-0.10.1.ebuild,
  +gst-plugins-base-0.10.4.ebuild:
  Version bump and backport mod-x deps

  03 Mar 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
  gst-plugins-base-0.10.3.ebuild:
  fix liboil dependency, fixes bug

*gst-plugins-base-0.10.3 (09 Feb 2006)

  09 Feb 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
  +gst-plugins-base-0.10.3.ebuild:
  version bump

  22 Jan 2006; Doug Goldstein <cardoe@gentoo.org>
  gst-plugins-base-0.10.2.ebuild:
  modular X depends... kk thx :)

*gst-plugins-base-0.10.2 (18 Jan 2006)

  18 Jan 2006; Saleem Abdulrasool <compnerd@gentoo.org>
  +gst-plugins-base-0.10.2.ebuild:
  Version bump from upstream

  29 Dec 2005; Saleem Abdulrasool <compnerd@gentoo.org>
  gst-plugins-base-0.10.1.ebuild:
  Missed gst dep bump

*gst-plugins-base-0.10.1 (29 Dec 2005)

  29 Dec 2005; Saleem Abdulrasool <compnerd@gentoo.org>
  +gst-plugins-base-0.10.1.ebuild:
  Version bump from upstream (bug #116668).

*gst-plugins-base-0.10.0 (05 Dec 2005)

  05 Dec 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
  -gst-plugins-base-0.9.7.ebuild, +gst-plugins-base-0.10.0.ebuild:
  0.10.0 Release

*gst-plugins-base-0.9.7 (02 Dec 2005)

  02 Dec 2005; <zaheer@gentoo.org> +metadata.xml,
  +gst-plugins-base-0.9.7.ebuild:
  New package: part of GStreamer 0.10