Newer
Older
gst-plugins-good1.0 (0.11.90-2) UNRELEASED; urgency=low
* Build-depend on GLib > 2.31.14.
-- Sebastian Dröge <slomo@debian.org> Wed, 02 May 2012 20:26:48 +0200
gst-plugins-good1.0 (0.11.90-1) experimental; urgency=low
* Imported Upstream version 0.11.90
* Imported debian/ from gst-plugins-good 0.10.30-1
* Updated debian/ for 0.11.90
* Removed -gconf package
* gstreamer-plugins-good.intall: Removed the plugins that are not ported or o
[ Sebastian Dröge ]
* Build-depend on libpng-dev instead of libpng12-dev.
-- Sebastian Dröge <slomo@debian.org> Wed, 02 May 2012 20:17:22 +0200
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
gst-plugins-good0.10 (0.10.31-1) unstable; urgency=low
* New upstream release, "Faster":
+ debian/rules,
debian/build-deps.in:
- (Build-) depend on GStreamer core/base >= 0.10.36.
-- Sebastian Dröge <slomo@debian.org> Tue, 21 Feb 2012 10:45:15 +0100
gst-plugins-good0.10 (0.10.30.3-1) experimental; urgency=low
* New upstream pre-release.
-- Sebastian Dröge <slomo@debian.org> Mon, 06 Feb 2012 09:59:53 +0100
gst-plugins-good0.10 (0.10.30.2-3) experimental; urgency=low
* debian/control.in:
+ Build-depend on automake (>= 1.10), autoconf (>= 2.60) and
libtool (>= 2.0) to make dh-autoreconf actually work.
-- Sebastian Dröge <slomo@debian.org> Wed, 14 Dec 2011 12:58:12 +0100
gst-plugins-good0.10 (0.10.30.2-2) experimental; urgency=low
* debian/control.in:
+ Depend on gstreamer0.10-pulseaudio | gstreamer0.10-audiosink
instead of only depending on the virtual package.
-- Sebastian Dröge <slomo@debian.org> Mon, 12 Dec 2011 10:54:47 +0100
gst-plugins-good0.10 (0.10.30.2-1) experimental; urgency=low
* New upstream pre-release:
+ debian/build-deps.in,
debian/rules:
- Build-depend on GStreamer core/base 0.10.35.2.
- Build-depend on PulseAudio 1.0.
+ debian/patches/04_rtpgst722pay-compensate-for-clockrate.patch:
- Dropped, merged upstream.
+ debian/patches/03_pulse-rank.patch:
- Dropped, merged upstream.
+ debian/patches/99_ltmain_as-needed.patch:
- Refreshed to apply cleanly again.
* debian/control.in,
debian/build-deps.in:
+ ACK NMU 0.10.30.2-2.1 and 0.10.30.2-2.2 (Closes: #646325, #633438).
+ Correctly change control file from the last two NMUs.
* debian/build-deps.in,
debian/compat,
debian/control.in,
debian/gstreamer-gconf.install,
debian/gstreamer-plugins-good.install,
debian/gstreamer-pulseaudio.install,
debian/rules:
+ Transition package to multi arch (Closes: #647486).
Patch taken from the Ubuntu package.
-- Sebastian Dröge <slomo@debian.org> Mon, 12 Dec 2011 09:34:40 +0100
gst-plugins-good0.10 (0.10.30-2.2) unstable; urgency=low
* Non-maintainer upload.
* Transition to libjpeg8 by build-depending against libjpeg-dev
(instead of libjpeg62-dev), closes: #633438
-- Philipp Kaluza <debian@ghostroute.eu> Sat, 03 Dec 2011 13:34:20 +0100
gst-plugins-good0.10 (0.10.30-2.1) unstable; urgency=low
* Non-maintainer upload.
* Add Replaces/Breaks to gstreamer0.10-gconf for old
gstreamer0.10-plugins-good (Closes: #646325)
-- Philipp Kaluza <debian@ghostroute.eu> Sat, 03 Dec 2011 10:34:02 +0000
gst-plugins-good0.10 (0.10.30-2) unstable; urgency=low
[ Sebastian Dröge ]
* debian/control.in:
+ Let gstreamer0.10-plugins-good depend on gstreamer0.10-gconf for
wheezy to guarantee correct upgrades to wheezy (Closes: #625567).
[ Sjoerd Simons ]
* debian/patches/04_rtpgst722pay-compensate-for-clockrate.patch:
+ Correct clockrate vs. samplerate difference for G722. Fixes people
sounding like chipmunks on voip calls with G722 (From upstream git)
-- Sjoerd Simons <sjoerd@debian.org> Wed, 09 Nov 2011 14:20:22 +0000
gst-plugins-good0.10 (0.10.30-1) unstable; urgency=low
* New upstream release, "Adagio":
+ debian/patches/01_path-max.patch:
- Dropped, merged upstream.
-- Sebastian Dröge <slomo@debian.org> Thu, 23 Jun 2011 09:44:29 +0200
gst-plugins-good0.10 (0.10.29-2) unstable; urgency=low
* debian/patches/01_path-max.patch:
+ Define PATH_MAX if it isn't defined, e.g. on GNU Hurd. Thanks
to Pino Toscano for the patch (Closes: #626698).
* debian/rules,
debian/gstreamer-plugins-good.install:
+ Don't build the oss4 plugin on GNU Hurd, it does not compile
because of the way how ioctl() works there. Thanks to Pino
Toscano for the patch (Closes: #626698).
-- Sebastian Dröge <slomo@debian.org> Mon, 16 May 2011 09:10:14 +0200
gst-plugins-good0.10 (0.10.29-1) unstable; urgency=low
* New upstream release, "Soft Cheese Enthusiast":
+ debian/gstreamer-plugins-good.install:
- The quicktime plugin was renamed to isomp4 because
of trademark concerns.
+ debian/rules,
debian/build-deps.in:
- Build-depend on GStreamer core/base 0.10.33.
-- Sebastian Dröge <slomo@debian.org> Tue, 10 May 2011 15:52:01 +0200
gst-plugins-good0.10 (0.10.28.3-1) experimental; urgency=low
* New upstream pre-release:
+ debian/gstreamer-plugins-good.install:
- The qtdemux plugin was renamed to quicktime because
it contains a muxer too now.
-- Sebastian Dröge <slomo@debian.org> Wed, 27 Apr 2011 15:48:22 +0200
gst-plugins-good0.10 (0.10.28.2-1) experimental; urgency=low
[ Alessandro Decina ]
* debian/build-deps.in:
+ Add dependency on dh-autoreconf
* debian/rules:
+ Include dh-autoreconf cdbs rule
[ Loïc Minier ]
* Use linux-any in build-deps instead of type-handling.
* Rework sed calls to avoid sed | sed.
[ Sebastian Dröge ]
* debian/control.in,
debian/build-deps.in,
debian/gstreamer-esd.install,
debian/rules:
+ Drop ESD plugin, nothing is using it anymore, it is
unmaintained upstream and pulseaudio is a better
replacement for it.
* New upstream pre-release:
+ debian/build-deps.in,
debian/rules:
- Build-depend on GStreamer core/base >= 0.10.32.2.
+ debian/build-deps.in:
- Build-depend on libcairo2-dev >= 1.10.0.
+ debian/gstreamer-plugins-good.install,
debian/control.in:
- Add audioparsers plugin, which was moved from -bad
and Conflict with -bad << 0.10.21.2.
-- Sebastian Dröge <slomo@debian.org> Sun, 17 Apr 2011 10:55:39 +0200
gst-plugins-good0.10 (0.10.28-3) unstable; urgency=low
* debian/control.in,
debian/rules,
debian/gstreamer-plugins-good.install,
debian/gstreamer-gconf.install:
+ Split the GConf plugin into it's own package. GStreamer is used
as the default phonon backend nowadays and there's no reason
why KDE should depend on half of GNOME (Closes: #595651).
-- Sebastian Dröge <slomo@debian.org> Fri, 01 Apr 2011 10:13:13 +0200
gst-plugins-good0.10 (0.10.28-2) unstable; urgency=low
* Upload to unstable.
-- Sebastian Dröge <slomo@debian.org> Tue, 22 Mar 2011 15:06:25 +0100
gst-plugins-good0.10 (0.10.28-1) experimental; urgency=low
* New upstream bugfix release, "Inconvenienced by the Solar System":
+ Fixes build with kernels that have v4l2 support but not v4l support.
-- Sebastian Dröge <slomo@debian.org> Sun, 13 Mar 2011 13:03:07 +0100
gst-plugins-good0.10 (0.10.27-1) experimental; urgency=low
* New upstream stable release, "Some Kind of Temporal Blend":
+ debian/build-deps,
debian/rules:
- Require GStreamer, gst-plugins-base >= 0.10.32.
-- Sebastian Dröge <slomo@debian.org> Sat, 22 Jan 2011 13:35:36 +0100
gst-plugins-good0.10 (0.10.26.4-1) experimental; urgency=low
* New upstream pre-release:
+ debian/build-deps,
debian/rules:
- Require GStreamer, gst-plugins-base >= 0.10.31.4.
-- Sebastian Dröge <slomo@debian.org> Wed, 19 Jan 2011 21:16:40 +0100
gst-plugins-good0.10 (0.10.26.3-1) experimental; urgency=low
* New upstream pre-release:
+ debian/build-deps,
debian/rules:
- Require GStreamer, gst-plugins-base >= 0.10.31.3.
-- Sebastian Dröge <slomo@debian.org> Thu, 13 Jan 2011 13:07:01 +0100
gst-plugins-good0.10 (0.10.26.2-1) experimental; urgency=low
[ Sebastian Dröge ]
* New upstream pre-release:
+ debian/control.in:
- Conflict/Replace gstreamer0.10-plugins-bad (<< 0.10.20.2) because
of the moved JACK plugin.
+ debian/build-deps.in,
debian/gstreamer-plugins-good.install:
- Add the JACK plugin which was moved from gst-plugins-bad.
+ debian/build-deps,
debian/rules:
- Require GStreamer, gst-plugins-base >= 0.10.31.2.
- Require GLib >= 2.22.
[ Emilio Pozuelo Monfort ]
* debian/build-deps.in,
debian/rules:
+ Use dpkg-vendor instead of lsb_release.
-- Sebastian Dröge <slomo@debian.org> Mon, 10 Jan 2011 15:11:27 +0100
gst-plugins-good0.10 (0.10.26-1) experimental; urgency=low
* New upstream release, "Escapades".
-- Sebastian Dröge <slomo@debian.org> Thu, 02 Dec 2010 10:35:38 +0100
gst-plugins-good0.10 (0.10.25.5-1) experimental; urgency=low
* New upstream pre-release.
-- Sebastian Dröge <slomo@debian.org> Fri, 19 Nov 2010 11:30:21 +0100
gst-plugins-good0.10 (0.10.25.4-1) experimental; urgency=low
* New upstream pre-release.
-- Sebastian Dröge <slomo@debian.org> Mon, 01 Nov 2010 20:18:27 +0100
gst-plugins-good0.10 (0.10.25.3-1) experimental; urgency=low
* New upstream pre-release.
-- Sebastian Dröge <slomo@debian.org> Fri, 22 Oct 2010 19:58:54 +0200
gst-plugins-good0.10 (0.10.25.2-1) experimental; urgency=low
* New upstream pre-release:
+ debian/patches/01_alphacolor-passthrough.patch,
debian/patches/02_qtdemux-eos-handling.patch,
debian/patches/04_qtdemux-eos-handling.patch:
- Dropped, merged upstream.
+ debian/rules,
debian/build-deps.in:
- Require GStreamer core/plugins-base >= 0.10.30.2.
- Require ORC >= 0.4.11.
-- Sebastian Dröge <slomo@debian.org> Sat, 16 Oct 2010 11:29:22 +0200
gst-plugins-good0.10 (0.10.25-5) experimental; urgency=low
* debian/build-deps.in:
+ Add the epoch to the orc build dependency to get dependencies
on the correct versions.
-- Sebastian Dröge <slomo@debian.org> Fri, 17 Sep 2010 13:24:49 +0200
gst-plugins-good0.10 (0.10.25-4) experimental; urgency=low
* debian/patches/02_qtdemux-eos-handling.patch:
+ Another patch from upstream GIT to fix EOS handling in the
QT/MP4 demuxer even more.
-- Sebastian Dröge <slomo@debian.org> Thu, 16 Sep 2010 11:18:01 +0200
gst-plugins-good0.10 (0.10.25-3) experimental; urgency=low
* debian/patches/02_qtdemux-eos-handling.patch:
+ Patch from upstream GIT to fix EOS handling in the QT/MP4 demuxer.
-- Sebastian Dröge <slomo@debian.org> Wed, 15 Sep 2010 08:21:56 +0200
gst-plugins-good0.10 (0.10.25-2) experimental; urgency=low
* debian/patches/01_alphacolor-passthrough.patch:
+ Simple patch from upstream GIT to fix passthrough mode
of the alphacolor element.
-- Sebastian Dröge <slomo@debian.org> Fri, 10 Sep 2010 11:40:40 +0200
gst-plugins-good0.10 (0.10.25-1) experimental; urgency=low
* New upstream release, "Woe to You Oh Earth and Sea".
-- Sebastian Dröge <slomo@debian.org> Fri, 03 Sep 2010 12:36:18 +0200
gst-plugins-good0.10 (0.10.24.5-1) experimental; urgency=low
* New upstream pre-release.
-- Sebastian Dröge <slomo@debian.org> Wed, 25 Aug 2010 22:12:39 +0200
gst-plugins-good0.10 (0.10.24.4-1) experimental; urgency=low
* New upstream pre-release.
-- Sebastian Dröge <slomo@debian.org> Sat, 21 Aug 2010 21:59:12 +0200
gst-plugins-good0.10 (0.10.24.3-1) experimental; urgency=low
* New upstream pre-release.
-- Sebastian Dröge <slomo@debian.org> Wed, 11 Aug 2010 21:19:47 +0200
gst-plugins-good0.10 (0.10.24.2-1) experimental; urgency=low
* New upstream pre-release.
-- Sebastian Dröge <slomo@debian.org> Wed, 11 Aug 2010 09:12:22 +0200
gst-plugins-good0.10 (0.10.24-1) unstable; urgency=low
* New upstream stable release, "Taking Liberties":
+ debian/build-deps.in,
debian/rules:
- Build depend on GStreamer 0.10.30.
-- Sebastian Dröge <slomo@debian.org> Thu, 15 Jul 2010 13:54:14 +0200
gst-plugins-good0.10 (0.10.23.4-1) experimental; urgency=low
* New upstream pre-release.
-- Sebastian Dröge <slomo@debian.org> Wed, 07 Jul 2010 15:42:43 +0200
gst-plugins-good0.10 (0.10.23.3-1) experimental; urgency=low
* New upstream pre-release:
+ debian/build-deps.in,
debian/rules:
- Build depend on GStreamer 0.10.29.3.
+ debian/patches/01_jpeg-libgstbase-linking.patch:
- Dropped, merged upstream.
-- Sebastian Dröge <slomo@debian.org> Wed, 30 Jun 2010 10:43:51 +0200
gst-plugins-good0.10 (0.10.23.2-1) experimental; urgency=low
* New upstream pre-release:
+ debian/rules,
debian/compat,
debian/control.in,
debian/source/format,
debian/patches/*:
- Update to debhelper compat level 7.
- Update to source format 3.0 (quilt).
+ debian/build-deps.in,
debian/rules:
- Build depend on GLib 2.20 and GStreamer 0.10.29.2.
- Build depend on libraw1394 2.0.0.
- Build depend on ORC instead of liboil.
+ debian/patches/02_pulsesink-reuse.patch,
debian/patches/04_theora_delivery_method.patch,
debian/patches/05_rtph264pay_short_startcodes.patch:
- Dropped, merged upstream.
+ debian/patches/01_jpeg-libgstbase-linking.patch:
- Link the jpeg plugin with libgstbase to fix FTBFS.
-- Sebastian Dröge <slomo@debian.org> Sat, 26 Jun 2010 21:38:03 +0200
gst-plugins-good0.10 (0.10.23-4) unstable; urgency=low
* debian/patches/05_rtph264pay_short_startcodes.patch:
+ Patch from upstream GIT to let rtph264 cope with the shorter
startcodes that are now used by by x264enc. This fixes interoperability
with Google Video and Nokia N900 among others.
-- Sjoerd Simons <sjoerd@debian.org> Fri, 04 Jun 2010 12:51:01 +0100
gst-plugins-good0.10 (0.10.23-3) unstable; urgency=low
* debian/patches/02_pulsesink-reuse.patch:
+ Patch from upstream GIT to fix reuse of pulsesink.
-- Sebastian Dröge <slomo@debian.org> Wed, 02 Jun 2010 10:54:42 +0200
gst-plugins-good0.10 (0.10.23-2) unstable; urgency=low
* debian/patches/04_theora_delivery_method.patch
+ Added. Let the theora payloader advertise delivery-method in its caps.
Needed for backwards compatibility with older gstreamer/farsight
versions. (From Gnome bugzilla #618940)
-- Sjoerd Simons <sjoerd@debian.org> Mon, 31 May 2010 22:31:06 +0100
gst-plugins-good0.10 (0.10.23-1) unstable; urgency=low
* New upstream release, "Stylish Kids in Riot".
-- Sebastian Dröge <slomo@debian.org> Mon, 31 May 2010 05:42:46 +0200
gst-plugins-good0.10 (0.10.22.3-1) unstable; urgency=low
* New upstream pre-release:
+ debian/patches/*:
- Drop all VP8/WebM patches and other patches that
are upstream now.
-- Sebastian Dröge <slomo@debian.org> Wed, 26 May 2010 15:34:01 +0200
gst-plugins-good0.10 (0.10.22.2-3) unstable; urgency=low
* Upload to unstable.
-- Sebastian Dröge <slomo@debian.org> Thu, 20 May 2010 13:55:29 +0200
gst-plugins-good0.10 (0.10.22.2-2) experimental; urgency=low
* debian/patches/00*:
+ Add support for VP8 in the AVI, Matroska and QT/MP4 plugins
and fix some Matroska issues.
* debian/patches/04-pulse-0001-pulse-Don-t-lock-the-mainloop-in-NULL.patch:
+ Don't try to use a NULL pulse mainloop.
-- Sebastian Dröge <slomo@debian.org> Tue, 18 May 2010 20:59:55 +0200
gst-plugins-good0.10 (0.10.22.2-1) experimental; urgency=low
* New upstream pre-release:
+ debian/gstreamer-plugins-good.install,
debian/control.in:
- Ship the imagefreeze and oss4audio plugins here, they were
moved from gstreamer0.10-plugins-bad.
- Add conflicts for gstreamer0.10-plugins-bad because of the
moved capssetter element.
* debian/patches/01_efence-configure-check.patch:
+ Fix configure check for efence.
-- Sebastian Dröge <slomo@debian.org> Sat, 15 May 2010 09:55:08 +0200
gst-plugins-good0.10 (0.10.22-1) unstable; urgency=low
* New upstream release, "Square One":
+ debian/build-deps.in,
debian/rules:
- Build depend on GStreamer core/base >= 0.10.29.
-- Sebastian Dröge <slomo@debian.org> Wed, 28 Apr 2010 09:44:17 +0200
gst-plugins-good0.10 (0.10.21.3-1) experimental; urgency=low
* New upstream pre-release.
-- Sebastian Dröge <slomo@debian.org> Mon, 26 Apr 2010 08:01:09 +0200
gst-plugins-good0.10 (0.10.21.2-1) experimental; urgency=low
* New upstream pre-release:
+ debian/build-deps.in,
debian/rules:
- Build depend on GStreamer core/base >= 0.10.28.2.
* debian/build-deps.in,
debian/control.in:
+ (Build-) depend on GStreamer core/base documentation to get
documentation cross references right.
-- Sebastian Dröge <slomo@debian.org> Thu, 15 Apr 2010 13:56:53 +0200
gst-plugins-good0.10 (0.10.21-1) unstable; urgency=low
* New upstream stable release, "Lemons".
-- Sebastian Dröge <slomo@debian.org> Tue, 09 Mar 2010 09:48:28 +0000
gst-plugins-good0.10 (0.10.19-1) unstable; urgency=low
* New upstream stable release, "Closer to the Edit":
+ debian/rules,
debian/build-deps.in:
- Build depend on gstreamer and gst-plugins-base >= 0.10.27.
-- Sebastian Dröge <slomo@debian.org> Mon, 08 Mar 2010 10:01:27 +0000
gst-plugins-good0.10 (0.10.18.3-1) experimental; urgency=low
* New upstream pre-release:
+ debian/rules,
debian/build-deps.in:
- Build depend on gstreamer and gst-plugins-base >= 0.10.26.3.
-- Sebastian Dröge <slomo@debian.org> Thu, 25 Feb 2010 08:27:57 +0100
gst-plugins-good0.10 (0.10.18.2-1) experimental; urgency=low
* New upstream pre-release:
+ debian/gstreamer-plugins-good.install,
debian/control.in:
- Add shapewipe plugin, which moved from gst-plugins-bad. Also
add Replaces for gst-plugins-bad << 0.10.17.2.
+ debian/build-deps.in:
- Build depend on gst-plugins-base 0.10.26.2.
-- Sebastian Dröge <slomo@debian.org> Fri, 19 Feb 2010 13:51:58 +0100
gst-plugins-good0.10 (0.10.18-1) unstable; urgency=low
* New upstream release, "Short Circuit":
+ debian/rules,
debian/build-deps.in:
- Update GStreamer and gst-plugins-base build dependencies to >= 0.10.26.
-- Sebastian Dröge <slomo@debian.org> Thu, 11 Feb 2010 10:31:48 +0100
gst-plugins-good0.10 (0.10.17.3-1) experimental; urgency=low
* debian/build-deps.in,
debian/gstreamer-plugins-good.install:
+ Remove HAL plugin, HAL will most probably be dropped soon and
nobody uses this plugin anymore.
* New upstream pre-release.
-- Sebastian Dröge <slomo@debian.org> Fri, 05 Feb 2010 10:10:51 +0100
gst-plugins-good0.10 (0.10.17.2-1) experimental; urgency=low
* New upstream pre-release:
+ debian/rules,
debian/control.in:
- Build depend on GStreamer 0.10.25.2, gst-plugins-base 0.10.25.2
and GLib 2.18.
+ Fixes demuxing of some MOV files (Closes: #561227).
+ Fixes FTBFS with gcc 4.5 (Closes: #564998).
* debian/control.in:
+ Fix typo in package description (Closes: #557368).
+ Remove David I. Lehn from Uploaders (Closes: #557285).
-- Sebastian Dröge <slomo@debian.org> Wed, 27 Jan 2010 07:56:17 +0100
gst-plugins-good0.10 (0.10.17-1) unstable; urgency=low
* debian/build-deps.in:
+ Build depend on pulseaudio >= 0.9.20 for additional
features.
* New upstream release, "They used to sparkle".
-- Sebastian Dröge <slomo@debian.org> Tue, 17 Nov 2009 09:17:35 +0100
gst-plugins-good0.10 (0.10.16.3-1) experimental; urgency=low
* New upstream pre-release.
-- Sebastian Dröge <slomo@debian.org> Fri, 13 Nov 2009 07:58:08 +0100
gst-plugins-good0.10 (0.10.16.2-1) experimental; urgency=low
* New upstream pre-release:
+ debian/patches/00*pulse*.patch,
debian/patches/00*equalizer*.patch,
debian/patches/04_oss-rank.patch:
- Dropped, merged upstream.
+ debian/build-deps.in,
debian/rules:
- Update build dependencies.
-- Sebastian Dröge <slomo@debian.org> Tue, 10 Nov 2009 10:28:49 +0100
gst-plugins-good0.10 (0.10.16-5) unstable; urgency=low
* debian/patches/0021-pulsesink-Only-set-the-volume-on-stream-connection-i.patch:
+ Only set the volume on stream connection if pulse >= 0.9.20 is available,
this prevents weird volume changes in totem.
-- Sebastian Dröge <slomo@debian.org> Fri, 30 Oct 2009 10:33:31 +0100
gst-plugins-good0.10 (0.10.16-4) unstable; urgency=low
* debian/patches/000{1,2}-equalizer*.patch:
+ Patches from upstream GIT to fix equalizer in stereo mode and
to use better filters for the first and last band.
* debian/patches/00[1-20]-pulse*.patch:
+ Patches from upstream GIT to improve PulseAudio plugin and fix
some major issues, like decreasing the volume after every track
in some cases.
-- Sebastian Dröge <slomo@debian.org> Sun, 18 Oct 2009 14:00:56 +0200
gst-plugins-good0.10 (0.10.16-3) unstable; urgency=low
* debian/patches/04_oss-rank.patch:
+ Downgrade the rank of osssrc to secondary
* debian/rules: Change default audio input to autoaudiosrc
-- Sjoerd Simons <sjoerd@debian.org> Wed, 07 Oct 2009 22:33:02 +0100
gst-plugins-good0.10 (0.10.16-2) unstable; urgency=low
* debian/rules:
+ Use libgudev on Linux for v4l2 device detection.
-- Sebastian Dröge <slomo@debian.org> Wed, 30 Sep 2009 08:26:07 +0200
gst-plugins-good0.10 (0.10.16-1) unstable; urgency=low
* New upstream release, 'Secret Handshakes'.
-- Sebastian Dröge <slomo@debian.org> Sun, 30 Aug 2009 11:02:26 +0200
gst-plugins-good0.10 (0.10.15.5-1) experimental; urgency=low
* New upstream pre-release.
* debian/control.in:
+ Update Standards-version to 3.8.3, no additional changes needed.
-- Sebastian Dröge <slomo@debian.org> Wed, 26 Aug 2009 17:39:36 +0200
gst-plugins-good0.10 (0.10.15.3-1) experimental; urgency=low
* New upstream pre-release.
-- Sebastian Dröge <slomo@debian.org> Mon, 17 Aug 2009 08:11:59 +0200
gst-plugins-good0.10 (0.10.15.2-1) experimental; urgency=low
* New upstream pre-release:
+ debian/build-deps.in,
debian/rules:
- Update build dependencies.
+ debian/control.in,
debian/gstreamer-plugins-good.install:
- Add the rtpmanager plugin which was moved from gst-plugins-bad.
For this also add Replaces for gst-plugins-bad << 0.10.13.2.
+ debian/patches/01_equalizer-integer-arithmetic-distortions.patch,
debian/patches/02_SA35205-pngdec-integer-overflow.patch:
- Dropped, merged upstream.
* debian/control.in:
+ Update Standards-version to 3.8.2, no additional changes needed.
-- Sebastian Dröge <slomo@debian.org> Wed, 12 Aug 2009 07:13:08 +0200
gst-plugins-good0.10 (0.10.15-2) unstable; urgency=high
* debian/patches/01_equalizer-integer-arithmetic-distortions.patch:
+ Patch from upstream GIT to fix distortions when the integer
arithmetic mode of the equalizer is used.
* debian/patches/02_SA35205-pngdec-integer-overflow.patch:
+ SECURITY: SA35205 - PNG Processing Integer Overflow Vulnerability
Patch from upstream GIT to fix an integer overflow in pngdec:
A malformed (or simply huge) PNG file can lead to integer overflow in
calculating the size of the output buffer, leading to crashes or buffer
overflows later (Closes: #531631).
-- Sebastian Dröge <slomo@debian.org> Wed, 03 Jun 2009 08:22:36 +0200
gst-plugins-good0.10 (0.10.15-1) unstable; urgency=low
* New upstream release, 'I've been up all night'.
-- Sebastian Dröge <slomo@debian.org> Wed, 20 May 2009 23:19:36 +0200
gst-plugins-good0.10 (0.10.14.3-1) experimental; urgency=low
* New upstream pre-release:
+ Fixes regression in AVI seeking (Closes: #528813).
+ debian/patches/01_rtp-libm-linking.patch:
- Dropped, merged upstream.
+ debian/gstreamer-plugins-good.install,
debian/control.in:
- Add the flv, deinterlace and y4menc plugins that
were moved from gst-plugins-bad.
* debian/control.in:
+ Change section of the debug package to debug and add ${misc:Depends}
to it's dependencies.
-- Sebastian Dröge <slomo@debian.org> Sat, 16 May 2009 11:28:14 +0200
gst-plugins-good0.10 (0.10.14.2-1) experimental; urgency=low
* New upstream pre-release:
+ debian/patches/01_gconf-notifications.patch:
- Dropped, merged upstream.
+ debian/rules,
debian/build-deps.in:
- Updated build dependencies.
+ debian/patches/01_rtp-libm-linking.patch:
- Link with -lm to fix unresolved symbols.
* debian/control.in:
+ Update Standards-version to 3.8.1, no additional changes needed.
-- Sebastian Dröge <slomo@debian.org> Tue, 12 May 2009 08:59:05 +0200
gst-plugins-good0.10 (0.10.14-2) unstable; urgency=low
* Upload to unstable.
-- Sebastian Dröge <slomo@debian.org> Fri, 06 Mar 2009 23:41:50 +0100
gst-plugins-good0.10 (0.10.14-1) experimental; urgency=low
* New upstream release, 'Disaffected Affectation'.
* debian/patches/02_no-Werror.patch,
debian/rules:
+ Pass -Wno-error via C(XX)FLAGS instead of patching configure.
* debian/patches/01_gconf-notifications.patch:
+ Disconnect GConf notifications after usage, patch from upstream GIT.
-- Sebastian Dröge <slomo@debian.org> Fri, 20 Feb 2009 10:31:38 +0100
gst-plugins-good0.10 (0.10.13.3-1) experimental; urgency=low
* debian/build-deps.in:
+ Build depend on gstreamer0.10-plugins-base 0.10.22 for the
new videotestsrc colors to fix the videocrop unit test.
* debian/gstreamer-plugins-good.install:
+ Include the new equalizer presets.
* New upstream pre-release.
-- Sebastian Dröge <slomo@debian.org> Mon, 16 Feb 2009 15:30:35 +0100
gst-plugins-good0.10 (0.10.13.2-1) experimental; urgency=low
* New upstream pre-release:
+ debian/patches/04_equalizer-coefficients.patch,
debian/patches/05_soup-live-source.patch,
debian/patches/06_libv4l.patch,
debian/patches/07_pulse-hang-and-thread-leak.patch,
debian/patches/99_autoreconf.patch:
- Dropped, merged upstream.
+ debian/rules,
debian/build-deps.in:
- Build depend on gstreamer and gst-plugins-base 0.10.22.
- Build depend on pulseaudio 0.9.13 to enable some optional
features in the pulse plugin.
-- Sebastian Dröge <slomo@debian.org> Sat, 07 Feb 2009 20:36:03 +0100
gst-plugins-good0.10 (0.10.13-2) experimental; urgency=low
* debian/patches/07_pulse-hang-and-thread-leak.patch:
+ Patches from upstream GIT to fix some deadlocks when
the pulseaudio daemon disappears and also fix
a memory leak.
-- Sebastian Dröge <slomo@debian.org> Mon, 26 Jan 2009 15:41:46 +0100
gst-plugins-good0.10 (0.10.13-1) experimental; urgency=low
* New upstream security release, 'Blatant Discouragement':
+ Fix potential buffer overflows while reading quicktime headers.
Security issue noticed by Tobias Klein (TKADV2009-0xx).
+ debian/patches/99_autoreconf.patch:
- Updated for the new release.
* debian/build-deps.in:
+ Build depend on libcairo2-dev instead of the virtual package
libcairo-dev.
* -
-- Sebastian Dröge <slomo@debian.org> Mon, 26 Jan 2009 15:41:45 +0100
gst-plugins-good0.10 (0.10.11-2) experimental; urgency=low
* debian/patches/06_libv4l.patch,
debian/patches/99_autoreconf.patch,
debian/rules:
+ Patch from upstream CVS to use libv4l for the v4l2 plugin instead
of direct access to the v4l device. This adds support for a lot
more v4l2 devices.
-- Sebastian Dröge <slomo@debian.org> Wed, 05 Nov 2008 12:38:36 +0100
gst-plugins-good0.10 (0.10.11-1) experimental; urgency=low
* New upstream release, 'Secondary Consideration'.
-- Sebastian Dröge <slomo@debian.org> Sat, 25 Oct 2008 09:39:23 +0200
gst-plugins-good0.10 (0.10.10.4-1) experimental; urgency=low
[ Loic Minier ]
* Set gstreamer0.10-pulseaudio's Section to sound to match overrides.
[ Sebastian Dröge ]
* New upstream pre-release.
* debian/patches/04_equalizer-coefficients.patch:
+ Patch from upstream bugtracker to not recalculate the equalizer
coefficients for every single buffer but only when it's needed.
* debian/patches/05_soup-live-source.patch:
+ Patch from upstream bugtracker to allow souphttpsrc to work
as live source and have it provide timestamps.
-- Sebastian Dröge <slomo@debian.org> Wed, 22 Oct 2008 11:08:03 +0200
gst-plugins-good0.10 (0.10.10.3-1) experimental; urgency=low
* New upstream pre-release.
-- Sebastian Dröge <slomo@debian.org> Sat, 18 Oct 2008 10:23:40 +0200
gst-plugins-good0.10 (0.10.10.2-1) experimental; urgency=low
* New upstream pre-release:
+ debian/rules,
debian/build-deps.in:
- Build depend on gstreamer and gst-plugins-base >= 0.10.21.
+ debian/build-deps.in:
- Build depend on FLAC >= 1.1.3.
- Build depend on bzip2.
-- Sebastian Dröge <slomo@debian.org> Sat, 11 Oct 2008 15:42:49 +0200
gst-plugins-good0.10 (0.10.10-1) experimental; urgency=low
* New upstream release, 'Barely Moving'.
-- Sebastian Dröge <slomo@debian.org> Thu, 28 Aug 2008 10:29:42 +0200
gst-plugins-good0.10 (0.10.9.2-1) experimental; urgency=low
* New upstream pre-release:
+ debian/build-deps.in,
debian/gstreamer-plugins-good.install:
- Remove the cdio plugin, it moved to gst-plugins-ugly because libcdio
is GPL licensed.
* debian/rules:
+ Build depend on gstreamer >= 0.10.20-3 for the new virtual package
names.
* debian/control.in:
+ Wrap control fields.
+ Depend on gstreamer0.10-plugins-base as some plugins need it.
-- Sebastian Dröge <slomo@debian.org> Fri, 15 Aug 2008 09:28:10 +0200
gst-plugins-good0.10 (0.10.9-2) experimental; urgency=low
* debian/control.in,
debian/rules:
+ Use new automatic codec installation infrastructure.
-- Sebastian Dröge <slomo@debian.org> Sat, 09 Aug 2008 16:56:46 +0200
gst-plugins-good0.10 (0.10.9-1) experimental; urgency=low
* New upstream release, 'Steam Train Rolling'.
-- Sebastian Dröge <slomo@debian.org> Fri, 01 Aug 2008 11:32:53 +0200
gst-plugins-good0.10 (0.10.8.4-1) experimental; urgency=low
* New upstream pre-release.
-- Sebastian Dröge <slomo@debian.org> Tue, 29 Jul 2008 12:01:45 +0200
gst-plugins-good0.10 (0.10.8.3-1) experimental; urgency=low
* New upstream pre-release.
-- Sebastian Dröge <slomo@debian.org> Sat, 26 Jul 2008 12:34:57 +0200
gst-plugins-good0.10 (0.10.8.2-1) experimental; urgency=low
* New upstream pre-release:
+ debian/patches/10_speex_caps.patch,
debian/patches/11_rtsp_fdleak.patch,
debian/patches/12_matroskamux_track_duration.patch,
debian/patches/13_equalizer.patch:
- Dropped, merged upstream.
+ debian/build-deps.in,
debian/control.in,
debian/gstreamer-pulseaudio.install,
debian/rules:
- Add the pulseaudio plugin.
+ debian/gstreamer-plugins-good.install,
debian/control.in:
- Add the interleave and replaygain plugins.
+ debian/build-deps.in,
debian/rules:
- Update gstreamer, gst-plugins-base and libcdio build dependencies.
* debian/control.in:
+ Depend on gstreamer0.10-audiosink instead of a specific audiosink
plugin (Closes: #482796).
* debian/patches/03_pulse-rank.patch:
+ Update the rank of the pulse elements to PRIMARY+10.
* debian/control.in:
+ Update Standards-version to 3.8.0, no additional changes needed.
-- Sebastian Dröge <slomo@debian.org> Sun, 20 Jul 2008 11:59:00 +0200
gst-plugins-good0.10 (0.10.8-4) unstable; urgency=low
* debian/patches/13_equalizer.patch:
+ Fix clipping in integer mode, correctly implement passthrough mode if
all bands have a gain of 0dB and delay filter coefficient calculation
until they're really needed. Patch from upstream CVS.
-- Sebastian Dröge <slomo@debian.org> Mon, 02 Jun 2008 13:44:41 +0200
gst-plugins-good0.10 (0.10.8-3) unstable; urgency=low
* debian/patches/11_rtsp_fdleak.patch
- Added. Fix filedescriptor leak on errors. (From upstream CVS)
* debian/patches/12_matroskamux_track_duration.patch
- Added. Fix track time calculation when muxing matroska files (From
upstream CVS)
-- Sjoerd Simons <sjoerd@debian.org> Sun, 01 Jun 2008 16:15:48 +0200
gst-plugins-good0.10 (0.10.8-2) unstable; urgency=low
* debian/patches/10_speex_caps.patch
- Added. Fix speexenc and rtpspeexpay caps negotiation (From gnome
bugzilla #465146)
-- Sjoerd Simons <sjoerd@debian.org> Fri, 25 Apr 2008 21:51:20 +0200
gst-plugins-good0.10 (0.10.8-1) unstable; urgency=low
* New upstream bugfix release, 'One For The Money'.
-- Sebastian Dröge <slomo@debian.org> Thu, 24 Apr 2008 07:41:30 +0200
gst-plugins-good0.10 (0.10.7.4-1) experimental; urgency=low
* New upstream pre-release.
-- Sebastian Dröge <slomo@debian.org> Tue, 22 Apr 2008 10:28:29 +0200
gst-plugins-good0.10 (0.10.7.3-1) experimental; urgency=low
* New upstream pre-release:
+ debian/patches/01_goom-missing-header.patch:
- Dropped, merged upstream.
+ debian/build-deps.in:
- flex and bison are not necessary anymore.
-- Sebastian Dröge <slomo@debian.org> Fri, 18 Apr 2008 10:35:19 +0200
gst-plugins-good0.10 (0.10.7.2-2) experimental; urgency=low
* debian/patches/02_no-Werror.patch:
+ Don't build with -Werror to fix FTBFS on some architectures.
-- Sebastian Dröge <slomo@debian.org> Tue, 15 Apr 2008 05:29:28 +0200
gst-plugins-good0.10 (0.10.7.2-1) experimental; urgency=low
* New upstream pre-release:
+ debian/control.in:
- Adjust conflicts for gst-plugins-bad because of moved plugins.
+ debian/rules,
debian/build-deps.in:
- Update build dependencies.
+ debian/gstreamer-plugins-good.install:
- Ship soup and goom2k1 plugins.
+ debian/rules:
- Set default audio/video sinks/srcs depending on the platform.
+ debian/patches/02_v4l2_default.patch,
debian/patches/05_speexenc_double_unref.patch,
debian/patches/75_build_docs_without_python_xml.patch,
debian/patches/80_unit-tests.patch:
- Dropped, merged upstream.
+ debian/patches/01_goom-missing-header.patch: