File: changelog

package info (click to toggle)
gstreamer1.0 1.14.4-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 33,140 kB
  • sloc: ansic: 174,477; sh: 5,645; makefile: 2,081; perl: 1,629; xml: 1,000; yacc: 967; python: 447; lex: 176; lisp: 154; cpp: 55; sed: 16
file content (2903 lines) | stat: -rw-r--r-- 98,820 bytes parent folder | download
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
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
gstreamer1.0 (1.14.4-1) unstable; urgency=medium

  * New upstream bugfix release

 -- Sebastian Dröge <slomo@debian.org>  Wed, 03 Oct 2018 13:51:02 +0300

gstreamer1.0 (1.14.3-1) unstable; urgency=medium

  [ Hugh McMaster ]
  * gir1.2-gstreamer-1.0: Install the typelibs into a multi-arch library
    directory (Closes: #904266).
  * debian/control.in:
    - Mark gir1.2-gstreamer-1.0 Multi-Arch: same.
    - Remove a duplicate ${gir:Depends} variable from gir1.2-gstreamer-1.0.
    - Mark libgstreamer1.0-dev Multi-Arch: same (Closes: #823307).
  * debian/dh_gstscancodecs:
    - Call gst-codec-info-1.0 from the package's libexecdir path.
  * libgstreamer1.0-dev:
    - Install the gst-codec-info-1.0 utility into the package's multi-arch
      program executables directory (libexecdir).

  [ Sebastian Dröge ]
  * New upstream bugfix release.

 -- Sebastian Dröge <slomo@debian.org>  Mon, 17 Sep 2018 09:52:35 +0300

gstreamer1.0 (1.14.2-2) unstable; urgency=medium

  * debian/patches/0002-gstconfig.h.in-initial-RISC-V-support.patch:
    + Add support for RISC-V (Closes: #895711).
  * debian/control.in:
    + Build-depend on libgmp-dev | libgmp3-dev (Closes: #862257).

 -- Sebastian Dröge <slomo@debian.org>  Mon, 30 Jul 2018 09:36:35 +0300

gstreamer1.0 (1.14.2-1) unstable; urgency=medium

  * New upstream bugfix release

 -- Sebastian Dröge <slomo@debian.org>  Mon, 23 Jul 2018 12:05:58 +0300

gstreamer1.0 (1.14.1-1) unstable; urgency=medium

  * New upstream bugfix release.

 -- Sebastian Dröge <slomo@debian.org>  Fri, 18 May 2018 10:09:28 +0300

gstreamer1.0 (1.14.0-1) unstable; urgency=medium

  * debian/control.in:
    + Let -dev package conflict/replaces with the one from gst-plugins-bad.
  * New upstream stable release.

 -- Sebastian Dröge <slomo@debian.org>  Tue, 20 Mar 2018 09:45:17 +0200

gstreamer1.0 (1.13.91-1) experimental; urgency=medium

  * debian/*.symbols:
    + Add Build-Depends-Package header to each library section.
  * New upstream release candidate.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 14 Mar 2018 10:49:20 +0200

gstreamer1.0 (1.13.90-1) experimental; urgency=medium

  * New upstream release candidate.

 -- Sebastian Dröge <slomo@debian.org>  Sun, 04 Mar 2018 10:45:33 +0200

gstreamer1.0 (1.13.1-1) experimental; urgency=medium

  * New upstream development release.
  * debian/control.in:
    + Breaks libgstreamer-plugins-bad1.0-0 (<< 1.13.1) because of API
      that moved to the core GStreamer libraries.

 -- Sebastian Dröge <slomo@debian.org>  Fri, 16 Feb 2018 23:43:37 +0200

gstreamer1.0 (1.12.4-1) unstable; urgency=medium

  * New upstream bugfix release

 -- Sebastian Dröge <slomo@debian.org>  Thu, 07 Dec 2017 19:22:08 +0200

gstreamer1.0 (1.12.3-1) unstable; urgency=medium

  * New upstream bugfix release

 -- Sebastian Dröge <slomo@debian.org>  Mon, 18 Sep 2017 21:18:26 +0300

gstreamer1.0 (1.12.2-1) unstable; urgency=medium

  * New upstream bugfix release

 -- Sebastian Dröge <slomo@debian.org>  Fri, 14 Jul 2017 13:19:40 +0300

gstreamer1.0 (1.12.1-2) unstable; urgency=high

  * debian/patches/0001-registrybinary-Update-magic-version-string.patch:
    + Force regeneration of the registry for blacklisted plugins that
      were blacklisted due to broken dependencies.

      Various 1.12 plugin packages were built against 1.12.1-1 and moved to
      testing as such, but had dependencies on GStreamer < 1.12. This does not
      work and causes the plugins to fail to load and be blacklisted.

      While all dependencies should be correct, for some reason they were not,
      which needs separate investigation (Closes: #866339, #866103).

 -- Sebastian Dröge <slomo@debian.org>  Mon, 03 Jul 2017 09:16:52 +0300

gstreamer1.0 (1.12.1-1) unstable; urgency=medium

  * New upstream bugfix release

 -- Sebastian Dröge <slomo@debian.org>  Tue, 20 Jun 2017 11:12:14 +0300

gstreamer1.0 (1.12.0-2) experimental; urgency=medium

  [ Sebastian Dröge ]
  * debian/control.in:
    + Don't let gstreamer1.0-tools depend on pkg-config (Closes: #861969).

 -- Iain Lane <iain.lane@canonical.com>  Fri, 12 May 2017 13:16:05 +0100

gstreamer1.0 (1.12.0-1) experimental; urgency=medium

  * New upstream stable release

 -- Sebastian Dröge <slomo@debian.org>  Thu, 04 May 2017 15:06:31 +0300

gstreamer1.0 (1.11.91-1) experimental; urgency=medium

  * New upstream release candidate.

 -- Sebastian Dröge <slomo@debian.org>  Thu, 27 Apr 2017 16:47:40 +0300

gstreamer1.0 (1.11.90-1) experimental; urgency=medium

  * New upstream release candidate.

 -- Sebastian Dröge <slomo@debian.org>  Fri, 07 Apr 2017 15:14:34 +0300

gstreamer1.0 (1.11.2-1) experimental; urgency=medium

  * New development release

 -- Sebastian Dröge <slomo@debian.org>  Fri, 24 Feb 2017 13:25:49 +0200

gstreamer1.0 (1.11.1-1) experimental; urgency=medium

  * New upstream development release:
    + debian/*doc*,
      debian/rules:
      - Remove PWG and other documentation that is now handled outside
        the source tarball.

 -- Sebastian Dröge <slomo@debian.org>  Thu, 12 Jan 2017 14:42:42 +0200

gstreamer1.0 (1.10.4-1) unstable; urgency=medium

  * New upstream bugfix release

 -- Sebastian Dröge <slomo@debian.org>  Thu, 23 Feb 2017 15:33:32 +0200

gstreamer1.0 (1.10.3-1) unstable; urgency=medium

  * New upstream bugfix release

 -- Sebastian Dröge <slomo@debian.org>  Mon, 30 Jan 2017 15:27:56 +0200

gstreamer1.0 (1.10.2-1) unstable; urgency=medium

  * New upstream bugfix release

 -- Sebastian Dröge <slomo@debian.org>  Tue, 29 Nov 2016 15:29:47 +0200

gstreamer1.0 (1.10.1-1) unstable; urgency=medium

  * New upstream bugfix release

 -- Sebastian Dröge <slomo@debian.org>  Thu, 17 Nov 2016 14:48:06 +0200

gstreamer1.0 (1.10.0-2) unstable; urgency=medium

  * debian/control:
    + Make sure to properly update debian/control every time, otherwise
      changes to control.in are not applied (Closes: #842526).

 -- Sebastian Dröge <slomo@debian.org>  Mon, 07 Nov 2016 10:42:26 +0200

gstreamer1.0 (1.10.0-1) unstable; urgency=medium

  [ Sebastian Dröge ]
  * debian/control.in:
    + Remove obsolete and redudant build dependency on jade (Closes: #840370).

  [ Helmut Grohne ]
  * Mark gstreamer1.0-doc Multi-Arch: foreign (Closes: #842526).

  [ Sebastian Dröge ]
  * New upstream stable release.

 -- Sebastian Dröge <slomo@debian.org>  Tue, 01 Nov 2016 17:35:50 +0200

gstreamer1.0 (1.9.90-1) experimental; urgency=medium

  * New upstream unstable release:
    + debian/libgstreamer.symbols:
      - Update new symbols.

 -- Sebastian Dröge <slomo@debian.org>  Fri, 30 Sep 2016 12:13:24 +0300

gstreamer1.0 (1.9.2-1) experimental; urgency=medium

  * New upstream unstable release:
    + debian/libgstreamer-dev.install:
      - Move gstconfig.h into the arch independent path again.
    + debian/libgstreamer.symbols:
      - Update new symbols.

 -- Sebastian Dröge <slomo@debian.org>  Thu, 01 Sep 2016 11:35:40 +0300

gstreamer1.0 (1.9.1-1) experimental; urgency=medium

  * New upstream unstable release:
    + debian/libgstreamer.symbols:
      - Update new symbols.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 06 Jul 2016 11:51:30 +0300

gstreamer1.0 (1.8.2-1) unstable; urgency=medium

  * debian/control.in:
    + Remove duplicated field name.
  * New upstream bugfix release.

 -- Sebastian Dröge <slomo@debian.org>  Fri, 13 May 2016 14:39:48 +0300

gstreamer1.0 (1.8.1-1) unstable; urgency=medium

  * New upstream bugfix release.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 20 Apr 2016 17:53:56 +0300

gstreamer1.0 (1.8.0-2) unstable; urgency=medium

  * debian/control.in:
    + libgstreamer1.0-0 1.8.0 breaks gstreamer1.0-plugins-base << 1.8.0
      because of a bug in the latter that is exposed by the new version of
      core. See https://bugzilla.gnome.org/show_bug.cgi?id=760234
      (Closes: #819958, #819960).

 -- Sebastian Dröge <slomo@debian.org>  Thu, 07 Apr 2016 12:23:58 +0300

gstreamer1.0 (1.8.0-1) unstable; urgency=medium

  * New upstream stable release.

 -- Sebastian Dröge <slomo@debian.org>  Thu, 24 Mar 2016 11:52:02 +0200

gstreamer1.0 (1.7.91-1) experimental; urgency=medium

  * New upstream release candidate:
    + debian/libgstreamer.symbols:
      - Update new symbols.

 -- Sebastian Dröge <slomo@debian.org>  Tue, 15 Mar 2016 11:52:25 +0200

gstreamer1.0 (1.7.90-1) experimental; urgency=medium

  * New upstream release candidate:
    + debian/libgstreamer.symbols:
      - Add new symbols.
    + debian/control.in:
      - Build-depend on texlive-generic-recommended for ulem.sty.
        It's not pulled in automatically anymore for whatever reason.

 -- Sebastian Dröge <slomo@debian.org>  Tue, 01 Mar 2016 16:57:02 +0200

gstreamer1.0 (1.7.2-1) experimental; urgency=medium

  * New upstream unstable release:
    + debian/libgstreamer.symbols:
      - Add new symbols.

 -- Sebastian Dröge <slomo@debian.org>  Fri, 19 Feb 2016 10:55:13 +0200

gstreamer1.0 (1.7.1-1) experimental; urgency=medium

  * debian/control.in:
    + Build-depend on libgsl-dev | libgsl0-dev instead of just the latter.
  * New upstream unstable release:
    + debian/control.in:
      - Build-depend on GLib >= 2.40.
    + debian/libgstreamer.symbols:
      - Add new symbols.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 23 Dec 2015 14:13:49 +0100

gstreamer1.0 (1.6.2-1) unstable; urgency=medium

  * New upstream bugfix release.

 -- Sebastian Dröge <slomo@debian.org>  Mon, 14 Dec 2015 19:06:24 +0100

gstreamer1.0 (1.6.1-1) unstable; urgency=medium

  * New upstream bugfix release.

 -- Sebastian Dröge <slomo@debian.org>  Fri, 30 Oct 2015 16:13:37 +0200

gstreamer1.0 (1.6.0-1) unstable; urgency=medium

  * New stable upstream release.

 -- Sebastian Dröge <slomo@debian.org>  Fri, 25 Sep 2015 22:45:29 +0200

gstreamer1.0 (1.5.91-1) experimental; urgency=medium

  * New upstream release candidate.

 -- Sebastian Dröge <slomo@debian.org>  Fri, 18 Sep 2015 18:57:10 +0200

gstreamer1.0 (1.5.90-1) experimental; urgency=medium

  * New upstream release candidate.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 19 Aug 2015 12:40:43 +0300

gstreamer1.0 (1.5.2-1) experimental; urgency=medium

  * New unstable upstream release.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 24 Jun 2015 22:47:31 +0200

gstreamer1.0 (1.5.1-3) experimental; urgency=medium

  * debian/rules,
    debian/libgstreamer.postinst:
    + Explicitely specify the architecture dependent lib directory, otherwise
      setcap will fail if the package is installed for multiple architures.
      It only allows one filename at a time (Closes: #788282).

 -- Sebastian Dröge <slomo@debian.org>  Wed, 10 Jun 2015 10:13:10 +0200

gstreamer1.0 (1.5.1-2) experimental; urgency=medium

  * debian/patches/0001-ptp-Check-for-the-actual-API-we-use-instead-of-just-.patch:
    + Hopefully fix build on kFreeBSD and non-Linux in general.

 -- Sebastian Dröge <slomo@debian.org>  Tue, 09 Jun 2015 11:15:55 +0200

gstreamer1.0 (1.5.1-1) experimental; urgency=medium

  * New unstable upstream release.
  * debian/control.in,
    debian/libgstreamer.postinst:
    + Install gst-ptp-helper with cap_net_bind_service,cap_net_admin
      capabilities, and otherwise fall back to setuid root. It needs
      to be able to listen for multicast on port 319 and 320.

 -- Sebastian Dröge <slomo@debian.org>  Sun, 07 Jun 2015 09:48:18 +0200

gstreamer1.0 (1.5.0.1+git20150513-1) experimental; urgency=medium

  * New upstream GIT snapshot.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 13 May 2015 13:19:02 +0300

gstreamer1.0 (1.5.0.1+git20150316-1) experimental; urgency=medium

  * New upstream GIT snapshot.

 -- Sebastian Dröge <slomo@debian.org>  Mon, 16 Mar 2015 19:10:11 +0100

gstreamer1.0 (1.4.5-1) experimental; urgency=medium

  * New upstream bugfix release.

 -- Sebastian Dröge <slomo@debian.org>  Thu, 18 Dec 2014 12:22:01 +0100

gstreamer1.0 (1.4.4-2) unstable; urgency=medium

  * Upload to unstable.

 -- Sebastian Dröge <slomo@debian.org>  Tue, 11 Nov 2014 13:29:18 +0100

gstreamer1.0 (1.4.4-1) experimental; urgency=medium

  * New upstream bugfix release.

 -- Sebastian Dröge <slomo@debian.org>  Thu, 06 Nov 2014 12:40:45 +0100

gstreamer1.0 (1.4.3-1.2) unstable; urgency=medium

  * Non-maintainer upload.
  * debian/rules: Remove outdated mangling of debian/shlibs.local, this is
    breaking dependencies generation for gir packages. This fix should really
    Closes: #761019

 -- Laurent Bigonville <bigon@debian.org>  Sun, 02 Nov 2014 17:14:38 +0100

gstreamer1.0 (1.4.3-1.1) unstable; urgency=medium

  * Non-maintainer upload.
  * Add missing libgstreamer dependency to the gir package (closes: #761019).

 -- Michael Gilbert <mgilbert@debian.org>  Sun, 02 Nov 2014 04:02:20 +0000

gstreamer1.0 (1.4.3-1) unstable; urgency=medium

  * New upstream bugfix release.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 24 Sep 2014 12:05:50 +0300

gstreamer1.0 (1.4.2-1) unstable; urgency=medium

  * New upstream bugfix release.

 -- Sebastian Dröge <slomo@debian.org>  Fri, 19 Sep 2014 14:07:28 +0300

gstreamer1.0 (1.4.1-1) unstable; urgency=medium

  * New upstream bugfix release.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 27 Aug 2014 14:27:45 +0300

gstreamer1.0 (1.4.0-1) unstable; urgency=medium

  * New upstream stable release.

 -- Sebastian Dröge <slomo@debian.org>  Sat, 19 Jul 2014 16:28:11 +0200

gstreamer1.0 (1.3.91-1) experimental; urgency=medium

  * New upstream release candidate:
    + debian/libgstreamer.symbols:
      - Update for new symbols.

 -- Sebastian Dröge <slomo@debian.org>  Fri, 11 Jul 2014 10:41:53 +0200

gstreamer1.0 (1.3.90-1) experimental; urgency=medium

  * New upstream release candidate:
    + debian/libgstreamer.symbols:
      - Update for new symbols.

 -- Sebastian Dröge <slomo@debian.org>  Sat, 28 Jun 2014 10:50:47 +0200

gstreamer1.0 (1.3.3-1) experimental; urgency=medium

  * New upstream development release:
    + debian/libgstreamer.symbols:
      - Update for new symbols.
    + debian/rules:
      - Run autopoint too during autoreconf now.

 -- Sebastian Dröge <slomo@debian.org>  Sun, 22 Jun 2014 17:22:51 +0200

gstreamer1.0 (1.3.2-1) experimental; urgency=medium

  * New upstream development release:
    + debian/libgstreamer.symbols:
      - Update for new symbols.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 21 May 2014 11:41:29 +0200

gstreamer1.0 (1.3.1-1) experimental; urgency=medium

  * New upstream development release:
    + debian/control.in:
      - Build-depend on bison >= 2.4.
    + debian/libgstreamer.symbols:
      - Update for new symbols.

 -- Sebastian Dröge <slomo@debian.org>  Sat, 03 May 2014 17:42:16 +0200

gstreamer1.0 (1.2.4-1) unstable; urgency=medium

  * New upstream bugfix release.

 -- Sebastian Dröge <slomo@debian.org>  Fri, 18 Apr 2014 15:28:56 +0200

gstreamer1.0 (1.2.3-1) unstable; urgency=medium

  [ Iain Lane ]
  * Run libtoolize in autoreconf. Drop ltmain-as-needed patch and use
    dh_autoreconf --as-needed. 

  [ Sebastian Dröge ]
  * New upstream bugfix release:
    + debian/libgstreamer.symbols:
      - Add new symbol.

 -- Sebastian Dröge <slomo@debian.org>  Sun, 09 Feb 2014 11:08:32 +0100

gstreamer1.0 (1.2.2-1) unstable; urgency=medium

  * New upstream bugfix release.

 -- Sebastian Dröge <slomo@debian.org>  Fri, 27 Dec 2013 10:51:07 +0100

gstreamer1.0 (1.2.1-1) unstable; urgency=low

  * New upstream bugfix release.

 -- Sebastian Dröge <slomo@debian.org>  Sat, 09 Nov 2013 16:28:11 +0100

gstreamer1.0 (1.2.0-1) unstable; urgency=low

  * New upstream stable release.

 -- Sebastian Dröge <slomo@debian.org>  Tue, 24 Sep 2013 16:15:18 +0200

gstreamer1.0 (1.1.90-1) experimental; urgency=low

  * New upstream release candidate:
    + debian/libgstreamer.symbols:
      - Add new symbols.

 -- Sebastian Dröge <slomo@debian.org>  Thu, 19 Sep 2013 12:39:40 +0200

gstreamer1.0 (1.1.4-1) experimental; urgency=low

  * New upstream development snapshot:
    + debian/libgstreamer.symbols:
      - Add new symbols.

 -- Sebastian Dröge <slomo@debian.org>  Fri, 30 Aug 2013 12:38:11 +0200

gstreamer1.0 (1.1.3-1) experimental; urgency=low

  * New upstream development snapshot:
    + debian/libgstreamer.symbols:
      - Add new symbols.

 -- Sebastian Dröge <slomo@debian.org>  Tue, 30 Jul 2013 08:23:31 +0200

gstreamer1.0 (1.1.2-1) experimental; urgency=low

  * New upstream development snapshot:
    + debian/libgstreamer.symbols:
      - Add new symbols.

 -- Sebastian Dröge <slomo@debian.org>  Sun, 14 Jul 2013 11:01:32 +0200

gstreamer1.0 (1.0.8-1) unstable; urgency=low

  * New upstream bugfix release.

 -- Sebastian Dröge <slomo@debian.org>  Sat, 13 Jul 2013 11:28:24 +0200

gstreamer1.0 (1.0.7-1) unstable; urgency=low

  * New upstream bugfix release.

 -- Sebastian Dröge <slomo@debian.org>  Fri, 26 Apr 2013 14:04:38 +0200

gstreamer1.0 (1.0.6-1) unstable; urgency=low

  * New upstream bugfix release.

 -- Sebastian Dröge <slomo@debian.org>  Fri, 22 Mar 2013 18:11:46 +0100

gstreamer1.0 (1.0.5-1) unstable; urgency=low

  * New upstream bugfix release.

 -- Sebastian Dröge <slomo@debian.org>  Tue, 08 Jan 2013 13:38:27 +0100

gstreamer1.0 (1.0.4-1) unstable; urgency=low

  * New upstream bugfix release.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 19 Dec 2012 10:25:15 +0100

gstreamer1.0 (1.0.3-1) unstable; urgency=low

  * New upstream bugfix release.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 21 Nov 2012 14:45:04 +0100

gstreamer1.0 (1.0.2-1) unstable; urgency=low

  * New upstream stable release.

 -- Sebastian Dröge <slomo@debian.org>  Thu, 25 Oct 2012 13:23:04 +0200

gstreamer1.0 (1.0.1-1) unstable; urgency=low

  * New upstream stable release:
    + debian/libgstreamer.symbols:
      - Add new symbols.

 -- Sebastian Dröge <slomo@debian.org>  Mon, 08 Oct 2012 09:59:20 +0200

gstreamer1.0 (1.0.0-1) unstable; urgency=low

  * New upstream stable release:
    + debian/libgstreamer.symbols:
      - Update symbols file.
    + debian/*:
      - Change remaining parts from 0.11 to 1.0.

 -- Sebastian Dröge <slomo@debian.org>  Mon, 24 Sep 2012 16:28:50 +0200

gstreamer1.0 (0.11.99-1) experimental; urgency=low

  * New upstream release.

 -- Sebastian Dröge <slomo@debian.org>  Tue, 18 Sep 2012 08:55:08 +0200

gstreamer1.0 (0.11.94-1) experimental; urgency=low

  * New upstream release:
    + debian/libgstreamer.symbols:
      - Update symbols file.
    + debian/control.in:
      - Build-depend on gtk-doc >= 1.12.
    + debian/patches/0001-netclientclock-simplify-by-using-g_socket_condition_.patch:
      - Dropped, merged upstream.

 -- Sebastian Dröge <slomo@debian.org>  Fri, 14 Sep 2012 09:04:41 +0200

gstreamer1.0 (0.11.93-2) experimental; urgency=low

  * debian/control.in:
    + Build-depend on GLIB >= 2.23.
  * debian/patches/0001-netclientclock-simplify-by-using-g_socket_condition_.patch:
    + Fix unit test hang that causes the build to fail sometimes.

 -- Sebastian Dröge <slomo@debian.org>  Fri, 10 Aug 2012 12:59:53 +0200

gstreamer1.0 (0.11.93-1) experimental; urgency=low

  * New upstream release:
    + debian/libgstreamer.symbols:
      - Update symbols file.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 08 Aug 2012 18:12:33 +0200

gstreamer1.0 (0.11.92-1) experimental; urgency=low

  * debian/control.in:
    + Update automake, autoconf and libtool build dependencies.
  * New upstream release, "High Hopes":
    + debian/libgstreamer.symbols:
      - Update symbols file.
  * debian/gst-codec-info.c:
    + Updated for API changes.

 -- Sebastian Dröge <slomo@debian.org>  Fri, 08 Jun 2012 09:38:04 +0200

gstreamer1.0 (0.11.91-1) experimental; urgency=low

  * New upstream release, "I will give you five magic beans!":
    + debian/libgstreamer.symbols:
      - Update symbols file.
  * debian/libgstreamer-dev.install:
    + Don't ship useless .la file for the core plugins.
    + Don't ship .a and .la files for the library.
  * debian/control.in:
    + Update debhelper dependency version and Standards-Version.

 -- Sebastian Dröge <slomo@debian.org>  Mon, 21 May 2012 11:14:06 +0200

gstreamer1.0 (0.11.90-1) experimental; urgency=low

  [ Olivier Naudan ]
  * Imported Upstream version 0.11.90
  * debian/rules and debian/changelog: migration to 1.0
  * debian/control*: aligned libglib2.0-dev version requirement with configure.ac
  * gst-codec-info.c: migration to gst 1.0
  * Updated debian/patches to use GST_API_VERSION
  * Refreshed 99_ltmain_as-needed.patch to apply cleanly again
  * debian/control: updated package names with 1.0
  * Updated debian/libgstreamer.symbols based on upstream 0.11.90
  * debian/control*: added a new build-dep on libxml2-dev

  [ Sebastian Dröge ]
  * Fix symbols file versions.
  * 79_multiarch-backwards-compat.patch: Dropped, there's no need for
    backwards compatibility anymore.
  * Remove libxml2-dev build-dependency again.
  * Update copyright.
  * 80_ia32-hack.patch: Dropped, shouldn't be needed anymore.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 02 May 2012 17:27:44 +0200

gstreamer0.11 (0.11.1-3) UNRELEASED; urgency=low

  [ Sebastian Dröge ]
  * debian/control.in:
    + Don't (build-) depend on libxml2.
    + Build-depend on automake (>= 1.10), autoconf (>= 2.60) and
      libtool (>= 2.0) to make dh-autoreconf actually work.

  [ Loïc Minier ]
  * Only track 0.11.* versions in watch file.
  * Update my email address in control.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 14 Dec 2011 12:18:43 +0100

gstreamer0.11 (0.11.1-2) experimental; urgency=low

  * debian/control.in:
    + Build-depend on GLib 2.26.
  * debian/dh_gstscancodecs:
    + Fix for multi-arch to look in the correct directories.
      Patch by YunQiang Su <wzssyqa@gmail.com>.

 -- Sebastian Dröge <slomo@debian.org>  Tue, 13 Dec 2011 10:11:55 +0100

gstreamer0.11 (0.11.1-1) experimental; urgency=low

  [ Nicolas Dechesne ]
  * New upstream release.
    + debian/libstreamer.symbols
    + debian/control.in
      - removed unversioned gstreamer-tools since removed upstream
      - removed old Replaces/Conflicts which no longer make sense on 0.11
    + debian/rules
      - updated abi number
    + misc
      - removed xmllaunch, feedback and xmlinspect
      - replaced reference to GST_PLUGIN_FEATURE_NAME to GST_OBJECT_NAME

  [ Sebastian Dröge ]
  * debian/copyright:
    + Clean up, fix and complete copyright file.
  * Merge 0.10.35.2-1.
  * Upload to experimental

 -- Sebastian Dröge <slomo@debian.org>  Mon, 12 Dec 2011 11:44:42 +0100

gstreamer0.10 (0.10.35.2-1) experimental; urgency=low

  * New upstream pre-release:
    + debian/control.in:
      - Build-depend on GLib >= 2.24.
    + debian/patches/99_ltmain_as-needed.patch:
      - Refreshed to apply cleanly again.
    + debian/libgstreamer.symbols:
      - Update symbols file with new API.
  * debian/rules:
    + Remove all dependency_libs from the .la files (Closes: #633319).
  * debian/control.in:
    + Put GI package into section introspection.
  * debian/compat,
    debian/control.in,
    debian/gir1.2-gstreamer.install,
    debian/libgstreamer-dev.install,
    debian/libgstreamer.install,
    debian/patches/79_multiarch-backwards-compat.patch,
    debian/patches/80_ia32-hack.patch,
    debian/rules:
    + Transition package to multi-arch (Closes: #647481).
      Patch taken from the Ubuntu package.

 -- Sebastian Dröge <slomo@debian.org>  Sun, 11 Dec 2011 18:52:12 +0100

gstreamer0.10 (0.10.35-1) unstable; urgency=low

  * New upstream bugfix release, "Nuclear Fission".

 -- Sebastian Dröge <slomo@debian.org>  Thu, 23 Jun 2011 08:48:30 +0200

gstreamer0.10 (0.10.34-1) unstable; urgency=low

  * New upstream bugfix release, "Misfits".

 -- Sebastian Dröge <slomo@debian.org>  Sat, 14 May 2011 11:41:04 +0200

gstreamer0.10 (0.10.33-1) unstable; urgency=low

  * New upstream release, "Prior Spaceflight Experience is an Advantage":
    + debian/libgstreamer.symbols:
      - Update version of new symbols to 0.10.33.

 -- Sebastian Dröge <slomo@debian.org>  Tue, 10 May 2011 15:45:19 +0200

gstreamer0.10 (0.10.32.3-1) experimental; urgency=low

  * New upstream pre-release.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 27 Apr 2011 14:04:36 +0200

gstreamer0.10 (0.10.32.2-1) experimental; urgency=low

  * debian/control.in:
    + Let the -dev package depend on the GIR package as required by
      the new gobject-introspection policy.

  [ Alessandro Decina ]
  * debian/control.in:
    + Add build dependency on dh-autoreconf.
  * debian/rules:
    + Include dh-autoreconf cdbs rule.

  [ Sebastian Dröge ]
  * New upstream pre-release:
    + debian/patches/01_valve-only-set-discont-once.patch:
      - Dropped, merged upstream.
    + debian/libgstreamer.symbols:
      - Add new API.

 -- Sebastian Dröge <slomo@debian.org>  Sun, 17 Apr 2011 09:45:41 +0200

gstreamer0.10 (0.10.32-6) unstable; urgency=low

  * Upload to unstable for the gobject-introspection transition.

 -- Sebastian Dröge <slomo@debian.org>  Tue, 22 Mar 2011 13:58:41 +0100

gstreamer0.10 (0.10.32-5) experimental; urgency=low

  * debian/control.in:
    + Revert gobject-introspection versio revert and provide
      gir1.2-gstreamer-0.10 again.

 -- Sebastian Dröge <slomo@debian.org>  Mon, 07 Mar 2011 09:26:32 +0100

gstreamer0.10 (0.10.32-4) unstable; urgency=low

  * debian/control.in: Remove Conflict on gst-plugins-bad, the registry
    itself works around it.
  * debian/control.in: Move back to the old gobject-introspection stack as it
    hasn't migrated to unstable yet
  * Both of the above fixes FTBS on unstable (Closes: #615911)

 -- Sjoerd Simons <sjoerd@debian.org>  Wed, 02 Mar 2011 00:18:29 +0000

gstreamer0.10 (0.10.32-3) unstable; urgency=low

  * debian/patches/01_valve-only-set-discont-once.patch
    - Added. Fixes bad audio quality in calls from Empathy (From upstream git)

 -- Sjoerd Simons <sjoerd@debian.org>  Mon, 28 Feb 2011 18:42:54 +0000

gstreamer0.10 (0.10.32-2) unstable; urgency=low

  * Upload to unstable.

 -- Sebastian Dröge <slomo@debian.org>  Tue, 08 Feb 2011 10:55:58 +0100

gstreamer0.10 (0.10.32-1) experimental; urgency=low

  * New upstream stable release, "Take Me to the Bonus Level":
    + debian/libgstreamer.symbols:
      - Update new symbols to the release version.

 -- Sebastian Dröge <slomo@debian.org>  Sat, 22 Jan 2011 12:54:28 +0100

gstreamer0.10 (0.10.31.4-1) experimental; urgency=low

  * New upstream pre-release:
    + debian/libgstreamer.symbols:
      - Update new symbols to the latest pre-release version.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 19 Jan 2011 21:09:58 +0100

gstreamer0.10 (0.10.31.3-1) experimental; urgency=low

  * debian/control.in:
    + Conflict with gstreamer0.10-plugins-bad0.10 (<< 0.10.20.2) because
      of the moved selector and valve plugins. There's no file conflict.
  * New upstream pre-release:
    + debian/libgstreamer.symbols:
      - Update new symbols to the latest pre-release version.

 -- Sebastian Dröge <slomo@debian.org>  Thu, 13 Jan 2011 11:47:02 +0100

gstreamer0.10 (0.10.31.2-1) experimental; urgency=low

  [ Emilio Pozuelo Monfort ]
  * debian/control.in,
    debian/rules:
    + Use dpkg-vendor instead of lsb_release.

  [ Sebastian Dröge ]
  * debian/control.in:
    + Suggest gstreamer0.10-plugins-base instead of the non-existing
      gstreamer0.10-plugins package (Closes: #607466).
  * New upstream pre-release:
    + debian/control.in:
      - Require GLib >= 2.22.
    + debian/patches/*.patch:
      - Refreshed.
    + debian/libgstreamer.symbols:
      - Add new API symbols.

 -- Sebastian Dröge <slomo@debian.org>  Sat, 08 Jan 2011 17:05:50 +0100

gstreamer0.10 (0.10.31-2) experimental; urgency=low

  * Transition from gir1.0-gstreamer-0.10 to gir1.2-gstreamer-0.10

 -- Sjoerd Simons <sjoerd@debian.org>  Sun, 12 Dec 2010 19:45:03 +0000

gstreamer0.10 (0.10.31-1) experimental; urgency=low

  * New upstream release, "Safety Pins":
    + debian/libgstreamer.symbols:
      - Update symbols.

 -- Sebastian Dröge <slomo@debian.org>  Thu, 02 Dec 2010 10:30:18 +0100

gstreamer0.10 (0.10.30.5-1) experimental; urgency=low

  * debian/control.in:
    + Drop gir-repository-dev build dependency. It's not needed and
      only pulls in half of Gnome.
  * New upstream pre-release:
    + debian/libgstreamer.symbols:
      - Update symbols.

 -- Sebastian Dröge <slomo@debian.org>  Fri, 19 Nov 2010 11:26:27 +0100

gstreamer0.10 (0.10.30.4-1) experimental; urgency=low

  * New upstream pre-release:
    + debian/libgstreamer.symbols:
      - Update symbols.

 -- Sebastian Dröge <slomo@debian.org>  Mon, 01 Nov 2010 20:11:56 +0100

gstreamer0.10 (0.10.30.3-1) experimental; urgency=low

  * New upstream pre-release:
    + debian/libgstreamer.symbols:
      - Update symbols.

 -- Sebastian Dröge <slomo@debian.org>  Fri, 22 Oct 2010 19:51:53 +0200

gstreamer0.10 (0.10.30.2-1) experimental; urgency=low

  * New upstream pre-release:
    + debian/patches/80_ia32-hack.patch:
      - Refreshed.
    + debian/libgstreamer.symbols:
      - Add new symbols.

 -- Sebastian Dröge <slomo@debian.org>  Sat, 16 Oct 2010 11:14:39 +0200

gstreamer0.10 (0.10.30-1) unstable; urgency=low

  * New upstream stable release, "Safety First":
    + debian/libgstreamer.symbols:
      - Update new symbols version to 0.10.30.

 -- Sebastian Dröge <slomo@debian.org>  Thu, 15 Jul 2010 13:48:14 +0200

gstreamer0.10 (0.10.29.4-1) experimental; urgency=low

  * New upstream pre-release:
    + debian/libgstreamer.symbols:
      - Update new symbols version to 0.10.29.4.
      - Add new symbols.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 07 Jul 2010 11:40:13 +0200

gstreamer0.10 (0.10.29.3-1) experimental; urgency=low

  * New upstream pre-release:
    + debian/libgstreamer.symbols:
      - Update new symbols version to 0.10.29.3.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 30 Jun 2010 10:40:20 +0200

gstreamer0.10 (0.10.29.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).
      - Update to Standards-Version 3.8.4.
    + debian/libgstreamer.symbols:
      - Update symbols file for the new API.
    + debian/control.in:
      - Build depend on GLib 2.20.

 -- Sebastian Dröge <slomo@debian.org>  Sat, 26 Jun 2010 20:17:40 +0200

gstreamer0.10 (0.10.29-1) unstable; urgency=low

  * New upstream release, "It's a Trap":
    + debian/libgstreamer.symbols:
      - Update symbol versions to the stable release.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 28 Apr 2010 09:40:47 +0200

gstreamer0.10 (0.10.28.3-1) experimental; urgency=low

  * New upstream pre-release.

 -- Sebastian Dröge <slomo@debian.org>  Mon, 26 Apr 2010 07:58:27 +0200

gstreamer0.10 (0.10.28.2-1) experimental; urgency=low

  * New upstream pre-release:
    + debian/libgstreamer.symbols:
      - Update symbols file for the new API.

 -- Sebastian Dröge <slomo@debian.org>  Thu, 15 Apr 2010 11:44:13 +0200

gstreamer0.10 (0.10.28-1) unstable; urgency=low

  * New upstream stable release, "Same Old, Same Old".

 -- Sebastian Dröge <slomo@debian.org>  Tue, 09 Mar 2010 09:45:24 +0000

gstreamer0.10 (0.10.27-1) unstable; urgency=low

  * New upstream stable release, "You're Shocked, We Know":
    + debian/libgstreamer.symbols:
      - Updated symbol versions to the stable version.

 -- Sebastian Dröge <slomo@debian.org>  Sun, 07 Mar 2010 10:18:53 +0000

gstreamer0.10 (0.10.26.3-1) experimental; urgency=low

  * New upstream pre-release.

 -- Sebastian Dröge <slomo@debian.org>  Thu, 25 Feb 2010 08:20:25 +0100

gstreamer0.10 (0.10.26.2-2) experimental; urgency=low

  * New upstream pre-release:
    + debian/libgstreamer.symbols:
      - Added new API.

 -- Sebastian Dröge <slomo@debian.org>  Fri, 19 Feb 2010 13:46:16 +0100

gstreamer0.10 (0.10.26-1) unstable; urgency=low

  * New upstream release, "Think Twice":
    + debian/libgstreamer.symbols:
      - Update to use the stable versions.

 -- Sebastian Dröge <slomo@debian.org>  Thu, 11 Feb 2010 10:30:18 +0100

gstreamer0.10 (0.10.25.3-1) experimental; urgency=low

  * New upstream pre-release.

 -- Sebastian Dröge <slomo@debian.org>  Fri, 05 Feb 2010 09:59:16 +0100

gstreamer0.10 (0.10.25.2-3) experimental; urgency=low

  * debian/patches/80_ia32-hack.patch:
    + Fix FTBFS if sys/utsname.h is not included indirectly by
      other headers.

 -- Sebastian Dröge <slomo@debian.org>  Thu, 28 Jan 2010 17:54:47 +0100

gstreamer0.10 (0.10.25.2-2) experimental; urgency=low

  * debian/libgstreamer.install:
    + Also ship the registry update helper application.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 27 Jan 2010 10:38:21 +0100

gstreamer0.10 (0.10.25.2-1) experimental; urgency=low

  * New upstream pre-release:
    + debian/patches/01_multiqueue-iterate-internal-links.patch:
      - Dropped, merged upstream.
    + debian/patches/80_ia32-hack.patch:
      - Updated to apply cleanly again.
    + debian/control.in:
      - Conflict with gstreamer0.10-plugins-base (<< 0.10.25.2) because
        of a moved plugin. This is no file conflict but a GObject type
        name conflict.
      - Build depend on GLib 2.18.
    + debian/libgstreamer.symbols:
      - Added new API.
  * debian/control.in:
    + Remove David I. Lehn from Uploaders (Closes: #557284).
    + Fix typo in package description (Closes: #557365).

 -- Sebastian Dröge <slomo@debian.org>  Wed, 27 Jan 2010 07:43:13 +0100

gstreamer0.10 (0.10.25-4) unstable; urgency=low

  * debian/rules:
    + Don't include the plugin library files in the dh_makeshlibs
      call (Closes: #559657).

 -- Sebastian Dröge <slomo@debian.org>  Sun, 06 Dec 2009 13:57:03 +0100

gstreamer0.10 (0.10.25-3) unstable; urgency=low

  * debian/rules,
    debian/control.in,
    debian/gir1.0-gstreamer.install:
    + Update for the new GObject-Introspection mini spec (Closes: #551568).

 -- Sebastian Dröge <slomo@debian.org>  Tue, 20 Oct 2009 10:54:14 +0200

gstreamer0.10 (0.10.25-2) unstable; urgency=low

  * debian/patches/01_multiqueue-iterate-internal-links.patch:
    + Patch from upstream GIT to improve the iterate internal links
      function of the multiqueue element. It's more robust and faster
      now.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 07 Oct 2009 08:52:26 +0200

gstreamer0.10 (0.10.25-1) unstable; urgency=low

  * New upstream release, 'Feel the burn':
    + debian/libgstreamer.symbols:
      - Updated for the new release.

 -- Sebastian Dröge <slomo@debian.org>  Mon, 05 Oct 2009 18:07:40 +0200

gstreamer0.10 (0.10.24.4-1) experimental; urgency=low

  * New upstream pre-release.

 -- Sebastian Dröge <slomo@debian.org>  Fri, 02 Oct 2009 07:41:43 +0200

gstreamer0.10 (0.10.24.3-1) experimental; urgency=low

  * New upstream pre-release:
    + debian/patches/01_gir-pkgconfig-path.patch,
      debian/patches/02_pkgconfig-first.patch:
      - Dropped, merged upstream.

 -- Sebastian Dröge <slomo@debian.org>  Thu, 17 Sep 2009 07:13:33 +0200

gstreamer0.10 (0.10.24.2-2) experimental; urgency=low

  * debian/rules:
    + Set HOME to a fake home directory to prevent writing
      to a non-writable buildd home which results in FTBFS (Closes: #546444).

 -- Sebastian Dröge <slomo@debian.org>  Sun, 13 Sep 2009 11:14:41 +0200

gstreamer0.10 (0.10.24.2-1) experimental; urgency=low

  * New upstream pre-release:
    + debian/control.in,
      debian/libgstreamer.install,
      debian/libgstreamer-dev.install:
      - Enable GObject-Introspection support and ship the generated
        files in the -dev and shared library package.
    + debian/control.in:
      - Update build dependencies.
    + debian/patches/90_dont-link-gstcheck-with-check.patch:
      - Dropped, not needed anymore.
    + debian/libgstreamer.symbols:
      - Updated for the new version.
  * debian/control.in:
    - Update Standards-Version to 3.8.3.
  * debian/patches/01_gir-pkgconfig-path.patch:
    - Add correct pkg-config search path for introspection
      generation.
  * debian/patches/02_pkgconfig-first.patch:
    - Generate pkg-config before all binaries.

 -- Sebastian Dröge <slomo@debian.org>  Sat, 12 Sep 2009 12:23:52 +0200

gstreamer0.10 (0.10.24-1) unstable; urgency=low

  * New upstream release, 'It matters':
    + debian/libgstreamer.symbols:
      - Updated for the new release.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 05 Aug 2009 08:00:46 +0200

gstreamer0.10 (0.10.23.4-1) experimental; urgency=low

  * New upstream pre-release:
    + debian/libgstreamer.symbols:
      - Updated for the new pre-release.

 -- Sebastian Dröge <slomo@debian.org>  Fri, 24 Jul 2009 18:41:42 +0200

gstreamer0.10 (0.10.23.3-1) experimental; urgency=low

  * New upstream pre-release:
    + debian/libgstreamer.symbols:
      - Updated for the new pre-release.

 -- Sebastian Dröge <slomo@debian.org>  Tue, 21 Jul 2009 09:48:07 +0200

gstreamer0.10 (0.10.23.2-1) experimental; urgency=low

  * debian/control.in:
    + Fix section of debug package.
    + Update Standards-Version to 3.8.2, no additional changes needed.
  * New upstream pre-release:
    + debian/control.in:
      - Update build dependencies.
    + debian/patches/01_urihandler-get_type_full.patch:
      - Dropped, merged upstream.
    + debian/libgstreamer.symbols:
      - Updated for the new API additions.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 15 Jul 2009 09:07:03 +0200

gstreamer0.10 (0.10.23-2) unstable; urgency=low

  * debian/control.in:
    + (Build-) depend on libxml2-doc and libglib2.0-doc to get correct
      cross references in the docs.
    + Add ${misc:Depends} everywhere.
  * debian/gstreamer-doc.links:
    + Add links to /usr/share/gtk-doc to allow cross references to
      the gstreamer core docs.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 17 Jun 2009 16:31:46 +0200

gstreamer0.10 (0.10.23-1) unstable; urgency=low

  * New upstream release, 'Alaboo Alaboo':
    + debian/libgstreamer.symbols:
      - Change new symbol version to 0.10.23.

 -- Sebastian Dröge <slomo@debian.org>  Mon, 11 May 2009 10:02:06 +0200

gstreamer0.10 (0.10.22.4-1) experimental; urgency=low

  * debian/patches/90_dont-link-gstcheck-with-check.patch:
    + Patch by Arnaud Soyez to fix FTBFS because of invalid make syntax.
      (Closes: #527007).
  * debian/patches/01_urihandler-get_type_full.patch:
    + Use get_type_full() vmethod instead of get_type() if specified.
      This makes it possible to implement GstURIHandler from bindings.
  * New upstream pre-release.

 -- Sebastian Dröge <slomo@debian.org>  Thu, 07 May 2009 09:27:44 +0200

gstreamer0.10 (0.10.22.3-1) experimental; urgency=low

  * New upstream pre-release.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 22 Apr 2009 08:05:52 +0200

gstreamer0.10 (0.10.22.2-1) experimental; urgency=low

  * New upstream pre-release:
    + debian/control.in:
      - Require GLib >= 2.14.
    + debian/libgstreamer.symbols:
      - Add new symbols.
  * debian/control.in:
    + Update Standards-Version to 3.8.1, no additional changes needed.

 -- Sebastian Dröge <slomo@debian.org>  Thu, 16 Apr 2009 06:17:17 +0200

gstreamer0.10 (0.10.22-3) unstable; urgency=low

  * debian/patches/90_dont-link-gstcheck-with-check.patch:
    + Don't link libgstcheck with check. check is a static library
      and by linking it to libgstcheck and to everything using libgstcheck
      we're introducing the check symbols twice and export the check
      API from libgstcheck (Closes: #521735).
  * debian/rules:
    + Include clean-la.mk to remove dependency_libs from the .la files.
      This is a preparation to drop them later and to remove unneeded
      dependencies when linking to the GStreamer libraries.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 01 Apr 2009 16:07:22 +0200

gstreamer0.10 (0.10.22-2) unstable; urgency=low

  * Upload to unstable.

 -- Sebastian Dröge <slomo@debian.org>  Sun, 15 Feb 2009 19:43:50 +0100

gstreamer0.10 (0.10.22-1) experimental; urgency=low

  * New upstream release, 'I heard a disturbing sound':
    + debian/libgstreamer.symbols:
      - Updated for the new version.
    + Fixes segfault in gst_register_typefind() (Closes: #511902).

 -- Sebastian Dröge <slomo@debian.org>  Tue, 20 Jan 2009 09:10:34 +0100

gstreamer0.10 (0.10.21.3-1) experimental; urgency=low

  * New upstream pre-release.

 -- Sebastian Dröge <slomo@debian.org>  Sun, 11 Jan 2009 20:09:19 +0100

gstreamer0.10 (0.10.21.2-3) experimental; urgency=low

  * debian/rules:
    + Fix check introduced in last version to prevent FTBFS.

 -- Sebastian Dröge <slomo@debian.org>  Fri, 09 Jan 2009 11:05:19 +0100

gstreamer0.10 (0.10.21.2-2) experimental; urgency=low

  * debian/rules:
    + Only build the docs when binary-indep is called.

 -- Sebastian Dröge <slomo@debian.org>  Thu, 08 Jan 2009 10:05:43 +0100

gstreamer0.10 (0.10.21.2-1) experimental; urgency=low

  * New upstream pre-release:
    + debian/patches/01_wrapper-plugins.patch,
      debian/patches/02_gtkdoc-rebase.patch,
      debian/patches/03_registry-failure-crash.patch,
      debian/patches/04_pad-caps-acception.patch,
      debian/patches/05_basetransform-caps-refcount.patch,
      debian/patches/06_basetransform-buffer-allocation.patch:
      - Dropped, merged upstream.
    + debian/patches/80_ia32-hack.patch:
      - Updated to apply cleanly again.
    + debian/libgstreamer.symbols:
      - Updated with the new symbols.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 07 Jan 2009 09:42:00 +0100

gstreamer0.10 (0.10.21-5) experimental; urgency=low

  * debian/patches/06_basetransform-buffer-allocation.patch:
    + Patch from upstream CVS to fix buffer allocation. Before it could
      happen that invalid memory references were returned.

 -- Sebastian Dröge <slomo@debian.org>  Fri, 24 Oct 2008 14:49:42 +0200

gstreamer0.10 (0.10.21-4) experimental; urgency=low

  * debian/patches/04_pad-caps-acception.patch:
    + Patch from upstream CVS to fix several cases where basetransform
      elements didn't accept caps while they should.
  * debian/patches/05_basetransform-caps-refcount.patch:
    + Patch from upstream CVS to make sure that basetransform's pad caps
      have the correct refcount and are not destroyed by accident.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 22 Oct 2008 07:53:14 +0200

gstreamer0.10 (0.10.21-3) experimental; urgency=low

  * debian/patches/03_registry-failure-crash.patch:
    + Patch from upstream CVS to fix a crash when writing the registry file
      failed. Fixes builds on buildd's with non-writable $HOME.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 08 Oct 2008 12:22:10 +0200

gstreamer0.10 (0.10.21-2) experimental; urgency=low

  * debian/libgstreamer.symbols:
    - Updated for 0.10.21 so we depend on a stable version.
  * debian/patches/02_gtkdoc-rebase.patch:
    - Don't require gtk-doc for the docs. Fixes the build with
      binary-indep (Closes: #499818).

 -- Sebastian Dröge <slomo@debian.org>  Sun, 05 Oct 2008 10:02:37 +0200

gstreamer0.10 (0.10.21-1) experimental; urgency=low

  * New upstream release, 'Take These Things From Me'.

 -- Sebastian Dröge <slomo@debian.org>  Sat, 04 Oct 2008 12:16:53 +0200

gstreamer0.10 (0.10.20.2-1) experimental; urgency=low

  * debian/gst-codec-info.c:
    + Ignore decoders with a less than marginal rank as they're
      not autoplugged by playbin/decodebin. This only applies to the
      X-Gst-Decoders field.
  * New upstream pre-release:
    + debian/patches/02_gtk-doc-cflags.patch:
      - Dropped, merged upstream.
    + debian/libgstreamer.symbols:
      - Updated for the new version.

 -- Sebastian Dröge <slomo@debian.org>  Sun, 21 Sep 2008 16:22:29 +0200

gstreamer0.10 (0.10.20-3) experimental; urgency=low

  [ Loic Minier ]
  * Bdep on perl-doc; thanks Marc 'HE' Brockschmidt; closes: #495043.
  * Wrap uploaders, bdeps and deps.

  [ Sebastian Dröge ]
  * debian/gst-codec-info.c:
    + Rename gstreamer0.10-{audio,video}src to
      gstreamer0.10-{audio,video}source.
    + Remove some more useless fields from the encoder/decoder caps.
  * debian/control.in:
    + Let the -dev package recommends debhelper for the dh_gstscancodecs
      script (Closes: #494999).

 -- Sebastian Dröge <slomo@debian.org>  Fri, 15 Aug 2008 09:21:42 +0200

gstreamer0.10 (0.10.20-2) experimental; urgency=low

  * debian/control.in:
    + Update flex build dependency to >= 2.5.34 for the new symbols this
      adds to the library (Closes: #492028).
  * debian/gst-codec-info.c,
    debian/control.in,
    debian/rules,
    debian/dh_gstscancodecs,
    debian/libgstreamer-dev.install:
    + Implement infrastructure to export the codec installation informations
      via binary package control fields. Move dh_gstscancodecs to the -dev
      package and implement helper utility gst-codec-info-0.10 for getting
      the codec information for a package.
  * debian/rules,
    debian/libgstreamer-dev.install:
    + Add a manpage for dh_gstscancodecs (Closes: #445456).

 -- Sebastian Dröge <slomo@debian.org>  Thu, 07 Aug 2008 15:47:00 +0200

gstreamer0.10 (0.10.20-1) unstable; urgency=low

  * New upstream release, 'You Crazy Diamond':
    + debian/libgstreamer.symbols:
      - Updated for the new version.
  * debian/control.in:
    + Replace gs build dependency by ghostscript as the former is only a
      transitional dummy package.
    + Update Standards-Version to 3.8.0, no additional changes needed.
  * debian/libgstreamer.symbols:
    + Append '~' to the versions for symbols which were introduced between
      different Debian package versions.
  * debian/gstreamer-doc.links:
    + Link the GStreamer plugins documentation into the devhelp directories
      too.
  * debian/gstreamer0.10-doc.doc-base.manual,
    debian/gstreamer0.10-doc.doc-base.pwg,
    debian/gstreamer0.10-doc.doc-base.core-ref,
    debian/gstreamer0.10-doc.doc-base.libs-ref,
    debian/gstreamer0.10-doc.doc-base.faq:
    + Fix sections.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 18 Jun 2008 20:11:25 +0200

gstreamer0.10 (0.10.19.3-1) experimental; urgency=low

  * New upstream pre-release:
    + debian/patches/02_link-dl.patch:
      - Dropped, merged upstream.
  * debian/patches/02_gtk-doc-cflags.patch:
    + Use the CFLAGS passed to configure also for the gtk-doc utitilities.

 -- Sebastian Dröge <slomo@debian.org>  Thu, 12 Jun 2008 10:53:21 +0200

gstreamer0.10 (0.10.19.2-1) experimental; urgency=low

  [ Sjoerd Simons ]
  * debian/patches/07_bus_flushing_race.patch
    + Added. Patch from upstream CVS to handle the bus_dispatch function
    popping NULL from the message queue, which can happen if the bus is set to
    flushing between check/prepare and dispatch.

  [ Sebastian Dröge ]
  * New upstream pre-release:
    + debian/patches/03_binary-registry-version.patch,
      debian/patches/04_binary-registry-alignment.patch,
      debian/patches/05_binary-registry-empty-uri-schemes-corruption.patch,
      debian/patches/06_binary-registry-checksum.patch,
      debian/patches/07_bus_flushing_race.patch,
      debian/patches/75_build_docs_without_python_xml.patch:
      - Dropped, merged upstream.
    + debian/control.in:
      - Drop python-twisted-core from build dependencies as it's not needed
        anymore.
      - Bump glib build dependency to >= 2.12.
    + debian/rules:
      - Drop configure parameter to build the binary registry. It's the
        default now.
    + debian/libgstreamer.symbols:
      - Updated symbol file with the new symbols.
  * debian/rules:
    + Pass -c4 to to dh_makeshlibs to fail the build when the symbol files is
      out of date.
    + Don't compress gtk-doc documentation to make gtk-doc happy.
  * debian/patches/02_werror.patch,
    debian/rules:
    + Drop patch to prevent usage of -Werror and append -Wno-error to
      CFLAGS and CXXFLAGS instead.
  * debian/patches/02_link-dl.patch:
    + Link with -ldl for dladdr().

 -- Sebastian Dröge <slomo@debian.org>  Thu, 05 Jun 2008 07:57:05 +0200

gstreamer0.10 (0.10.19-3) unstable; urgency=low

  * debian/patches/06_binary-registry-checksum.patch:
    + Patch from upstream CVS to include a CRC32 checksum for the registry
      data to make sure it's not corrupted. Also plug a memory leak in error
      cases.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 16 Apr 2008 23:01:20 +0200

gstreamer0.10 (0.10.19-2) unstable; urgency=medium

  * debian/control.in:
    + Require bison >= 1.875 as per configure.ac.
  * debian/patches/05_binary-registry-empty-uri-schemes-corruption.patch:
    + Patch from upstream CVS to not corrupt the registry if a plugin gives
      a valid pointer for the supported URI schemes list but this contains
      no URI schemes. Also don't unref a variable from which we don't own
      the reference and improve debugging (Closes: #475735). Set urgency to
      medium because this closes an RC bug.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 16 Apr 2008 15:18:24 +0200

gstreamer0.10 (0.10.19-1) unstable; urgency=high

  * New upstream bugfix release, "Me Again":
    + debian/patches/05_fdsrc-fdsink-eagain.patch:
      - Dropped, merged upstream.

 -- Sebastian Dröge <slomo@debian.org>  Mon, 07 Apr 2008 11:31:15 +0200

gstreamer0.10 (0.10.18-4) unstable; urgency=low

  * debian/patches/05_fdsrc-fdsink-eagain.patch:
    + Retry when we get EAGAIN. Fixes the totem mozilla plugin to actually
      work again.

 -- Sebastian Dröge <slomo@debian.org>  Tue, 25 Mar 2008 09:05:01 +0100

gstreamer0.10 (0.10.18-3) unstable; urgency=low

  * debian/patches/04_binary-registry-alignment.patch:
    + Fix alignment of the binary registry on 64 bit architectures
      and whitelist amd64 for unaligned access too.

 -- Sebastian Dröge <slomo@debian.org>  Sun, 23 Mar 2008 12:23:21 +0100

gstreamer0.10 (0.10.18-2) unstable; urgency=low

  * debian/rules:
    + Start using the binary registry instead of the XML registry. This has
      the advantage of being much faster (especially startup of applications
      will be faster) and lower memory usage.
  * debian/patches/03_binary-registry-version.patch:
    + Patch from upstream CVS to use a sane value for the binary registry
      format version and not print an error when there is a version mismatch.
      Instead silently recreate the registry.
  * debian/libgstreamer.symbols:
    + Update for the binary registry. These symbols are private ones and
      should in theory not be exported at all.

 -- Sebastian Dröge <slomo@debian.org>  Sat, 22 Mar 2008 22:46:31 +0100

gstreamer0.10 (0.10.18-1) unstable; urgency=low

  * New upstream release, "So far away":
    + debian/libgstreamer.symbols:
      - Updated for the new version.

 -- Sebastian Dröge <slomo@debian.org>  Fri, 21 Mar 2008 01:12:34 +0100

gstreamer0.10 (0.10.17.4-1) experimental; urgency=low

  * New upstream pre-release:
    + debian/libgstreamer0.10-0.symbols:
      - Update symbols for 0.10.17.4.
    + debian/rules:
      - Use file versionize magic to get the correct filename for the
        symbols file.
    + debian/patches/02_werror.patch:
      - Don't build with -Werror.

 -- Sebastian Dröge <slomo@debian.org>  Tue, 18 Mar 2008 13:28:59 +0100

gstreamer0.10 (0.10.17.3-1) experimental; urgency=low

  * New upstream pre-release:
    + debian/libgstreamer0.10-0.symbols:
      - Updated.
  * debian/patches/75_build_docs_without_python_xml.patch,
    debian/control.in:
    + Stop using pyxml for building the docs (Closes: #468627).

 -- Sebastian Dröge <slomo@debian.org>  Tue, 11 Mar 2008 04:47:48 +0100

gstreamer0.10 (0.10.17.2-2) experimental; urgency=low

  * debian/patches/80_ia32-hack.patch:
    + Updated to build without warnings on other architectures than i386.
      Fixes FTBFS as we use -Werror for pre-releases.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 05 Mar 2008 06:50:43 +0100

gstreamer0.10 (0.10.17.2-1) experimental; urgency=low

  * New upstream pre-release:
    + debian/libgstreamer0.10-0.symbols:
      - Updated for the new version.
  * debian/libgstreamer.{post*,pre*},
    debian/libgstreamer.dirs,
    debian/rules:
    + Don't use non-existing configure parameters and for 0.10 we don't need
      a cache dir anymore, so let's not create one and remove it with
      maintainer scripts on remove.
  * debian/control.in:
    + Add Homepage field.

 -- Sebastian Dröge <slomo@debian.org>  Tue, 04 Mar 2008 11:36:42 +0100

gstreamer0.10 (0.10.17-2) unstable; urgency=low

  [ Emilio Pozuelo Monfort ]
  * debian/rules:
    - Decide the package name and url depending on the distribution.
  * debian/control.in:
    - Build-Depend on lsb-release.
    - Add a Conflicts for libgstreamer-plugins-base0.10-0 <<
      0.10.11cvs20070110-0ubuntu5 to keep the Ubuntu delta lower.

  [ Sebastian Dröge ]
  * debian/patches/99_ltmain_as-needed.patch,
    debian/rules:
    + Add -Wl,-z,defs -Wl,-O1 -Wl,--as-needed to LDFLAGS to remove some
      unnecessary dependencies on various packages.
  * debian/libgstreamer0.10-0.symbols:
    + Add new symbol added by using flex 2.3.34.

 -- Sebastian Dröge <slomo@debian.org>  Tue, 19 Feb 2008 08:09:34 +0100

gstreamer0.10 (0.10.17-1) unstable; urgency=low

  * New upstream bugfix-only release, "Due Negligence".

 -- Sebastian Dröge <slomo@debian.org>  Wed, 30 Jan 2008 16:05:58 +0100

gstreamer0.10 (0.10.16-1) unstable; urgency=low

  * New upstream release, "Special Dispensation", with API additions:
    + debian/libgstreamer0.10-0.symbols:
      - Updated symbols for 0.10.16.
  * debian/patches/80_ia32-hack.patch:
     + Set the plugin dir to /usr/lib32/gstreamer-0.10, when running the
       i386 binaries on amd64. Patch taken from the Ubuntu package, originally
       created by Matthias Klose.

 -- Sebastian Dröge <slomo@debian.org>  Tue, 29 Jan 2008 10:34:54 +0100

gstreamer0.10 (0.10.15.4-1) experimental; urgency=low

  * New upstream pre-release.
  * debian/libgstreamer0.10-0.symbols,
    debian/control.in:
    + Add a symbols file for the GStreamer core libraries, generated from all
      0.10 releases since 0.10.0. Build depend on dpkg-dev >= 1.14.13 for
      this.

 -- Sebastian Dröge <slomo@debian.org>  Tue, 22 Jan 2008 13:20:05 +0100

gstreamer0.10 (0.10.15.3-1) experimental; urgency=low

  * New upstream pre-release.

 -- Sebastian Dröge <slomo@debian.org>  Fri, 18 Jan 2008 05:56:07 +0100

gstreamer0.10 (0.10.15.2-1) experimental; urgency=low

  * New upstream pre-release:
    + debian/patches/02_basesink-event-forwarding.patch,
      debian/patches/03_filesink-seek-failure.patch:
      - Dropped, merged upstream.

 -- Sebastian Dröge <slomo@debian.org>  Tue, 15 Jan 2008 15:14:45 +0100

gstreamer0.10 (0.10.15-4) unstable; urgency=low

  * debian/dh_gstscancodecs:
    + Fix typo: extention->extension.
  * debian/patches/01_wrapper-plugins.patch:
    + Update to also handle the ffmpeg plugin and rebuild the registry
      if libavcodec and friends change.
  * debian/control.in:
    + Update Standards-Version to 3.7.3, no additional changes needed.

 -- Sebastian Dröge <slomo@debian.org>  Tue, 15 Jan 2008 15:11:26 +0100

gstreamer0.10 (0.10.15-3) unstable; urgency=low

  * debian/rules:
    + Don't make the build fail if the testsuite fails.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 28 Nov 2007 10:38:37 +0100

gstreamer0.10 (0.10.15-2) unstable; urgency=low

  * debian/patches/02_basesink-event-forwarding.patch:
    + Only forward upstream events upstream. This prevents some useless
      warnings. Patch taken from upstream CVS.
  * debian/patches/03_filesink-seek-failure.patch:
    + Only try to seek if it is really necessary in filesink. This fixes
      filesink on a FIFO. Patch taken from upstream CVS.
  * debian/rules:
    + Enable test suite.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 28 Nov 2007 09:04:03 +0100

gstreamer0.10 (0.10.15-1) unstable; urgency=low

  * New upstream release, "October", with API additions:
    + Fixes FTBFS if built twice in a row (Closes: #424386).
  * debian/control.in:
    + Only suggest the docs package instead of recommending (Closes: #436667).

 -- Sebastian Dröge <slomo@debian.org>  Tue, 13 Nov 2007 14:42:33 +0100

gstreamer0.10 (0.10.14-2) unstable; urgency=low

  * debian/control.in:
    + Let the -dev package depend on check as some headers include check.h.
      check is no dependency of the libs package because it's linked
      statically.

 -- Sebastian Dröge <slomo@debian.org>  Sat, 08 Sep 2007 21:38:18 +0200

gstreamer0.10 (0.10.14-1) unstable; urgency=low

  * New upstream release 'Breathing Vacuum', with API additions.
  * debian/control.in:
    + Use ${binary:Version} and ${source:Version} instead of ${Source-Version}
      to make lintian happy.
  * debian/gstreamer-tools.install,
    debian/dh_gstscancodecs:
    + Add debhelper script for extracting GStreamer codec informations. This
      will be used for semi-automatic codec installation.

 -- Sebastian Dröge <slomo@debian.org>  Fri, 03 Aug 2007 17:30:01 +0200

gstreamer0.10 (0.10.13-2) unstable; urgency=low

  * debian/patches/01_wrapper-plugins.patch:
    + Add hacks for gnomevfs, ladspa and libvisual plugin to have the registry
      rebuild if the plugins of them change. This for example lets GStreamer
      recognize if new gnomevfs methods are installed after the gnomevfs
      plugin is installed. (Closes: #426694)
      This is a temporary workaround until the upstream bug is fixed:
      http://bugzilla.gnome.org/show_bug.cgi?id=350477

 -- Sebastian Dröge <slomo@debian.org>  Sun, 10 Jun 2007 12:38:27 +0200

gstreamer0.10 (0.10.13-1) unstable; urgency=low

  * New upstream release with API additions, "With or without you".

 -- Sebastian Dröge <slomo@debian.org>  Tue, 05 Jun 2007 17:01:07 +0200

gstreamer0.10 (0.10.12.1+cvs20070529-1) unstable; urgency=low

  * Prepare CVS snapshot
  * debian/patches/01_yacc-reentrant.patch
    debian/patches/02_filesrc_no_location.patch
    debian/patches/03_system_clock_wait_jitter_block.patch:
    + All dropped, fixed upstream.

 -- Sjoerd Simons <sjoerd@debian.org>  Tue, 29 May 2007 09:00:41 +0200

gstreamer0.10 (0.10.12-5) unstable; urgency=low

  * debian/patches/03_system_clock_wait_jitter_block.patch:
    + Patch from upstream CVS. Make the GstSystemCLock wait_jitter
    implementation  really block untill a timeout occurs instead of returning
    when the first entries_changed condition occurs. Fixes problems with
    farsight.
  * Add myself to Uploaders.

 -- Sjoerd Simons <sjoerd@debian.org>  Thu, 03 May 2007 20:48:30 +0200

gstreamer0.10 (0.10.12-4) unstable; urgency=low

  * debian/patches/02_filesrc_no_location.patch:
    + Patch from upstream CVS to also allow "file://" as URI. This is used
      by some applications, like quodlibet, to check if there's an element
      that handles the file protocol. (Closes: #421167)

 -- Sebastian Dröge <slomo@debian.org>  Fri, 27 Apr 2007 09:28:53 +0200

gstreamer0.10 (0.10.12-3) unstable; urgency=low

  * Upload to unstable
  * Merged experimental branch:
    + New upstream release 0.10.12, "Inevitable Demise":
      - Fixes typo in manual (Closes: #408516)
    + New upstream release 0.10.11, "Love never runs on time":
      - debian/patches/10_assertion-failure-on-signal-full-when-empty.patch:
        . Dropped, merged upstream
      - debian/patches/70_relibtoolize.patch:
        . Dropped, upstream used Debian's libtool
    + Add common/gst.supp to libgstreamer-dbg.docs for valgrind suppressions.
      (Loic Minier)

 -- Sebastian Dröge <slomo@debian.org>  Mon,  9 Apr 2007 23:22:34 +0200

gstreamer0.10 (0.10.10-4) unstable; urgency=low

  * debian/patches/01_yacc-reentrant.patch,
    debian/control.in:
    + Make gst_parse_launch reentrant. This fixes a crash in gaim. Also update
      flex build-dependency to >= 2.5.31 for this.
      Patch with some changes taken from:
      http://bugzilla.gnome.org/show_bug.cgi?id=349180
      (Closes: #404637, #403343, #400602)
  * debian/control.in:
    + Update to use my debian.org address

 -- Sebastian Dröge <slomo@debian.org>  Sun, 18 Mar 2007 22:50:59 +0100

gstreamer0.10 (0.10.10-3) unstable; urgency=low

  * Rename 10_dont-leak-buffer-on-emptied-queue to
    10_assertion-failure-on-signal-full-when-empty, what the patch fixes is
    really an assertion failure which happens when the queue is empty at the
    moment where the "queue full" signal is processed.
  * Fix typo in control, "versionned" -> "versioned"; thanks J S Bygott;
    closes: #408931.

 -- Loic Minier <lool@dooz.org>  Mon, 29 Jan 2007 13:35:23 +0100

gstreamer0.10 (0.10.10-2) unstable; urgency=low

  * New patch, 10_dont-leak-buffer-on-emptied-queue, to avoid leaking a buffer
    when a queue is emptied while sending out a signal.

 -- Loic Minier <lool@dooz.org>  Fri, 13 Oct 2006 11:04:59 +0200

gstreamer0.10 (0.10.10-1) unstable; urgency=low

  [ Sebastian Dröge ]
  * New upstream release, "Pais", some additional API
  * debian/patches/70_relibtoolize.patch:
    + updated for new upstream version

  [ Loic Minier ]
  * Drop the versionned Recommends which will break with binNMUs.
  * Fix duplicate dependencies.

 -- Loic Minier <lool@dooz.org>  Fri, 15 Sep 2006 15:05:55 +0200

gstreamer0.10 (0.10.9-2) unstable; urgency=low

  [ Loic Minier ]
  * Update control.

  [ Sebastian Dröge ]
  * debian/rules,
    debian/control.in:
    + Add a -dbg package for libgstreamer0.10-0 and add me to Uploaders
  * debian/compat,
    debian/control.in:
    + Bump debhelper compat level to 5

  [ Loic Minier ]
  * Build-depend on python-twisted-core instead of python-twisted, thanks
    Matthias Klose. (Closes: #385428)
  * Don't build the doc on arm and m68k.  It's painfully long, and -- at least
    on arm -- it segfaults; this is to lower the impact of #383147.

 -- Loic Minier <lool@dooz.org>  Thu, 31 Aug 2006 11:48:25 +0200

gstreamer0.10 (0.10.9-1) unstable; urgency=low

  * Clean up Build-Depends-Indep of packages already referenced in
    Build-Depends.
  * New upstream release, "On the road again", no API changes.
    - Drop 10_no-registry-file-fallback patch, merged upstream.
    - Update 70_relibtoolize patch.

 -- Loic Minier <lool@dooz.org>  Fri, 14 Jul 2006 23:14:30 +0200

gstreamer0.10 (0.10.8-2) unstable; urgency=low

  * Update 70_relibtoolize to not ship config.guess and config.sub already
    updated by CDBS.
  * New patch, 10_no-registry-file-fallback.patch from upstream CVS to re-read
    the registry when the forked child fails to write it for example because
    the home dir isn't writable; see discussion in GNOME #344748.

 -- Loic Minier <lool@dooz.org>  Tue, 13 Jun 2006 18:42:06 +0200

gstreamer0.10 (0.10.8-1) unstable; urgency=low

  * New upstream releases with API additions, "Soepeke, ik zie ou nog altijd
    nie".
    - New patch, 70_relibtoolize, ditto.
    - Drop 10_accept-empty-strings-in-registry patch, included upstream.

 -- Loic Minier <lool@dooz.org>  Sun, 11 Jun 2006 14:38:05 +0200

gstreamer0.10 (0.10.6-2) unstable; urgency=low

  * Bump up Standards-Version to 3.7.2.
    [debian/control, debian/control.in]
  * New patch from upstream to let the registry handle empty strings,
    especially important because of a bug in a m4 macro which lets the name of
    official GStreamer packages empty if you use --with-package-name as is the
    case in Debian.
    [debian/patches/10_accept-empty-strings-in-registry.patch]
  * Export OIL_CPU_FLAGS=0 for commands launched during the build process as
    it can cause build failures on buildds with specific hardware at build
    time.
    [debian/rules]

 -- Loic Minier <lool@dooz.org>  Wed, 17 May 2006 18:49:42 +0200

gstreamer0.10 (0.10.6-1) unstable; urgency=low

  * New upstream release, "Take the cannoli", with API additions.
    - Bump up inter-dependencies to 0.10.6.
      [debian/control]
    - Bump up libglib2.0-dev build-dep to >= 2.8.
      [debian/control, debian/control.in]
    - Drop relibtoolizing patch as this release was libtoolized under Debian
      or a derivative.
      [debian/patches/70_relibtoolize.patch]

 -- Loic Minier <lool@dooz.org>  Sun, 14 May 2006 21:36:26 +0200

gstreamer0.10 (0.10.5-1) unstable; urgency=low

  * New upstream release, "Fogo".
    - Force debian/control rebuild, a debian/changelog Makefile dep wouldn't
      be wise.
      [debian/control]

 -- Loic Minier <lool@dooz.org>  Sat, 29 Apr 2006 12:04:39 +0200

gstreamer0.10 (0.10.4.2-1) unstable; urgency=low

  * New upstream pre-release, with API additions.
    - Drop patch for the check libraries in pkg-config files (merged
      upstream).
      [debian/patches/11_libcheck-pkgconfig-force-pic.patch]
    - Relibtoolize.
      [debian/patches/70_relibtoolize.patch]
    - Drop all references to the gst-md5sum utility (removed upstream).
      [debian/gstreamer-tools-abi.install, debian/gstreamer-tools.install,
       debian/gstreamer-tools-abi.manpages]

 -- Loic Minier <lool@dooz.org>  Mon, 17 Apr 2006 23:19:50 +0200

gstreamer0.10 (0.10.4-1) unstable; urgency=low

  * New upstream release, "Light".

 -- Loic Minier <lool@dooz.org>  Sat, 11 Mar 2006 09:55:26 +0100

gstreamer0.10 (0.10.3.2-1) unstable; urgency=low

  * New upstream pre-release, with API additions.
    - Backward incompatible change: removes support for quoted strings and
      mimetypes when writing filtered caps.
    - Drop patch for force linking against the PIC version of libcheck since
      upstream implemented a better fix.
      [debian/patches/10_libcheck-macro-force-pic.patch]
    - Relibtoolize.
      [debian/patches/70_relibtoolize.patch]
  * Use upstream descriptions for packages descriptions.
    [debian/control, debian/control.in]

 -- Loic Minier <lool@dooz.org>  Fri, 10 Mar 2006 10:43:57 +0100

gstreamer0.10 (0.10.3-1) unstable; urgency=low

  * New upstream release, "Like a virgin".

 -- Loic Minier <lool@dooz.org>  Wed,  8 Feb 2006 20:49:29 +0100

gstreamer0.10 (0.10.2.3-1) unstable; urgency=low

  * New upstream pre-release.

 -- Loic Minier <lool@dooz.org>  Wed,  8 Feb 2006 17:13:14 +0100

gstreamer0.10 (0.10.2.2-1) unstable; urgency=low

  * New upstream pre-release.
    - Relibtoolize.
      [debian/patches/70_relibtoolize.patch]

 -- Loic Minier <lool@dooz.org>  Wed,  8 Feb 2006 16:08:38 +0100

gstreamer0.10 (0.10.2-1) unstable; urgency=low

  * New upstream release, "If man is 5".

 -- Loic Minier <lool@dooz.org>  Mon, 16 Jan 2006 21:42:56 +0100

gstreamer0.10 (0.10.1-2) unstable; urgency=low

  * Drop unneeded passivetex and xmltex from the build-deps, thanks Frank
    Küster; this is urgent since xmltex is RC-buggy. (Closes: #348214)
    [debian/control, debian/control.in]

 -- Loic Minier <lool@dooz.org>  Sun, 15 Jan 2006 19:40:59 +0100

gstreamer0.10 (0.10.1-1) unstable; urgency=low

  * Suggest gstreamer0.10-plugins-base instead of misc. (Closes: #345118)
    [debian/control, debian/control.in]
  * Add Sebastien Bacher to Uploaders.
    [debian/control, debian/control.in]
  * Replace occurrences of GST_PREFIX in GST_PKGNAME since they hold the same
    value and GST_PREFIX isn't used in the other source packages.
    [debian/control.in, debian/gstreamer-doc.install,
     debian/gstreamer-doc.links, debian/gstreamer-doc.lintian, debian/rules]
  * New upstream release.
  * Force linking against libcheck_pic instead of libcheck.  Warning: to use
    this patch you need to relibtoolize afterwards or patch configure too.
    [debian/patches/10_libcheck-macro-force-pic.patch]
  * Advertise this in pkgconfig files.
    [debian/patches/11_libcheck-pkgconfig-force-pic.patch]
  * Relibtoolize.
    [debian/patches/70_relibtoolize.patch]
  * Move check to arch-dependent build-deps and version to >= 0.9.3-2 to get a
    PIC version of the static lib.
    [debian/control, debian/control.in]

 -- Loic Minier <lool@dooz.org>  Tue,  3 Jan 2006 22:28:37 +0100

gstreamer0.10 (0.10.0-1) unstable; urgency=medium

  [ Sebastien Bacher ]
  * New upstream version.
  * Changes for gstreamer0.10:
    - Rename 0.8 packages to 0.10. [debian/rules]
    - Build-Depends on check, python-twisted, python-xml [debian/control.in]
    - Bump shlibs deps for 0.10. [debian/rules]
    - Create a cache directory [debian/libgstreamer.dirs, debian/rules]
    - Don't use alternatives [debian/gstreamer-tools-abi.postinst,.
      debian/gstreamer-tools-abi.prerm]
    - Drop references to deprecated tools [debian/gstreamer-tools-abi.install,.
      debian/gstreamer-tools-abi.manpages,debian/gstreamer-tools-abi.postinst,.
      debian/gstreamer-tools-abi.prerm, debian/libgstreamer.install,.
      debian/libgstreamer.manpages, debian/libgstreamer.postinst, debian/rules]
    - New gstreamer-tools (unversionned binaries) package
      [debian/control.in, debian/gstreamer-tools.install, debian/rules].
    - Remove transition code. [debian/libgstreamer.preinst]
    - Rename documentation lists. [debian/gstreamer0.8-doc.doc-base.core-ref,
      debian/gstreamer0.8-doc.doc-base.faq,
      debian/gstreamer0.8-doc.doc-base.libs-ref,
      debian/gstreamer0.8-doc.doc-base.manual,
      debian/gstreamer0.8-doc.doc-base.pwg]
    - Updated descriptions [debian/control.in]
    - Updated lists of files. [debian/libgstreamer.install
      debian/gstreamer-tools-abi.install debian/libgstreamer-dev.install]
    - Updated options for the documentation build [debian/rules]
    - Updated the TODO list [debian/TODO]
  * debian/patches/64_sparc-gcc4-build-fix.patch,
    debian/patches/doc-build.patch:
    - fixed with the new version.

  [ Loic Minier ]
  * Merge changes from Sebastien Bacher, thanks!
  * Update upstream URL to http://gstreamer.freedesktop.org/.
    [debian/control, debian/control.in, debian/copyright]
  * Minor cleanups.
    [debian/rules]
  * Let gstreamer-tools conflict with gstreamer0.8-tools << 0.8.11-2 which
    shipped the gst-* command line tools as symlinks.
    [debian/control, debian/control.in]
  * Add gst-xmlinspect to man pages.
    [debian/gstreamer-tools-abi.manpages]

 -- Loic Minier <lool@dooz.org>  Sun, 11 Dec 2005 20:57:56 +0100

gstreamer0.8 (0.8.11-2) unstable; urgency=low

  [ Sebastien Bacher ]
  * Clean the alternatives, we use real files now
    [debian/gstreamer-tools.postinst, debian/gstreamer-tools.preinst,
    debian/gstreamer-tools.prerm]

  [ Loic Minier ]
  * Merge the work of Sebastien Bacher (above), thanks!
  * Completely drop the now obsolete prerm and postinst scripts.
    [debian/gstreamer-tools.postinst, debian/gstreamer-tools.preinst,
    debian/rules]
  * With this upload, you will loose the gst-* commands such as gst-launch,
    only the versionned version will remain, the unversionned tools will be
    built and shipped from the 0.10 series sources.

 -- Loic Minier <lool@dooz.org>  Sun, 11 Dec 2005 18:55:40 +0100

gstreamer0.8 (0.8.11-1) unstable; urgency=low

  * New upstream release, "No Fun".
    - Bump libxml2-dev build-dep to 2.6.0.
  * Update FSF address. [debian/copyright]
  * Fix FTBFS with GCC 4 in a code path only built by sparc (but unused).
    (Closes: #319147) [debian/patches/64_sparc-gcc4-build-fix.patch]
  * Bump shlibs.

 -- Loic Minier <lool@dooz.org>  Sun,  4 Sep 2005 22:20:20 +0200

gstreamer0.8 (0.8.10-2) unstable; urgency=low

  * Loic Minier:
    * Install alternatives for the gst-* binaries with a priority
      corresponding to the GStreamer ABI. (Closes:  #265223) [debian/rules,
      debian/gstreamer-tools.prerm, debian/gstreamer-tools.postinst]
    * Call gst-register and gst-compprep with GST_REGISTRY in their
      environment to override the default behavior of writing to
      /root/.gstreamer-0.8, waiting for an upstream fix. (Closes: #301190)
      [debian/libgstreamer.postinst, debian/TODO.Debian]
    * Remove /var/lib/gstreamer if empty.
      [debian/libgstreamer.postrm]
    * Remove left over /root/.gstreamer-0.8 tree if it hasn't been modified.
      [debian/libgstreamer.preinst, debian/rules]
    * Add a versioned dependency with >= current-upstream-version to all
      current shlibs inter-dependencies to ensure consistency of symbols to
      avoid things such as #315556.
      [debian/control, debian/control.in, debian/rules]
    * Set Maintainer to group. [debian/control, debian/control.in]
    * Bump Standards-Version to 3.6.2, no change needed.
      [debian/control, debian/control.in]
    * Add a TODO list for the Debian package. [debian/TODO.Debian]

 -- Loic Minier <lool@dooz.org>  Mon, 27 Jun 2005 16:21:55 +0200

gstreamer0.8 (0.8.10-1) unstable; urgency=low

  * Loic Minier:
    * New upstream release "No Fun". (Closes: #312355)
      - Don't drop buffers on interrupt, fixes reported problems on MP3
        playback. (Closes: #303139)
      - Fix a typo in the gst-launch manual page where "--silent" was used
        instead of "--verbose". (Closes: #292267)
      - Bump shlibs to current version since new elements were added.
        [debian/rules]
      - Drop CPUID instruction detection patch, upstream used a SIGILL handler
        instead. [debian/patches/cpuid.patch]
    * Add myself as uploader.

 -- Loic Minier <lool@dooz.org>  Tue, 14 Jun 2005 21:49:55 +0200

gstreamer0.8 (0.8.9-2) unstable; urgency=low

  * debian/patches/cpuid.patch:
    * Patch from upstream to check for cpuid support (Closes: #289362)
  * debian/watch:
    * Watch for gstreamer not gst-plugins

 -- David I. Lehn <dlehn@debian.org>  Wed, 16 Mar 2005 01:17:29 -0500

gstreamer0.8 (0.8.9-1) unstable; urgency=low

  * New upstream
  * debian/rules:
    * Bump shlibs to current version
  * debian/patches/doc-build.patch:
    * Update and refer to bug #286160
  * debian/watch:
    * Add
  * debian/gstreamer0.8-doc.doc-base.*
    * Register docs with doc-base (Closes: #293871)

 -- David I. Lehn <dlehn@debian.org>  Wed,  9 Feb 2005 10:24:16 -0500

gstreamer0.8 (0.8.8-1) unstable; urgency=low

  * New upstream
    * Fixes Ogg stream bug (Closes: #273086)
    * Fixes mp3 infinite loop (Closes: #277650)
  * debian/rules:
    * Bump shlibs to current version
  * debian/rules:
    * Distribute NEWS (Closes: #275717)
  * Should fix Rhythmbox image and cpu problems
    (Closes: #277146, #278661, #278663, #278656, #281426, #284507, #288102)

 -- David I. Lehn <dlehn@debian.org>  Fri,  7 Jan 2005 01:44:26 -0500

gstreamer0.8 (0.8.7-1) unstable; urgency=low

  * New upstream
  * debian/rules:
    * Bump shlibs to current version

 -- David I. Lehn <dlehn@debian.org>  Wed,  6 Oct 2004 14:25:15 -0400

gstreamer0.8 (0.8.6-1) unstable; urgency=low

  * New upstream
  * debian/rules:
    * Bump shlibs to current version
    * Use debian/control:: vs debian/control: to work with recent CDBS changes
    * Use CDBS simple-patchsys
  * docs/pwg/advanced-types.xml:
    * Remove patch
  * debian/patches/doc-build.patch:
    * Add goofy doc patch

 -- David I. Lehn <dlehn@debian.org>  Tue,  5 Oct 2004 13:15:06 -0400

gstreamer0.8 (0.8.5-1) unstable; urgency=low

  * New upstream
  * debian/rules:
    * Bump shlibs to current version

 -- David I. Lehn <dlehn@debian.org>  Tue, 17 Aug 2004 23:06:54 -0400

gstreamer0.8 (0.8.4-1) unstable; urgency=low

  * New upstream
  * debian/rules:
    * Bump shlibs version
  * gst/queue.h:
    * Fix GstQueue binary compatibility (patch from upstream CVS)
  * libs/gst/control/Makefile.{am,in}:
    * Link libgstcontrol to libgstreamer (patch from upstream CVS)
      (Closes: #262019)

 -- David I. Lehn <dlehn@debian.org>  Thu, 29 Jul 2004 15:07:20 -0400

gstreamer0.8 (0.8.3-3) unstable; urgency=low

  * debian/rules:
    * Typo, s/DEB_MAKESHLIBS_ARGS_/DEB_DH_MAKESHLIBS_ARGS_/, broke versioned
      shlibs

 -- David I. Lehn <dlehn@debian.org>  Wed, 30 Jun 2004 17:11:13 -0400

gstreamer0.8 (0.8.3-2) unstable; urgency=medium

  * debian/libgstreamer.install, debian/libgstreamer-dev.install:
    * Include dataprotocol library and development files
  * debian/rules:
    * Bump shlibs dep to 0.8.3-2 due to dataprotocol

 -- David I. Lehn <dlehn@debian.org>  Wed, 23 Jun 2004 17:49:23 -0400

gstreamer0.8 (0.8.3-1) unstable; urgency=low

  * New upstream

 -- David I. Lehn <dlehn@debian.org>  Sat, 12 Jun 2004 00:05:23 -0400

gstreamer0.8 (0.8.2-1) unstable; urgency=low

  * New upstream

 -- David I. Lehn <dlehn@debian.org>  Sat, 12 Jun 2004 00:01:21 -0400

gstreamer0.8 (0.8.1-2) unstable; urgency=low

  * debain/rules:
    * Convert to use CDBS
      * Fixes rpath and .la libdir problems from previous builds
      * Always builds the docs even on -arch builds, sorry
  * debian/compat:
    * Bump to 4
  * debian/control.in:
    * Update Standards-Version to 3.6.1 due to CDBS use
    * Add CDBS and newer debhelper dependencies
  * debian/*:
    * Adjust install paths to work with CDBS

 -- David I. Lehn <dlehn@debian.org>  Sun, 18 Apr 2004 22:21:30 -0400

gstreamer0.8 (0.8.1-1) unstable; urgency=low

  * New upstream
  * New schedulers:
  * debian/libgstreamer.install:
    * Add libgstentrygthreadscheduler.so
    * Add libgstentryomegascheduler.so
  * docs/gst/Makefile.{in,am}:
    * Patch from CVS to fix docs build

 -- David I. Lehn <dlehn@debian.org>  Sat, 17 Apr 2004 19:47:18 -0400

gstreamer0.8 (0.8.0-2) unstable; urgency=low

  * Bump to -2 to ease upgrades for early -1 testers
  * gstreamer-tools.links:
    * Link gst-xmlinspect manpage to gst-inspect

 -- David I. Lehn <dlehn@debian.org>  Fri, 16 Apr 2004 00:52:46 -0400

gstreamer0.8 (0.8.0-1) unstable; urgency=low

  * New upstream (Closes: #239114)
    * Branch 0.7.x to 0.8.x
  * debian/control.in:
    * Version all packages as 0.8 series
  * debian/rules:
    * Update to 0.8
    * Build 0.8 series package control files
    * Remove older hacks fixed upstream
  * debian/*:
    * Reorg many control files for 0.8 versioning
    * s/--gst-mask=0/--gst-debug-level=0/
    * Remove "VERSION" from input package file names
  * debian/libgstreamer[-dev].install:
    * Plugins removed upstream: gsttypes, gststaticautoplug*,
      gstautoplugcache, gstautoplugger, gstputbits, gststaticautoplug,
      gststaticautoplugrender, gsttypes
    * Add locale files
  * debian/gstreamer-tools.install:
    * Add gst-xmlinspect-*
  * Upstream installs versioned manpages (Closes: #199444)

 -- David I. Lehn <dlehn@debian.org>  Wed, 14 Apr 2004 16:08:50 -0400

gstreamer0.7 (0.7.6-1) unstable; urgency=low

  * New upstream
  * debian/control.in:
    * Build-Depends-Indep: add netpbm so ps and pdf docs build

 -- David I. Lehn <dlehn@debian.org>  Fri, 12 Mar 2004 18:30:54 -0500

gstreamer0.7 (0.7.5-1) unstable; urgency=low

  * New upstream

 -- David I. Lehn <dlehn@debian.org>  Thu, 11 Mar 2004 23:30:32 -0500

gstreamer0.7 (0.7.4-1) unstable; urgency=low

  * New upstream

 -- David I. Lehn <dlehn@debian.org>  Thu, 11 Mar 2004 23:11:58 -0500

gstreamer0.7 (0.7.3-1) unstable; urgency=low

  * New upstream

 -- David I. Lehn <dlehn@debian.org>  Thu, 11 Mar 2004 05:54:52 -0500

gstreamer0.7 (0.7.1-1) unstable; urgency=low

  * New upstream
    * Branch 0.6.x to 0.7.x
  * debian/rules:
    * Update to 0.7

 -- David I. Lehn <dlehn@debian.org>  Thu, 11 Mar 2004 04:58:40 -0500

gstreamer (0.6.4-1) unstable; urgency=low

  * New upstream (Closes: #217880)
  * Add xmlto, xmltex, and passivetex dependencies for doc creation
  * debian/rules: adjust for new doc locations
  * docs/{manual,pwg,faq}/Makefile.in: temporary hack to disable ps/pdf
    generation

 -- David I. Lehn <dlehn@debian.org>  Fri, 31 Oct 2003 14:08:46 -0500

gstreamer (0.6.3-1) unstable; urgency=low

  * New upstream
  * configure, configure.ac:
    * disable -Werror
  * gst/gstplugin.c: CVS patch to fix type punning

 -- David I. Lehn <dlehn@debian.org>  Sat, 30 Aug 2003 23:20:43 -0400

gstreamer (0.6.2-2) unstable; urgency=low

  * m68k patch by Matthias Urlichs <smurf@smurf.noris.de> (forwarded from Rick
    Younie <rick@def.debian.net>) (Closes: #172269)

 -- David I. Lehn <dlehn@debian.org>  Tue, 12 Aug 2003 13:24:12 -0400

gstreamer (0.6.2-1) unstable; urgency=low

  * New upstream
  * debian/gstreamer-tools.install/manpages: add gst-typefind
  * docs/gst/: change www.oasis-open.org dtd to local dtd
  * docs/libs/: use some code from cdbs to change dtd in gtk-doc tools output
    to local dtd

 -- David I. Lehn <dlehn@debian.org>  Wed, 11 Jun 2003 10:36:17 -0400

gstreamer (0.6.1-2) unstable; urgency=low

  * (unreleased)
  * Merge packages:
    * Simplify for users, developers, and maintainers.
    * Current number of packages is confusing.
    * Users/developers need to install all the packages anyway due to tight
      (circular) dependencies.
    * The libraries and plugins are all versioned - no need (currently) for a
      "-common" type package.
    * Progress towards capability for parallel GStreamer installs (more work
      needed).
    * Decision long ago to make very modular has turned out to be complex and
      is not utilized by any current applications.
  * Merge changes:
    * Add -core, -core-libs, -runtime files to libgstreamer0.6-0
    * Add -core-libs-dev files to libgstreaer0.6-dev
    * Version gst-{register,compprep} (and manpages) as
      gst-{register,compprep}-0.6
    * Many other supporting debian/ adjustments
  * Remove DISPLAY unset hacks from postinst/postrm scripts and fix non-X
    installs with 0.6.2 CVS xvideosink patch in gst-plugins.
    (Closes: #192693, #195342, #169100, #195113, #194975)
  * docs/devhelp/Makefile.*: stop regeneration of devhelp files during install
  * gst/elements/gstmd5sink.c: make md5_* functions static to avoid symbol
    conflicts with libdvdnav 0.1.9
  * Fix gstreamer-doc Recommends: to use versioned -dev package

 -- David I. Lehn <dlehn@debian.org>  Thu,  5 Jun 2003 19:11:39 -0400

gstreamer (0.6.1-1) unstable; urgency=low

  * New upstream
  * Change maintainer address to @debian.org
  * Added gst-element-check.m4 to -dev package (Closes: Bug#187456)
  * debian/control.in:
    * gstreamer-tools: gst-feedback depends on pkg-config (Closes: Bug#180076)
    * libgstreamer0.6-dev depends on libxml2-dev (Closes: Bug#190103)
    * gstreamer-runtime depends on gstreamer-core.  Sigh.  Didn't want to do
      this but looks like no other option. (Closes: Bug#181502, Bug#181745,
      Bug#185817)
  * gst/gstatomic_impl.h: disable mips asm in favor of generic implementation
    (sparc disabled upstream) (Closes: Bug#186440)
  * Upstream now linking libraries properly (Closes: Bug#187360)
  * Patch from 0.6.1+ to add back _get_props_entry_type
  * Unset DISPLAY before running gst-register/gst-compprep

 -- David I. Lehn <dlehn@debian.org>  Sat,  3 May 2003 16:52:53 -0400

gstreamer (0.6.0-1) unstable; urgency=low

  * New upstream
  * Upstream manpage updates (Closes: Bug#179190)

 -- David I. Lehn <dlehn@vt.edu>  Sat,  1 Feb 2003 21:32:17 -0500

gstreamer (0.5.2.3-1) unstable; urgency=low

  * New upstream

 -- David I. Lehn <dlehn@vt.edu>  Thu, 30 Jan 2003 23:26:10 -0500

gstreamer (0.5.2.2-1) unstable; urgency=low

  * New upstream
    * pre-release for API frozen 0.6.x series
  * Slight pacakge refactoring so a possible future parallel dev series is
    slightly less painful
  * Update libgstreamer-dev to libgstreamer0.6-dev
  * Update libgstreamer0.5.2 to libgstreamer0.6-0
  * debian/libgstreamer0.6-dev.install:
    * explicitly mention gstreamer-[0-9]*.pc
  * debian/gstreamer-core-libs-dev.install:
    * add gstreamer-control-*.pc

 -- David I. Lehn <dlehn@vt.edu>  Wed, 29 Jan 2003 13:42:01 -0500

gstreamer (0.5.2-1) unstable; urgency=low

  * New upstream
  * Update libgstreamer0.5.1 to libgstreamer0.5.2
  * Upstream fixes Python requirement when not building docs
    (Closes: Bug#178114)

 -- David I. Lehn <dlehn@vt.edu>  Thu, 23 Jan 2003 20:15:24 -0500

gstreamer (0.5.1-1) unstable; urgency=low

  * New upstream (Closes: Bug#176474)
  * Update libgstreamer0.5.0 to libgstreamer0.5.1
  * Tighten gstreamer-core-libs shlibs (Closes: Bug#174363)

 -- David I. Lehn <dlehn@vt.edu>  Thu, 16 Jan 2003 18:46:41 -0500

gstreamer (0.5.0-1) unstable; urgency=low

  * New upstream
  * Make core Architecture: any:  It's almost true, or might be now, or will
    be soon and autobuilders are ignoring that field anyway.
  * Generated files moved from /etc/gstreamer to /var/lib/gstreamer/0.5/
  * Update libgstreamer0.4.2 to libgstreamer0.5.0
  * Hack gst/autoplug/gstautoplugger.c to not use the non-existant
    "caps_changed" signal

 -- David I. Lehn <dlehn@vt.edu>  Thu, 19 Dec 2002 20:43:26 -0500

gstreamer (0.4.2-2) unstable; urgency=low

  * Update gtk-doc.m4 with CVS patch to handle multidigit version check
  * Add S/390 support patch (Closes: Bug#171473)
  * Update config.{guess,sub}

 -- David I. Lehn <dlehn@vt.edu>  Tue,  3 Dec 2002 22:22:22 -0500

gstreamer (0.4.2-1) unstable; urgency=low

  * New upstream (Closes: Bug#167479)
  * Update libgstreamer0.4.1 to libgstreamer0.4.2
  * libgstreamer0.4.2 conflicts with 0.4.0, 0.4.1
    * Upstream needs more work to properly support parallel lib installs
  * Tighten dependencies
    * Upstream ABI/API changes require this for any hope of smooth upgrades at
      the moment
  * Move gstreamer-runtime to Section: utils from libs
  * Move gstreamer-tools to Section: utils from x11
  * Doc fixes: (Closes: Bug#165279)
    * Call xsltproc with --nonet
    * Refer xsl:import urls to local docbook-xsl package xsl files
    * Refer www.oasis-open.org dtds to local docbook-xml package dtd files
    * Add docbook-xml and docbook-xsl to Build-Depends-Indep

 -- David I. Lehn <dlehn@vt.edu>  Wed,  6 Nov 2002 20:32:46 -0500

gstreamer (0.4.1-3) unstable; urgency=low

  * Fix formatting of Architecture: list to fix alpha and sparc builds

 -- David I. Lehn <dlehn@vt.edu>  Tue, 15 Oct 2002 22:08:54 -0400

gstreamer (0.4.1-2) unstable; urgency=low

  * Update debian/rules to not fail on binary-arch only builds (configure was
    unconditionally run with --enable-docs-build which caused it to fail when
    Build-Depends-Indep packages were not installed)
    (Closes: Bug#164589, Bug#164698)
  * Fix version check in common/m4/as-python.m4 to use sys.version_info

 -- David I. Lehn <dlehn@vt.edu>  Mon, 14 Oct 2002 20:00:29 -0400

gstreamer (0.4.1-1) unstable; urgency=low

  * New upstream
  * Update libgstreamer0.4.0 to libgstreamer0.4.1
  * gstreamer-tools.files/manpages: add gst-md5sum
  * Use xsltproc 1.0.21 to fix doc image problems
  * Add patch from CVS to fix GST_TYPE_CAPS/PROPS macro typos
  * Build libgstcontrol as a lib not a plugin module
  * Update config.{guess,sub}

 -- David I. Lehn <dlehn@vt.edu>  Mon,  7 Oct 2002 20:36:28 -0400

gstreamer (0.4.0.2-cvs20020919-1) unstable; urgency=low

  * CVS snapshot, release branch
  * gstreamer-core.files: change to libgst*scheduler, since the
    scheduler names have changed.
  * gstreamer-core-libs.files: libgstcontrol.so moved
  * add debian/control.in, and create debian/control rule in debian/rules
    to change the version number automatically

 -- David Schleef <ds@schleef.org>  Thu, 19 Sep 2002 15:07:36 -0700

gstreamer (0.4.0-2) unstable; urgency=low

  * Remove libtool hack
  * Dependency change from libc6-dev to libc6-dev | libc-dev

 -- David I. Lehn <dlehn@vt.edu>  Fri, 23 Aug 2002 12:26:10 -0400

gstreamer (0.4.0-1) unstable; urgency=low

  * New upstream
  * Update library package: libgstreamer0.3.4 -> libgstreamer0.4.0
  * Add automake Python support to find python binary to run devhelp doc
    helper script.  This touches -every- Makefile.in and since the package
    diff will already be large just use automake 1.6 instead of 1.5 as used
    upstream.  Sorry.
  * Update config.{guess,sub}
  * Temporarily comment out figures from manual so it builds
  * Apply CVS patch for s/&percnt;/%/ in XML docs
  * Added devhelp support
  * Added gst-feedback to gstreamer-tools
  * Break stuff: blindly reanme gstreamer-lib-core{-dev} to
    gstreamer-core-libs{-dev}.  Hard to chose naming as these are half-plugins
    and half-linkable libs.  Picking a scheme that also works with
    gstreamer-plugins-* packages.  Still looking for a better solution...

 -- David I. Lehn <dlehn@vt.edu>  Tue, 16 Jul 2002 02:20:40 -0400

gstreamer (0.3.4-1) unstable; urgency=low

  * New upstream
  * libgstreamer0.3.3 -> libgstreamer0.3.4
  * Conflict and Replace libgstreamer0.3.3 so upgrades work
    This shouldn't be required because plugins know what version they were
    compiled with.  Apparently this doesn't yet work properly.
  * Add bison and flex to Build-Depends
  * Add libgstfastscheduler.so to -core

 -- David I. Lehn <dlehn@vt.edu>  Mon, 15 Apr 2002 01:13:00 -0400

gstreamer (0.3.3-3) unstable; urgency=low

  * Add libgstreamer-dev dependencies on libpopt-dev and libglib2.0-dev
  * CVS fix for GstElement NEW_PAD and PAD_REMOVED g_signal_new parameters

 -- David I. Lehn <dlehn@vt.edu>  Fri, 29 Mar 2002 03:04:22 -0500

gstreamer (0.3.3-2) unstable; urgency=low

  * Depend on and rebuld for glib 2.0
  * Remove libgtk from Build-Depends
  * Move gs from Build-Depends to Build-Depends-Indep
  * Added lintian overrides for base.css zero length files

 -- David I. Lehn <dlehn@vt.edu>  Fri, 22 Mar 2002 19:29:24 -0500

gstreamer (0.3.3-1) unstable; urgency=low

  * New upstream
  * Renamed libgstX to libgstreamerX.Y.Z
    will move to better versioning once upstream starts interface versioning
  * Renamed libgst-dev to libgstreamer-dev
  * Patch to build plugins as only .so
  * Added libstandardscheduler.so to -core
  * Guessing that mips support handles mipsel too
  * From David Schleef <ds@schleef.org>:
    * Add popt, gs to Build-Depends:
    * #include <errno.h> compile fix

 -- David I. Lehn <dlehn@vt.edu>  Thu, 21 Mar 2002 01:42:18 -0500

gstreamer (0.3.2-2) unstable; urgency=low

  * Rebuild for glib/gtk 1.3.15

 -- David I. Lehn <dlehn@vt.edu>  Sun, 24 Feb 2002 23:48:33 -0500

gstreamer (0.3.2-1) unstable; urgency=low

  * The "I should have started using cvs-buildpacakge long ago" release
  * New upstream release
  * Once again stripped CVS dirs from upstream tarball
  * Add spider autoplugger
  * Added gst-xmllaunch and man page to -tools
  * Despite my complaints, upstream is using new lib versioning
    until they decide API is "stable" enough to provide support.
    At that point proper versioning will happen.
    This release lib change:
       libgst.so.2.0.0 -> libgst-0.3.2.so.0.0.0
    This release lib package change:
       libgst2 -> libgst3
    Hopefully this is mostly transparent.

    Due to a conflict with GNU Smalltalk the next upstream release
    will be renaming some "gst" to "gstreamer".  This will change
    the lib to libgstreamer*.  Some header locations will change too
    so prepare for broken code.

    Plan for next upstream release is to rename packages:
       libgst3 -> libgstreamer0
       libgst-dev -> libgstreamer-dev
  * Plugins now unversioned upstream:
    * Just .so, no more .so.x.y.z
    * Drop .la and .a
    * Fixup a few
    * Wait and see if anyone even notices...
  * Add back some docs that escaped via the diff
  * Fixup some more doc cruft in the diff

 -- David I. Lehn <dlehn@vt.edu>  Thu, 14 Feb 2002 02:20:48 -0500

gstreamer (0.3.1-4) unstable; urgency=low

  * (Unreleased)
  * find . -type d -name CVS -exec rm -rf {} \;
  * Hack upstream tarball to exclude above CVS/ dirs
  * Rebuild for conversion to cvs-buildpackage management

 -- David I. Lehn <dlehn@vt.edu>  Wed, 13 Feb 2002 18:18:34 -0500

gstreamer (0.3.1-3) unstable; urgency=low

  * Rebuild for glib/gtk 1.3.13

 -- David I. Lehn <dlehn@vt.edu>  Wed,  6 Feb 2002 02:17:23 -0500

gstreamer (0.3.1-2) unstable; urgency=low

  * Upstream fix for proper libxml version in pkg-config
  * Undo some of the auto docs/*/tmpl breakage

 -- David I. Lehn <dlehn@vt.edu>  Wed, 23 Jan 2002 01:28:12 -0500

gstreamer (0.3.1-1) unstable; urgency=low

  * New upstream release
  * Upstream broken into multiple packages
  * Core plugins left in -core
  * Core lib plugins moved to -core
  * Other plugins now built from gst-plugins source pacakge
  * libgst1 -> libgst2
  * Tool prefix renamed upstream: s/gstreamer/gst/
  * Moved gstreamer-guilaunch to gst-editor source package
  * Removed gstreamer-config and .m4 in favor of pkg-config use
  * Build for glib2
  * Change doc build system a bit
  * Added -lib-core and -lib-core-dev packages for library plugins

 -- David I. Lehn <dlehn@vt.edu>  Thu, 10 Jan 2002 23:09:34 -0500

gstreamer (0.3.0-3) unstable; urgency=low

  * Remove upstream ChangeLog from packages: 128k changelog.gz per
    plugin package for 40 packages is too much

 -- David I. Lehn <dlehn@vt.edu>  Tue, 25 Dec 2001 23:36:28 -0500

gstreamer (0.3.0-2) unstable; urgency=low

  * Fix bug that slipped into 0.3.0: s/aasink/xvideosink/ in
    gstplay/gstplay.c

 -- David I. Lehn <dlehn@vt.edu>  Tue, 25 Dec 2001 17:56:29 -0500

gstreamer (0.3.0-1) unstable; urgency=low

  * New upstream release
  * Attempt to update various Build-Depends versions
  * Added plugin packages: -a52dec, -dvd, -mikmod, -sid
  * Renamed -elements to -core
  * Added to -core: gstbasicscheduler
  * Moved from -common to -core: gsttypes, autoplug related
  * Renamed -common to -misc
  * Added to -misc: speed, qcam, bytesteram, control, silence, sinesrc,
    mpegstream, playondemand, resample
  * Added gstreamer-guilaunch to gstreamer-tools package
  * Added dependencies on unofficial LAME packages
  * Use PIC libs for Xv
  * Disable broken building of PDF/PS docs
  * Renamed -all-plugins to -all
  * Disable docs -- too hard to build

 -- David I. Lehn <dlehn@vt.edu>  Fri, 21 Dec 2001 12:00:02 -0500

gstreamer (0.2.1-4) unstable; urgency=low

  * Fix some problems reported from lintian 1.20.14:
    * copyright-lists-upstream-authors-like-dh_make
    * debian-changelog-file-contains-user-emacs-settings
  * Patch from CVS to link libgst into plugins
    Plugins now properly depend on libgst package
  * Use RedHat Gtk+-1.3 hack to fix relink issues with ltmain.sh
  * Patch from CVS for xvideosink segfault when no DISPLAY set
  * Remove builddir references from gstreamer-config.in
  * Move libgstelements.la from libgst-dev to gstreamer-elements

 -- David I. Lehn <dlehn@vt.edu>  Tue, 28 Aug 2001 20:05:28 -0400

gstreamer (0.2.1-3) unstable; urgency=low

  * Update build dependencies to FLAC 1.0
  * Enable debug features
  * Fixup broken doc build -scan voodoo with link into .libs/ dir

 -- David I. Lehn <dlehn@vt.edu>  Sun,  5 Aug 2001 23:04:28 -0400

gstreamer (0.2.1-2) unstable; urgency=low

  * Fix lib deps: run debhelper tools in the right order
  * Added arts dir to Makefile.am SUBDIRS so it builds again
  * Changed libmpeg2dec to libgstmpeg2dec to avoid naming issues
    when using -lmpeg2dec
  * Updated system_encode/ with CVS segfaulter bug fix

 -- David I. Lehn <dlehn@vt.edu>  Thu, 19 Jul 2001 15:47:24 -0400

gstreamer (0.2.1-1) unstable; urgency=low

  * New upstream 0.2.1: "Return of the Sedi Master"
  * New plugin packages: -festival, -flac, -avifile, -x
  * New plugins in -common: chart, deinterlace, udp
  * Added some post-0.2.1 fixes for FLAC, build system, ALSA

 -- David I. Lehn <dlehn@vt.edu>  Thu, 28 Jun 2001 20:15:15 -0400

gstreamer (0.2.0-6) unstable; urgency=low

  * Move -compprep to -runtime and call it same places as -register
  * Do -register and -compprep in postrm instead of prerm
  * Make -arts plugin actually build all the source (sent upstream)
  * Purge of -runtime removes /etc/gstreamer

 -- David I. Lehn <dlehn@vt.edu>  Tue, 19 Jun 2001 13:09:32 -0400

gstreamer (0.2.0-5) unstable; urgency=low

  * Added element package dependencies to libgstmediaplay0

 -- David I. Lehn <dlehn@vt.edu>  Mon, 18 Jun 2001 11:18:53 -0400

gstreamer (0.2.0-4) unstable; urgency=low

  * Add --gst-mask=0 to -runtime.postinst

 -- David I. Lehn <dlehn@vt.edu>  Fri, 15 Jun 2001 11:47:24 -0400

gstreamer (0.2.0-3) unstable; urgency=low

  * Fix the plugin control file symlink creation
  * Add audiofile to Build-Depends

 -- David I. Lehn <dlehn@vt.edu>  Fri, 15 Jun 2001 05:22:28 -0400

gstreamer (0.2.0-2) unstable; urgency=low

  * Fixed ALSA checks to not include -lasound in -every- link
  * Update LAME plugin to use latest CVS API
  * Removed OSS src/sink from -common.files (was in -oss too)
  * Swapped -arts.files and -artsd.files contents

 -- David I. Lehn <dlehn@vt.edu>  Fri, 15 Jun 2001 04:02:21 -0400

gstreamer (0.2.0-1) unstable; urgency=low

  * Added gstreamer-compprep manpage
  * Upgrade to 0.2.0

 -- David I. Lehn <dlehn@vt.edu>  Thu,  7 Jun 2001 12:53:59 -0400

gstreamer (0.2.0-0.3) unstable; urgency=low

  * GStreamer 0.2.0-pre3

 -- David I. Lehn <dlehn@vt.edu>  Wed,  6 Jun 2001 15:09:59 -0400

gstreamer (0.2.0-0.2) unstable; urgency=low

  * GStreamer 0.2.0-pre2 + CVS 20010604
  * Added -artsd (vs -arts), -audiofile, -gnomevfs, -gsm, -jpeg,
    -oss, and -sdl plugin packages
  * Added osshelper lib to oss package
  * Added more AVI related plugins and autoplug libs to -common
  * Added pkgconfig file to libgst-dev
  * Added gstreamer-all-plugins pseudo package that depends on
    all other plugin pacakges

 -- David I. Lehn <dlehn@vt.edu>  Mon,  4 Jun 2001 17:33:20 -0400

gstreamer (0.2.0-0.1) unstable; urgency=low

  * GStreamer 0.2.0-pre1

 -- David I. Lehn <dlehn@vt.edu>  Thu, 31 May 2001 17:16:23 -0400

gstreamer (0.1.1.20010504-1) unstable; urgency=low

  * Latest CVS code

 -- David I. Lehn <dlehn@vt.edu>  Fri,  4 May 2001 21:48:45 -0400

gstreamer (0.1.1.20010430-2) unstable; urgency=low

  * Added -colorspace package for Hermes dependent conversion
  * Added -arts package for aRts sink

 -- David I. Lehn <dlehn@vt.edu>  Tue,  1 May 2001 19:46:08 -0400

gstreamer (0.1.1.20010430-1) unstable; urgency=low

  * Latest CVS code
  * Added -aa package for aasink output
  * Added -mad package for mad mp3 decoder

 -- David I. Lehn <dlehn@vt.edu>  Mon, 30 Apr 2001 18:25:52 -0400

gstreamer (0.1.1.20010320-1) unstable; urgency=low

  * Latest CVS code
  * enable main docs
  * disable broken plugin docs with new option

 -- David I. Lehn <dlehn@vt.edu>  Tue, 20 Mar 2001 18:15:19 -0500

gstreamer (0.1.1.20010315-1) unstable; urgency=low

  * Latest CVS code
  * Added man pages
  * Split mpeg2dec to seperate plugin
  * libgst Architectures updated to cothread supported archs

 -- David I. Lehn <dlehn@vt.edu>  Thu, 15 Mar 2001 20:17:19 -0500

gstreamer (0.1.1-1) unstable; urgency=low

  * New upstream release
  * disable docs build, broken at the momemnt

 -- David I. Lehn <dlehn@vt.edu>  Sun, 25 Feb 2001 17:58:25 -0500

gstreamer (0.1.0-2) unstable; urgency=low

  * debian/rules: call configure instead of autogen.sh

 -- David I. Lehn <dlehn@vt.edu>  Sat, 24 Feb 2001 18:31:36 -0500

gstreamer (0.1.0-1) unstable; urgency=low

  * Initial Release.

 -- David I. Lehn <dlehn@vt.edu>  Mon, 15 Jan 2001 18:25:18 -0500