File: changelog

package info (click to toggle)
gtk%2B3.0 3.24.5-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 216,800 kB
  • sloc: ansic: 1,161,222; xml: 9,414; makefile: 7,113; sh: 5,215; python: 439; perl: 370; cpp: 34; sed: 16
file content (5275 lines) | stat: -rw-r--r-- 206,461 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
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
gtk+3.0 (3.24.5-1) unstable; urgency=medium

  * New upstream release
    - Includes refreshed Adwaita and High Contrast themes
  * Cherry-pick Update-css-node-tests.patch:
    - Update test for GtkSwitch changes

 -- Jeremy Bicha <jbicha@debian.org>  Tue, 05 Feb 2019 12:02:24 -0500

gtk+3.0 (3.24.4-1) unstable; urgency=medium

  * New upstream release

 -- Jeremy Bicha <jbicha@debian.org>  Mon, 21 Jan 2019 12:00:53 -0500

gtk+3.0 (3.24.3-1) unstable; urgency=medium

  * New upstream release
  * debian/libgtk-3-0.symbols: Add new symbol
  * Add -Wl,-O1 -Wl,--as-needed to our LDFLAGS
  * Enable all hardening flags
  * Drop patches applied in new release:
    - Revert-Fix-deprecation-warnings.patch
    - x11-Fix-deprecation-macro-use.patch
  * Add Revert-Update-a11-test-output.patch:
    - Revert another late change that broke our build tests

 -- Jeremy Bicha <jbicha@debian.org>  Mon, 14 Jan 2019 14:03:05 -0500

gtk+3.0 (3.24.2-3) unstable; urgency=medium

  * Cherry-pick x11-Fix-deprecation-macro-use.patch:
    - Fix deprecation macro use to fix crashes seen on Xfce

 -- Jeremy Bicha <jbicha@debian.org>  Thu, 13 Dec 2018 12:55:00 -0500

gtk+3.0 (3.24.2-2) unstable; urgency=medium

  * Add Revert-update-some-a11y-test-results.patch:
    - Revert a late change that broke our build tests
  * Use xvfb-run for build tests

 -- Jeremy Bicha <jbicha@debian.org>  Thu, 13 Dec 2018 08:41:15 -0500

gtk+3.0 (3.24.2-1) unstable; urgency=medium

  * New upstream release (LP: #1808233)
    - Fix tooltip flickering regression in Xfce (Closes: #911148) (LP: #1798861)
  * Drop patches applied in new release:
    - wayland-Avoid-crashes-inside-wl_proxy_marshal.patch
    - Force-emoji-presentation.patch
    - emojichooser-Pass-chooser-to-add_emoji.patch
  * Cherry-pick Revert-Fix-deprecation-warnings.patch:
    - Fix typo that broke the build
  * debian/libgtk-3-0.symbols: Add new symbol

 -- Jeremy Bicha <jbicha@debian.org>  Wed, 12 Dec 2018 23:19:44 -0500

gtk+3.0 (3.24.1-3) unstable; urgency=medium

  [ Simon McVittie ]
  * d/p/wayland-Avoid-crashes-inside-wl_proxy_marshal.patch:
    Add patch from upstream (via Ubuntu) to fix a segfault under Wayland

  [ Jeremy Bicha ]
  * Stop using gnome-get-source
  * Update debian/gbp.conf
  * Cherry-pick Force-emoji-presentation.patch:
    - Ensure that all emoji from the emoji chooser use emoji presentation
      instead of the black-and-white text presentation (LP: #1807719)
  * Cherry-pick emojichooser-Pass-chooser-to-add_emoji.patch:
    - Fix variant selector in emoji chooser (LP: #1807721)

 -- Jeremy Bicha <jbicha@debian.org>  Mon, 10 Dec 2018 12:27:10 -0500

gtk+3.0 (3.24.1-2) unstable; urgency=medium

  * Team upload
  * Upload to unstable
  * d/libgtk-3-0.symbols: Mark gdk_wayland_window_announce_ssd() as
    Linux-specific, since we do not enable Wayland on non-Linux.
    This might fix FTBFS on kfreebsd-any.
  * d/rules: Generate files from .in counterparts for every package,
    not just the ones we are going to build. This avoids dh_missing
    false positives for files that would have gone into packages not
    included in the current build, for example libgtk-3-common during
    an amd64-only build.
  * d/tests: Also mark reftests as flaky due to a known failure:
    symbolic-icon-translucent-color appears to have regressed and now
    differs from the reference by 1 column of pixels
  * Revert "Temporarily (B-)D on libgl1-mesa-dev and libegl1-mesa-dev"
    now that libepoxy has been fixed
  * d/p/reftest-known-fail.patch: Reinstate
  * Make symbolic-icon-translucent-color.ui non-fatal during
    build-time tests

 -- Simon McVittie <smcv@debian.org>  Sun, 30 Sep 2018 16:45:24 +0100

gtk+3.0 (3.24.1-1) experimental; urgency=medium

  * Team upload
  * New upstream release
    - Bump GLib build-dependency to 2.53.4 as per configure.ac
    - d/p/Revert-imwayland-clear-preedit-on-focus-out.patch:
      Remove, rely on the upstream fix for #908120 instead
    - d/p/GtkApplication-Fix-CRITICAL-on-shutdown-when-register_ses.patch,
      d/p/Fix-portal-path-handling.patch: Remove, applied upstream
  * Build installed-tests
    - Install them in gtk-3-examples for now to avoid the NEW queue
  * d/p/no-accessibility-dump.patch: Drop, no longer needed.
    The build-time tests correctly set GTK_CSD=1 now.
  * Stop marking some reftests as known failures. They now succeed on
    all release architectures.
    - d/p/reftest-known-fail.patch: Drop, no longer needed
  * Run installed-tests as autopkgtests (Closes: #908440)
    - Run a11ystate.test separately and mark it as flaky for now due to a
      known failure: state/focus1.ui passes in a desktop session but fails
      in a minimal autopkgtest VM
  * Sort dependency lists (wrap-and-sort -a)
  * d/gtk-3-examples.install: Sort file list (wrap-and-sort -a)
  * Use the same Xvfb screen configuration as in the upstream GTK+ 4
    Gitlab-CI tests. This will hopefully make GLX work (see also #874077)
  * Update d/gbp.conf from glib2.0
  * Temporarily (Build-)Depend on libgl1-mesa-dev and libegl1-mesa-dev to
    work around #909173 in libepoxy
  * d/rules: Make it clearer that we respect the nocheck option
  * d/copyright: Fix some lintian warnings
  * Upload to experimental for now, to avoid disrupting migration

 -- Simon McVittie <smcv@debian.org>  Wed, 19 Sep 2018 23:35:29 +0100

gtk+3.0 (3.24.0-3) unstable; urgency=medium

  * Cherry-pick 3c7d5e7 to fix a critical on gtk_application_shutdown when not
    using portals (Closes: #908070)
  * Add Applied-Upstream to last cherry-pick
  * Fix-portal-path-handling.patch: Cherry-pick from upstream.  Fix an
    incorrect dereference in the portal handling code.

 -- Iain Lane <laney@debian.org>  Tue, 11 Sep 2018 17:33:38 +0100

gtk+3.0 (3.24.0-2) unstable; urgency=medium

  * Team upload
  * d/p/Revert-imwayland-clear-preedit-on-focus-out.patch:
    Revert an upstream change that caused the cursor to disappear on
    focus changes in vte terminals like gnome-terminal and lxterminal
    under Wayland (Closes: #908120)
  * debian/libgtk-3-0.symbols: gtk_color_picker_kwin_new() is new in
    3.24.0, not 3.24.3 which doesn't exist yet
  * d/p/Don-t-test-default-constructed-GdkPixbuf-properties.patch:
    Work around a gdk-pixbuf bug that caused test failures
    (Closes: #908439)
  * d/gbp.conf: Don't number patches

 -- Simon McVittie <smcv@debian.org>  Mon, 10 Sep 2018 01:15:53 +0100

gtk+3.0 (3.24.0-1) unstable; urgency=medium

  [ Simon McVittie ]
  * debian/libgtk-3-0.bug-control:
    When bugs are reported against GTK+, include details of various
    engines, modules and LD_PRELOADs if installed
  * Don't install ChangeLog, which currently just says
    "A git checkout and git-log is required to generate this file";
    even if it was complete, Policy 4.2.0 does not require detailed
    changelogs to be installed. Please see NEWS for a summary of changes,
    or the upstream git repository https://gitlab.gnome.org/GNOME/gtk
    for a comprehensive change history.

  [ Iain Lane ]
  * Revert "debian/{control{,.in},gbp.conf,watch}: Update for experimental"
    This reverts commit 99b78e089c952661fcf3c4897769dd7a463c5cb7.
  * New upstream stable release 3.24.0
    + GtkApplication can now track screensaver state
    + Deprecate a few APIs that are gone in GTK+ 4:
       - focus chains in GtkContainer
       - stepper sensitivity in GtkRange
    + Allow picking colors under kwin
  * debian/control{,.in}: Bump Standards-Version to 4.2.1, no changes required
  * debian/libgtk-3-0.symbols: Update for this release

 -- Iain Lane <laney@debian.org>  Tue, 04 Sep 2018 18:10:53 +0100

gtk+3.0 (3.23.2-1) experimental; urgency=medium

  [ Andrea Azzarone ]
  * New upstream release
  * debian/patches/0008-defaultvalue-Ignore-more-style-properties-that-Adwai.patch:
    Drop, included in this release.
  * debian/libgtk-3-0.symbols: New symbols for this release

  [ Iain Lane ]
  * Stanrdards-Version → 4.2.0 - no changes required.

 -- Andrea Azzarone <andrea.azzarone@canonical.com>  Thu, 09 Aug 2018 14:11:12 +0000

gtk+3.0 (3.23.1-1) experimental; urgency=medium

  * debian/{control{,.in},gbp.conf,watch}: Update for experimental
  * New upstream development releases (!!!) 3.23.0 & 3.23.1:
    + New font chooser features:
     - Allow setting OpenType font features
     - Show examples for OpenType font features
     - Allow selecting OpenType font variations
     - Support levels of details for selection
    + New Emoji features:
     - Support a completion popup for Emoji
     - Drop Ctrl-Shift-e shortcut
    + Other new apis:
     - gdk_window_move_to_rect
    + Backported event controllers from GTK+ 4:
     - GtkEventControllerScroll
     - GtkEventControllerMotion
     - GtkEventControllerKey
     - GtkGestureStylus
    + Support markup in GtkModelButtons
    + Themes
     - The Raleigh theme has been removed
     - Expander size in HighContrast has been increased
    + Wayland
     - Update cursor scale when needed
     - Decoration negotiation protocol fixes
  * debian/patches/m4macros-Set-a-serial-number.patch: Drop, included in this
    release.
  * debian/control{,.in}: Bump libepoxy (1.4) and pango (1.41.0) per upstream.
  * debian/patches/gdk-x11-Check-if-we-have-access-to-GL-before-using-G.patch:
    Drop - GTK now calls epoxy_has_glx() directly so this bypassed approach
    isn't necessary.
  * debian/libgail-3-0.symbols: New symbols from both releases.
  * debian/patches/0008-defaultvalue-Ignore-more-style-properties-that-Adwai.patch:
    Cherry-pick test fix patch from upstream !253.

 -- Iain Lane <laney@debian.org>  Thu, 19 Jul 2018 17:55:42 +0100

gtk+3.0 (3.22.30-2) unstable; urgency=medium

  * Team upload

  [ Jeremy Bicha ]
  * Bump minimum wayland-protocols to 1.12

  [ Simon McVittie ]
  * d/p/m4macros-Set-a-serial-number.patch:
    Add patch from upstream to give gtk-3.0.m4 a serial number so that
    it will override older copies bundled with other packages, typically
    in the m4 directory (GTK+ 3 version of #895018)

 -- Simon McVittie <smcv@debian.org>  Wed, 27 Jun 2018 09:55:28 +0100

gtk+3.0 (3.22.30-1) unstable; urgency=medium

  [ Jeremy Bicha ]
  * New upstream release
  * Drop patches applied in new release (numbered 0009-0016)

  [ Simon McVittie ]
  * d/p/022_disable-viqr-im-for-vi-locale.patch:
    Add reference to Ubuntu bug 191451, summarize the reason why this
    is applied, and correctly attribute the patch to Ming Hua
    (see #895043)

 -- Jeremy Bicha <jbicha@debian.org>  Mon, 16 Apr 2018 19:55:32 -0400

gtk+3.0 (3.22.29-3) unstable; urgency=medium

  * Team upload
  * Allow stderr in autopkgtests. They produce harmless diagnostics.
  * d/p/0013-wayland-Drop-cairo-surfaces-when-withdrawing.patch:
    Add patch from upstream fixing a Wayland client crash if it unmaps
    a window while gdk is processing updates
  * d/p/0014-AM_PATH_GTK_3_0-Use-AC_PATH_TOOL-to-find-pkg-config.patch,
    d/p/0015-m4macros-Fix-underquoting-in-AC_PATH_TOOL.patch:
    Use AC_PATH_TOOL to find pkg-config in the deprecated AM_PATH_GTK_3_0
    macro (Closes: #894069)
  * d/p/0016-imwayland-destroy-objects-only-if-it-matches-our-man.patch:
    Add patch proposed upstream to fix crashes on screen blank in some
    dual-monitor configurations (Closes: #894388)

 -- Simon McVittie <smcv@debian.org>  Tue, 03 Apr 2018 08:41:09 +0100

gtk+3.0 (3.22.29-2) unstable; urgency=medium

  * Team upload
  * Refresh patch series through gbp-pq
    - Harvest date and authorship information from debian/changelog
  * Add more upstream status information to the patch series
  * d/p/0009-gtkimmodule-make-match_backend-query-the-wayland-reg.patch,
    d/p/0010-imwayland-Avoid-TOGGLE_INPUT_PANEL-requests-if-there.patch:
    Add patches from upstream fixing Wayland client crashes under
    unspecified circumstances (Closes: #893696)
  * d/p/0011-gtkstylecontext-guard-against-gtk_css_widget_node_ge.patch:
    Add patch from upstream fixing a NULL dereference
  * d/p/0012-widget-Only-print-allocation-warnings-with-enable-de.patch:
    Add patch from upstream silencing allocation warnings for stable
    branches (if there is ever a GTK+ 3.23 then these warnings would
    come back until 3.24). (Closes: #867427)

 -- Simon McVittie <smcv@debian.org>  Thu, 22 Mar 2018 10:15:24 +0000

gtk+3.0 (3.22.29-1) unstable; urgency=medium

  * New upstream release
    - Reverts confusing single-click open behavior in file chooser
      (Closes: #824606)
  * debian/libgtk-3-0.symbols: Add new symbols

 -- Jeremy Bicha <jbicha@debian.org>  Thu, 15 Mar 2018 07:42:30 -0400

gtk+3.0 (3.22.28-1) unstable; urgency=medium

  * New upstream release (LP: #1698270) (LP: #1714518)
  * Update Vcs fields for conversion to git
  * Add debian/gbp.conf
  * Bump Standards-Version to 4.1.3
  * Update Vcs fields for migration to https://salsa.debian.org/
  * Drop git_text-view-support-emoji-chooser.patch: Applied in new release

 -- Jeremy Bicha <jbicha@debian.org>  Thu, 15 Feb 2018 05:23:44 -0500

gtk+3.0 (3.22.26-2) unstable; urgency=medium

  [ Simon McVittie ]
  * Set Rules-Requires-Root to no
  * Add a Lintian override to silence warnings about the non-standard
    name of libgail-3-0, which should really have been libgailutil-3-0
    but isn't going to be changed now

  [ Jeremy Bicha ]
  * Add git_text-view-support-emoji-chooser.patch:
    - Offer right-click "Insert Emoji" menu item for GtkTextView too

 -- Jeremy Bicha <jbicha@debian.org>  Tue, 28 Nov 2017 17:16:13 -0500

gtk+3.0 (3.22.26-1) unstable; urgency=medium

  [ Simon McVittie ]
  * Move examples, udebs from Priority: extra to optional

  [ Michael Biebl ]
  * New upstream release
  * Rebase patches
  * Update symbols file for libgtk-3-0
  * Bump Standards-Version to 4.1.1
  * Drop no longer needed Breaks/Replaces
  * Add (versioned) Provides to gir1.2-gtk-3.0 to follow the latest changes in
    the GObject introspection policy wrt bundled typelibs.

 -- Michael Biebl <biebl@debian.org>  Mon, 13 Nov 2017 00:54:47 +0100

gtk+3.0 (3.22.25-1) unstable; urgency=medium

  * Team upload
  * New upstream release
    - Fix tiling behaviour with Mutter/Shell 3.26 (Closes: #879566)
    - Update symbols file
    - d/p/0001-Adwaita-Fix-typo-.backgrounf-.background.patch,
      d/p/0002-theme-Fix-Adwaita-headerbars.patch,
      d/p/0003-display-x11-Unset-tiled-state-if-_GTK_EDGE_CONSTRAIN.patch:
      Drop patches, applied upstream
    - d/p/gdk-wayland-protocol-server-decoration.patch:
      Add server-decoration.xml from upstream git. It is missing from the
      tarball release.

 -- Simon McVittie <smcv@debian.org>  Sun, 29 Oct 2017 17:21:51 +0000

gtk+3.0 (3.22.24-3) unstable; urgency=medium

  [ Jeremy Bicha ]
  * Drop 0004_fix-gtkentry-wayland-regression.patch:
    - Reverted upstream since it caused a totem regression. Epiphany
      issue was fixed in mutter instead.

  [ Michael Biebl ]
  * Force update of GResource files so the changes to the CSS files from
    0002-theme-Fix-Adwaita-headerbars.patch are actually applied.

 -- Michael Biebl <biebl@debian.org>  Sun, 22 Oct 2017 13:22:16 +0200

gtk+3.0 (3.22.24-2) unstable; urgency=medium

  [ Jeremy Bicha ]
  * Add 0004_fix-gtkentry-wayland-regression.patch:
    - Cherry-pick fix for lag with Epiphany's address bar (Closes: #875826)

  [ Michael Biebl ]
  * Switch from XC-Package-Type to Package-Type which is an official field
    name since dpkg-dev 1.15.7.

 -- Jeremy Bicha <jbicha@debian.org>  Mon, 16 Oct 2017 08:26:07 -0400

gtk+3.0 (3.22.24-1) unstable; urgency=low

  * New upstream release (LP: #1712011, #1719047)
  * Cherry-pick fixes committed after the 3.22.24 release:
    - 0001-Adwaita-Fix-typo-.backgrounf-.background.patch
    - 0002-theme-Fix-Adwaita-headerbars.patch
    - 0003-display-x11-Unset-tiled-state-if-_GTK_EDGE_CONSTRAIN.patch

 -- Jeremy Bicha <jbicha@debian.org>  Wed, 04 Oct 2017 19:07:15 -0400

gtk+3.0 (3.22.22-1) unstable; urgency=medium

  * New upstream release.
  * debian/copyright: Mark Scheme Widget Library as SWL rather than 'other'.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Tue, 03 Oct 2017 20:02:52 +0200

gtk+3.0 (3.22.21-1) unstable; urgency=medium

  * New upstream release.
  * Bump to debhelper compat 10.
    + Drop dh-autoreconf and autotools-dev build-deps, no longer needed as
      debhelper guarantees them now.
  * Switch from CDBS to dh.
    Only regression is that we don't run --fail-missing on arch:all builds.
  * Don't build the docs when not building the -doc packages. Saves some
    time on arch-only builds.
  * Skip the udeb build when not building the -udeb package. Saves a lot
    of time on the arch:all builds.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Tue, 12 Sep 2017 00:38:15 +0200

gtk+3.0 (3.22.20-1) unstable; urgency=medium

  * New upstream release.
  * debian/patches/fix-gtk-menu-sliders.patch:
    + Removed, applied upstream.
  * Bump Standards-Version to 4.1.0; no changes needed.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Sat, 09 Sep 2017 15:11:12 +0200

gtk+3.0 (3.22.19-1) unstable; urgency=medium

  [ Jeremy Bicha ]
  * New upstream release
  * debian/libgtk-3-common.install.in:
    Install EmojiChooser gsettings schemas
  * Add fix-gtk-menu-sliders.patch:
    - Cherry-pick patch to fix regression with clicking on sliders in menus,
      such as with Unity's sound indicator (LP: #1712701) (Closes: #872687)

  [ Ken VanDine ]
  * debian/control.in:
    - Bump libpango1.0-dev Build-Depends to >= 1.40.5 for colornames test

 -- Jeremy Bicha <jbicha@ubuntu.com>  Mon, 28 Aug 2017 20:39:28 -0400

gtk+3.0 (3.22.18-1) unstable; urgency=medium

  * Hi from Debconf
  * New upstream release!
    + Support entering emoji by name, using Ctrl-Shift-E (note there is a
      whitelist for this currently - see GtkImContext docs)
    + Wayland:
     - Add support for the shortcut inhibitor protocol
     - Support Wacome tablet wheel scrolling
  * debian/control{,.in}: Bump wayland-protocols to 1.9, per upstream.

 -- Iain Lane <laney@debian.org>  Thu, 10 Aug 2017 16:34:47 +0100

gtk+3.0 (3.22.17-1) unstable; urgency=medium

  * New upstream release.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Wed, 26 Jul 2017 18:59:22 +0200

gtk+3.0 (3.22.16-1) unstable; urgency=medium

  * New upstream release.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Thu, 22 Jun 2017 20:24:11 +0200

gtk+3.0 (3.22.12-1) unstable; urgency=medium

  * New upstream release.

 -- Andreas Henriksson <andreas@fatal.se>  Thu, 13 Apr 2017 06:41:09 +0200

gtk+3.0 (3.22.11-1) unstable; urgency=medium

  * New upstream release.
  * Drop patches which have been merged upstream.

 -- Michael Biebl <biebl@debian.org>  Fri, 24 Mar 2017 02:27:48 +0100

gtk+3.0 (3.22.9-4) unstable; urgency=medium

  * Force update of GResource files so the changes to the CSS files are
    actually applied.

 -- Michael Biebl <biebl@debian.org>  Tue, 14 Mar 2017 01:38:30 +0100

gtk+3.0 (3.22.9-3) unstable; urgency=medium

  * Revert move of .flat from frame > border to frame as it broke existing
    themes which relied on that behaviour.

 -- Michael Biebl <biebl@debian.org>  Sun, 05 Mar 2017 21:40:15 +0100

gtk+3.0 (3.22.9-2) unstable; urgency=medium

  * Team upload
  * d/p/wayland-make-sure-to-clear-up-the-number-of-keys.patch:
    Add patch from upstream fixing unintended key repeats on Wayland
    (Closes: #856478)

 -- Simon McVittie <smcv@debian.org>  Wed, 01 Mar 2017 15:50:14 +0000

gtk+3.0 (3.22.9-1) unstable; urgency=medium

  * New upstream release.
  * Drop debian/patches/032_mips_treeview_row_separator_height.patch, no
    longer needed.

 -- Michael Biebl <biebl@debian.org>  Tue, 28 Feb 2017 18:48:39 +0100

gtk+3.0 (3.22.8-1) unstable; urgency=medium

  * New upstream release.
  * Stop patching gtk-doc.make and instead run gtkdocize via the upstream
    provided autogen.sh on autoreconf. The gtk-doc-tools version in Debian has
    been fixed to properly handle the installation of HTML images for
    out-of-tree builds.

 -- Michael Biebl <biebl@debian.org>  Wed, 15 Feb 2017 12:17:29 +0100

gtk+3.0 (3.22.7-2) unstable; urgency=medium

  * Team upload
  * d/p/gdk-x11-Check-if-we-have-access-to-GL-before-using-G.patch:
    add proposed patch from upstream Bugzilla to let GDK X11
    initialization complete successfully when libGL.so.1 is not
    available (Closes: #847366)
  * Override Lintian error source-is-missing for
    debian/missing-sources/zlib.js-0.1.6/deps.js. It is a generated
    file, but the script to generate it is also present.

 -- Simon McVittie <smcv@debian.org>  Sat, 21 Jan 2017 15:38:15 +0000

gtk+3.0 (3.22.7-1) unstable; urgency=medium

  * New upstream release.

 -- Michael Biebl <biebl@debian.org>  Tue, 17 Jan 2017 19:09:05 +0100

gtk+3.0 (3.22.6-1) unstable; urgency=medium

  [ Jeremy Bicha ]
  * Update debian/watch to only look for GTK+ 3.22 releases

  [ Emilio Pozuelo Monfort ]
  * New upstream release.
  * debian/libgtk-3-0.symbols: add new symbol.

 -- Michael Biebl <biebl@debian.org>  Mon, 09 Jan 2017 15:55:17 +0100

gtk+3.0 (3.22.5-1) unstable; urgency=medium

  * New upstream release.

 -- Michael Biebl <biebl@debian.org>  Sat, 10 Dec 2016 17:00:03 +0100

gtk+3.0 (3.22.4-1) unstable; urgency=medium

  * New upstream release.
  * Drop d/p/cssshadowvalue-scale-the-blur-surface-by-the-same-fa.patch
    - now included in upstream release.
  * Update debian/libgtk-3-0.symbols with one addition.

 -- Andreas Henriksson <andreas@fatal.se>  Sun, 20 Nov 2016 19:22:12 +0100

gtk+3.0 (3.22.3-2) unstable; urgency=medium

  * d/p/cssshadowvalue-scale-the-blur-surface-by-the-same-fa.patch
    - Added. Improve the rendering of shadow around GTK windows, this turns out
      to be a big performance improvement for HiDPI on wayland (From upstream
      git, bgo#772075)

 -- Sjoerd Simons <sjoerd@debian.org>  Thu, 10 Nov 2016 22:58:59 +0100

gtk+3.0 (3.22.3-1) unstable; urgency=medium

  * New upstream release.

 -- Michael Biebl <biebl@debian.org>  Tue, 08 Nov 2016 17:32:27 +0100

gtk+3.0 (3.22.2-1) unstable; urgency=medium

  * New upstream release.

 -- Michael Biebl <biebl@debian.org>  Tue, 25 Oct 2016 00:10:32 +0200

gtk+3.0 (3.22.1-1) unstable; urgency=medium

  * New upstream release.
  * Drop d/p/wayland-Avoid-negative-size-constraints.patch and
    d/p/wayland-always-sync-state-after-a-frame-is-painted.patch, merged
    upstream.
  * Bump Build-Depends on libxrandr-dev to (>= 2:1.5.0). This means we can
    drop d/p/0001-Fix-division-by-zero-when-calculating-the-refresh-ra.patch.
    Upstream has already applied a similar patch for the Xrandr 1.5 code path
    and we no longer need the workaround for Xrandr 1.3.
  * Update Build-Depends as per configure.ac:
    - Add libfontconfig1-dev.
    - Drop libxt-dev, libxft-dev, libxrender-dev and x11proto-xext-dev.
    - Drop Debian specific versions for various libx*-dev packages. Those
      versions were a long time ago for gtk+2.0 when the udeb was switched
      from DirectFB to Xlib.
  * Update Depends of libgtk-3-dev to match the dependencies declared in the
    pkg-config .pc files.

 -- Michael Biebl <biebl@debian.org>  Sat, 01 Oct 2016 15:36:03 +0200

gtk+3.0 (3.22.0-2) unstable; urgency=medium

  * d/p/wayland-Avoid-negative-size-constraints.patch
    - Added. Resolve unexpected order of size-allocation signals, fixes issues
      with placing clutter-gtk widgets on wayland.
      (From upstream git, bgo#771915)
  * d/p/wayland-always-sync-state-after-a-frame-is-painted.patch
    - Added. Always sync the state after a frame paint. Avoids things getting
      out of sync when painting using GL as e.g. epiphany does these days.
      (From upstream git, bgo#771553)

 -- Sjoerd Simons <sjoerd@debian.org>  Fri, 30 Sep 2016 14:36:52 +0200

gtk+3.0 (3.22.0-1) unstable; urgency=medium

  * New upstream release.
  * Drop dbg packages now that we have automatic dbgsym packages.
  * Bump debhelper compat level to 9.

 -- Michael Biebl <biebl@debian.org>  Tue, 20 Sep 2016 20:48:18 +0200

gtk+3.0 (3.21.6-1) unstable; urgency=medium

  [ Andreas Henriksson ]
  * New upstream development release.
  * Update (build-)dependencies according to configure.ac changes:
    - bump wayland-protocols to >= 1.7
  * Update debian/libgtk-3-0.symbols with a few scrolled_window additions.

  [ Michael Biebl ]
  * Refresh patches.

 -- Andreas Henriksson <andreas@fatal.se>  Wed, 14 Sep 2016 10:35:59 +0200

gtk+3.0 (3.21.5-3) unstable; urgency=medium

  * Mark two more reftests as known_fail and make test-suite failures fatal
    again.

 -- Michael Biebl <biebl@debian.org>  Wed, 31 Aug 2016 23:41:32 +0200

gtk+3.0 (3.21.5-2) unstable; urgency=medium

  * Mark the gdk_wayland_* symbols as linux-any.
  * Drop workaround for cdbs bug which has been fixed in the mean time.
  * Change Build-Depends on dbus-x11 to dbus. The use of dbus-launch has been
    removed upstream so having only dbus installed is sufficient to run the
    test-suite. (Closes: #835891)
  * Add dbus to autopkgtest dependencies to ensure machine-id is properly
    setup.

 -- Michael Biebl <biebl@debian.org>  Wed, 31 Aug 2016 18:48:24 +0200

gtk+3.0 (3.21.5-1) unstable; urgency=low

  [ Simon McVittie ]
  * Merge packaging changes from 3.20.9-1 in unstable

  [ Andreas Henriksson ]
  * New upstream release.
  * Update build-dependencies according to configure.ac changes:
    - bump libglib2.0-dev to >= 2.49.4
    - bump wayland-protocols to >= 1.6
  * Fix debian/patches/no-accessibility-dump.patch to apply again.
  * Drop d/p/Don-t-apply-GDK_HINT_RESIZE_INC-to-GDK_WINDOW_STATE_.patch
    - now included in upstream release.
  * Update debian/libgtk-3-0.symbols with several additions and one missing:
    - gdk_wayland_display_get_xdg_shell unused outside of gtk+.

 -- Andreas Henriksson <andreas@fatal.se>  Tue, 30 Aug 2016 18:13:45 +0200

gtk+3.0 (3.20.9-1) unstable; urgency=medium

  [ Jeremy Bicha ]
  * Team upload
  * New upstream release
  * debian/control.in:
    - Drop unnecessary version number from dependency on adwaita-icon-theme
  * debian/patches/0001-Revert-Improve-external-drives-detection.patch:
    - Dropped, applied in new version

  [ Simon McVittie ]
  * Another new upstream release
  * Explicitly build-depend on docbook-xsl, libxml2-utils and xsltproc
    to be able to generate man pages from their source code. Move docbook-xml
    to Build-Depends since the man pages are in an Architecture: any package.
  * Drop Build-Depends-Indep on docbook-utils, the old SGML toolchain,
    which is currently uninstallable (#834616) and does not appear to be
    needed for anything

 -- Simon McVittie <smcv@debian.org>  Thu, 18 Aug 2016 10:47:10 +0100

gtk+3.0 (3.20.7-1) unstable; urgency=medium

  [ Laurent Bigonville ]
  * debian/control.in: Add hicolor-icon-theme as a hard dependency, the
    package is small and only provides the directory structure of the theme.
  * debian/control.in: Move adwaita-icon-theme dependency to the main package.

  [ Emilio Pozuelo Monfort ]
  * New upstream release.
  * debian/patches/0001-Revert-Improve-external-drives-detection.patch:
    + Revert upstream change that requires unstable glib 2.49.1.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Thu, 04 Aug 2016 19:07:21 +0200

gtk+3.0 (3.21.4-1) experimental; urgency=medium

  * New upstream release.
  * debian/control.in:
    + Build depend on xauth, needed for xvfb-run.
    + Drop build-dependency on gettext and update the version requirements
      for wayland-protocols and glib.
  * debian/patches/wayland-add-extended-state-for-tiled.patch:
    + Dropped, included upstream.
  * d/p/0001-Fix-division-by-zero-when-calculating-the-refresh-ra.patch:
    + New patch. Fix division by zero when running under Xvfb.
  * debian/libgtk-3-0.symbols:
    + Add new symbols.
  * debian/rules:
    + Don't abort on test suite failures for now. Too many new failures due
      to deprecation warnings.
  * Upload to experimental.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Wed, 20 Jul 2016 23:33:22 +0200

gtk+3.0 (3.20.6-2) unstable; urgency=medium

  * Team upload

  [ Laurent Bigonville ]
  * Drop patches/015_default-fallback-icon-theme.patch: The default icon theme
    is already defined as Adwaita, not need to also define the fallback theme.

  [ Simon McVittie ]
  * d/rules: reset XDG_CONFIG_HOME, XDG_CACHE_HOME, XDG_DATA_HOME so that
    they are based on the temporary HOME
  * Backport patch from upstream to mark tiled Mutter/Shell windows
    as GDK_WINDOW_STATE_TILED under Wayland (with mutter >= 3.20.2-2)
  * Add my patch from upstream bug 755947 to disable character-cell-based
    size contraints for TILED windows, so that gnome-terminal can snap to
    half the screen under Wayland

 -- Simon McVittie <smcv@debian.org>  Sat, 25 Jun 2016 00:19:51 +0100

gtk+3.0 (3.20.6-1) unstable; urgency=medium

  * New upstream release.
  * Drop revert-scrolledwindow-Remove-child-before-destroying.patch, merged
    upstream.
  * Re-enable test-suite.

 -- Michael Biebl <biebl@debian.org>  Tue, 31 May 2016 21:33:34 +0200

gtk+3.0 (3.20.5-4) unstable; urgency=medium

  * Work around a bug in cdbs which causes the package to FTBFS; see #825135
    for further details.

 -- Michael Biebl <biebl@debian.org>  Thu, 26 May 2016 08:08:16 +0200

gtk+3.0 (3.20.5-3) unstable; urgency=medium

  * Make it simpler to bootstrap the package by marking the build dependencies
    which are required to run the test-suite with <!nocheck>.
    (Closes: #747392)
  * Bump Build-Depends on debhelper to (>= 9.20141010) and dpkg-dev to
    (>= 1.17.14) for build dependency restrictions support.
  * Temporarily disable the test suite (and its build-dependencies) to allow
    building the new gtk-update-icon-cache package. Our buildds don't support
    build profiles yet, so we'll have to bootstrap manually for now.

 -- Michael Biebl <biebl@debian.org>  Mon, 23 May 2016 01:01:27 +0200

gtk+3.0 (3.20.5-2) unstable; urgency=medium

  * Split gtk-update-icon-cache utility out of libgtk-3-bin into a separate
    package called gtk-update-icon-cache to break a dependency cycle with
    adwaita-icon-theme when building the package. (Closes: #824999)
    As the gtk-update-icon-cache binary doesn't actually have any libgtk-3-0
    dependency, there is no longer a reason to ship a gtk2 and gtk3 variant.
    So from now on we will only ship one implementation built from src:gtk+3.0
    and drop the Debian specific -3.0 suffix. To simplify the transition make
    libgtk-3-bin depend on gtk-update-icon-cache. Once all theme packages have
    been updated, this dependency can be dropped.
  * Cherry-pick patch from upstream Git which reverts a commit that was
    causing crashes in the filechooser in some applications.

 -- Michael Biebl <biebl@debian.org>  Sun, 22 May 2016 08:52:19 +0200

gtk+3.0 (3.20.5-1) unstable; urgency=medium

  * New upstream release.
  * Refresh patches.
  * Bump Standards-Version to 3.9.8.

 -- Michael Biebl <biebl@debian.org>  Sat, 21 May 2016 00:11:13 +0200

gtk+3.0 (3.20.4-1) unstable; urgency=medium

  * New upstream release.

 -- Andreas Henriksson <andreas@fatal.se>  Tue, 10 May 2016 14:29:37 +0200

gtk+3.0 (3.20.3-2) unstable; urgency=medium

  * Restore debian/patches/reftest-known-fail.patch so we can mark known
    failing tests as non-fatal.
  * Drop debian/patches/disable-flaky-textview-margins-reftest.patch and tag
    textview-margins.ui as known-fail.
  * Mark button-wrapping.ui reftest as known-fail, it currently fails on
    mips(64)el and prevents testing migration and important fixes in other
    packages reaching testing.

 -- Michael Biebl <biebl@debian.org>  Mon, 02 May 2016 01:18:04 +0200

gtk+3.0 (3.20.3-1) unstable; urgency=medium

  * New upstream release.
  * Drop debian/patches/git_window-Remove-suspicious-branch.patch, merged
    upstream and refresh the remaining patches.
  * Upload to unstable.

 -- Michael Biebl <biebl@debian.org>  Sat, 16 Apr 2016 21:13:07 +0200

gtk+3.0 (3.20.2-1) experimental; urgency=medium

  * New upstream release.
  * Drop debian/patches/git_fix_emacs.patch, included in release.
  * Add debian/patches/git_window-Remove-suspicious-branch.patch
    - from upstream git, reverts a revert in 3.20.2 that causes the
      testsuite to fail. Emacs users watch out!

 -- Andreas Henriksson <andreas@fatal.se>  Mon, 11 Apr 2016 12:53:17 +0200

gtk+3.0 (3.20.1-2) experimental; urgency=medium

  * Add debian/patches/disable-flaky-textview-margins-reftest.patch

 -- Andreas Henriksson <andreas@fatal.se>  Wed, 30 Mar 2016 14:02:10 +0200

gtk+3.0 (3.20.1-1) experimental; urgency=medium

  * New upstream release.
  * Drop debian/patches/git_a11y_GTK_CSD_distcheck.patch, included in release.
  * Add debian/patches/git_fix_emacs.patch, cherry-picked from upstream git.
    Thanks to Matteo F. Vescovi for verifying the commit fixed the emacs problem.

 -- Andreas Henriksson <andreas@fatal.se>  Wed, 30 Mar 2016 11:08:26 +0200

gtk+3.0 (3.20.0-1) experimental; urgency=medium

  * New upstream release.
  * Make testsuite fatal again.
  * Add debian/patches/git_a11y_GTK_CSD_distcheck.patch
    - cherry-pick commit from upstream to use client-side decorations
      for a11y tests when running under distcheck.
  * Drop debian/patches/reftest-known-fail.patch
  * Stop tagging reftests as known fail since they should be fixed now:
    - style-properties-nth-child.ui
    - label-text-shadow-changes-modify-clip.ui
  * Add debian/patches/no-accessibility-dump.patch
    - skip this test until someone figures out how to reliably run it
      always with CSD enabled, to match testsuite expected data.

 -- Andreas Henriksson <andreas@fatal.se>  Wed, 23 Mar 2016 14:10:27 +0100

gtk+3.0 (3.19.12-1) experimental; urgency=medium

  * New upstream development release+snapshot.
  * Update (build-)dependencies according to configure.ac changes:
    - add wayland-protocols (>= 1.1)
    - bump libwayland-dev to 1.9.91
    - add libharfbuzz-dev (>= 0.9), libpango1.0-dev
  * Temporarily make testsuite non-fatal while investigating.
  * libgtk-3-bin.install:
    - ship new gtk-query-settings tool.
    - ship gtk-builder gettext (its) files.
    - run wrap-and-sort on this file while at it.
  * Update debian/libgtk-3-0.symbols with new additions.
    - also drops an internal unused wayland-related drag and drop symbol.

 -- Andreas Henriksson <andreas@fatal.se>  Tue, 15 Mar 2016 11:34:25 +0100

gtk+3.0 (3.18.9-1) unstable; urgency=medium

  [ Michael Biebl ]
  * New upstream release.
  * Bump Standards-Version to 3.9.7.

  [ Uwe Kleine-König ]
  * Remove debian/{build,install} in clean target. (Closes: #792736)

 -- Michael Biebl <biebl@debian.org>  Sat, 12 Mar 2016 21:29:26 +0100

gtk+3.0 (3.18.8-1) unstable; urgency=medium

  * New upstream stable release 3.18.8

 -- Iain Lane <iain@orangesquash.org.uk>  Wed, 24 Feb 2016 17:55:46 +0000

gtk+3.0 (3.18.7-1) unstable; urgency=medium

  * New upstream release.

 -- Michael Biebl <biebl@debian.org>  Tue, 02 Feb 2016 19:12:28 +0100

gtk+3.0 (3.18.6-1) unstable; urgency=medium

  * New upstream release.
  * Refresh debian/patches/071_fix-installation-of-HTML-images.patch.

 -- Michael Biebl <biebl@debian.org>  Tue, 08 Dec 2015 15:11:24 +0100

gtk+3.0 (3.18.5-1) unstable; urgency=medium

  * New upstream stable release 3.18.5
    + GtkFileChooser:
      - Make sure external drives show up either in the sidebar or the places
        view
      - Ignore double-click events
    + Avoid some crashes in CSS parsing error handling

 -- Iain Lane <laney@debian.org>  Tue, 17 Nov 2015 14:10:09 +0000

gtk+3.0 (3.18.4-1) unstable; urgency=medium

  * New upstream stable release 3.18.4
    + Revert a GtkTextBuffer change that broke binding API
      - Remove downstream cherry-picks for this change.
    + Properly refresh styles when widget names change

 -- Iain Lane <laney@debian.org>  Fri, 13 Nov 2015 13:19:47 +0000

gtk+3.0 (3.18.3-3) unstable; urgency=medium

  * Revert "textbuffer: nicer get_iter functions" and related commits since
    this broke the bindings API. (Closes: #804798)

 -- Michael Biebl <biebl@debian.org>  Thu, 12 Nov 2015 18:50:55 +0100

gtk+3.0 (3.18.3-2) unstable; urgency=medium

  * The placesview API was not supposed to be public, so those symbols were
    removed. Update the libgtk-3-0.symbols file accordingly.

 -- Michael Biebl <biebl@debian.org>  Wed, 11 Nov 2015 02:39:56 +0100

gtk+3.0 (3.18.3-1) unstable; urgency=medium

  * New upstream release.
  * Refresh patches.
  * Drop Recommends on hicolor-icon-theme from libgtk-3-0 as libgtk-3-common
    already has a Depends on adwaita-icon-theme.

 -- Michael Biebl <biebl@debian.org>  Wed, 11 Nov 2015 01:41:11 +0100

gtk+3.0 (3.18.2-1) unstable; urgency=medium

  * New upstream release.
  * Refresh patches.

 -- Michael Biebl <biebl@debian.org>  Tue, 13 Oct 2015 23:07:49 +0200

gtk+3.0 (3.18.1-2) unstable; urgency=medium

  * Add debian/patches/git_stylecontext-make-sure-valid.patch
    - patch from upstream git to fix crash with some themes (Closes: #800911)

 -- Andreas Henriksson <andreas@fatal.se>  Sun, 11 Oct 2015 01:21:46 +0200

gtk+3.0 (3.18.1-1) unstable; urgency=medium

  * New upstream release.
  * Refresh patches.
  * Drop debian/patches/git_bitmask-dont-hardcode-64bit-size.patch, merged
    upstream.

 -- Michael Biebl <biebl@debian.org>  Thu, 08 Oct 2015 00:41:06 +0200

gtk+3.0 (3.18.0-4) unstable; urgency=medium

  * Team upload.
  * gir1.2-gtk-3.0 Breaks pre-3.18 versions of pygobject (Closes: #800798)

 -- Simon McVittie <smcv@debian.org>  Sun, 04 Oct 2015 15:46:54 +0100

gtk+3.0 (3.18.0-3) unstable; urgency=medium

  [ Michael Biebl ]
  * Drop the XS-Testsuite: autopkgtest field
    - it is no longer required, as dpkg 1.17.11 will add it
      automatically if there is a debian/tests/control file.

  [ Andreas Henriksson ]
  * Upload to unstable.

 -- Andreas Henriksson <andreas@fatal.se>  Fri, 02 Oct 2015 17:04:02 +0200

gtk+3.0 (3.18.0-2) experimental; urgency=medium

  * Add debian/patches/git_bitmask-dont-hardcode-64bit-size.patch
    - from upstream git. should fix test failure on i386, mips, mipsel.
  * debian/rules: move --fail-missing to binary target instead of
    binary-indep to use it on full builds only. This should avoid
    breaking source-only uploads as the binary-indep (only) builds
    more then it needs to do (which is not installed anywhere).

 -- Andreas Henriksson <andreas@fatal.se>  Sun, 27 Sep 2015 15:29:19 +0200

gtk+3.0 (3.18.0-1) experimental; urgency=medium

  * Drop debian/patches/061_multiarch_module_fallback.patch
    - now obsolete since all packages has been fixed to install
      in multiarch directories.
  * Drop patches which are unused and has been for a very long time:
    - debian/patches/030_tests_skip_filechooser.patch
    - debian/patches/042_treeview_single-focus.patch
    - debian/patches/043_notebook_scroll.patch
  * New upstream release.
  * Drop debian/patches/git_test-simplify-use-bash.patch
    - now included in upstream release.

 -- Andreas Henriksson <andreas@fatal.se>  Wed, 23 Sep 2015 17:07:59 +0200

gtk+3.0 (3.17.9-2) experimental; urgency=medium

  * Add debian/patches/git_test-simplify-use-bash.patch from upstream

 -- Andreas Henriksson <andreas@fatal.se>  Sun, 20 Sep 2015 19:46:36 +0200

gtk+3.0 (3.17.9-1) experimental; urgency=medium

  [ Simon McVittie ]
  * d/p/073-Use-AC_USE_SYSTEM_EXTENSIONS-to-get-_GNU_SOURCE-_XOP.patch:
    remove, applied upstream in 3.13 and no longer listed in series

  [ Andreas Henriksson ]
  * Add Breaks against gtk3-engines-oxygen << 1.4.1-3 (Closes: #797797)
  * New upstream development release.
  * Update (build-)dependencies according to configure.ac changes:
    - bump pango to >= 1.37.3
  * Bump glib build-dep to >= 2.45.8
    - g_param_spec_get_name_quark is needed.
  * Ship new gtk-builder-tool in libgtk-3-bin package.
  * Update debian/libgtk-3-0.symbols with many new additions.

 -- Andreas Henriksson <andreas@fatal.se>  Thu, 17 Sep 2015 13:12:35 +0200

gtk+3.0 (3.16.6-1) unstable; urgency=medium

  * New upstream release.
  * Refresh patches.
  * Drop obsolete Breaks from pre-wheezy.
  * Remove debian/libgtk-3-common.preinst.in, this file is a leftover from
    gtk+2.0 and not necessary anymore.

 -- Michael Biebl <biebl@debian.org>  Wed, 22 Jul 2015 21:29:11 +0200

gtk+3.0 (3.16.5-1) unstable; urgency=medium

  * New upstream bugfix release 3.16.5

 -- Iain Lane <laney@debian.org>  Wed, 08 Jul 2015 16:20:40 +0100

gtk+3.0 (3.16.4-2) unstable; urgency=medium

  * Merge changes from 3.14.13-1.
  * debian/README.Debian:
    + Removed, that's for gtk+2.0. Closes: #622913.
  * debian/control.in:
    + Drop versioned dependency on pkg-config. The version is satisfied
      in oldstable and that helps other packages that provide pkg-config.
      Closes: #734481.
  * Upload to unstable.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Sun, 14 Jun 2015 13:30:06 +0200

gtk+3.0 (3.16.4-1) experimental; urgency=medium

  [ Iain Lane ]
  * build with --fail-missing when doing an indep build
  * Install some utilities and missing icons, desktop files and manpages into
    gtk-3-examples (for want of a better package).
  * clean up reftest known_fail files in clean target which we create in
    pre-build

  [ Emilio Pozuelo Monfort ]
  * New upstream release.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Fri, 12 Jun 2015 00:06:44 +0200

gtk+3.0 (3.16.3-2) experimental; urgency=medium

  * d/p/015_default-fallback-icon-theme.patch: Replace gnome with Adwaita.
  * Update libgtk-3-dev dependencies according to its pkg-config file.

 -- Dmitry Shachnev <mitya57@debian.org>  Sun, 24 May 2015 19:26:07 +0300

gtk+3.0 (3.16.3-1) experimental; urgency=medium

  [ Sjoerd Simons ]
  * New upstream release 3.16.2.
  * debian/patches/044_tracker_fts.patch:
    + Dropped, upstream also defaults to FTS tracker queries now
  * debian/control: Update build-dependency versions
  * debian/control: Add libexpoxy and libegl1-mesa-dev to build-depencies
  * debian/libgtk-3-0.symbols: Updated
  * d/p/notify-test-Don-t-test-object-relying-on-dbus-connec.patch:
    + Added. Fix test failure when no session bus is running (bgo#749009)
  * debian/rules: Add label-text-shadow-changes-modify-clip.ui to known
    reftest failures

  [ Emilio Pozuelo Monfort ]
  * New upstream release 3.16.3.
  * debian/patches:
    + Refreshed.
  * debian/patches/notify-test-Don-t-test-object-relying-on-dbus-connec.patch:
    + Dropped, included upstream.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Fri, 22 May 2015 18:23:50 +0200

gtk+3.0 (3.14.13-1) unstable; urgency=medium

  * New upstream release.

 -- Andreas Henriksson <andreas@fatal.se>  Wed, 10 Jun 2015 18:19:44 +0200

gtk+3.0 (3.14.5-1) unstable; urgency=medium

  * New upstream bugfix release.
  * debian/patches/077_fix_menu_height_calculating.patch:
    + Dropped, merged upstream.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Tue, 11 Nov 2014 18:55:46 +0100

gtk+3.0 (3.14.4-2) unstable; urgency=medium

  [ Rico Tzschichholz ]
  * Install org.gtk.Settings.Debug.gschema.xml

  [ Dmitry Shachnev ]
  * debian/patches/077_fix_menu_height_calculating.patch: backport upstream
    commit to fix calculation of menu height (closes: #767906).

 -- Dmitry Shachnev <mitya57@debian.org>  Tue, 04 Nov 2014 17:19:48 +0300

gtk+3.0 (3.14.4-1) unstable; urgency=medium

  * New upstream release.

 -- Michael Biebl <biebl@debian.org>  Thu, 23 Oct 2014 15:43:31 +0200

gtk+3.0 (3.14.3-1) unstable; urgency=medium

  * New upstream release.
  * Install typelib files into multiarch paths.
  * Mark gir and dev package as Multi-Arch: same.
  * Bump Standards-Version to 3.9.6. No further changes.

 -- Michael Biebl <biebl@debian.org>  Mon, 13 Oct 2014 23:35:40 +0200

gtk+3.0 (3.14.2-1) unstable; urgency=medium

  * New upstream release.
    - includes fix gtkbuilder fix for problems affecting libgweather
      users (like gnome-clocks, Closes: #764681)

 -- Andreas Henriksson <andreas@fatal.se>  Sat, 11 Oct 2014 15:12:08 +0200

gtk+3.0 (3.14.1-1) unstable; urgency=medium

  [ Emilio Pozuelo Monfort ]
  * New upstream release.

  [ Andreas Henriksson ]
  * Add debian/patches/reftest-known-fail.patch
    - make it possible to tag individual reftests as ok to fail.
  * debian/rules:
    touch testsuite/reftests/style-properties-nth-child.ui.known_fail
    - reftest shows this intermittently has a couple of pixels
      difference on some architectures. No big deal.
      Noone is willing to investigate and consensus is it's ok to disable.

 -- Michael Biebl <biebl@debian.org>  Thu, 02 Oct 2014 01:49:16 +0200

gtk+3.0 (3.14.0-1) unstable; urgency=medium

  * New upstream release.
  * Refresh patches.

 -- Michael Biebl <biebl@debian.org>  Tue, 23 Sep 2014 22:25:42 +0200

gtk+3.0 (3.13.9-2) unstable; urgency=medium

  * Upload to unstable.

 -- Andreas Henriksson <andreas@fatal.se>  Fri, 19 Sep 2014 22:25:39 +0200

gtk+3.0 (3.13.9-1) experimental; urgency=medium

  [ Andreas Henriksson ]
  * libgtk-3-common: Depend on adwaita-icon-theme (>= ${gnome:Version})
    - gtk+ should guarantee we have atleast one sane icon theme available.
  * debian/rules: Include gnome-version.mk to generate ${gnome:Version}

  [ Emilio Pozuelo Monfort ]
  * New upstream development release.
  * debian/control.in:
    + Bump libpango1.0-dev minimum (build-)dependency.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Fri, 19 Sep 2014 17:37:42 +0200

gtk+3.0 (3.13.8-1) experimental; urgency=medium

  [ Andreas Henriksson ]
  * New upstream development release (3.13.7)
  * Update build-dependencies according to configure.ac
    - bump libglib2.0-dev to (>= 2.41.2)
  * Update libgtk-3.0-dev dependency on libglib2.0-dev to (>= 2.41.2)
  * Massage debian/patches/018_gdkenumtypes.c_location.patch to apply again
  * Drop backported/merged patches now in released version:
    - debian/patches/072_Avoid-pkg-config-atleast-version.patch
  * Have quilt refresh remaining patches.
  * Bump gobject-introspection build-dependency to (>= 1.41.3)
    - this one supports new "nullable" annotation.
  * Build-depend on adwaita-icon-theme instead of gnome-icon-theme-symbolic
  * Update debian/libgtk-3-0.symbols with many additions
  * New upstream development release (3.13.8)
  * Update build-dependencies according to configure.ac changes:
    - Bump libgdk-pixbuf2.0-dev to (>= 2.30.0)
    - Bump libwayland-dev to (>= 1.5.91)
  * debian/patches/032_mips_treeview_row_separator_height.patch:
    - massage the patch into applying again.
  * Update debian/libgtk-3-0.symbols
    - 4 dropped gdk_wayland_*_libgtk_only symbols, should be unused.
    - 3 new wayland related symbols

 -- Sjoerd Simons <sjoerd@debian.org>  Fri, 05 Sep 2014 22:50:11 +0200

gtk+3.0 (3.12.2-3) unstable; urgency=medium

  * Team upload
  * debian/missing-sources/zlib.js-0.1.6: add missing source code for
    gdk/broadway/rawinflate.min.js (Closes: #753968)
    - some files in zlib.js upstream had missing source code themselves
      (closure-compiler.jar) or are not needed here, and have been removed
      to save space; see debian/missing-sources/README for details
    - make debian/missing-sources/rawinflate.js a symlink into zlib.js-0.1.6
      to reassure lintian that source is present
  * d/p/073-Use-AC_USE_SYSTEM_EXTENSIONS-to-get-_GNU_SOURCE-_XOP.patch:
    define _GNU_SOURCE on non-Linux to fix "assignment makes pointer from
    integer without a cast" found by build-log scanning on kFreeBSD

 -- Simon McVittie <smcv@debian.org>  Sun, 17 Aug 2014 15:26:50 +0100

gtk+3.0 (3.12.2-2) unstable; urgency=medium

  * Team upload

  [ Dmitry Shachnev ]
  * Autopkgtests fixes: add missing xauth dependency, and stop using
    deprecated GtkStock item.

  [ Simon McVittie ]
  * debian/patches/072_Avoid-pkg-config-atleast-version.patch:
    stop AM_PATH_GTK_3_0([3], [], [], [gthread]) trying to require
    gthread-2.0 >= 3, which doesn't exist (Closes: #756476)

 -- Simon McVittie <smcv@debian.org>  Sun, 10 Aug 2014 17:26:57 +0100

gtk+3.0 (3.12.2-1) unstable; urgency=medium

  * New upstream release.

 -- Andreas Henriksson <andreas@fatal.se>  Fri, 16 May 2014 12:12:48 +0200

gtk+3.0 (3.12.1-1) unstable; urgency=medium

  * New upstream release

 -- Sjoerd Simons <sjoerd@debian.org>  Sat, 26 Apr 2014 16:44:41 +0200

gtk+3.0 (3.12.0-4) unstable; urgency=medium

  * Build-depend on gnome-icon-theme-symbolic and make test suite errors
    fatal again.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Thu, 03 Apr 2014 19:45:56 +0200

gtk+3.0 (3.12.0-3) unstable; urgency=medium

  * debian/control.in:
    + Loosen the dependencies on libgtk-3-common from = ${source:Version}
      to >= ${source:Version} to make libgtk-3-bin and libgtk-3-0 installable
      when a new source version is uploaded.
    + Don't build depend on gnome-icon-theme-symbolic as that pulls
      gnome-icon-theme which in turns pulls libgtk-3-bin, which isn't
      installable at the moment.
  * debian/rules:
    + Temporarily make the test suite non-fatal as gnome-icon-theme-symbolic
      is needed for some tests.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Wed, 02 Apr 2014 19:11:32 +0200

gtk+3.0 (3.12.0-2) unstable; urgency=medium

  * Upload to unstable.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Wed, 02 Apr 2014 16:10:12 +0200

gtk+3.0 (3.12.0-1) experimental; urgency=medium

  * New upstream release.
  * Update debian/libgtk-3-0.symbols with added symbols.

 -- Andreas Henriksson <andreas@fatal.se>  Tue, 25 Mar 2014 10:17:09 +0100

gtk+3.0 (3.11.8-1) experimental; urgency=medium

  * New upstream release.
  * debian/control.in,
    debian/rules:
    + Enable Google cloud print support on the normal build.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Sun, 09 Mar 2014 15:07:56 +0100

gtk+3.0 (3.11.7-1) experimental; urgency=medium

  * New upstream release.
  * Bump build-dependencies according to configure.ac:
    - glib 2.39.5 and gtk-doc 1.20
  * Use quilt to refresh all patches.
  * Update debian/libgtk-3-0.symbols

 -- Andreas Henriksson <andreas@fatal.se>  Tue, 18 Feb 2014 20:22:50 +0100

gtk+3.0 (3.11.5-1) experimental; urgency=medium

  * New upstream development release.
  * debian/control.in:
    + Update build dependencies.
    + Build depend on gnome-icon-theme-symbolic, needed for some tests.
    + Standards-Version is 3.9.5, no changes needed.
  * debian/libgtk-3-0.symbols:
    + Add new symbols. A couple of wayland-related symbols,
      gdk_wayland_display_get_wl_shell{,_surface} are gone in favor of
      gdk_wayland_display_get_xdg_shell. The wayland backend is not fully
      stable yet and nothing in the archive should be depending on them,
      so this should be fine.
    + Drop four commented-out symbols that weren't exported after 3.9.10,
      as mentioned below in the 3.9.14 changelog entry. Those for symbols
      were not exported in the headers and were only used internally by
      gdk.
  * debian/patches/080_disable-parallel-docs-build.patch:
     + Dropped, gtk-doc 1.20 works fine with parallel builds.
  * debian/rules:
     + Break colord<->gtk+ loop when bootstrapping. Thanks Daniel Schepler.
       Closes: #738603.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Mon, 17 Feb 2014 18:57:53 +0100

gtk+3.0 (3.10.7-1) unstable; urgency=low

  * debian/libgtk-3-bin.install:
    + Ship broadwayd.
  * debian/rules:
    + Enable parallel builds.
  * New upstream release.
  * debian/patches/080_disable-parallel-docs-build.patch:
    + Disable parallel support for the docs as that has races, see
      the similar glib2.0 patch for a longer explanation.
  * Upload to unstable.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Sat, 15 Feb 2014 14:15:56 +0100

gtk+3.0 (3.10.2-1) experimental; urgency=low

  * debian/libgtk-3-0.symbols:
    + Mark wayland symbols as linux-any.
  * New upstream release.
    + debian/libgtk-3-0.symbols:
      - Removed a couple of private structs that shouldn't have been
        exported.
  * debian/rules:
    + Set VERBOSE so we get more information about test failures.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Mon, 28 Oct 2013 02:08:26 +0100

gtk+3.0 (3.10.1-1) experimental; urgency=low

  [ Emilio Pozuelo Monfort ]
  * debian/control.in,
    debian/rules:
    + Only build the wayland backend on linux-any.

  [ Andreas Henriksson ]
  * New upstream release
  * Bump libwayland-dev (build-)dependency to >= 1.2.0
  * Update debian/libgtk-3-0.symbols with added symbols

 -- Andreas Henriksson <andreas@fatal.se>  Sun, 13 Oct 2013 20:14:15 +0200

gtk+3.0 (3.9.14-1) experimental; urgency=low

  [ Andreas Henriksson ]
  * New upstream development release (3.9.10)
  * Bump glib (build-)dependency to >= 2.37.3 as per configure.ac
  * Trivial update in 015_default-fallback-icon-theme.patch to apply.
  * Update debian/patches/018_gdkenumtypes.c_location.patch to apply
    after upstream dropped --disable-rebuilds.
  * Disable 030_tests_skip_filechooser.patch
    - testsuite moved and restructured....
  * Updated to apply patch against new testsuite file location:
    - 032_mips_treeview_row_separator_height.patch
  * Drop 031_ia64_children_test.patch
    - fixed differently upstream (see GBZ #702370)
  * Drop 080_correct_padding_of_submenu_arrows.patch
    - previously cherry-picked, now included in upstream release.
  * Refresh all patches to apply without offset.
  * Ignore testsuite failures for now...
  * Update debian/libgtk-3-0.symbols
    - many added symbols, and four missing:
      gdk_frame_clock_idle_get_type,
      gdk_offscreen_window_get_type,
      gdk_window_impl_get_type,
      gdk_window_impl_x11_get_type.
  * Explicitly set which GDK backends to build:
    - enable x11,wayland,broadway in regular build
    - disable wayland,broadway and enable x11 in udeb build
  * Add build-dependencies needed by wayland backend:
    - libwayland-dev (>= 1.1.90), libxkbcommon-dev (>= 0.2.0)
  * Update debian/libgtk-3-0.symbols with added broadway & wayland symbols.
  * New upstream release (3.9.12)
    - bump cairo build-dependency to >= 1.12

  [ Sjoerd Simons ]
  * Add libwayland-dev depend in libgtk-3-dev since we're building the wayland
    backend now
  * Also needs libxkbcommon-dev now due to the wayland backend (Found by Andrew
    Lee)
  * debian/libgtk-3-0.symbols: Update for new symbols (Patch by Andrew Lee)

  [ Emilio Pozuelo Monfort ]
  * New upstream development release (3.9.14).
  * debian/libgtk-3-0.symbols:
    + Updated for new symbols.
  * debian/control.in:
    + Bump minimum libglib2.0-dev build dependency.
    + Build depend on gsettings-desktop-schemas for the testsuite.
    + Build depend on dbus-x11 for the testsuite.
    + Build depend on at-spi2-core as libatspi2.0-0 seems to require it,
      tests that use dbus fail otherwise.
  * debian/rules:
    + Set XDG_DATA_DIRS and copy and copile the gsettings schemas so that
      gsettings can find them. Makes the test suite happy.
    + Set XDG_RUNTIME_DIR, makes the test suite even happier.
    + Make the test suite fatal again.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Tue, 10 Sep 2013 01:23:06 +0200

gtk+3.0 (3.8.2-3) unstable; urgency=low

  * Simplify our trigger for gtk-query-immodules-3.0, use the --update-cache
    option instead of redirecting stdout.
  * debian/patches/080_correct_padding_of_submenu_arrows.patch: Take padding
    into account to position submenu arrow. Patch cherry-picked from upstream
    Git.
  * Update debian/copyright to comply with the final 1.0 spec.

 -- Michael Biebl <biebl@debian.org>  Sat, 06 Jul 2013 00:51:39 +0200

gtk+3.0 (3.8.2-2) unstable; urgency=low

  * debian/patches/031_ia64_children_test.patch:
    + Patch from Stephan Schreiber, fix an invalid read on a test case
      that caused it to fail on ia64, making the build fail.
  * debian/patches/032_mips_treeview_row_separator_height.patch:
    + Disable another test that currently fails on mips but that also
      fails at least on amd64 when run under valgrind.
  * All the above closes: #711107.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Sun, 16 Jun 2013 01:25:10 +0200

gtk+3.0 (3.8.2-1) unstable; urgency=low

  [ Josselin Mouette ]
  * Switch to interest-noawait for triggers. They only affect IM
    modules, so this is not likely to cause upgrade problems.

  [ Michael Biebl ]
  * Upload to unstable.
  * New upstream release.
  * Update debian/copyright following the latest copyright-format spec.
  * Bump Standards-Version to 3.9.4. No further changes.

 -- Michael Biebl <biebl@debian.org>  Thu, 23 May 2013 16:23:37 +0200

gtk+3.0 (3.8.0-1) experimental; urgency=low

  [ Rico Tzschichholz ]
  * debian/gtk-3-examples.install:
    - Install usr/bin/gtk3-demo-application

  [ Emilio Pozuelo Monfort ]
  * New upstream release.
    + debian/patches/071_fix-installation-of-HTML-images.patch:
      - Refreshed.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Tue, 26 Mar 2013 11:21:30 +0100

gtk+3.0 (3.7.14-1) experimental; urgency=low

  * New upstream release.
    + d/p/090-GtkTextView-don-t-popdown-a-bubble-if-we-don-t-have-.patch:
      - Removed, included upstream.
  * debian/rules:
    + Set HOME rather than G_HOME, as GLib now honors the former and
      G_HOME is a Debian-specific thing.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Tue, 19 Mar 2013 12:06:40 +0100

gtk+3.0 (3.7.12-2) experimental; urgency=low

  * d/p/090-GtkTextView-don-t-popdown-a-bubble-if-we-don-t-have-.patch:
    + Added. Fix segv when popping down non-existing bubblees (From upstream
      git, bgo #695304)

 -- Sjoerd Simons <sjoerd@debian.org>  Mon, 11 Mar 2013 21:42:39 +0100

gtk+3.0 (3.7.12-1) experimental; urgency=low

  [ Sjoerd Simons ]
  * debian/patches/80_Fix-DND-with-frame-sync.patch:
    + Added. Temporary fix for DND when using mutter with the frame sync
    protocol (from upstream git, bgo#694217).

  [ Emilio Pozuelo Monfort ]
  * New upstream release.
    + debian/patches/*:
      - Refreshed.
    + debian/patches/80_Fix-DND-with-frame-sync.patch:
      - Removed, included upstream.
    + debian/libgtk-3-0.symbols:
      - Updated for new symbols.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Wed, 06 Mar 2013 13:43:48 +0100

gtk+3.0 (3.7.10-1) experimental; urgency=low

  * New upstream release.
    + debian/control.in:
      - Update build dependencies.
    + debian/patches:
      - Refreshed.
    + debian/libgtk-3-0.symbols:
      - Updated for the new symbols.
    + debian/gtk-3-examples.install:
      - Stop installing gtk3-demo files, no longer needed.
    + debian/patches/030_tests_skip_filechooser.patch:
      - New patch: skip filechooser tests as they are not designed to
        be run without gtk+ installed.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Sat, 23 Feb 2013 20:37:27 +0100

gtk+3.0 (3.6.4-1) experimental; urgency=low

  * New upstream release

 -- Sjoerd Simons <sjoerd@debian.org>  Tue, 08 Jan 2013 13:54:26 +0100

gtk+3.0 (3.6.3-1) experimental; urgency=low

  * New upstream release.
  * Refresh patches.
  * debian/libgtk-3-bin.install: Install gtk-launch man page.
  * debian/libgtk-3-dev.install: Install gtkbuilder.rng RELAX NG schema file
    which can be used to validate GtkBuilder ui files.

 -- Michael Biebl <biebl@debian.org>  Fri, 04 Jan 2013 23:23:45 +0100

gtk+3.0 (3.6.1-1) experimental; urgency=low

  * Team upload
  * New upstream release 3.6.1
    - drop private symbols gtk_css_image_get_parser_type and
      gtk_style_properties_get_style from symbols file (made static upstream;
      verified not to be present in any header file)

 -- Simon McVittie <smcv@debian.org>  Mon, 22 Oct 2012 21:17:30 +0100

gtk+3.0 (3.6.0-2) experimental; urgency=low

  * debian/control.in: Add ${shlibs:Depends} Depends to libgtk-3-bin

 -- Sjoerd Simons <sjoerd@debian.org>  Wed, 03 Oct 2012 18:44:04 +0200

gtk+3.0 (3.6.0-1) experimental; urgency=low

  * New upstream release (3.6.0)
  * Sync with ubuntu:
    * debian/rules: Make test failures fatal again
    * debian/libgtk-3-0.symbols: Updated
    * debian/rules: Update build-depends
    * debian/libgtk-3-bin.install: Add gtk-launch: A new commandline utility
      to launch an application from its desktop file
    * Add autopkgtest support
  * debian/patches/072_statusicon_icon_size.patch:
    * Removed merged upstream
  * debian/patches/074_try-harder-to-discriminate-Shift-F10-and-F10.patch:
    * Removed, fixed upstream
  * debian/patches/073_transparent_colors.patch
    * Removed, fixed upstream
  * debian/control.in: bump glib2.0 build-dep to >= 2.33.14 to trump the dodgy
    version in unstable
  * debian/control.in: Bump gnome-themes-standard break due to theme related
    changes

 -- Sjoerd Simons <sjoerd@debian.org>  Wed, 03 Oct 2012 09:07:16 +0200

gtk+3.0 (3.4.2-6) unstable; urgency=low

  * Team upload.
  * debian/patches/076_check_wm_supports_hint.patch: This patch fixes the
    size and placement of popup menus with some window managers, such as
    Awesome and XMonad. Closes: #681974

 -- Sébastien Villemot <sebastien@debian.org>  Thu, 31 Jan 2013 18:09:43 +0100

gtk+3.0 (3.4.2-5) unstable; urgency=low

  * debian/patches/075_gtkplug-fix-handling-of-key-events-for-layouts.patch:
    This patch fixes handling of key events for different layouts in
    GtkPlug. In particular, it fixes the keyboard layout switching from
    gnome-screensaver when the screen is locked. Closes: #692235
  * debian/libgtk-3-0.symbols: add gdk_x11_keymap_get_group_for_state and
    gdk_x11_keymap_key_is_modifier which are introduced by the above patch
    (actually backported from the 3.5.2 API).
  * debian/rules: call dh_makeshlibs with -V 'libgtk-3-0 (>= 3.4.2-5~)',
    since we introduced new public symbols in this Debian revision.

 -- Sébastien Villemot <sebastien@debian.org>  Wed, 09 Jan 2013 11:00:22 +0100

gtk+3.0 (3.4.2-4) unstable; urgency=low

  * debian/patches/074_try-harder-to-discriminate-Shift-F10-and-F10.patch:
    With xkb-data 2.5.1-2.1 preserving the Shift modifier, GTK+ can properly
    map F10 and Shift-F10 to different key bindings. Closes: #658392

 -- Michael Biebl <biebl@debian.org>  Fri, 21 Sep 2012 18:30:41 +0200

gtk+3.0 (3.4.2-3) unstable; urgency=low

  [ Josselin Mouette ]
  * Update xrandr epoch.

  [ Michael Biebl ]
  * debian/libgtk-3-0.postrm.in: Drop "rm -rf /etc/gtk-3.0/" on purge since
    this removes files owned by libgtk-3-common. Those bits were copied over
    from the gtk+2.0 package but they are actually obsolete and no longer
    required. Closes: #681198
  * debian/patches/073_transparent_colors.patch: Handle transparent colors
    better in GtkStyle emulation. Patch cherry-picked from upstream Git.
    Closes: #669694
  * debian/patches/070_revert-widget-set-up-signals-after-initializing.patch:
    This patch was a temporary workaround for a bug in mutter which has been
    fixed in version 3.4. It was not supposed to be shipped as part of wheezy,
    so drop it again.
  * If the NEWS or README file is larger than 4k in size append a .gz suffix
    as dh_compress will compress those files. This avoids dangling symlinks.
    Closes: #679754

 -- Michael Biebl <biebl@debian.org>  Mon, 06 Aug 2012 21:40:53 +0200

gtk+3.0 (3.4.2-2) unstable; urgency=low

  * debian/patches/072_statusicon_icon_size.patch: Fix how we determine the
    icon size for the statusicon. This fixes a crash in notification-daemon
    which was caused by an assertion failure. Closes: #669883
    Thanks to Fernando Lemos for the patch and Brad Jorsch for the excellent
    debugging.

 -- Michael Biebl <biebl@debian.org>  Sat, 30 Jun 2012 17:01:38 +0200

gtk+3.0 (3.4.2-1) unstable; urgency=low

  * New upstream release.
  * Simplify shlibs version information for libgail-3-0 and no longer create a
    dependency on libgail-3-common, this package has been dropped in 3.2.

 -- Michael Biebl <biebl@debian.org>  Thu, 10 May 2012 14:44:28 +0200

gtk+3.0 (3.4.1-2) unstable; urgency=low

  * Upload to unstable.

 -- Michael Biebl <biebl@debian.org>  Thu, 19 Apr 2012 02:46:25 +0200

gtk+3.0 (3.4.1-1) experimental; urgency=low

  [ Josselin Mouette ]
  * Break libvte-2.90-9 < 0.32 and libwebkitgtk-3.0-0 < 1.8.0 for the
    scrolling related changes. Closes: #666921.

  [ Michael Biebl ]
  * New upstream release.
    - Fixes GtkPaned's handling of preferred size. Closes: #666718
  * Update dependencies according to configure.ac.
  * Drop explicit Build-Depends on gir1.2-glib-2.0 and gir1.2-freedesktop.
  * Refresh patches.
  * Remove leftovers from the opt flavor.
  * Set --sourcedir for the different flavors when running dh_install. This
    way the .install files can be simplified a lot which makes them much more
    readable.
  * Bump Standards-Version to 3.9.3.
  * Update Vcs-* URLs.
  * Remove --enable-xinput configure flag as xinput support is no longer
    optional and this flag has thus been removed upstream.
  * debian/patches/071_fix-installation-of-HTML-images.patch: Fix installation
    of HTML images for out-of-tree builds when using absolute paths.
    Closes: #656803

 -- Michael Biebl <biebl@debian.org>  Tue, 17 Apr 2012 20:59:19 +0200

gtk+3.0 (3.4.0-1) experimental; urgency=low

  * New upstream release.
  * Bump Build-Depends on cdbs for multiarch support.
  * debian/libgtk-3-0.symbols: Updated.
  * debian/rules: Bump SHVER to 3.3.18.
  * debian/control.in:
    - Bump (Build-)Depends on libglib2.0-dev to (>= 2.31.20).
    - Drop explicit Build-Depends on gir1.2-atk-1.0, gir1.2-pango-1.0 and
      gir1.2-gdkpixbuf-2.0, those are pulled via the corresponding -dev
      package.
    - Update dependencies of libgtk-3-dev. Strip the minimum version from
      libx*-dev, since those versions were older then lenny anyway.
    - Remove a few obsolete Conflicts/Replaces.
  * Refresh patches.
  * Disable 043_notebook_scroll.patch, it needs to be updated.
  * Move org.gtk.Demo.gschema.xml gsettings schema from libgtk-3-common to
    gtk-3-examples. Add the necessary Breaks/Replaces.
  * debian/libgtk-3-bin.install.in: Install the man pages from the install
    directory, not the source directory.
  * debian/patches/070_revert-widget-set-up-signals-after-initializing.patch:
    Revert upstream commit which breaks the window decorations in
    gnome-shell resp. mutter 3.2.

 -- Michael Biebl <biebl@debian.org>  Wed, 28 Mar 2012 15:27:05 +0200

gtk+3.0 (3.3.16-1) experimental; urgency=low

  * New upstream development release.
  * debian/libgtk-3-0.symbols: Add new symbols.
  * debian/rules: Bump SHVER to 3.3.16.
  * debian/control.in:
    - Bump (Build-)Depends on libglib2.0-dev to (>= 2.31.18).
    - Bump (Build-)Depends on libgdk-pixbuf2.0-dev to (>= 2.25.2).
    - Drop Depends on libxml2-utils from libgtk-3-dev as gtk-builder-convert
      has been removed.
    - Drop Recommends on python and debhelper from libgtk-3-dev since it no
      longer includes a dh_gtkmodules debhelper addon.
    - Bump Breaks against gnome-themes-standard due to theming related
      changes.
  * Remove leftovers from the gtk3-engines-pixbuf package.
  * Update patches:
    - Drop 003_gdk.pc_privates.patch, fixed upstream in a similar way.
    - Drop 70-Fix-document-generation-in-out-of-tree-builds.patch, applied
      upstream.
    - Drop 041_ia32-libs.patch, no longer required with multiarch.
    - Disable 042_treeview_single-focus.patch for now since it has no
      description why this patch is needed and it needs to be updated.
    - Refresh remaining patches.
  * debian/gtk-3-examples.install.in: Install gtk3-widget-factory demo
    application.
  * Stop building static libraries which require a full separate build and
    appear to be unused.
  * Enable colord support for color-managed printing. Keep it disabled for the
    udeb build.

 -- Michael Biebl <biebl@debian.org>  Wed, 07 Mar 2012 01:16:05 +0100

gtk+3.0 (3.2.3-1) unstable; urgency=low

  * New upstream release.
    - Fixes segfault on arrow keypress in empty GtkIconView. Closes: #638704
    - Fixes a11y related crash in treeview. Closes: #652073
    - Fixes mouse grabbing when clicking resize grip. Closes: #630972
  * Update patches:
    - Drop 000git_gtk_tree_view_get_tooltip_context_annotation.patch, applied
      upstream.
    - Drop 080_filechooserdefault-Don-t-unref-value-twice.patch, applied
      upstream.
    - Refresh 017_no_offscreen_device_grabbing.patch,
      042_treeview_single-focus.patch and 043_notebook_scroll.patch.
  * Change section of gir1.2-gtk-3.0 to introspection.

 -- Michael Biebl <biebl@debian.org>  Tue, 20 Dec 2011 18:42:32 +0100

gtk+3.0 (3.2.2-3) unstable; urgency=low

  [ Martin Pitt ]
  * Add 000git_gtk_tree_view_get_tooltip_context_annotation.patch: Fix
    gtk_tree_view_get_tooltip_context() transfer annotation, causing crashes
    when using this method from Python.
  * Add 016_no_offscreen_widgets_grabbing.patch: Widgets inside
    GtkOffscreenWindow seem like they should not be allowed to do
    grab the mouse or whatever, as this can deactivate open menus.
    (LP: #512427, GNOME #607668)
  * Add 017_no_offscreen_device_grabbing.patch: Do not allow devices in an
    offscreen hierarchy to take grabs. (LP: #804009, GNOME #658563)
  * Add 018_gdkenumtypes.c_location.patch: Always generate gdk/gdkenumtypes.c
    in the source tree, and fix path in the introspection sources. With this,
    gdkenumtypes.c is correctly included with separate build trees, too.  This
    fixes missing GTypes in the .gir when using a separate build tree.
    (LP: #769256, GNOME #647729)
  * debian/rules: Bump SHVER to 3.1.90.
  * Build for multiarch. Adapted Steve Langasek's changes to Ubuntu's gtk+2.0
    package:
    - debian/control.in: Bump build dependencies to multiarch aware versions.
    - debian/control.in: Add Multi-Arch: and necessary Pre-Depends: fields.
      (libraries/-dbg are "same", -doc/-bin are "foreign").
    - debian/rules: Use multiarch LIBDIR.
    - debian/libgail-3-dev.install, debian/libgail-3-0.install: Rename to
      *.in, and use @LIBDIR@ instead of hardcoded usr/lib.
    - debian/gir1.2-gtk-3.0.install.in: Use @LIBDIR@.
    - debian/libgtk-3-0.triggers.in, debian/libgtk-3-0.postinst.in,
      debian/rules: Also trigger on changes to the fallback non-multiarch
      module directory, which is now called @OLD_MODULES_BASE_PATH@.
    - Add 061_multiarch_module_fallback.patch: Fall back to the hard-coded
      pre-multiarch module directory when searching for modules. This
      maintains compatibility with packages installing modules to
      the old directories.

  [ Josselin Mouette ]
  * Break murrine-themes (same reason as gnome-themes-standard).
  * Move /etc/gtk-3.0 to libgtk-3-common.
  * Add appropriate Breaks/Replaces to handle it.
  * Remove gtk-query-immodules-3.0 from libgtk-3-bin since it is
    clearly not Multi-Arch compatible. It should not be needed anyway,
    everything is handled by triggers from the private directory.
  * Remove incorrect M-A: same statement for the debug package.
  * Make libgtk-3-bin arch-any, thanks Rico for noticing.

  [ Michael Biebl ]
  * debian/libgtk-3-0.postinst.in: If the non-multiarch immodules directory
    does not exist or is empty handle this case more gracefully and don't
    print an error message.
  * debian/patches/080_filechooserdefault-Don-t-unref-value-twice.patch: Fix
    incorrect ref counting which could lead to a crash in the filechooser.
    Closes: #650223

 -- Michael Biebl <biebl@debian.org>  Wed, 30 Nov 2011 00:25:29 +0100

gtk+3.0 (3.2.2-2) unstable; urgency=low

  * Upload to unstable.
  * debian/control.in:
    - Add Breaks against gnome-themes-standard (<< 3.2) due to the CSS theming
      related changes. Closes: #649203
  * Fix broken symlinks in /usr/share/doc. Closes: #647466

 -- Michael Biebl <biebl@debian.org>  Sat, 19 Nov 2011 00:01:03 +0100

gtk+3.0 (3.2.2-1) experimental; urgency=low

  * New upstream release.
  * Refresh patches.

 -- Michael Biebl <biebl@debian.org>  Mon, 14 Nov 2011 00:07:56 +0100

gtk+3.0 (3.2.1-2) experimental; urgency=low

  * debian/control.in:
    - Move gtk-doc-tools from Build-Depends-Indep to Build-Depends as it is
      required by autoreconf. Also bump it to (>= 1.11).

 -- Michael Biebl <biebl@debian.org>  Sat, 22 Oct 2011 00:30:44 +0200

gtk+3.0 (3.2.1-1) experimental; urgency=low

  [ Sjoerd Simons ]
  * New upstream release
  * debian/control.in: Update build-depends
  * debian/rules: Bump libgail SHVER depends
  * d/p/002_static-linking-dont-build-perf.patch: Removed, fixed upstream
  * d/p/030_xim-modules.patch: Removed, fixed upstream
  * d/p/045_trayicon-visual.patch: Removed, fixed upstream
  * d/p/003_gdk.pc_privates.patch: Refreshed
  * d/p/043_notebook_scroll.patch: Refreshed
  * d/p/044_tracker_fts.patch: Refreshed
  * debian/rules: Enable gtk-doc build with the shared build

  [ Michael Biebl ]
  * debian/watch:
    - Track .xz tarballs.
  * debian/control.in:
    - Set pkg-gnome-maintainers@lists.alioth.debian.org as Maintainer.
    - Instead of depending on lynx | www-browser, make the -doc packages
      suggest devhelp.

  [ Sjoerd Simons ]
  * debian/libgtk-3-0.symbols: Update symbols
  * Remove libgail-3-common package. Modules have been integrated directly into
    Gtk
  * debian/patches/70-Fix-document-generation-in-out-of-tree-builds.patch:
    + Added, fix documentation when build out of tree

 -- Sjoerd Simons <sjoerd@debian.org>  Fri, 21 Oct 2011 19:36:06 +0200

gtk+3.0 (3.0.12-3) unstable; urgency=low

  * 030_xim-modules.patch: stolen from upstream git. Fix the behavior of
    XIM modules. Closes: #633720.
  * 043_notebook_scroll.patch: handle a few more widgets to avoid
    alt+scroll being intercepted by ranges, spin buttons, combo boxes…

 -- Josselin Mouette <joss@debian.org>  Thu, 08 Sep 2011 13:01:03 +0200

gtk+3.0 (3.0.12-2) unstable; urgency=low

  [ Josselin Mouette ]
  * Tighten dependencies on libgtk-3-common. Closes: #636766.

  [ Michael Biebl ]
  * debian/patches/045_trayicon-visual.patch: Fix assertion in trayicon-x11
    when visual is not available. Thanks to Vincent Bernat for the patch.
    Closes: #637067
  * debian/libgail-3-0.symbols: Remove trailing empty line which confuses
    dpkg-gensymbols.
  * Bump debhelper compatibility level to 8.

 -- Michael Biebl <biebl@debian.org>  Tue, 30 Aug 2011 01:57:26 +0200

gtk+3.0 (3.0.12-1) unstable; urgency=low

  * New upstream release.
    - GdkKeymap: Prevent an infinite loop in the non-XKB case.
      (Closes: #633917)
  * Stop installing libtool .la files.

 -- Michael Biebl <biebl@debian.org>  Thu, 28 Jul 2011 12:45:04 +0200

gtk+3.0 (3.0.11-1) unstable; urgency=low

  * New upstream release.
    - Fixes infinite-loop in GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER.
      (Closes: #628457)
  * debian/patches/044_tracker_fts.patch: Enable Tracker full text search.

 -- Michael Biebl <biebl@debian.org>  Thu, 14 Jul 2011 14:45:24 +0200

gtk+3.0 (3.0.10-1) unstable; urgency=low

  [ Josselin Mouette ]
  * libgtk-3-0.postrm.in: fix badly written test.

  [ Fabian Greffrath ]
  * Remove leftover diversions from the libgtk3.0-bin package
    that got replaced by libgtk-3-bin (Closes: #617662 ).

  [ Michael Biebl ]
  * debian/watch: Switch to .bz2 tarballs.
  * New upstream release.
  * Refresh patches.
  * Bump Standards-Version to 3.9.2. No further changes.
  * Drop Build-Depends on dpkg-dev (>= 1.13.19). Even lenny has a more recent
    version.
  * Update package descriptions.
  * Drop debian/gruik2devhelp.awk and Build-Depends on gawk, obsolete.

  [ Josselin Mouette ]
  * 043_notebook_scroll.patch: new patch. Reintroduce tab scrolling in
    GtkNotebook, but this time only when Alt is pressed, as recommended
    by upstream, and from the whole notebook area.
  * Drop debhelper 8 requirement so that it can build.
  * libgtk-3-bin.preinst: only remove libgtk3.0-bin diversions if they
    already exist.

 -- Josselin Mouette <joss@debian.org>  Sat, 04 Jun 2011 22:51:06 +0200

gtk+3.0 (3.0.8-1) unstable; urgency=low

  * Make the -dev package depend on the gir package.
  * New upstream release.
  * Drop the mimeinfo.cache from the udeb, it’s been moved to
    gdk-pixbuf.
  * Upload to unstable; drop check-dist include.

 -- Josselin Mouette <joss@debian.org>  Sun, 10 Apr 2011 18:29:44 +0200

gtk+3.0 (3.0.6-1) experimental; urgency=low

  * New upstream release.
    + debian/libgtk-3-0.symbols:
      - Updated.
  * debian/control.in:
    + Tighten libatk1.0-dev b-d to make sure we get an Atk-1.0.gir file.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Sat, 26 Mar 2011 00:00:41 +0000

gtk+3.0 (3.0.3-1) experimental; urgency=low

  * New upstream release.
    + debian/control.in:
      - Bump minimum libpango1.0-dev dependency.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Mon, 14 Mar 2011 23:34:09 +0000

gtk+3.0 (3.0.2-1) experimental; urgency=low

  * New upstream release
  * debian/patches/080_prevent_invalid_free.patch
    - Removed. fixed upstream

 -- Sjoerd Simons <sjoerd@debian.org>  Wed, 09 Mar 2011 23:46:48 +0000

gtk+3.0 (3.0.1-2) experimental; urgency=low

  * debian/patches/080_prevent_invalid_free.patch
    - Added. Prevent invalid free on double/tripple click events (from upstream
      git)

 -- Sjoerd Simons <sjoerd@debian.org>  Sat, 26 Feb 2011 16:02:13 +0000

gtk+3.0 (3.0.1-1) experimental; urgency=low

  [ Robert Ancell ]
  * debian/libgtk-3-bin.postrm:
  * debian/libgtk-3-bin.preinst:
    - Fix package name used in diversion

  [ Emilio Pozuelo Monfort ]
  * New upstream release.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Tue, 22 Feb 2011 20:36:55 +0000

gtk+3.0 (3.0.0-1) experimental; urgency=low

  [ Emilio Pozuelo Monfort ]
  * New upstream release.
    + debian/control.in:
      - Stop building the pixbuf package, it hasn't been ported to the
        new style API so is useless.
    + debian/patches/006_reenable_pixbuf_engine.patch:
      - Removed, no longer necessary.
    + debian/libgtk3.0-0.symbols:
      - Updated.
    + debian/libgtk3.0-dev.install.in,
      debian/libgtk3.0-dev.manpages,
      debian/rules:
      - gtk-builder-convert is gone, stop shipping it.

  [ Robert Ancell ]
  * New upstream release
  * Rename binary packages to new so naming
  * debian/control:
    - Bump build-depends on libglib2.0-dev, libgdk-pixbuf2.0-dev, libatk1.0-dev,
      gobject-introspection
  * debian/libgail-3-0.symbols:
  * debian/libgtk-3-0.symbols:
    - Updated
    - Mark symbols with stable version number
  * debian/rules:
    - Bump SHVER

  [ Emilio Pozuelo Monfort ]
  * Fix some leftovers after the renaming.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Sat, 19 Feb 2011 11:40:36 +0000

gtk+3.0 (2.99.2-1) experimental; urgency=low

  * New upstream release.
    + d/p/0001-stylecontext-Protect-the-cairo-contexts-with-cairo_s.patch
      d/p/0003-Fixed-assertions-in-gtk_cell_renderer_get_aligned_ar.patch
      d/p/0002-_gtk_cell_area_set_cell_data_func_with_proxy-set-the.patch
      - Removed, included upstream.
    + debian/libgtk3.0-0.symbols:
      - Updated.
    + debian/rules:
      - Bumped the shver.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Thu, 13 Jan 2011 18:36:27 +0000

gtk+3.0 (2.99.1-1) experimental; urgency=low

  [ Robert Ancell ]
  * debian/control.in:
    - Bump build-depends on libglib2.0-dev
  * debian/libgtk3.0-0.symbols:
    - Updated.
  * debian/libgtk3.0-dev.install.in
    - gdkconfig.h no longer distributed
  * debian/rules:
    - Bumped the shver.
  * debian/patches/001_static-linking-dont-query-immodules.patch:
  * debian/patches/005_support_disabling_x11_extensions.patch:
  * debian/patches/003_gdk.pc_privates.patch:
  * debian/patches/070_mandatory-relibtoolize.patch:
  * debian/patches/041_ia32-libs.patch:
  * debian/patches/002_static-linking-dont-build-perf.patch:
  * debian/patches/004_git_add_missing_include.patch:
  * debian/patches/042_treeview_single-focus.patch:
    - Refreshed.

  [ Emilio Pozuelo Monfort ]
  * New upstream release.
    + debian/rules:
      - Pass --enable-xinput instead of --with-xinput=yes.
      - Bump the shver.
    + debian/patches/004_git_add_missing_include.patch,
      debian/patches/005_support_disabling_x11_extensions.patch,
      debian/patches/007-continue-to-install-gdk-TARGET-3.0.pc.patch:
      - Removed, included upstream.
    + debian/patches/061_use_pdf_as_default_printing_standard.patch:
      - Removed. The cups backend part has been fixed upstream in a (better)
        different way, and the lpr part doesn't make sense as we don't know
        if the job will be sent to CUPS or not.
    + debian/patches/070_mandatory-relibtoolize.patch,
      debian/rules:
      - Switch to dh-autoreconf.
    + debian/patches/*:
      - Refreshed.
    + debian/libgtk3.0-0.symbols,
      debian/libgail3.0-0.symbols:
      - Updated.
    + debian/libgtk3.0-*.{install.in,manpages},
      debian/rules:
      - Install manpages and binaries with the -3.0 suffix as upstream has
        stopped doing so.
  * Switch to CDBS' flavours system.
  * debian/rules:
    + Remove hack to build on PowerPC64. That port is dead, and if it's
      ever back, hopefully we won't need to workaround toolchain issues.
    + Pass -O1 to the linker so dynamic loading is faster.
  * d/patches/0001-stylecontext-Protect-the-cairo-contexts-with-cairo_s.patch
    d/patches/0003-Fixed-assertions-in-gtk_cell_renderer_get_aligned_ar.patch
    d/patches/0002-_gtk_cell_area_set_cell_data_func_with_proxy-set-the.patch
    + Backport patches from upstream git. They fix rendering issues and
      assertion failures.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Wed, 12 Jan 2011 22:06:17 +0000

gtk+3.0 (2.91.6-1) experimental; urgency=low

  * New upstream release.
    + debian/patches/004_git_dont_setup_timeout_twice.patch:
      - Removed, included upstream.
    + debian/patches/004_git_add_missing_include.patch:
      - New patch from upstream git, add a missing include that
        otherwise caused the build to fail when disabling X extensions.
    + debian/patches/006_reenable_pixbuf_engine.patch:
      - New patch. Build the pixbuf engine even if it hasn't been ported to
        the new GtkThemingEngine API.
    + debian/patches/*:
      - Refreshed.
    + debian/libgtk3.0-0.symbols:
      - Updated.
      - Add Build-Depends-Package.
    + debian/rules:
      - Bumped the shver.
      - Disable silent builds.
  * Let gir1.2-gtk-3.0 replace gir1.0-gtk-3.0.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Sat, 18 Dec 2010 16:00:23 +0000

gtk+3.0 (2.91.5-2) experimental; urgency=low

  * debian/control.in,
    debian/rules:
    + Remove the chrpath hack, it's been fixed in libtool.
  * Update to the new gir policy:
    - Rename gir1.0-gtk-3.0 to gir1.2-gtk-3.0.
    - Bump the gobject-introspection build dependency.
    - Build depend on gir1.2 packages.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Sun, 12 Dec 2010 16:03:02 +0100

gtk+3.0 (2.91.5-1) experimental; urgency=low

  * New upstream release.
    + debian/patches/004_gtk_gir_build.patch:
      - Removed, fixed upstream.
    + debian/patches/004_git_dont_setup_timeout_twice.patch:
      - New patch from upstream git, don't setup a timeout in
        gtkspinners twice.
    + debian/patches/070_mandatory-relibtoolize.patch:
      - Updated.
    + debian/libgtk3.0-0.symbols:
      - Updated.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Tue, 30 Nov 2010 23:13:17 +0100

gtk+3.0 (2.91.4-2) experimental; urgency=low

  [ Laurent Bigonville ]
  * debian/watch: Bump version to 3

  [ Emilio Pozuelo Monfort ]
  * Add gir1.0-gtk-3.0, based on the gir1.0-gtk-2.0 Ubuntu patch.
  * debian/patches/004_gtk_gir_build.patch:
    + Fix the introspection build.
  * debian/patches/070_mandatory-relibtoolize.patch:
    + Updated.

  [ Sjoerd Simons ]
  * Update build-depends to properly depend on -dev packages with .gir
  * Target experimental

 -- Sjoerd Simons <sjoerd@debian.org>  Sat, 27 Nov 2010 17:01:51 +0000

gtk+3.0 (2.91.4-1) experimental; urgency=low

  * debian/libgtk3.0-common.install:
    + Ship the GSettings schemas.
  * New upstream release.
    + debian/control.in:
      - Bump glib2.0 build requirement.
    + debian/patches/*:
      - Refreshed.
  * debian/libgtk3.0-bin.{preinst,postrm}:
    + Add #DEBHELPER# token. Make errors fatal with set -e.
  * debian/rules:
    + Exclude .in files from the dh_installdocs call, so that
      it picks the real .doc-base files and not the .in ones.
  * debian/libgtk3.0-doc.doc-base.gdk{,.in}:
    + Don't hardcode the package name, generate it at build time.
  * debian/libgail3.0-doc.doc-base.gail-reference:
    + Fix paths to the manual.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Tue, 16 Nov 2010 06:30:33 +0100

gtk+3.0 (2.91.3-1) experimental; urgency=low

  [ Sebastian Dröge ]
  * Initial GTK+ 3 packaging.

  [ Rico Tzschichholz ]
  * New upstream development release
  * some fixes and changes

  [ Sjoerd Simons ]
  * New upstream release (2.91.3)
  * debian/patches/009_gtk-export-filechooser.patch:
    + Removed. Doesn't apply anymore and was only needed for hildon
  * Update build-depends to cairo >= 1.10.0 and glib-2.0 >= 2.27.0
  * debian/patches/070_mandatory-relibtoolize.patch
    + Updated
  * Update the faq/tutorial index files names
  * debian/control.in:
    + Add dependency on docbook-utils for db2html to generate the documentation
      html during build
  * Update the symbols file
  * Version various document index files so they don't conflict with their
    gtk2 flavour
  * debian/libgtk3-bin.preinst, debian/libgtk3-bin.postrm:
    + Divert gtk+2.0's update-icon-caches. The format remained the same so this
      is safe to do
  * debian/ruels, libtk3.0-doc.*: Tutorial and FAQ have been removed from the
    gtk source as they were updated, stop trying to install them
  * debian/libgail3.0-doc.doc-base.gail-reference
    + Rename the doc-base to gail-reference-3.0 to not conflict with
      libgail3.0-doc
  * debian/copyright updated/rewritten

 -- Sjoerd Simons <sjoerd@debian.org>  Sun, 07 Nov 2010 20:45:46 +0000

gtk+2.0 (2.21.5-1) experimental; urgency=low

  * New upstream development release:
    + debian/control.in,
      debian/rules,
      debian/*:
      - Remove all mentions of gdk-pixbuf and (build-) depend on it.
    + debian/libgtk2.0-0.postinst.in,
      debian/libgtk2.0-0.postrm.in,
      debian/libgtk2.0-0.triggers.in,
      debian/dh_gtkmodules.in:
      - Handle immodules by triggers and deprecate dh_gtkmodules.
    + debian/patches/*:
      - Refreshed.
      - Remove gdk-pixbuf and immodule patches.
    + debian/rules,
      debian/libgtk2.0-0.symbols:
      - Update for new API symbols.
    + debian/update-gdkpixbuf-loaders*,
      debian/update-gtk-immodules*:
      - Drop module update scripts which are no-ops since 2.10.1.

 -- Sebastian Dröge <slomo@debian.org>  Thu, 22 Jul 2010 21:01:09 +0200

gtk+2.0 (2.21.2-1) experimental; urgency=low

  * New upstream development release:
    + debian/rules,
      debian/libgtk2.0-0.symbols:
      - Update for new API symbols.
    + debian/patches/070_mandatory-relibtoolize.patch:
      - Regenerated for the new version.
    + debian/control.in:
      - Update GLib (build-) dependency to >= 2.25.8.

 -- Sebastian Dröge <slomo@debian.org>  Fri, 11 Jun 2010 12:19:30 +0200

gtk+2.0 (2.21.1-1) experimental; urgency=low

  * New upstream development release:
    + debian/rules,
      debian/libgtk2.0-0.symbols:
      - Update for new API symbols.
    + debian/patches/070_mandatory-relibtoolize.patch:
      - Regenerated for the new version.

 -- Sebastian Dröge <slomo@debian.org>  Mon, 31 May 2010 09:45:32 +0200

gtk+2.0 (2.21.0-1) experimental; urgency=low

  * New upstream development release:
    + debian/rules,
      debian/libgtk2.0-0.symbols:
      - Update for new API symbols.
    + debian/patches/002_static-linking-dont-build-perf.patch:
      - Refreshed.
    + debian/patches/070_mandatory-relibtoolize.patch:
      - Regenerated for the new version.

 -- Sebastian Dröge <slomo@debian.org>  Sat, 08 May 2010 08:20:19 +0200

gtk+2.0 (2.20.1-1) unstable; urgency=low

  * New upstream bugfix release:
    + debian/patches/006_support-for-tracker-0.8-stable-releases.patch:
      - Dropped, merged upstream.
    + debian/patches/003_gdk.pc_privates.patch:
      - Updated to apply cleanly again.
    + debian/patches/070_mandatory-relibtoolize.patch:
      - Regenerated for the new version.

 -- Sebastian Dröge <slomo@debian.org>  Mon, 03 May 2010 07:26:14 +0200

gtk+2.0 (2.20.0-3) unstable; urgency=low

  * debian/control.in
    - Add Vcs-* fields.
    - Add Homepage field.
  * debian/patches/006_support-for-tracker-0.8-stable-releases.patch
    - Add support for tracker 0.8 stable and future 0.9 releases. Also add
      support for loading the search engines on demand until they are actually
      needed. Patch is backported from upstream Git branch "tracker-0.8".
  * Refresh patches to apply cleanly.

 -- Michael Biebl <biebl@debian.org>  Wed, 14 Apr 2010 20:39:28 +0200

gtk+2.0 (2.20.0-2) unstable; urgency=low

  * Upload to unstable.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 31 Mar 2010 09:16:00 +0200

gtk+2.0 (2.20.0-1) experimental; urgency=low

  [ Emilio Pozuelo Monfort ]
  * debian/rules,
    debian/control.in,
    debian/libgtk-directfb-2.0-0.*,
    debian/libgtk-directfb-2.0-dev.*,
    debian/patches/090_directfb-map-virtual-modifiers.patch,
    debian/patches/series:
    - Drop the DirectFB enabled GTK+ packages. They were needed for the
      graphical installer but it's now switching to X11 so we don't need
      them anymore.
  * debian/rules:
    - Move --with-xinput=yes and --with-libjasper to configure_flags
      since they are common to all of our flavours.

  [ Sebastian Dröge ]
  * New upstream stable release:
    + debian/patches/070_mandatory-relibtoolize.patch:
      - Regenerated for the new version.
    + debian/rules,
      debian/libgtk2.0-0.symbols:
      - Update SHVER to 2.20.0 for the new API to force dependencies
        on the stable version.
    + debian/control.in:
      - Update GLib build dependency and tighten some -dev package dependencies.
    + debian/patches/003_gdk.pc_privates.patch:
      - Updated to apply cleanly again.

 -- Sebastian Dröge <slomo@debian.org>  Tue, 23 Mar 2010 15:55:56 +0100

gtk+2.0 (2.19.7-3) experimental; urgency=low

  * debian/control.in:
    - Build depend on xsltproc, needed to generate the mime cache.
      It was brought indirectly by gtk-doc-tools, but that's on
      Build-Depends-Indep which isn't enough.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Tue, 16 Mar 2010 15:30:32 +0100

gtk+2.0 (2.19.7-2) experimental; urgency=low

  [ Cyril Brulebois ]
  * Switch udeb from DirectFB to Xlib to prepare the move to an X11-based
    graphical installer. Closes: #573872.
     - Replace libgtk-directfb-2.0-0-udeb with libgtk-x11-udeb in control
       file.
     - Update description accordingly.
     - Update .install.in accordingly, using the “shared_udeb” flavour,
       based on the “shared” one, but with a few X11 extensions disabled.
     - Update package name and file paths accordingly in rules file.
  * Version/Bump some B-D to make sure the udeb gets proper dependencies
    on the recently reworked/added udebs:
     - libx11-dev
     - libxcursor-dev
     - libxext-dev
     - libxi-dev
     - libxinerama-dev
     - libxrender-dev
  * Add one patch to make it possible to disable X11 extensions, and
    refresh the other one accordingly:
     - 005_support_disabling_x11_extensions.patch
     - 070_mandatory-relibtoolize.patch
  * Ship a minimal MIME database in the udeb, since the loaders mechanism
    isn’t sufficient to get proper PNG support:
     - Add shared-mime-info to Build-Depends to ensure that the
       update-mime-database tool is available at build-time, as well as
       the source freedesktop.org.xml file.
     - Add debian/keep-png-only.xsl to only keep the mime-type matching
       type="image/png". Matching with namespaces is tricky, see the
       comments in the XSL file for the details.
     - Build a MIME cache, and only ship the resulting mime.cache file
       under /usr/share/mime in the udeb.
     - While this is dirty, that should do the trick until it is needed
       for shared-mime-info to ship its own udeb.

  [ Emilio Pozuelo Monfort ]
  * Rename the udeb to libgtk2.0-0-udeb.
  * Standards-Version is 3.8.4, no changes needed.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Tue, 16 Mar 2010 01:01:48 +0100

gtk+2.0 (2.19.7-1) experimental; urgency=low

  * New upstream development release:
    + debian/patches/070_mandatory-relibtoolize.patch:
      - Regenerated for the new version.

 -- Sebastian Dröge <slomo@debian.org>  Fri, 12 Mar 2010 15:59:27 +0100

gtk+2.0 (2.19.6-1) experimental; urgency=low

  * New upstream development release:
    + debian/patches/070_mandatory-relibtoolize.patch:
      - Regenerated for the new version.
    + debian/rules,
      debian/libgtk-directfb-2.0-0.symbols,
      debian/libgtk2.0-0.symbols:
      - Update SHVER to 2.19.6 for the new API and add new symbols.
  * debian/patches/090_directfb-map-virtual-modifiers.patch:
    + Update to add just another stub to fix the build.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 24 Feb 2010 10:01:31 +0100

gtk+2.0 (2.19.5-1) experimental; urgency=low

  * New upstream development release:
    + debian/patches/070_mandatory-relibtoolize.patch:
      - Regenerated for the new version.
    + debian/rules,
      debian/libgtk-directfb-2.0-0.symbols,
      debian/libgtk2.0-0.symbols:
      - Update SHVER to 2.19.5 for the new API and add new symbols.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 10 Feb 2010 09:38:52 +0100

gtk+2.0 (2.19.4-1) experimental; urgency=low

  * New upstream development release:
    + debian/patches/070_mandatory-relibtoolize.patch:
      - Regenerated for the new version.
    + debian/rules,
      debian/libgtk-directfb-2.0-0.symbols,
      debian/libgtk2.0-0.symbols:
      - Update SHVER to 2.19.4 for the new API and add new symbols.

 -- Sebastian Dröge <slomo@debian.org>  Tue, 26 Jan 2010 08:25:41 +0100

gtk+2.0 (2.19.3-1) experimental; urgency=low

  * New upstream development release:
    + debian/patches/070_mandatory-relibtoolize.patch:
      - Regenerated for the new version.
    + debian/rules,
      debian/libgtk-directfb-2.0-0.symbols,
      debian/libgtk2.0-0.symbols:
      - Update SHVER to 2.19.3 for the new API and add new symbols.
    + debian/patches/091_size_allocate_crash.patch:
      - Dropped, merged upstream.

 -- Sebastian Dröge <slomo@debian.org>  Mon, 11 Jan 2010 20:36:25 +0100

gtk+2.0 (2.19.2-2) experimental; urgency=low

  * debian/patches/091_size_allocate_crash.patch:
    + Patch from upstream GIT to fix a crash on size allocations.
      Thanks to Sebastien Bacher.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 06 Jan 2010 11:42:07 +0100

gtk+2.0 (2.19.2-1) experimental; urgency=low

  [ Emilio Pozuelo Monfort ]
  * debian/patches/000_gtk+-2.0.6-exportsymbols.patch:
    + Removed, it wasn't being applied and hasn't been relevant for a
      long time.

  [ Sebastian Dröge ]
  * New upstream development release:
    + debian/patches/070_mandatory-relibtoolize.patch:
      - Regenerated for the new version.
    + debian/rules,
      debian/libgtk-directfb-2.0-0.symbols,
      debian/libgtk2.0-0.symbols:
      - Update SHVER to 2.19.2 for the new API and add new symbols.
  * debian/patches/090_directfb-map-virtual-modifiers.patch:
    + Fix compilation of the DirectFB backend, patch adapted from
      upstream commit to fix the Quartz backend.

 -- Sebastian Dröge <slomo@debian.org>  Mon, 04 Jan 2010 10:43:48 +0100

gtk+2.0 (2.19.1-1) experimental; urgency=low

  * New upstream development release:
    + debian/rules:
      - Include check-dist.mk to prevent accidental uploads to unstable.
    + debian/control.in:
      - Update ATK build dependency.
    + debian/rules,
      debian/libgtk-directfb-2.0-0.symbols,
      debian/libgtk2.0-0.symbols:
      - Update SHVER to 2.19.1 for the new API and add new symbols.
    + debian/patches/009_gtk-export-filechooser.patch,
      debian/patches/021_loader-files-d.patch:
      - Updated to apply cleanly again.
    + debian/patches/070_mandatory-relibtoolize.patch:
      - Regenerated for the new version.

 -- Sebastian Dröge <slomo@debian.org>  Tue, 01 Dec 2009 15:28:10 +0100

gtk+2.0 (2.18.4-1) unstable; urgency=low

  * New upstream bugfix release:
    + debian/patches/070_mandatory-relibtoolize.patch:
      - Updated for the new version.
    + debian/patches/091_dont-omit-gtk-icon-size-dialog.patch,
      debian/patches/092_gtk-image-size-allocation.patch:
      - Dropped, merged upstream.

 -- Sebastian Dröge <slomo@debian.org>  Tue, 01 Dec 2009 07:46:18 +0100

gtk+2.0 (2.18.3-1) unstable; urgency=low

  * New upstream bugfix release:
    + debian/patches/070_mandatory-relibtoolize.patch:
      - Updated for the new version.
  * debian/patches/091_dont-omit-gtk-icon-size-dialog.patch:
    + Patch from upstream GIT to not omit GTk_ICON_SIZE_DIALOG
      when searching for an appropiate icon size.
  * debian/patches/092_gtk-image-size-allocation.patch:
    + Patch from upstream GIT to fix size allocation of GtkImage.

 -- Sebastian Dröge <slomo@debian.org>  Sun, 18 Oct 2009 13:23:44 +0200

gtk+2.0 (2.18.2-1) unstable; urgency=low

  * New upstream bugfix release:
    + debian/patches/070_mandatory-relibtoolize.patch:
      - Updated for the new version.
    + 090_directfb-backend-compilation-fix.patch:
      - Dropped, merged upstream.

 -- Sebastian Dröge <slomo@debian.org>  Tue, 06 Oct 2009 07:41:45 +0200

gtk+2.0 (2.18.1-1) unstable; urgency=low

  * New upstream bugfix release:
    + debian/patches/070_mandatory-relibtoolize.patch:
      - Updated for the new version.
    + 090_directfb-backend-compilation-fix.patch:
      - Fix compilation of the DirectFB backend, see
        https://bugzilla.gnome.org/show_bug.cgi?id=596959

 -- Sebastian Dröge <slomo@debian.org>  Thu, 01 Oct 2009 07:20:43 +0200

gtk+2.0 (2.18.0-1) unstable; urgency=low

  * New upstream stable release:
    + debian/rules,
      debian/*.symbols:
      - Updated for the new version.
    + debian/patches/005_gdk_directfb_window_new.patch:
      - Dropped, merged upstream.
    + debian/patches/070_mandatory-relibtoolize.patch:
      - Updated for the new version.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 23 Sep 2009 06:36:41 +0200

gtk+2.0 (2.17.11-1) experimental; urgency=low

  * New upstream development release:
    + debian/patches/070_mandatory-relibtoolize.patch:
      - Updated for the new version.
    + debian/rules,
      debian/*.symbols:
      - Updated for the new version.

 -- Sebastian Dröge <slomo@debian.org>  Sat, 05 Sep 2009 07:16:24 +0200

gtk+2.0 (2.17.10-1) experimental; urgency=low

  * New upstream development release:
    + debian/patches/070_mandatory-relibtoolize.patch:
      - Updated for the new version.
    + debian/rules,
      debian/*.symbols:
      - Updated for the new version.
  * -

 -- Sebastian Dröge <slomo@debian.org>  Sat, 05 Sep 2009 07:16:21 +0200

gtk+2.0 (2.17.9-1) experimental; urgency=low

  [ Josselin Mouette ]
  * Clean up the .la files in all -dev packages, not only in the main
    one.

  [ Sebastian Dröge ]
  * New upstream development release:
    + debian/patches/070_mandatory-relibtoolize.patch:
      - Updated for the new version.
    + debian/rules,
      debian/*.symbols:
      - Updated for the new version.

 -- Sebastian Dröge <slomo@debian.org>  Tue, 25 Aug 2009 18:37:11 +0200

gtk+2.0 (2.17.8-1) experimental; urgency=low

  [ Emilio Pozuelo Monfort ]
  * New upstream development release.
    - Handle printers needing authentication. Closes: #499759.
    - Update libglib2.0-dev requirement.
  * debian/watch:
    - Don't uupdate.
  * debian/rules:
    - Configure with --with-libjasper, it's disabled by default now.
  * debian/control.in:
    - Remove conflicts and replaces no longer needed for packages in stable.
    - Standards-Version is 3.8.3, no changes needed.
  * debian/patches/005_xpmico.patch:
    - Removed, this check is not needed as HeaderSize can't overflow because
      IconCount will be at most 16 bits, and that multiplied by 16 is not
      enough to overflow an integer. (Checked with upstream)
  * debian/patches/001_static-linking-dont-query-immodules.patch,
    debian/patches/002_static-linking-dont-build-perf.patch:
    - Add headers.
  * debian/patches/005_gdk_directfb_window_new.patch:
    - New patch. Readd gdk_directfb_window_new(), which is exported in the
      public API and was removed by mistake.
  * debian/patches/*
    - Refreshed.
  * debian/libgtk-directfb-2.0-0.symbols,
    debian/libgtk2.0-0.symbols:
    - Updated for the new symbols. There's one symbol removed from the
      directfb backend, gdk_display_pointer_grab(). It wasn't exported in
      the headers, nor was supposed to be public, so if something out there
      is using it, they are doing it wrong.
  * debian/rules:
    - Remove a trailing backslash that prevented -c4 to be passed to
      dh_makeshlibs.

 -- Josselin Mouette <joss@debian.org>  Thu, 20 Aug 2009 18:29:04 +0200

gtk+2.0 (2.16.5-1) unstable; urgency=low

  * New upstream bugfix release:
    + debian/patches/070_mandatory-relibtoolize.patch:
      - Regenerated for the new version.

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

gtk+2.0 (2.16.4-1) unstable; urgency=low

  * New upstream bugfix release:
    + debian/patches/070_mandatory-relibtoolize.patch:
      - Regenerated for the new version.

 -- Sebastian Dröge <slomo@debian.org>  Thu, 02 Jul 2009 06:09:04 +0200

gtk+2.0 (2.16.3-1) unstable; urgency=low

  * New upstream bugfix release:
    + debian/patches/070_mandatory-relibtoolize.patch:
      - Regenerated for the new version.
  * debian/control.in:
    + Update Standards-Version to 3.8.2.

 -- Sebastian Dröge <slomo@debian.org>  Mon, 29 Jun 2009 11:39:01 +0200

gtk+2.0 (2.16.2-1) unstable; urgency=low

  [ Loic Minier ]
  * Fix string concat in dh_gtkmodules; thanks Kanru Chen; closes: #528782.

  [ Sebastian Dröge ]
  * New upstream bugfix release:
    + debian/patches/091_workaround_no_gtk_init_incorrect_display.patch:
      - Dropped, merged upstream.
    + debian/patches/070_mandatory-relibtoolize.patch:
      - Regenerated for the new version.
    + debian/*.install:
      - Install the manpages from their source locations as
        they're not installed anymore for some reason.
  * debian/control.in:
    + Updated Standards-Version to 3.8.1, no additional changes needed.

 -- Sebastian Dröge <slomo@debian.org>  Tue, 02 Jun 2009 07:44:43 +0200

gtk+2.0 (2.16.1-2) unstable; urgency=low

  [ Loic Minier ]
  * Fix test-print-backend configure flag addition.
  * Set opt_configure_flags to $(shared_configure_flags) in the sample opt
    flavor for armel and move the opt flavor and check flavors below the
    definition of other flags.

 -- Josselin Mouette <joss@debian.org>  Thu, 16 Apr 2009 18:08:02 +0200

gtk+2.0 (2.16.1-1) experimental; urgency=low

  [ Loic Minier ]
  * Clarify dh_gtkmodules doc slightly.

  [ Gustavo Noronha Silva ]
  * debian/series:
  - forgot to add 022_disable-viqr-im-for-vi-locale.patch and
    061_use_pdf_as_default_printing_standard.patch to the series file
    (thanks to seb128 for noticing)
  * debian/control.in:
  - sync Replaces with ubuntu's package for easier migration from Ubuntu
    to Debian ;)

  [ Josselin Mouette ]
  * Make update-icon-caches always generate the cache, now that dh_icons
    is widespread.

  [ Sebastian Dröge ]
  * debian/libgtk-directfb-2.0-0.symbols,
    debian/libgtk2.0-0.symbols,
    debian/libgail18.symbols,
    debian/rules:
    + Add symbol files for GTK.

  [ Loic Minier ]
  * Merge the following changes by Emmet Hikory:

  [ Emmet Hikory ]
  * Port optimised flavor work by Loic Minier from pango1.0:
    - Rework flavor-specific vars.
      + Introduce $(flavor) which is set to $* to clarify implicit rules
      + Rename common_configure_flags to configure_flags
      + Introduce the flavor_get macro to use a flavor specific override or
        fallback to the common defaults for make vars.
      + Use $(call flavor_get, ) to retrieve configure_flags, CFLAGS, and
        LDFLAGS allowing to override these per flavor.
    - Add support for an optimised pass, implemented as a flavor
      + Define a default OPTLIBDIR and replace it in the sed foo for %.in
        files; this is like LIBDIR, but with some hwcaps extension, e.g.
        usr/lib/vfp.
      + Add vars to build an optimised vfp flavour for armel with
        additional CFLAGS
      + Add the "opt" special flavor to flavors to run the testuites on,
        CHECK_FLAVORS
      + Also sed and append %.opt after %.in when generating $ files from
        %.in; the %.opt file is optional and only included if the opt flavor
        is included.
      + Add a debian/libgtk2.0-0.install.opt which lists files from the
        optimised flavor to install in libgtk2.0-0.
      + Add a debian/libgail18.install.opt which lists files from the
        optimised flavor to install in libgail18.

  [ Loic Minier ]
  * Only pass -j to the main make call, do not parallelize the debian/rules
    themselves as it seems to be racy for an unidentified reason which is hard
    to reproduce.
  * Merge patch below from Ubuntu.

  [ Sebastien Bacher ]
  * debian/patches/093_git_change_fix_focus_issue.patch:
    - upstream git change to fix a timestamp issue leading to get nautilus.
      dialog opening sometime unfocussed for example (lp: #333366)

  [ Loic Minier ]
  * Build-dep on autotools-dev for the config.guess / .sub updates to work.
  * Drop duplicate Section/Priority fields.
  * ppc64: use DEB_HOST_GNU_CPU instead of BUILD; drop TODOs, the current
    implementation is correct.

  [ Sebastian Dröge ]
  * New upstream bugfix release:
    + debian/patches/070_mandatory-relibtoolize.patch:
      - Regenerated for the new version.
    + debian/patches/072_workaround_directfb_build.patch,
      debian/patches/092_fix_printtest_include.patch,
      debian/patches/093_git_change_fix_focus_issue.patch:
      - Dropped, merged upstream.

 -- Sebastian Dröge <slomo@debian.org>  Sun, 12 Apr 2009 11:21:58 +0200

gtk+2.0 (2.16.0-1) experimental; urgency=low

  [ Emilio Pozuelo Monfort ]
  * Let libgtk2.0-0 suggest gvfs, as it's needed for some APIs like
    gtk_show_uri.

  [ Josselin Mouette ]
  * libgtk2.0-0 depends on shared-mime-info. Closes: #518090.
  * Add dependent doc packages to b-d-i to ensure proper xrefs.

  [ Loic Minier ]
  * Clean up dh_gtkmodules output:
    - Demote warnings when skipping non-existent GtkPixbuf loaders and Gtk IM
      modules dirs to verbose_print(); use -v to see them.
    - Always print the number of GdkPixbuf loaders and Gtk IM modules found in
      each package.

  [ Emilio Pozuelo Monfort ]
  * New upstream stable release.
    - Bump shlibs.
    - debian/patches/070_mandatory-relibtoolize.patch: regenerated.
  * Ship the gtk-builder-convert manpage in libgtk2.0-dev.
  * Section of dbg packages is debug.

 -- Emilio Pozuelo Monfort <pochu@ubuntu.com>  Sun, 15 Mar 2009 20:10:34 +0100

gtk+2.0 (2.15.5-2) experimental; urgency=low

  [ Emilio Pozuelo Monfort ]
  * debian/control.in:
  - bump libglib2.0-dev build-dep requirement to >= 2.19.7
  - bump libxrandr-dev build-dep requirement to >= 1:1.2.99
  - also bump libgtk2.0-dev dependecies accordingly
    (Closes: #518078)

  [ Gustavo Noronha Silva ]
  * 042_treeview_single-focus.patch:
  - removed FIXME note, since it was explained to me that the patch is
    still necessary
  * debian/rules:
  - bumped SHVER to 2.15.5

  [ Imported from Ubuntu ]
  * 022_disable-viqr-im-for-vi-locale.patch,
    061_use_pdf_as_default_printing_standard.patch:
  - for the rationale for the PDF for printing one see:
    https://wiki.ubuntu.com/PDFasStandardPrintJobFormat

 -- Gustavo Noronha Silva <kov@debian.org>  Tue, 03 Mar 2009 21:58:20 -0300

gtk+2.0 (2.15.5-1) experimental; urgency=low

  * New upstream development release
  * 070_mandatory-relibtoolize.patch: refreshed.
  * 031_directfb_dead-keys.patch, 032_gdkwindowimpl_directfb.patch,
    033_directfb_client-message.patch, 034_directfb_memleak.patch,
    071_jasper_link_fix.patch, 092_fix_printtest_include.patch:
  - dropped; already featured in this release
  * 030_gtkentry_password-char-circle.patch:
  - dropped; upstream provides a different solution to setting the default
    invisible char now, that takes the font being used into consideration
  * 003_gdk.pc_privates.patch:
  - refreshed

 -- Gustavo Noronha Silva <kov@debian.org>  Mon, 02 Mar 2009 22:01:03 -0300

gtk+2.0 (2.14.7-3) experimental; urgency=low

  * 032_gdkwindowimpl_directfb.patch: new version of the patch. This
    should restore the basic functionality of the backend, but there is
    still work underway.
  * 033_directfb_client-message.patch: stolen from the upstream SVN. Fix
    the DirectFB client_message API.
  * 034_directfb_memleak.patch: stolen from the upstream SVN. Fix memory
    leak in the DirectFB code.
  * Require DirectFB 1.0.0 for the 034 patch.
  * 070_mandatory-relibtoolize.patch: updated accordingly.

 -- Josselin Mouette <joss@debian.org>  Sat, 21 Feb 2009 14:59:45 +0100

gtk+2.0 (2.14.7-2) experimental; urgency=low

  * 008_implicit_pointer_conversion_gdkgc_directfb.patch: removed, it’s
    obsolete and just defines the same macro a second time.
  * 007_implicit_pointer_conversion_gdkdrawable_directfb.patch: removed,
    it’s not needed anymore with the latest directfb.
  * 006_proper-directfb-modules.patch: removed from the package, it
    won’t be necessary anymore.
  * 001_static-linking-dont-query-immodules.patch,
    002_static-linking-dont-build-perf.patch,
    003_gdk.pc_privates.patch,
    004_gtk+-ximian-gtk2-filesel-navbutton-5.patch: refreshed.
  * Remove 071_correct_directfb_declarations.patch, and replace it by
    032_gdkwindowimpl_directfb.patch, a patch from Sven Neumann to
    (hopefully) fix DirectFB support for GTK+ 2.14.

 -- Josselin Mouette <joss@debian.org>  Tue, 17 Feb 2009 23:17:56 +0100

gtk+2.0 (2.14.7-1) experimental; urgency=low

  [ Loic Minier ]
  * Don't purge /etc/gtk-2.0/gdk-pixbuf.loaders and /etc/gtk-2.0/gtk.immodules
    during first configuration.

  [ Sebastian Dröge ]
  * New upstream bugfix release:
    + debian/patches/070_mandatory-relibtoolize.patch:
      - Regenerated for the new version.

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

gtk+2.0 (2.14.5-1) experimental; urgency=low

  [ Josselin Mouette ]
  * Really install the faq and tutorial files correctly so that the
    devhelp file is read.
  * Update doc-base files accordingly.
  * gruik2devhelp.awk: new script to generate the devhelp files
    automatically for the FAQ and tutorial, based on the HTML doc.
  * Build-depend on gawk, run the script appropriately.

  [ Sebastian Dröge ]
  * New upstream bugfix release:
    + debian/patches/070_mandatory-relibtoolize.patch:
      - Regenerated for the new version.

 -- Sebastian Dröge <slomo@debian.org>  Tue, 25 Nov 2008 11:00:35 +0100

gtk+2.0 (2.14.4-3) experimental; urgency=low

  * libgail*.install: fix installation paths. Closes: #505105.
  * Do not ship .la files for gail modules.
  * Generate shlibs for libgail.
  * Bump shlibs version to 2.14.0.
  * Do not install libgailutil in libgtk2.0-0.
  * Do not install gtk libs in libgail-dev.
  * Rework docs installation.
  * Add doc links where needed.
  * Install .devhelp files at the correct places. Closes: #504807.
  * Bump dependencies for the development package.
  * Fix dependencies of gail packages.
  * Don’t install libgail in the udeb.
  * Stop shipping /usr/lib/pkgconfig/libgtk-directfb-2.0-0/, nobody uses
    it.
  * Remove versioned conflicts with libgail packages.
  * Remove libgail18.shlibs.
  * Put debugging symbols of libgail modules in libgail-dbg.
  * dh_gtkmodules.in: fix a pod2man error.
  * Disable 006_proper-directfb-modules.patch.
  * Update 070_mandatory_relibtoolize.patch accordingly.

 -- Josselin Mouette <joss@debian.org>  Tue, 11 Nov 2008 14:44:21 +0100

gtk+2.0 (2.14.4-2) experimental; urgency=low

  * debian/control, debian/rules, debian/libgail*:
  - split libgail packages

 -- Gustavo Noronha Silva <kov@debian.org>  Wed, 05 Nov 2008 14:54:08 -0200

gtk+2.0 (2.14.4-1) experimental; urgency=low

  [ Gustavo Noronha Silva ]
  * New upstream release
  * debian/patches/006_proper-directfb-modules.patch:
  - refreshed
  * debian/patches/008_implicit_pointer_conversion_gdkgc_directfb.patch,
    debian/patches/009_gtk-export-filechooser.patch,
    debian/patches/020_immodules-files-d.patch,
    debian/patches/021_loader-files-d.patch,
  - update borrowed from Ubuntu's package
  * debian/patches/071_correct_directfb_declarations.patch,
    debian/patches/072_workaround_directfb_build.patch:
  - borrowed from ubuntu
  * debian/patches/033_treeview_resizing.patch,
    debian/patches/095_gtk-im-module-setting.patch:
  - removed; fixed upstream
  * debian/patches/070_mandatory-relibtoolize.patch:
  - refreshed
  * debian/control.in:
  - added libjasper-dev to the Build-Depends, as GTK+ now supports
    JPEG2000
  - make GTK+ packages conflict/replace with gail ones, since they are now
    included in GTK+
  * debian/patches/092_fix_printtest_include.patch:
  - new patch, to fix build problem in print test
  * debian/patches/071_jasper_link_fix.patch:
  - make gdk-pixbuf-csource link correctly with libjasper
  * debian/rules, debian/control:
  - newer libcairo2-dev contains everything needed to build the directfb
    target, so disable building with the dummy libcairo-directfb2-dev
  - this makes us have to build depend on libcairo2-dev >= 1.6.4-6.1

  [ Loic Minier ]
  * Let libgtk2.0-dev recommend debhelper for dh_gtkmodules.
  * Let libgtk2.0-dev depend on libxml2-utils as it's required for
    gtk-builder-convert to work and might be relied upon by packages bdeping
    on libgtk2.0-dev.

  [ Emilio Pozuelo Monfort ]
  * Update build-dependencies for the new version:
    - libglib2.0-dev >= 2.17.6
    - libpango1.0-dev >= 1.20
    - libatk1.0-dev >= 1.13.0
    - libcairo2-dev >= 1.6.0

 -- Gustavo Noronha Silva <kov@debian.org>  Wed, 24 Sep 2008 21:38:58 -0300

gtk+2.0 (2.12.11-3) unstable; urgency=low

  * 031_directfb_dead-keys.patch: patch from Jérémy Bobbio to fix dead
    keys in the DirectFB backend. Closes: #394871.
  * Now require DirectFB 0.9.26.
  * 070_mandatory_relibtoolize: updated to match the dependency bump.
  * 033_treeview_resizing.patch:
    + Fix crasher introduced by the patch. Closes: #491611.
    + Add references.

 -- Josselin Mouette <joss@debian.org>  Mon, 21 Jul 2008 15:22:38 +0200

gtk+2.0 (2.12.11-2) unstable; urgency=low

  * 033_treeview_resizing.patch:
    + Enable again, it was disabled by mistake.
    + Update to new version provided by Kristian Rietveld.
      Closes: #471073.
  * libgtk2.0-doc.doc-base.gtk2-tutorial: fix spelling of GTK+.
  * *.doc-base.*: fix doc-base sections.

 -- Josselin Mouette <joss@debian.org>  Fri, 18 Jul 2008 14:53:17 +0200

gtk+2.0 (2.12.11-1) unstable; urgency=low

  [ Emilio Pozuelo Monfort ]
  * Build-depend on libcups2-dev instead of libcupsys2-dev, as cups
    is transitioning to that new name.

  [ Sebastian Dröge ]
  * New upstream bugfix release:
    + debian/patches/070_mandatory-relibtoolize.patch:
      - Regenerated for the new version.
    + debian/patches/092_openoffice-menus.patch:
      - Dropped, merged upstream.
  * debian/control.in:
    + Updated Standards-Version to 3.8.0, no additional changes needed.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 02 Jul 2008 06:37:51 +0200

gtk+2.0 (2.12.10-2) unstable; urgency=low

  * debian/patches/092_openoffice-menus.patch:
    + Patch from upstream SVN to fix regression in menu placement
      in openoffice.org (Closes: #484580).

 -- Sebastian Dröge <slomo@debian.org>  Sat, 07 Jun 2008 10:27:50 +0200

gtk+2.0 (2.12.10-1) unstable; urgency=low

  * New upstream bugfix release:
    + debian/patches/009_gtk-export-filechooser.patch:
      - Updated to apply cleanly again.
    + debian/patches/031_gtksearchenginetracker_fixes.patch,
      debian/patches/061_foreign_colormaps.patch,
      debian/patches/092_implicit-g-fopen.patch:
      - Dropped, merged upstream.
    + debian/patches/070_mandatory-relibtoolize.patch:
      - Regenerated for the new version.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 04 Jun 2008 08:14:08 +0200

gtk+2.0 (2.12.9-4) unstable; urgency=low

  [ Loic Minier ]
  * Flip back gdkpixbuf_module_files_d_str after gdkpixbuf_module_file_str in
    patch 021_loader-files-d; this fixes config of gdk loaders and hence the
    current ia32-libs implementation; the change in 2.12.0-3 was incorrect in
    that it flipped the order for im modules and pixbuf loaders, but only im
    modules had to be flipped; the reason im modules had to be flipped is that
    the first list of modules wins for im modules as there is some duplicate
    checking, while in the case of gdk pixbufs, the last file wins.  What
    remains to be done here is:
    - biarch support, similar to pango, by loading /usr/lib32 and /usr/lib64
      stuff before /usr/lib; allows dropping the config file hack in
      ia32-libs.
    - loading of modules from multiarch locations (not multiarch); allows
      dropping the config file hack in ia32-libs.
  * Bump build-deps and libgtk2.0-dev's deps to ensure we get Xorg dev
    packages with .pc files, see list below; thanks Anon Sricharoenchai;
    closes: #370693.
        libxext-dev >= 1:1.0.1-2, libxinerama-dev >= 1:1.0.1-4.1, libxi-dev >=
        1:1.0.1-4, libxrandr-dev >= 1:1.0.2-2, libxfixes-dev >= 1:3.0.0-3,
        libxcomposite-dev >= 1:0.2.0-3, libxdamage-dev >= 1:1.0.1-3.

  [ Josselin Mouette ]
  * 061_foreign_colormaps.patch: stolen from upstream SVN. Don't call
    XFreeColormap on foreign colormaps, this causes crashes in e.g.
    vinagre. Closes: #477199.
  * Apply multiarch patch by Javier Serrano Polo, replacing all
    occurrences of usr/lib by $(LIBDIR). Closes: #468100.
  * rules: don't compress .sgml and .devhelp files.

  [ Loic Minier ]
  * Fix broken second dh_strip invocation which was not only acting on the
    udeb but also on binary packages (-s -pUDEB should have been -pUDEB).
  * Update patch 021_loader-files-d to use PIXBUF_FILES_LIBDIR which is
    defined in gdk-pixbuf/Makefile.am, similarly to PIXBUF_LIBDIR, and based
    on the newly defined loaderfilesdir, similar to loaderdir; update
    070_mandatory-relibtoolize.
  * New patch, 022_module-files-append-compat-module-files-d, prefer
    /usr/lib32/gtk-2.0/<gtk-binary-version>/loader-files.d and
    /immodule-files.d over the /usr/lib/.../*.d pathnames added in
    020_immodules-files-d and 021_loader-files-d when available; this is
    useful for ia32-libs support; other modules might need additional support
    depending on how they are loaded, for example GTK_MODULES will probably
    still be looked up below libdir, as well as engines, printbackends,
    filesystems, and generic modules.  See also Ubuntu #205223 and #190227 for
    examples.

 -- Loic Minier <lool@dooz.org>  Sun, 11 May 2008 00:47:26 +0200

gtk+2.0 (2.12.9-3) unstable; urgency=low

  [ Loic Minier ]
  * Refresh patches 009_gtk-export-filechooser,
    030_gtkentry_password-char-circle, 033_treeview_resizing,
    042_treeview_single-focus, 060_ignore-random-icons
  * Fix offsets in patch 095_gtk-im-module-setting; thanks Akira TAGOH;
    closes: #473699.

  [ Sebastian Dröge ]
  * debian/rules:
    + Don't include the udeb in the debug package to get a working debug
      package in case the udeb libraries differ from the real ones.

 -- Sebastian Dröge <slomo@debian.org>  Sat, 12 Apr 2008 14:00:22 +0200

gtk+2.0 (2.12.9-2) unstable; urgency=low

  * debian/patches/092_implicit-g-fopen.patch:
    + Include glib/gstdio.h for g_fopen to prevent crashes on 64 bit
      architectures. Thanks to Dann Frazier for the patch (Closes: #470665).

 -- Sebastian Dröge <slomo@debian.org>  Wed, 12 Mar 2008 18:52:53 +0100

gtk+2.0 (2.12.9-1) unstable; urgency=low

  [ Josselin Mouette ]
  * update-icon-caches: always exit with a 0 code to avoid breaking
    upgrades when a cache is corrupt. Display a big fat warning instead.
    Closes: #466083.

  [ Sebastian Dröge ]
  * New upstream bugfix release:
    + 092_recentfiles-recursion-fix, dropped merged upstream.
    + 070_mandatory-relibtoolize.patch, regenerated for the new version.
  * debian/rules,
    debian/*.links.in:
    + Don't ship very old upstream changelogs and news as they're quite large.

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

gtk+2.0 (2.12.8-1) unstable; urgency=low

  * New upstream bugfix release:
    + debian/patches/040_filechooser_single-click.patch,
      debian/patches/093_directfb-type-changes.patch,
      debian/patches/094_directfb-deprecation-fixes.patch:
      - Dropped, merged upstream.
    + debian/patches/070_mandatory-relibtoolize.patch:
      - Regenerated for the new version.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 13 Feb 2008 09:11:50 +0100

gtk+2.0 (2.12.7-1) unstable; urgency=low

  * Fix GNOME casing in gtk-faq and gtk doc base descriptions.
  * Drop cruft trying to convert /usr/share/doc/libgtk2.0-0 directory into a
    symlink in libgtk2.0-0.postinst; thanks Sven Joachim; closes: #462057.
  * New upstream stable release; no API change; bug fixes and translation
    updates.
    - Refresh patches 033_treeview_resizing, 042_treeview_single-focus to
      apply cleanly.
    - Update relibtoolizing patch, 070_mandatory-relibtoolize
    - New patch, 094_directfb-deprecation-fixes, fixes directfb build with
      GLib 2.15 deprecation of G_GNUC_FUNCTION in favor of G_STRLOC.
  * Fix ordering in series.
  * New patch, 095_gtk-im-module-setting, adds XSETTINGS support for immodule;
    from GNOME 502446.
  * New upstream release; no change tarball update.

 -- Loic Minier <lool@dooz.org>  Mon, 21 Jan 2008 18:42:28 +0100

gtk+2.0 (2.12.5-2) unstable; urgency=medium

  * Add ${shlibs:Depends} to libgtk2.0-dev.
  * Rework /usr/share/doc symlinks completely; closes: #461440.
    - Use a real directory for all packages using a symlink previously:
      libgtk2.0-bin, libgtk-directfb-2.0-dev, libgtk2.0-dev, libgtk2.0-0-dbg,
      libgtk-directfb-2.0-0, libgtk2.0-0; add a preinst snippet removing the
      path on upgrade if it's a symlink and points to the proper directory;
      add a prerm snippet removing the path on upgrade (for downgrades) if
      it's a directory (and not a symlink).
    - Create symlinks for changelog.gz, NEWS.gz, NEWS.pre-1-0.gz, and
      README.gz in the /usr/share/doc dirs of these packages as well as for
      gtk2-engines-pixbuf; add a libgtk2.0-common unversionned dependency for
      all these packages.
    - Split dh_installdocs and dh_installchangelogs calls on multiple packages
      and use one call per package as the intent was to install in all the
      specified packages; also call dh_installdocs and dh_installchangelogs
      without any extra file for all packages to install copyright and Debian
      changelog.
    - Factor the list of dh_installdocs files in DH_INSTALLDOCS_FILES in
      rules.

 -- Loic Minier <lool@dooz.org>  Fri, 18 Jan 2008 10:38:43 +0100

gtk+2.0 (2.12.5-1) unstable; urgency=low

  [ Loic Minier ]
  * Drop the version in the libgtk2.0-0 -> libgtk2.0-common dependency; the
    translations and gtkrc files aren't critical to libgtk's working and have
    been compatible with other libgtk versions since years.
  * New patch, 094_fix-jpeg-loader-big-buffers, fixes spinguard logic for big
    buffers in the JPEG pixbuf loader; GNOME #494667; from SVN r19135.
  * New upstream stable releases; no API change; bug fixes and translation
    updates.
    - Drop patches 092_notebook-critical-warnings,
      094_fix-jpeg-loader-big-buffers, merged upstream.
    - Refresh patches 040_filechooser_single-click, 093_directfb-type-changes
      to apply cleanly.
    - Update relibtoolizing patch, 070_mandatory-relibtoolize.

  [ Sebastian Dröge ]
  * Upload to unstable.
  * Fixes FTBFS caused by not installing the png pixbuf loader correctly
    (Closes: #461037).
  * Update Standards-Version to 3.7.3, no additional changes needed.
  * 092_recentfiles-recursion-fix.patch: Guard against recursion in
    gtk_recent_files_menu_populate(). Patch from upstream SVN by
    William Pitcock (Closes: #459393).
  * Drop duplicated ${misc:Depends} from Recommends.

 -- Sebastian Dröge <slomo@debian.org>  Thu, 17 Jan 2008 10:49:09 +0100

gtk+2.0 (2.12.3-2) unstable; urgency=low

  * 092_notebook-critical-warnings.patch: Fix removal of tab labels to not
    ref and unref a NULL pointer. Patch from upstream SVN, see BGO #388321.
  * 093_directfb-type-changes.patch: Define __u32 and __u8 to fix compilation
    with latest directfb from unstable while still supporting older versions.
    Patch from BGO #503190.

 -- Sebastian Dröge <slomo@debian.org>  Wed, 12 Dec 2007 05:36:40 +0100

gtk+2.0 (2.12.3-1) unstable; urgency=low

  * Let update-icon-caches skip args which are not dirs or don't exist; fixes
    postrm behavior of packages with an icon cache.
  * New upstream stable release; no API change; bug fixes and translation
    updates.
    - Refresh patch 042_treeview_single-focus to apply cleanly.
    - Update relibtoolizing patch, 070_mandatory-relibtoolize.

 -- Loic Minier <lool@dooz.org>  Tue, 04 Dec 2007 22:39:07 +0100

gtk+2.0 (2.12.2-1) unstable; urgency=low

  * New upstream stable release; no API change; bug fixes and translation
    updated.
    - Drop patches 034_gtkcupsutils_type_fix, 071_fix_gdk_window_null_crasher
      fixed upstream.
    - Update relibtoolizing patch, 070_mandatory-relibtoolize.

 -- Sebastian Dröge <slomo@debian.org>  Tue, 27 Nov 2007 05:15:01 +0100

gtk+2.0 (2.12.1-3) unstable; urgency=low

  * Conflict against metacity < 1:2.20.0-1. Closes: #450693.
  * Suggest librsvg2-common for SVG pixbuf support.
  * 033_treeview_resizing.patch: fix segmentation fault introduced by
    an API inconsistency.
  * 003_gdk.pc_privates.patch: generate correct Requires.private for
    gdk-2.0.pc containing all necessary dependencies for static linking.
  * 006_proper-directfb-modules.patch: refreshed.
  * 010_gdkpixbuf_-lm.patch: fix gdk-pixbuf-2.0.pc by adding back -lm,
    which is required by some macros. Closes: #451512.
  * 070_mandatory-relibtoolize.patch: regenerated.
  * rules: copy the extraneous libraries generated in the static build
    to the Libs.private of the shared build.

 -- Josselin Mouette <joss@debian.org>  Sun, 18 Nov 2007 01:30:52 +0100

gtk+2.0 (2.12.1-2) unstable; urgency=low

  * Stop suggesting gtk-engines-pixmap.
  * Remove the --enable-explicit-deps flag. Closes: #343711, thanks Tom
    Parker. If some other packages still rely on having explicit X11
    dependencies, they are buggy and need to be fixed anyway.
  * Keep --enable-explicit-deps in the directfb build; otherwise this
    breaks any binary linking against it because the rpath isn't passed.
  * 033_treeview_resizing.patch: updated patch from Kristian Rietveld.
    + Add a new sizing fix for the case where there is a scrollbar.
  * 031_gtksearchenginetracker_fixes.patch: added back, only the name
    change was fixed upstream.
  * 034_gtkcupsutils_type_fix.patch: type-casting fix from Herbert
    Valerio Riedel that allows remote printing. Closes: #448071.
  * 040_filechooser_single-click.patch: allow a situation where no
    shortcut is selected, to avoid issues for keyboard users.
    Closes: #448674.
  * 042_treeview_single_focus.patch: don't select the focused item for
    GTK_SELECTION_SINGLE type treeviews. Allows the fix in
    040_filechooser_single-click.patch to work.
  * Conflict against libeel2-2.18. Closes: #443701, #499070.
  * Conflict against xfwm4 < 4.4.1-3 (previous versions freeze on
    startup).
  * 021_loader-files-d.patch: enclose process_module_file in correct
    #ifdef's.
  * 040_filechooser_single-click.patch: filter out duplicate entries in
    bookmarks. This avoids a situation where the selection is changed to
    the duplicate during DnD, causing an assertion error.
    Closes: #447279.

 -- Josselin Mouette <joss@debian.org>  Sun, 04 Nov 2007 16:22:31 +0100

gtk+2.0 (2.12.1-1) unstable; urgency=low

  * New upstream stable release; no API change; bug fixes and translation
    updates.
    - Drop patches 031_gtksearchenginetracker_fixes,
      080_from_bugzilla_workaround_eclipse_crash, 081_icon-cache-validate
      fixed upstream.
    - Refresh patches 033_treeview_resizing, 040_filechooser_single-click to
      apply cleanly.
    - Drop patches 060_opening-display-by-env-error-message,
      065_gtk-filechooser-locale-time merged upstream.
    - Update relibtoolizing patch, 070_mandatory-relibtoolize.
  * Chech the exit status of close() in dh_gtkmodules; closes: #427654.
  * New patch, 060_ignore-random-icons, don't list images from unknown
    directories in icon cache; closes: #443571, #443574, #444285, #446188.

 -- Loic Minier <lool@dooz.org>  Sun, 21 Oct 2007 22:05:42 +0200

gtk+2.0 (2.12.0-3) unstable; urgency=low

  [ Josselin Mouette ]
  * 031_gtksearchenginetracker_fixes.patch: new patch.
    + Use libtrackerclient.so.0 (closes: #443403).
    + Check that tracker actually works before using it.

  [ Loic Minier ]
  * Conflict with libwxgtk2.6-0 << 2.6.3.2.2-1 to prevent the migration of gtk
    to testing until the wxwidgets2.6 fix is there too; see #441766 and
    friends.

  [ Josselin Mouette ]
  * Conflict with glabels << 2.1.3-3 to prevent a segmentation fault
    from showing up.

  [ Loic Minier ]
  * Cleanup whitespace.
  * Add comments to relibtoolizing patch, 070_mandatody-relibtoolize, to
    mention the age of the upstream libtool in released tarballs which make
    relibtoolizing important for hurd-i386; GNOME #484426; Debian #445001.

  [ Josselin Mouette ]
  * 020_immodules-files-d.patch, 021_loader-files-d.patch: read the
    GDK_PIXBUF_MODULE_FILE and GTK_IM_MODULE_FILE variables before the
    Debian directories. Thanks Thadeu Lima de Souza Cascardo.
    Closes: #439004.

  [ Loic Minier ]
  * New patch, 080_from_bugzilla_workaround_eclipse_crash, fixes crash when
    displaying tooltips in SWT apps such as Eclipse; GNOME #410194; LP
    #128232; closes: #445613.
  * New patch, 060_opening-display-by-env-error-message, fixes error message
    on opening of display to include the display when it was set via the
    DISPLAY env var; GNOME #486636; closes: #283076.
  * New patch, 065_gtk-filechooser-locale-time, fixes conversion of localized
    week days in non-UTF-8 locales in the file chooser; GNOME #482504;
    closes: #444927.
  * Enable 091_workaround_no_gtk_init_incorrect_display to allow the non-free
    Flash plugin to work for users of non-Gtk browsers; please do bug Adobe
    about this; closes: #443661, #440165.
  * New patch, 071_fix_gdk_window_null_crasher, fixes potential crashes in
    IceWeasel's print preview dialog; GNOME #482531; LP #144326; found in the
    Ubuntu package.

 -- Loic Minier <lool@dooz.org>  Sun, 14 Oct 2007 20:46:29 +0200

gtk+2.0 (2.12.0-2) unstable; urgency=low

  [ Josselin Mouette ]
  * Add a conflict against openoffice.org-core (<< 2.2.1-8).
    Closes: #439256.

  [ Loic Minier ]
  * Upload to unstable; drop check-dist include.

 -- Loic Minier <lool@dooz.org>  Thu, 20 Sep 2007 11:59:26 +0200

gtk+2.0 (2.12.0-1) experimental; urgency=low

  [ Alan Baghumian ]
  * New upstream stable release
    - Regenerated 070_mandatory-relibtoolize.patch
  * Added 081_icon-cache-validate.patch, GNOME #476342

  [ Loic Minier ]
  * Refresh patches 033_treeview_resizing and 040_filechooser_single-click to
    apply cleanly.
  * Drop patch 080_from_svn_fix_dangling_tooltip, merged upstream.
  * Bump shlibs to 2.12.0 in the new upstream release for the addition of
    gdk_window_thaw_toplevel_updates_libgtk_only() and
    gdk_window_freeze_toplevel_updates_libgtk_only() to the ABI.
  * Add disabled patch 091_workaround_no_gtk_init_incorrect_display, taken
    from the Ubuntu package; it works around broken applications missing a
    call to gtk_init() but the breakage should better be exposed now so that
    applications can be fixed in time for release.

 -- Loic Minier <lool@dooz.org>  Tue, 18 Sep 2007 22:30:39 +0200

gtk+2.0 (2.11.6-1) experimental; urgency=low

  [ Loic Minier ]
  * Don't run the directfb testsuite on kfreebsd as it hangs; proposed patch
    by Petr Salinger; closes: #431477.

  [ Josselin Mouette ]
  * Move manual pages of binaries in /usr/sbin to section 8.
  * update-icon-caches: new script, updates the icon caches in a given
    list of directories. It is meant to be used by packages shipping
    icons, in the postinst/postrm.
    For transition purposes, icon caches are currently updated but not
    created if they don't already exist.
  * Install this script and its manual page in libgtk2.0-bin.

  [ Loic Minier ]
  * Call dh_shlibdeps separately for the udeb and add a
    -l/usr/lib/libcairo-directfb/lib/ flag to ensure libcairo-directfb2 is
    found.
  * New upstream development release, with API additions.
    - Bump up shlibs to >= 2.11.6.
    - Refresh patches 006_proper-directfb-modules,
      015_default-fallback-icon-theme, 040_filechooser_single-click to apply
      cleanly.
    - Update patches 009_gtk-export-filechooser, 033_treeview_resizing to
      apply; update relibtoolizing patch, 070_mandatory-relibtoolize.
  * Update patch 009_gtk-export-filechooser:
    - gtk/Makefile.am (gtk_private_h_sources, gtk_semi_private_h_sources):
      export gtkquery.h and gtksearchengine.h as semi-private.
    - gtk/gtkquery.h: add GTK_FILE_CHOOSER_ENABLE_UNSUPPORTED #ifdef guard.
    - gtk/gtksearchengine.h: add GTK_FILE_CHOOSER_ENABLE_UNSUPPORTED #ifdef
      guard.

 -- Loic Minier <lool@dooz.org>  Tue, 24 Jul 2007 10:43:23 +0200

gtk+2.0 (2.11.5-1) experimental; urgency=low

  * New upstream development release, with API additions; the new API may
    still change incompatibly, especially the tooltips API.
    - Bump shlibs to >= 2.11.5.
    - Bump up libpango1.0-dev build-dep to >= 1.17.3.
    - Ship the new gtk-builder-convert Python script to convert Glade files to
      GtkBuilder syntax in libgtk2.0-dev; don't call dh_py* to generate a
      ${python:Depends} but Recommend python (>= 2.4) to avoid pulling python
      on buildds; the script requires python >= 2.4, but this is not enforced
      in the dependencies.
    - Refresh patches 001_static-linking-dont-query-immodules,
      006_proper-directfb-modules, 040_filechooser_single-click to apply
      cleanly.
    - Update relibtoolizing patch, 070_mandatory-relibtoolize.
  * Use -s instead of -a in arch-specific dh_* calls.

 -- Loic Minier <lool@dooz.org>  Tue, 03 Jul 2007 13:01:25 +0200

gtk+2.0 (2.11.4-1) experimental; urgency=low

  [ Josselin Mouette ]
  * 040_filechooser_single-click.patch: fix the patch to apply cleanly
    again, and enable it.

  [ Loic Minier ]
  * Pass -mminimal-toc in CFLAGS for ppc64 support; thanks Andreas Jochens;
    closes: #386815.
  * New upstream development release, with API additions; the new API may
    still change incompatibly.
    - Bump shlibs to >= 2.11.3.
    - Refresh patches 006_proper-directfb-modules,
      008_implicit_pointer_conversion_gdkgc_directfb,
      009_gtk-export-filechooser, 030_gtkentry_password-char-circle,
      033_treeview_resizing, 040_filechooser_single-click, and 041_ia32-libs
      to apply cleanly.
    - Update relibtoolizing patch, 070_mandatory-relibtoolize.
  * Add a debian/dh_listmissing.pl script based on dh_install snippets but
    customized to handle multiple source installation dirs which can report
    files which were not installed to a package.
  * New list-missing rule to list files which were not installed to a package
    calling debian/dh_listmissing.pl.
  * Also depend on libxcomposite-dev, libxdamage-dev; thanks Sébastien Bacher.
  * Ship etc/gtk-2.0/im-multipress.conf in the shared library.
  * New upstream development release, with incompatible API changes; the new
    API may still change incompatibly.
    - Bump shlibs to >= 2.11.4.
    - Refresh relibtoolizing patch, 070_mandatory-relibtoolize.
    - Bump up libglib2.0-dev build-dep to >= 2.11.5.

 -- Loic Minier <lool@dooz.org>  Wed, 20 Jun 2007 10:47:42 +0200

gtk+2.0 (2.11.2-1) experimental; urgency=low

  * New upstream release series; these are development releases, the new API
    may still change incompatibly.
    - Target at experimental; include check-dist.
    - Bump shlibs to >= 2.11.2.
    - Refresh patches 001_static-linking-dont-query-immodules, 005_xpmico,
      009_gtk-export-filechooser, 015_default-fallback-icon-theme,
      033_treeview_resizing, 041_ia32-libs to apply cleanly.
    - Update patch 021_loader-files-d to apply with the upstream G_MODULE
      changes and the support for included modules.
    - Update patch 030_gtkentry_password-char-circle to apply.
    - Drop patch 031_cursor-blinking-timeout, merged upstream.
    - Disable 040_filechooser_single-click for now as it doesn't apply cleanly
      and doesn't seem critical; add a description and cross-refs.
    - Update relibtoolizing patch, 070_mandatory-relibtoolize.
    - Bump up build-deps to libglib2.0-dev >= 2.13.1, libpango1.0-dev >=
      1.15.3, gtk-doc-tools >= 1.6.
    - Build-dep on libxcomposite-dev for composite support.
    - Build-dep on libxdamage-dev for damage support.
    - Enable test print backend by passing --enable-test-print-backend to
      configure.
  * Update 007_implicit_pointer_conversion_gdkdrawable_directfb to include
    cairo.h instead of defining the directfb feature manually.
  * New patch, 006_proper-directfb-modules, fixes pkg-config modules included
    to build directfb stuff, uncovered by the change in
    007_implicit_pointer_conversion_gdkdrawable_directfb; refresh
    relibtoolizing patch.
  * Add cross-refs to patch headers.
  * Clean up CFLAGS.
  * Prepare passing -z defs via LDFLAGS in the future.

 -- Loic Minier <lool@dooz.org>  Wed, 13 Jun 2007 16:57:47 +0200

gtk+2.0 (2.10.13-1) unstable; urgency=low

  * Bump Conflicts to iiimf-client-gtk << 12.3.91-4.
  * Upload to unstable; drop check-dist include.
  * New upstream release; no API change.
    - Drop patches 011_directfb-build-fixes-from-head,
      013_gdkproperty-directfb-strdup, 032_filechooser-sizing,
      090_capslock-numlock-im-thai merged upstream.
    - Update relibtoolizing patch, 070_mandatory-relibtoolize.

 -- Loic Minier <lool@dooz.org>  Wed, 13 Jun 2007 10:06:49 +0200

gtk+2.0 (2.10.12-3) experimental; urgency=low

  * Use printf instead of echo in dh_gtkmodules to write to write data to
    files in complex_doit() calls as dash's echo will always honor escape
    sequences.
  * Conflict with gtk2-engines-ubuntulooks (<= 0.9.11-1).
  * New patch, 009_gtk-export-filechooser, exports some filechooser API for
    use in maemo / Hildon; from Nokia, taken from the Ubuntu package; update
    patch 032_filechooser-sizing to apply cleanly; bump shlibs to 2.10.12-3;
    update patch 070_mandatory-relibtoolize.
  * Kill patch 025_dfb-window-destroy-leak from source tree as well now.
  * Include check-dist to prevent accidental uploads to unstable.

 -- Loic Minier <lool@dooz.org>  Thu, 07 Jun 2007 00:13:00 +0200

gtk+2.0 (2.10.12-2) unstable; urgency=low

  [ Loic Minier ]
  * New patch, 15_default-fallback-icon-theme, sets the default
    gtk-fallback-icon-theme to "gnome"; closes: #421353.
  * Also honor parallel=n in DEB_BUILD_OPTIONS.

  [ Josselin Mouette ]
  * 032_filechooser-sizing.patch: patch from Carlos Garnacho in bugzilla
    #420285, committed in trunk. Fixes (among many other things) infinite
    flickering with some window managers (closes: #420021).
  * Refresh other patches.

  [ Loic Minier ]
  * New patch 090_capslock-numlock-im-thai, fixes Thai input method when
    NumLock/CapsLock is on; thanks Theppitak Karoonboonyanan; GNOME #438261;
    closes: #414698.
  * Re-add patch 031_cursor-blinking-timeout to patch series.

  [ Josselin Mouette ]
  * 033_treeview_resizing.patch: fix column resizing in GtkTreeView when
    there is an expander column. See bugzilla #316087.

 -- Josselin Mouette <joss@debian.org>  Fri, 18 May 2007 19:02:20 +0200

gtk+2.0 (2.10.12-1) unstable; urgency=low

  * Bump Conflicts to gtk-im-libthai <= 0.1.4-2.
  * Document that 2.10.11-2 bumped the conflict on scim-gtk2-immodule to <=
    1.4.4-7.
  * Post-transition bump of conflicts to gtk2-engines-wonderland << 1.0-4,
    imhangul (<< 0.9.13-5), gcin (<< 1.3.4-2), gtk-im-libthai (<< 0.1.4-3),
    scim-gtk2-immodule (<< 1.4.4-8), uim-gtk2.0 (<< 1:1.4.1-3),
    gtk2-engines-cleanice (<< 2.4.0-1.1), gtk2-engines-magicchicken
    (<< 1.1.1-7.1), gtk2-engines-qtpixmap (<< 0.28-1.2), libginspx0
    (<< 20050529-1.1), tamil-gtk2im (<< 2.2-4.4), gtk2-engines-xfce
    (<< 2.4.0-1), scim-bridge-client-gtk (<< 0.4.10-1.1), swf-player
    (<< 0.3.6-2.3), gtk-qt-engine (<< 1:0.8~svn-rev36-1).
  * Let the udeb provide the Gtk+ module ABI (binver); closes: #419592.
  * Add a -k flag to dh_gtkmodules, matching the change in dh_pangomodules.
  * Use this new flag for the udeb and the shared library packages.
  * Add ${misc:Depends}.
  * Drop "libtool_is_fool" snippet patching hardcode_libdir_flag_spec and
    archive_cmds which is probably dangerous with newer libtools.
  * Drop patch 000_gtk+-2.0.6-exportsymbols which made all libs export way too
    many symbols and hence was dangerous; closes: #327652.
    - Update patch 070_mandatory-relibtoolize.
  * Fix description of the -dbg package.
  * New upstream release; no ABI change.
    - Refresh patches 011_directfb-build-fixes-from-head and
      040_filechooser_single-click.
    - Update relibtoolizing patch.

 -- Loic Minier <lool@dooz.org>  Thu, 03 May 2007 15:13:54 +0200

gtk+2.0 (2.10.11-2) unstable; urgency=low

  [ Loic Minier ]
  * Bump libwmf conflicts to << 0.2.8.4-5.
  * Fix control generation.
  * Include the new uploaders.mk from gnome-pkg-tools instead of duplicating
    its logic; build-dep on gnome-pkg-tools >= 0.11.
  * Run "make check" test suite for all flavors except if DEB_BUILD_OPTIONS
    contains the "nocheck" keyword; ignore failures.
  * Add support for DEB_BUILD_OPTIONS_PARALLEL.
  * Re-enable FAQ and Tutorial which were fixed upstream at some point; update
    installation dirs.
  * Call dh_installman -a.

  [ Josselin Mouette ]
  * 040_filechooser_single-click.patch: remove shortcut-related actions
    in the response callback. This fixes the annoying bug where you need
    to click twice on "save" after clicking on a shortcut.

  [ Loic Minier ]
  * Initialize CFLAGS to -Wall -g; pass debian/rules' CFLAGS and LDFLAGS to
    configure, doh!
  * Document that 2.10.8 (and 2.10.9) fixed CVE-2007-0010.
  * Stop shipping engines in the udeb again.
  * New patch, 040_ia32-libs.patch, for ia32-libs support via ia32-libs-gtk;
    based on a patch by Goswin von Brederlow with the following changes: a)
    use .32 and .64 suffixes in all cases (compatible with Ubuntu), b) fix
    typo, c) use g_file_test() instead of g_access(); does not cover module
    loading via env vars; closes: #406453.
  * Upload to unstable; drop check-dist include.
  * Wrap build-deps and deps.
  * Add Conflicts on gcin (<= 1.3.4-1), gtk-qt-engine (<= 1:0.8~svn-rev31-3),
    iiimf-client-gtk (<= 12.3.91-3), libginspx0 (<= 20050529-1),
    scim-bridge-client-gtk (<= 0.4.10-1), iiimgcf (<= 11.4.1870-7).
  * Bump Conflicts to gtk2-engines-gtk-qt << 1:0.7-2, imhangul <=
    0.9.13-3.1, libgnomeui-0 <= 2.14.1-3, swf-player <= 0.3.6-2.2,
    tamil-gtk2im <= 2.2-4.3, uim-gtk2.0 <= 1:1.2.1-9, scim-gtk2-immodule (<=
    1.4.4-7).
  * Drop docbook-utils and linuxdoc-tools-text from the build-deps.

 -- Loic Minier <lool@dooz.org>  Fri, 13 Apr 2007 22:25:49 +0200

gtk+2.0 (2.10.11-1) experimental; urgency=low

  * Move build and install base dirs to debian/build and debian/install
    instead of debian/tmp/build and debian/tmp/install.
  * Cleanup rules.
  * Make debian/control PHONY.
  * Use @DOC_PKG@ to point at the HTML doc as well.
  * Tune udeb description.
  * New upstream releases.
    - Drop patch 003_default_fallback_icon_theme, upstream added a fallback on
      hicolor.
    - Drop patch 015_gdkmain-x11_button-mask.patch, merged upstream.
    - Refresh patches.
    - Relibtoolize.
  * Remove 031_cursor-blinking-timeout from patch series as it causes a
    regression in the Thai IM; closes: #414698.

 -- Loic Minier <lool@dooz.org>  Wed, 14 Mar 2007 14:11:58 +0100

gtk+2.0 (2.10.9-1) experimental; urgency=low

  [ Josselin Mouette ]
  * 024_filechooser_single-click.patch:
    + Monitor selection changes instead of monitoring the cursor.
    + Miscellaneous fixes.
  * 015_gdkmain-x11_button-mask.patch, stolen from upstream SVN: fix the
    issue of resizing columns needing two tries in some cases
    (closes: #406906).

  [ Loic Minier ]
  * Add a get-orig-source target to retrieve the upstream tarball.
  * Rename patch 023_gtkentry_password-char-circle to
    030_gtkentry_password-char-circle.
  * Rename patch 024_filechooser_single-click to 040_filechooser_single-click.
  * New patch, 031_cursor-blinking-timeout.patch, to stop blinking the cursor
    after a configurable timeout; helps saving energy by not waking up all Gtk
    processes with a cursor continuously; from upstream SVN r16366 (trunk);
    GNOME #353670, #352442.
  * Include the new check-dist Makefile to prevent accidental uploads to
    unstable; bump build-dep on gnome-pkg-tools to >= 0.10.
  * Bump up libglib2.0-dev of libgtk2.0-dev dep to >= 2.12.0 as well; thanks
    Marc Brockschmidt.

  [ Josselin Mouette ]
  * New upstream release.
    - Fixes CVE-2007-0010; RedHat #218755, #218932.
  * Remove patches integrated upstream:
    + 009_directfb_build.patch
    + 010_fix-stuc-vs-stub-typo.patch
    + 012_missing-stub-files.patch
    + 014_gtktreeview_missing-icons.patch
  * Refresh patches:
    + 020_immodules-files-d.patch
    + 031_cursor-blinking-timeout.patch
    + 040_filechooser_single-click.patch
    + 070_mandatory-relibtoolize.patch

 -- Josselin Mouette <joss@debian.org>  Thu,  1 Mar 2007 21:50:34 +0100

gtk+2.0 (2.10.7-1) experimental; urgency=low

  * New upstream release.
  * Refresh patches.
  * 022_gtkcupsutils_multipage.patch: removed, integrated upstream.
  * Regenerate 070_mandatory-relibtoolize.patch.
  * 014_gtktreeview_missing-icons.patch: update patch with the upstream
    fix that was committed.
  * 009_directfb_build.patch: new patch, fix typo in configure.in for
    the directfb build.

 -- Josselin Mouette <joss@debian.org>  Wed, 10 Jan 2007 00:03:03 +0100

gtk+2.0 (2.10.6-5) experimental; urgency=low

  [ Loic Minier ]
  * Really update gtk2-engines conflict to << 2.8.2-2.

  [ Josselin Mouette ]
  * 022_gtkcupsutils_multipage.patch: new patch, stolen upstream.
    Properly pass multi-value options to cups (closes: #404867).
  * 023_gtkentry_password-char-circle.patch: new patch to replace stars by
    black circles in password fields; thanks Sven Arvidsson; found in Fedora
    and OpenSuse (closes: #401568).
  * 024_filechooser_single-click.patch: patch from UHU-Linux to make the
    side pane in the filechooser usable with a single click
    (closes: #405296).

 -- Josselin Mouette <joss@debian.org>  Wed,  3 Jan 2007 00:14:28 +0100

gtk+2.0 (2.10.6-4) experimental; urgency=low

  [ Loic Minier ]
  * Update gtk2-engines conflict to << 2.8.2-2.

  [ Josselin Mouette ]
  * 014_gtktreeview_missing-icons.patch, stolen from bugzilla: fix
    missing icon in "save as" filechooser dialogs.

 -- Josselin Mouette <joss@debian.org>  Thu, 30 Nov 2006 20:42:44 +0100

gtk+2.0 (2.10.6-3) experimental; urgency=low

  [ Loic Minier ]
  * Update gtk2-engines conflict to <= 2.8.1-4.
  * Update gtk2-engines-pixbuf conflict to <= 2.10.
  * Bump up libcairo-directfb2-dev build-dep to 1.2.4-4.

  [ Josselin Mouette ]
  * 070_mandatory-relibtoolize.patch: recreate with autoconf 2.59, to
    avoid the AM_GLIB_DEFINE_LOCALEDIR bug (making GTK+ applications
    untranslated).
  * Make gtk2-engines conflict less strict.

 -- Josselin Mouette <joss@debian.org>  Sat, 11 Nov 2006 00:04:46 +0100

gtk+2.0 (2.10.6-2) experimental; urgency=medium

  * New patch, 013_gdkproperty-directfb-strdup, to g_strdup() strings returned
    by gdk_atom_name(); GNOME #357611; thanks Attilio Fiandrotti.

 -- Loic Minier <lool@dooz.org>  Sun,  8 Oct 2006 16:03:08 +0200

gtk+2.0 (2.10.6-1) experimental; urgency=low

  * New upstream release.
    - Drop patch 013_stock-icons-typo-in-rm, merged upstream.
    - Relibtoolize: update patch 070_mandatory-relibtoolize.

 -- Loic Minier <lool@dooz.org>  Wed,  4 Oct 2006 11:41:37 +0200

gtk+2.0 (2.10.5-1) experimental; urgency=low

  * Fail if dh_gtkmodules called query helpers on module files, but no module
    could be written to the module file.
  * Parse stderr as well as the stdout of query helpers and bail out if
    g_module_open(); suggest adjusting LD_LIBRARY_PATH.
  * Fix some probably harmless typos.
  * New patch, 030_gtkfilechooserbutton-update-combo-box-null-base-path, to
    avoid a segfault when opening some filechoosers; thanks Sam Morris for
    reporting and testing; from CVS HEAD; GNOME #358405; closes: #390231.
  * New upstream release; no API change.
    - Drop patch 030_gtkfilechooserbutton-update-combo-box-null-base-path,
      merged upstream.
    - New patch, 013_stock-icons-typo-in-rm, to fix a typo in gtk/Makefile.am;
      GNOME #358931.
    - Relibtoolize: update patch 070_mandatory-relibtoolize.

 -- Loic Minier <lool@dooz.org>  Mon,  2 Oct 2006 16:59:18 +0200

gtk+2.0 (2.10.4-1) experimental; urgency=low

  * New upstream release; no API change.
    - Switch from tar-in-tar and sys-build to regular source and quilt
      patching; build-depend on quilt; remove occurrences of $(TOP_SRC_DIR)
      and @TOP_SRC_DIR@ which isn't needed anymore.
    - Refresh patch 021_loader-files-d.
    - New patch, 010_fix-stuc-vs-stub-typo, to replace "stuc" with "stub" in
      gtk/Makefile.am; from HEAD, not commited in the gtk-2-10 branch.
    - New patch, 011_directfb-build-fixes-from-head, to backport directfb
      build fixes; from HEAD not commited in the gtk-2-10 branch.  Thanks
      Attilio Fiandrotti for pointing me at the actual log entry.
    - New patch, 012_missing-stub-files, to add gtk/gtkplug-stub.c and
      gtksocket-stub.c missing from the tarball; from the gtk-2-10 branch.
    - Relibtoolize: update patch 070_mandatory-relibtoolize.

 -- Loic Minier <lool@dooz.org>  Sun, 24 Sep 2006 12:24:31 +0200

gtk+2.0 (2.10.3-3) experimental; urgency=medium

  * Update patch 021_loader-files-d to not warn about missing module files or
    unreadable files as is already the case for immodules; see #388450 for
    more background.
  * Fix awful typo which broke generation of the udeb shlibs and which I
    didn't notice with debdiff; thanks Frans Pop.
  * Drop debian/docs.in and pass the list of files to dh_installdocs instead;
    should fix the missing README and NEWS files.

 -- Loic Minier <lool@dooz.org>  Thu, 21 Sep 2006 17:35:16 +0200

gtk+2.0 (2.10.3-2) experimental; urgency=low

  * Drop obsolete --with-cairo-backend configure flag.
  * Make update-gtk-immodules and update-gtk-immodules no-ops, to avoid
    modules to recreate the /etc modules files on upgrades or by mistake;
    remove the generated module files in /etc on upgrades. closes: #388450
  * Merge 2.8.20-2; drop patch 009_revert-gdkdrawable-directfb, merged
    upstream.

 -- Loic Minier <lool@dooz.org>  Wed, 20 Sep 2006 22:17:30 +0200

gtk+2.0 (2.10.3-1) experimental; urgency=low

  * New upstream releases; with API additions in the filesystem modules API,
    probably only used by gtk-demo, and in the quartz gdk backend, not used in
    Debian.
    - Bump shlibs to >= 2.10.3.
    - Drop patch 009_configurable-cairo-backend-module, it was not really
      required to select a cairo backend dynamically as the backend is always
      cairo-directfb for a directfb gdk.
    - Drop patch 010_gdk-require-cairo-module, merged upstream.
    - Drop patch 011_gdk-directfb-cvs-changes, this release includes the
      changes that were pulled back then.
    - Relibtoolize: update patch 070_mandatory-relibtoolize.

 -- Loic Minier <lool@dooz.org>  Tue, 19 Sep 2006 20:42:38 +0200

gtk+2.0 (2.10.1-2) experimental; urgency=low

  * Drop obsolete scary warning in 2.10.1-1.
  * Drop update-gtk-immodules and update-gdkpixbuf-loaders calls from
    libgtk2.0-0's postinst, this isn't needed for backwards compatibility.
  * Use /usr/lib/libgtk2.0-0/gdk-pixbuf-query-loaders and
    /usr/lib/libgtk2.0-0/gtk-query-immodules-2.0 instead of
    /usr/bin/gdk-pixbuf-query-loaders and /usr/bin/gtk-query-immodules-2.0 in
    dh_gtkmodules.

 -- Loic Minier <lool@dooz.org>  Tue, 19 Sep 2006 16:40:22 +0200

gtk+2.0 (2.10.1-1) experimental; urgency=low

  * Add a missing x11proto-xext-dev build-dep for X SYNC checks.
  * Add a missing libatk1.0-dev (>= 1.9.0) build-dep for ATK.
  * Replace GTK_BINARY_VERSION in debian/*.in to set the binary version of
    binary modules; it is set via debian/scripts/vars and currently in use in
    update-gdkpixbuf-loaders.in and update-gtk-immodules.in.
  * Remove fake support for version argument from update-gdkpixbuf-loaders and
    update-gtk-immodules.
  * New upstream development releases with API additions, and non-public API
    changes and removals.
    - Target at experimental.
    - Update copyright from AUTHORS.
    - Update upstream URL.
    - Bump up libglib2.0-dev build-dep to >= 2.12.0.
    - Add a libdirectfb-dev (>= 0.9.24) build-dep for DirectFB.
    - Add a libcupsys2-dev (>= 1.2) build-dep for CUPS printing backend.
    - Bump shlibs to >= 2.10.0.
    - Update list of docs to ship; now includes NEWS. (Closes: #384225)
    - Update watch file to track stable releases and use HTTP.
    - Set GTK_BINARY_VERSION to 2.10.0.
    - Add or bump Conflicts with packages shipping modules for the 2.4.0
      binary version of Gtk: gtk2-engines-wonderland <= 1.0-3,
      gtk2-engines-cleanice <= 2.4.0-1, gtk2-engines <= 1:2.6.10-2,
      gtk2-engines-magicchicken <= 1.1.1-7, gtk2-engines-pixbuf <= 2.8.20-1,
      gtk2-engines-gtk-qt <= 1:0.7-1, gtk2-engines-qtpixmap <= 0.28-1.1,
      librsvg2-common <= 2.14.4-2, gtk2-engines-xfce <= 2.3.90.2-1,
      libgnomeui-0 <= 2.14.1-2, tamil-gtk2im <= 2.2-4.2, imhangul <= 0.9.13-3,
      iiimgcf <= 11.4.1870-7.3, scim-bridge <= 0.2.4-1, scim-gtk2-immodule <=
      1.4.4-4, gtk-im-libthai <= 0.1.4-1, uim-gtk2.0 <= 1:1.2.1-3, libwmf-dev
      <= 0.2.8.4-2, libwmf0.2-7 <= 0.2.8.4-2, swf-player <= 0.3.6-2.1.
    - Replace 001_gtk+-2.2.0-buildfix-immodule patch with
      001_static-linking-dont-query-immodules which has more chances to be
      merged upstream; see GNOME #346531.
    - Drop 006_gtk+-2.8.17-directfb patch, merged upstream.
    - Refresh patches: 000_gtk+-2.0.6-exportsymbols,
      003_default_fallback_icon_theme,
      004_gtk+-ximian-gtk2-filesel-navbutton-5,
      007_implicit_pointer_conversion_gdkdrawable_directfb.
    - Update 070_mandatory-relibtoolize with libtoolize --force --copy &&
      aclocal-1.7 -I m4macros && autoconf && automake-1.7.
    - New patch, 002_static-linking-dont-build-perf, to avoid building the
      perf measurement tools in static builds; see GNOME #346559; needs
      the 001_gtk+-2.2.0-buildfix-immodule patch.
    - New patch, 009_configurable-cairo-backend-module, to add a new
      --with-cairo-backend flag which will select a cairo-$backend.pc
      pkg-config module instead of the default of cairo.pc; see GNOME #351509.
    - Configure with --with-cairo-backend=directfb for the dfb build.
    - New patch, 010_gdk-require-cairo-module, to require the Cflags and Libs
      from the cairo-directfb module (as $cairo_module); see GNOME #351519.
    - New patch, 011_gdk-directfb-cvs-changes, backport of CVS only build
      fixes to permit compilation against directfb 0.9.25.1.
  * Fix bashishms in debian/rules. (Closes: #385473)
  * Generate a Provides: gtk2.0-binver-@BINVER@ in libgtk2.0-@SONAME@ to track
    the binary version of Gtk and to permit Gtk modules to depend on it.
  * Define the flags for each flavor (shared, static, and udeb) in Makefile
    vars and share the common flags.
  * Only pass --host to configure if DEB_HOST_GNU_TYPE and DEB_BUILD_GNU_TYPE
    differ.
  * Stop shipping *.la and *.a files of modules (all module types).
  * Move GTK_BINARY_VERSION back to rules.
  * Use GTK_BINVER_DEP instead of BINVER.
  * Build flavors out-of-tree; saves 25% of required build space (315 MB) and
    some build time / IO load; this clutters the headers a little (full build
    path is mentionned instead of ".") though.
  * Rewrite and cleanup the build process completely.
  * Install the full set of pkg-config files from the dfb flavor in
    /usr/lib/pkgconfig/libgtk-directfb-2.0; to use this feature, set
    PKG_CONFIG_PATH while invoking pkg-config (or configure); the
    /usr/lib/pkgconfig/*directfb*.pc files will be removed when Debian sources
    have been converted.
  * In the same spirit, gdkconfig.h is in /usr/lib/gtk-2.0/include/directfb;
    to use it, prepend -I/usr/lib/gtk-2.0/include/directfb to CFLAGS.
  * Fix generation of /etc/gtk-2.0/gdk-pixbuf.loaders for the udeb.
    (Closes: #382435)
  * Build-depend on libcairo-directfb2-dev >= 1.2.4-2 to get PDF/PS support in
    the directfb flavor of libcairo.
  * Recommend the linked source packages in libgtk2.0-doc instead of simply
    suggesting them.
  * Rewrite update-gdkpixbuf-loaders and update-gtk-immodules.
  * Drop double libatk1.0-dev build-dep.
  * Empty the dependency_libs in the *.la files of libgtk2.0-dev.
  * New immodule files handling with *.immodules files below
    /usr/lib/gtk-2.0/<BINARY_VERSION>/immodule-files.d.
    - New patch, 020_immodules-files-d, to split the module search path on
      ":", as is done in Pango, prepend
      /usr/lib/gtk-2.0/<BINARY_VERSION>/immodule-files.d to the search path,
      and to read all *.immodules files when a directory is encountered in the
      search path.
    - Pre-generate
      /usr/lib/gtk-2.0/<BINARY_VERSION>/immodule-files.d/libgtk2.0-0.immodules
      for the shared library.
    - Continue generating /etc/gtk-2.0/gtk.immodules until packages are
      updated.
  * Add the libpixmap engine to the udeb for the new Bladr GTK theme for g-i.
  * New loader files handling with *.loaders files below
    /usr/lib/gtk-2.0/<BINARY_VERSION>/loaders-files.d.
    - New patch, 021_loader-files-d, to split the module search path on
      ":", as is done in Pango, prepend
      /usr/lib/gtk-2.0/<BINARY_VERSION>/loader-files.d to the search path,
      and to read all *.loaders files when a directory is encountered in the
      search path.
    - Pre-generate
      /usr/lib/gtk-2.0/<BINARY_VERSION>/loader-files.d/libgtk2.0-0.loaders
      for the shared library and libgtk-directfb-2.0-0-udeb.loaders for the
      udeb.
    - Continue generating /etc/gtk-2.0/gdk-pixbuf.loaders until packages are
      updated.
    - This particular patch uses two ugly workarounds and needs work before
      being sent upstream.
  * New Debhelper-based command, dh_gtkmodules, to create module files for IM
    modules and GdkPixbuf loaders; it will still add a dependency on the
    binary version of Gtk for other modules.
  * Make use of the new dh_gtkmodules during the build (override the path to
    gtk-query-immodules-2.0 and gdk-pixbuf-query-loaders.
  * Add ${misc:Depends} to gtk2-engines-pixbuf.

 -- Loic Minier <lool@dooz.org>  Tue, 19 Sep 2006 15:13:38 +0200

gtk+2.0 (2.8.20-2) unstable; urgency=low

  * New patch, 009_revert-gdkdrawable-directfb, to revert a fix for Italic
    letters which caused ugly unneeded horizontal/vertical lines; thanks
    Davide Viti. (Closes: #386860)
  * Fix typo, install-dfb depends on build-dfb, not build-shared.
  * Fix typo (DFB_PKGFIR versus DFB_PKGDIR), use the BUILD_DFB_DIR version of
    gdk-pixbuf-query-loaders, and set LD_LIBRARY_PATH to the udeb's /usr/lib;
    should fix the empty /etc/gtk-2.0/gdk-pixbuf.loaders. (Closes: #382435)
  * Ship all engines of the DirectFB build in the udeb, that is
    engines/libpixmap.so.

 -- Loic Minier <lool@dooz.org>  Wed, 20 Sep 2006 21:36:04 +0200

gtk+2.0 (2.8.20-1) unstable; urgency=low

  * New upstream releases; no API changes.

 -- Loic Minier <lool@dooz.org>  Mon, 14 Aug 2006 16:52:04 +0200

gtk+2.0 (2.8.18-7) unstable; urgency=medium

  * Rename patches to reflect the order in which they are applied:
    - 000_gtk+-2.2.0-buildfix-immodule to 001_gtk+-2.2.0-buildfix-immodule
    - 001_default_fallback_icon_theme to 003_default_fallback_icon_theme
    - 001_gtk+-ximian-gtk2-filesel-navbutton-5 to
      004_gtk+-ximian-gtk2-filesel-navbutton-5
    - 002_xpmico to 005_xpmico
    - 003_gtk+-2.8.17-directfb to 006_gtk+-2.8.17-directfb
    - 005_implicit_pointer_conversion to
      007_implicit_pointer_conversion_gdkdrawable_directfb
    - 006_implicit_pointer_conversion to
      008_implicit_pointer_conversion_gdkgc_directfb
  * Change the 000_gtk+-2.0.6-exportsymbols, and
    001_gtk+-2.2.0-buildfix-immodule patches to only patch the
    non-autogenerated files.
  * Rename 004_reautoconf to 070_mandatory-relibtoolize; update it for the
    previous changes; use an older autoconf version to work around a bug
    in the glib-gettext macro which broke localization in dialog boxes; thanks
    Mike Hommey.

 -- Loic Minier <lool@dooz.org>  Sun,  6 Aug 2006 11:49:48 +0200

gtk+2.0 (2.8.18-6) unstable; urgency=low

  * 005_implicit_pointer_conversion.patch: patch from Dann Frazier to
    fix an implicit pointer conversion error on 64-bit architectures
    (closes: #381081).
  * 006_implicit_pointer_conversion.patch: fix another implicit
    conversion by allowing deprecated functions in the necessary header
    file (closes: #381082).

 -- Josselin Mouette <joss@debian.org>  Wed,  2 Aug 2006 14:48:54 +0200

gtk+2.0 (2.8.18-5) unstable; urgency=low

  [ Loic Minier ]
  * Set Priority to extra to sync with overrides.

  [ Josselin Mouette ]
  * Set priority to extra for the udeb.
  * Bump build dependencies for libcairo to the stable version.
  * Lots of cleanup in debian/rules.
  * Rename directfb packages to libgtk-directfb-2.0-*.
  * Move .a and .la files from the engine package to the development
    package.
    + Add appropriate Replaces: field.

 -- Josselin Mouette <joss@debian.org>  Sun, 30 Jul 2006 18:21:37 +0200

gtk+2.0 (2.8.18-4) experimental; urgency=low

  * Bump libcairo build dependencies.
  * Only install the PNG loader in the udeb.
  * Rebuild against a fixed glib.

 -- Josselin Mouette <joss@debian.org>  Mon, 26 Jun 2006 22:34:27 +0200

gtk+2.0 (2.8.18-3) experimental; urgency=low

  [ Loïc Minier ]
  * Bump libgtk2.0-dev dependency and build-dep on libx11-dev to >= 2:1.0.0-6
    as it ships x11.pc which ends up in the Requires of gdk-x11-2.0.pc.
    (Closes: #326199, #370693)
    [debian/control, debian/control.in]

  [ Josselin Mouette ]
  * 003_gtk+-2.8.17-directfb.patch: new patch, bringing a new directfb
    backend.
  * 004_reautoconf.patch: new patch, result of "libtoolize --force
    --copy; aclocal; autoheader; automake -acf; autoconf; rm -rf
    autom4te.cache" with the previous patches applied.
  * Make 3 new packages: libgtk+2.0-directfb0-udeb,
    libgtk+2.0-directfb-dev and  libgtk+2.0-directfb0.
  * Add a new build flavour for directfb (only the shared version).
  * Use chrpath to remove the rpath in the udeb.
  * Generate a fake shlibs.local to handle all intra-gtk dependencies by
    hand.
  * Switch to debhelper compatibility mode 5 and require 5.0.22.
  * Standards-version is 3.7.2.
  * Break the circular dependency between libgtk2.0-0, libgtk2.0-bin and
    libgtk2.0-common (closes: #309604).
    + Remove libgtk2.0-common dependency on libgtk2.0-0.
    + Remove libgtk2.0-0 dependency on libgtk2.0-bin.
    + Use ${binary:Version} and ${source:Version} to ensure strict
      dependencies.
    + Build-depend on dpkg-dev 1.13.19.
    + Invert the libgtk2.0-common -> libgtk2.0-0 symbolic link.
    + libgtk2.0-common.preinst, libgtk2.0-0.postinst: dance the symbolic
      link samba.
    + Move support binaries and scripts to libgtk2.0-0 and make
      libgtk2.0-bin a binary-all package containing only scripts.
    + Move /usr/sbin/update-* calls to libgtk2.0-0.
    + update-*: call binaries at their new location.

 -- Josselin Mouette <joss@debian.org>  Mon, 26 Jun 2006 22:31:14 +0200

gtk+2.0 (2.8.18-1) unstable; urgency=low

  * New upstream version:
    Bugs fixed:
    - search box positioning has some bugs
    - Gdk does not translate VK_NUMPADx to GDK_KP_x
    - sanely handle late (re)setting of dnd image
    - Text is shifted off-by-one in Add to panel
    - gtk_widget_create_pango_layout docs typo
    - GtkLayout In GtkScrolledWindow does not receive the scroll_event
    - gtktreeview has RTL problems with toggle buttons if using gtktreestore
      as a model
    - Wrong drop location in GtkEntry
    - GtkImage animation CRITICALS on switching themes
    - DnD: Conditional jump or move depends on uninitialised value
    - cursor blocked to dnd mode after using shift and dnd on a GtkCalendar
    - Crashes while creating source code w/GtkFontSelection
    - the right edge tab does not appear when switching tab
    - Warning in gtk_paned_compute_position
    - gdk should set resolution on PangoCairoFontmap, not PangoCairoContext
    - GtkTreeView does not resize correctly
    - gtk_tree_view_get_cell_area() forgets depth-one expander
    - expander animation not working in RTL mode
    - Multiple issues discovered by Coverity
    - Make gtk_file_chooser_button_new() friendlier for language bindings

 -- Sebastien Bacher <seb128@debian.org>  Tue, 30 May 2006 17:02:26 +0200

gtk+2.0 (2.8.17-1) unstable; urgency=low

  * New upstream version:
    Bugs fixed:
    - Expander disclosure button is too small
    - gtk_image_clear doesn't cause redraw
    - typo in configure.in yields suspicious warning
    - gtk_icon_view_set_cursor causes Segmentation fault
    - garbage output of --help in non UTF-8 locale
    - GtkNotebook does not destroy its children on destroy()
    - TreeView DnD between-row highlight colo
    - Gtk-Criticals occur when scrolling a text_view that is not realized
    - Hidden menubar still activates submenus with kbd
    - GtkTreeItem broken
    -  Clean up button press handling (use one-grab-op-at-a-time pattern)
    - broken scrolling when selecting
    - GTK+ File-chooser dialog crashes
    - Nautilus crashes when dragging icons to another screen
    - mixed line separators confuse gtk_text_iter_ends_line
    - Textview child is covered by window border
    - gdk_pixbuf_loader_new_with_type(): What image types are allowed?
    - Missing progress bar label
    - Fix a problem which caused grab-notify signal to be missed in some cases
  * debian/control.in:
    - clear the Build-Depends on xlibs-static-pic | xlibs-pic, not required
    - updated the Build-Depends on libpango1.0-dev so it build with
      the xorg transitioned version
  * * debian/patches/001_default_fallback_icon_theme.patch:
    - set the default fallback icon theme to "gnome", fixes the issues with
      the moves of icons from hicolor to gnome

 -- Sebastien Bacher <seb128@debian.org>  Sun,  9 Apr 2006 21:54:11 +0200

gtk+2.0 (2.8.16-1) unstable; urgency=low

  * New upstream version

 -- Sebastien Bacher <seb128@debian.org>  Wed, 15 Mar 2006 19:26:46 +0100

gtk+2.0 (2.8.15-1) unstable; urgency=low

  * New upstream version:
    * Bugs fixed:
      - Keys P and N in "open file" dialog have special meaning
      - MS-Windows theme (GTK-Wimp) shows all funky characters
      - Optimize gdk on win32
      - Hollow polygons have wrong linecaps
      - panel crash with a11y enabled
    * Updated translations (bg,bn,cs,eu,ro)

 -- Sebastien Bacher <seb128@debian.org>  Tue, 14 Mar 2006 15:41:56 +0100

gtk+2.0 (2.8.13-1) unstable; urgency=low

  * New upstream version:
    * Bugs fixed:
    - Can't select some items in GtkIconView
    - gtk_icon_theme_list_icons: example contexts don't work
    - gnopernicus crashes on changing display screen source for magnifier
    - evince crashes in gdk_region_union_with_rect
    - Small error in _gdk_gc_update_context
    - gtk.Notebook.get_current_page() returns incorrect page number
      when pages hidden
    - GtkAboutDialog not responsive to Escape key
    - GtkNotebook popup menu not keynavigatable
    - GtkRadioButton does not issue notify::active
    - Make more use of G_DISABLE_ASSERT in TextView code
    * Updated translations

 -- Sebastien Bacher <seb128@debian.org>  Sat, 25 Feb 2006 23:56:58 +0100

gtk+2.0 (2.8.12-1) unstable; urgency=low

  * New upstream bugfix release.
  * [debian/copyright] Updated FSF's address.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Sun, 12 Feb 2006 14:11:11 +0100

gtk+2.0 (2.8.11-1) unstable; urgency=low

  * New upstream version
    * Avoid memory overruns in the pixbuf theme engine with nonsensical
      gradient specifications.  [Matthias]
    * Bugs fixed:
    - Cursor doesn't move as expected
    - Segfault from combination of gtk_container_set_resize_mode()
      and GtkComboBox
    - segfault in update_cursor on amd64
    - eog crashes at launch under AIX
    - "~" should bring up the location dialog
    - gtk_text_layout_get_cursor_locations() chokes on layout=0x0
    * Documentation improvements [Federico Mena Quintero]
    * Translation updates (es,pt_BR,zh_HK,zh_TW)

 -- Sebastien Bacher <seb128@debian.org>  Fri, 27 Jan 2006 22:28:05 +0100

gtk+2.0 (2.8.10-1) unstable; urgency=low

  * New upstream version
  * debian/control.in:
    - updated the glib requirement
  * debian/patches/001_fs_documents.patch:
    - dropped, stick with upstream behaviour rather

 -- Sebastien Bacher <seb128@debian.org>  Thu, 12 Jan 2006 13:34:37 +0100

gtk+2.0 (2.8.9-2) unstable; urgency=low

  * Upload to unstable

 -- Sebastien Bacher <seb128@debian.org>  Thu, 15 Dec 2005 15:13:32 +0100

gtk+2.0 (2.8.9-1) experimental; urgency=low

  * New upstream version:
    Bugs fixed:
    - File chooser filter behaves weird
    - 2.8.4 to 2.8.6: sound-juicer crash, fileselector assertions
    - On unsetting the Model, GtkTreeView does not clear
      it's associated TreeSelection
    - Crash on selecting a file of null mime-type
    - gtktoolbutton leaks a pixbuf
    - GdkEvent leaked in gtktreeview.c / gtk_tree_view_key_press
    - Typo in trap_activate_cb()
    - gtkcalendar.c: The identifier is already declared.
    - gtk_menu_attach_to_widget() does not take NULL detacher
    - Unhinted fonts are measured incorrectly and drawing
      problems occur as a result
    - unwanted scrolling in recent gtk
    - Toolbars without icons are invisible in icon-only mode
    - Search-entry in the TreeView not working properly
    - gtktoolbutton.c:562: warning: 'image' is used
      uninitialized in this function
    - reference count of textbuffer increases with each paste
    - gtk_selection_data_get_uris leaks memory
    Other changes:
    - Remove GMemChunk from public header files to
      support building against GLib 2.10
    - Report errors in option parsing
    - Merge upstream xdgmime changes to handle duplicate glob patterns

 -- Sebastien Bacher <seb128@debian.org>  Sat, 10 Dec 2005 18:22:50 +0100

gtk+2.0 (2.8.8-1) experimental; urgency=low

  * New upstream version:
    GtkFileChooser:
     - Make F2 work for renaming bookmarks
    GtkEntry:
     - Turn off input methods in password entries
    - Other fixes * Documentation improvements
    - Updated translations

 -- Sebastien Bacher <seb128@debian.org>  Tue, 29 Nov 2005 16:00:32 +0100

gtk+2.0 (2.8.7-1) experimental; urgency=low

  * New upstream version.
  * Security fixes:
    - Add check to XPM reader to prevent integer overflow for specially crafted
      number of colors (CVE-2005-3186) (Closes: #339431).
    - Fix endless loop with specially crafted number of colors (CVE-2005-2975).
  * debian/patches/001_fs_documents.patch:
    - updated.
  * debian/rules:
    - fix confusing cp usage.

  [ Loic Minier ]
  * Drop xlibs-dev deps and build-deps.
    [debian/control, debian/control.in]

 -- Sebastien Bacher <seb128@debian.org>  Wed, 16 Nov 2005 11:54:11 +0100

gtk+2.0 (2.8.3-1) experimental; urgency=low

  * New upstream version:
    - Fix problems with the handling of initial settings
      for font options and cursor themes.
    - Add a --ignore-theme-index option to gtk-update-icon-cache.

 -- Jordi Mallach <jordi@debian.org>  Thu,  1 Sep 2005 19:45:50 +0200

gtk+2.0 (2.8.2-1) experimental; urgency=low

  * New upstream version:
    - Fix a crash with custom icon themes, which affected
      the gnome-theme-manager.
    - Make sure font and cursor settings are propaged down
      to the screen initially.
  * debian/control.in:
    - require the current pango.

 -- Sebastien Bacher <seb128@debian.org>  Thu, 25 Aug 2005 00:36:18 +0200

gtk+2.0 (2.8.1-1) experimental; urgency=low

  * New upstream version:
    - gtk-update-icon-cache no longer stores copies of symlinked icons,
      and it has a --index-only option to omit image data from the cache.
    - Make large GtkSizeGroups more efficient.
    - Improve positioning of menus in GtkToolbar.
    - Make scrolling work on unrealized icon views.
    - Avoid unnecessary redraws on range widgets.
    - Make sure that all GTK+ applications reload icon themes promptly.
    - Ensure that gdk_pango_get_context() and gtk_widget_get_pango_context()
      use the same font options and dpi value.
    - Multiple memory leak fixes.
  * debian/control.in:
    - updated the libgtk2.0-dev Depends according to the changes.
  * debian/rules:
    Add --enable-explicit-deps=yes to make sure stuff like x11 gets listed as a
    Requires: in gdk(-x11)-2.0.pc, because otherwise linkage against -lX11 and
    friends doesn't get carried through.  Whether or not this is correct is
    arguable, since libgdk-x11-2.0.so.0* ends up linked against it anyway, but
    stuff like gnome-panel seems to be relying on this transience.
    Change by Daniel Stone.

 -- Sebastien Bacher <seb128@debian.org>  Wed, 24 Aug 2005 11:24:16 +0200

gtk+2.0 (2.8.0-1) experimental; urgency=low

  * New upstream version.
  * debian/control.in:
    - build with the new cairo (Closes: #323705).
    - updated the Build-Depends for xorg (Closes: #323080).
  * debian/copyright:
    - use License instead of Copyright (Closes: #323209).
  * debian/patches/001_fs_documents.patch:
    - default to Documents.
  * debian/rules:
    - updated the shlibs.
  * debian/watch:
    - updated.

 -- Sebastien Bacher <seb128@debian.org>  Thu, 18 Aug 2005 12:19:41 +0200

gtk+2.0 (2.7.2-1) experimental; urgency=low

  * New upstream version.
  * debian/control.in:
    - updated the Build-Depends.
  * debian/rules:
    - updated the shlibs.
    - use cairo.
  * debian/watch:
    - updated.

 -- Sebastien Bacher <seb128@debian.org>  Tue, 12 Jul 2005 01:06:55 +0200

gtk+2.0 (2.6.8-1) unstable; urgency=low

  * New upstream version.
  * debian/patches/003_focus_issues.patch:
    - fixed with the new version.

 -- Sebastien Bacher <seb128@debian.org>  Thu, 16 Jun 2005 12:52:35 +0200

gtk+2.0 (2.6.7-2) unstable; urgency=low

  * Upload to unstable.
  * Forward patches from 2.6.4 branch:
    + 003_focus_issues.patch: stolen from CVS HEAD to fix focus issues.
    + debian/gtk-tutorial.devhelp: updated to reflect the reality of the
      html files.
  * Loïc Minier:
    + Document the configuration of Emacs-style key bindings in README.Debian,
      with additional instructions for GNOME users. [debian/README.Debian]
      (Closes: #309530)

 -- Josselin Mouette <joss@debian.org>  Mon,  6 Jun 2005 22:39:27 +0200

gtk+2.0 (2.6.7-1) experimental; urgency=low

  * New upstream version:
    - Fix compilation with gcc 4.0 (Closes: #303646).
  * debian/rules:
    - clean from the mips changes.
  * debian/patches/002_bmp.patch:
    - the new version fixes that.
  * debian/patches/004_fs_newdir.patch:
    - the new version fixes that.

 -- Sebastien Bacher <seb128@debian.org>  Thu, 14 Apr 2005 22:06:53 +0200

gtk+2.0 (2.6.4-1) unstable; urgency=medium

  * New upstream release.
  * debian/patches/004_fs_newdir.patch:
    - fix a crash in the fileselector when creating a directory.
  * debian/patches/003_iconcache.patch:
    - this bug is fixed in the new version.
  * debian/patches/004_mipsbuild.patch:
    - dropped, this change is not required.
  * debian/patches/002_bmp.patch:
     - fix CAN-2005-0891: BMP double free Dos (Closes: #303141).

 -- Sebastien Bacher <seb128@debian.org>  Tue,  5 Apr 2005 21:09:01 +0200

gtk+2.0 (2.6.2-4) unstable; urgency=high

  * Sjoerd Simons:
    - debian/patches/003_iconcache.patch
      + Updated. Let updateiconcache.c include config.h so it's correctly build
        with large file support (Closes: #295777).
  * Sebastien Bacher:
    - debian/shlibs.local:
      + dropped, fix the self depends (Closes: #296175).
  * Loic Minier:
    - debian/control*
      + added gtk2-engines-pixbuf subsection and priority to sync with
        the override.
  * Use high urgency so that icon themes can propagate to testing.

 -- Josselin Mouette <joss@debian.org>  Wed,  2 Mar 2005 22:28:38 +0100

gtk+2.0 (2.6.2-3) unstable; urgency=low

  * Patch from Steve Langasek <vorlon@debian.org>:
    Add a --disable-testsuite argument to upstream configure, to permit
    skipping the testsuite on architectures where large static binaries
    are currently problematic (i.e., mips).  Closes: #295048.

 -- Sebastien Bacher <seb128@debian.org>  Sun, 13 Feb 2005 19:23:39 +0100

gtk+2.0 (2.6.2-2) unstable; urgency=low

  * debian/libgtk2.0-bin.postinst:
    - don't run gtk-update-icon-cache, the themes should do that
      (Closes: #293568).
  * debian/patches/003_iconcache.patch:
    - should fix the gtk-update-icon-cache issue on sparc.

 -- Sebastien Bacher <seb128@debian.org>  Sun,  6 Feb 2005 19:57:57 +0100

gtk+2.0 (2.6.2-1) unstable; urgency=low

  * New upstream release:
    - fix the loop in gtkdialog (Closes: #291051).
    - should fix the issue on sparc (Closes: #293711).

 -- Sebastien Bacher <seb128@debian.org>  Sun,  6 Feb 2005 00:16:52 +0100

gtk+2.0 (2.6.1-2) unstable; urgency=low

  * Upload to unstable.
  * debian/patches/004_gtkmodules.patch:
    - don't reverse the order of modules, that fix a crash with the modules.

 -- Sebastien Bacher <seb128@debian.org>  Wed,  2 Feb 2005 18:28:09 +0100

gtk+2.0 (2.6.1-1) experimental; urgency=low

  * New upstream release.

 -- Sebastien Bacher <seb128@debian.org>  Sun,  9 Jan 2005 14:23:07 +0100

gtk+2.0 (2.6.0-1) experimental; urgency=low

  * New upstream release (Closes: #275239).
  * debian/control.in:
    - create a gtk2-engines-pixbuf package.
    - recommends hicolor-icon-theme (Closes: #287334).
    - rename libgtk2.0-dbg to libgtk2.0-0-dbg.
    - updated the Build-Depends.
  * debian/gtk2-engines-pixbuf.files:
    - added.
  * debian/libgtk2.0-bin.files:
    - install gtk-update-icon-cache here.
  * debian/libgtk2.0-bin.postinst:
    - call gtk-update-icon-cache.
  * debian/patches/001_gtk+-debian-aclocal-pass_all.patch:
    - removed, should not be needed with the new version.
  * debian/patches/003_treeview-typeahead.patch,
    debian/patches/003_filechooser-search.patch,
    debian/patches/004_treeview-activate.patch,
    debian/patches/005_modifiers.patch:
    - removed, these changes are in the new version.
  * debian/rules:
    - updated the shlibs.
    - use dh_strip to make the debug package.
  * update-gtk-immodules.in:
  * update-gdkpixbuf-loaders.in:
    - module version is 2.4.0.
  * debian/watch:
    - updated.

 -- Sebastien Bacher <seb128@debian.org>  Wed, 29 Dec 2004 18:55:11 +0100

gtk+2.0 (2.4.14-2) unstable; urgency=low

  * debian/patches/003_filechooser-search.patch:
    - open the path entry if "/" is enter in the file-selector.
  * debian/patches/004_treeview-activate.patch:
    - typeahead active the row.
  * debian/patches/005_modifiers.patch:
    - accept shift-/ for bringing up the location popup.

 -- Sebastien Bacher <seb128@debian.org>  Tue, 21 Dec 2004 16:21:15 +0100

gtk+2.0 (2.4.14-1) unstable; urgency=low

  * New upstream release (Closes: #286021).
  * debian/control.in:
    - set myself as maintainer.
  * debian/patches/003_treeview-typeahead.patch:
    - backport of the typeahead feature for the treeviews.

 -- Sebastien Bacher <seb128@debian.org>  Sun, 19 Dec 2004 14:55:07 +0100

gtk+2.0 (2.4.13-1) unstable; urgency=low

  * New upstream release:
    - make new notebook tabs appear again (Closes: #276266).

 -- Sebastien Bacher <seb128@debian.org>  Wed, 13 Oct 2004 16:48:13 +0200

gtk+2.0 (2.4.11-1) unstable; urgency=low

  * New upstream release.

 -- Sebastien Bacher <seb128@debian.org>  Mon, 11 Oct 2004 19:48:52 +0200

gtk+2.0 (2.4.10-1) unstable; urgency=low

  * New upstream release.
  * debian/patches/002_xpmico.patch:
    - updated, the two xpm fixes are in the new version.

 -- Sebastien Bacher <seb128@debian.org>  Sun, 19 Sep 2004 00:19:27 +0200

gtk+2.0 (2.4.9-2) unstable; urgency=high

  * debian/patches/002_xpmico.patch:
    - fix CAN-2004-0782 Heap-based overflow in pixbuf_create_from_xpm.
    - fix CAN-2004-0783 Stack-based overflow in xpm_extract_color.
    - fix CAN-2004-0788 ico loader integer overflow.

 -- Sebastien Bacher <seb128@debian.org>  Fri, 17 Sep 2004 12:23:02 +0200

gtk+2.0 (2.4.9-1) unstable; urgency=medium

  * GNOME team upload.
  * New upstream release.
  * debian/patches/002_gtk+-pixbuf-breakage.patch: removed, included in
    upstream version 2.4.8.

 -- Jordi Mallach <jordi@debian.org>  Thu, 26 Aug 2004 14:41:17 +0200

gtk+2.0 (2.4.7-1) unstable; urgency=medium

  * GNOME team upload.
  * New upstream release.
  * debian/patches/002_gtk+-pixbuf-breakage.patch: new, apply patch
    from CVS to fix thumbnail corruption in nautilus.

 -- Jordi Mallach <jordi@debian.org>  Wed, 25 Aug 2004 20:12:28 +0200

gtk+2.0 (2.4.4-2) unstable; urgency=medium

  * Rebuilt with libtiff4.
  * debian/control.in:
    - Build-Depends on libtiff4-dev.

 -- Sebastien Bacher <seb128@debian.org>  Wed, 28 Jul 2004 23:11:54 +0200

gtk+2.0 (2.4.4-1) unstable; urgency=low

  * New upstream release
    - fix the problem with directories displayed twice in the file chooser
      (Closes: #249057).
  * debian/control.in:
    - libgtk2.0-bin Conflicts with old libgtk2.0-dev.

 -- Sebastien Bacher <seb128@debian.org>  Sun, 11 Jul 2004 00:33:45 +0200

gtk+2.0 (2.4.3-3) unstable; urgency=low

  * debian/control.in:
    - since manpages have moved from libgtk2.0-dev to libgtk2.0-bin we need
      to update the Replaces.

 -- Sebastien Bacher <seb128@debian.org>  Mon,  5 Jul 2004 21:15:25 +0200

gtk+2.0 (2.4.3-2) unstable; urgency=low

  * debian/libgtk2.0-bin.files:
    - moved gdk-pixbuf-query-loader and gtk-query-immodules-2.0 manpages
      to libgtk2.0-bin. (Closes: #257399).
  * debian/libgtk2.0-doc.doc-base.gtk-faq,
    debian/libgtk2.0-doc.doc-base.gtk-tutorial:
    - changed index.html with book1.html.
  * Included devehelp files from Richard Cohen <richard@daijobu.co.uk>
    for the faq and the tutorial (Closes: #256844).

 -- Sebastien Bacher <seb128@debian.org>  Sat,  3 Jul 2004 12:14:38 +0200

gtk+2.0 (2.4.3-1) unstable; urgency=medium

  * New upstream release
    - fix the button size allocation logic (Closes: #253971, #253974).
  * debian/rules
    - updated the shlibs.

 -- Sebastien Bacher <seb128@debian.org>  Tue, 15 Jun 2004 11:29:13 +0200

gtk+2.0 (2.4.2-1) unstable; urgency=low

  * New upstream release (Closes: #252690).

 -- Sebastien Bacher <seb128@debian.org>  Sat,  5 Jun 2004 17:23:57 +0200

gtk+2.0 (2.4.1-4) unstable; urgency=low

  * Conflict with librsvg2-common << 2.6.3-1 (closes: #250714, #250647).

 -- Josselin Mouette <joss@debian.org>  Tue, 25 May 2004 14:15:22 +0200

gtk+2.0 (2.4.1-3) unstable; urgency=low

  * GNOME Team Upload.
  * Upload to unstable
    + close bug fixed in experimental uploads
      (Closes: #161244, #201429, #201507, #203677, #208744, #223316, #228603)
      (Closes: #232081, #234902, #238479, #241860)
  * Marc Brockschmidt <he@debian.org>
   + debian/rules: Really, *really* surpress warnings when removing directories
     (using >/dev/null 2>&1 instead of 2>&1 >/dev/null)

 -- Sebastien Bacher <seb128@debian.org>  Sat, 22 May 2004 15:23:21 +0200

gtk+2.0 (2.4.1-2) experimental; urgency=low

  * debian/control.in:
    + Conflict with old versions of packages that need a rebuild to work with
      gtk+2.4 to force the updates.

 -- Sebastien Bacher <seb128@debian.org>  Sat, 15 May 2004 23:24:07 +0200

gtk+2.0 (2.4.1-1) experimental; urgency=low

  * New upstream release.
  * Akira TAGOH <tagoh@debian.org>
  + debian/control:
    - added libgtk2.0-0 to Depends for libgtk2.0-common. (from 2.2.4-6).
    - libgtk2.0-dev requires libxext-dev. (Closes: #247469)
  * Sebastien Bacher <seb128@debian.org>
  + debian/rules:
    - updated shlib to 2.4.1.

 -- Sebastien Bacher <seb128@debian.org>  Wed,  5 May 2004 23:32:54 +0200

gtk+2.0 (2.4.0-4) experimental; urgency=low

  * Akira TAGOH <tagoh@debian.org>
  + debian/control:
    - moved arch-independent files to libgtk2.0-common again.
    - separated arch-dependent files to libgtk2.0-bin.

 -- Akira TAGOH <tagoh@debian.org>  Sat, 24 Apr 2004 02:11:52 +0900

gtk+2.0 (2.4.0-3) experimental; urgency=low

  * Akira TAGOH <tagoh@debian.org>
  + debian/rules:
    - modified the sed script to strip the version properly.
      (closes: Bug#241860)
    - clean up.
  + debian/control:
    - updated the dependencies for the separated xlibs-dev. (from 2.2.4-4)
    - separated arch-independent data to libgtk2.0-data package.
      (from 2.2.4-4)

 -- Akira TAGOH <tagoh@debian.org>  Fri, 23 Apr 2004 22:43:58 +0900

gtk+2.0 (2.4.0-2) experimental; urgency=low

  * debian/control.in:
    + Added build dependency on libxcursor-dev. (Closes: #239886)

  Sebastien Bacher <seb128@debian.org>:
  * debian/rules:
    + Updated shver.
  * debian/control.in:
    + Added again Build-Depends removed in 2.4.0-1.

 -- J.H.M. Dassen (Ray) <jdassen@debian.org>  Thu, 25 Mar 2004 11:18:48 +0100

gtk+2.0 (2.4.0-1) experimental; urgency=low

  * First upload of new GTK+ branch in experimental (Closes: #238479):
    + back out locale-dependent interpretation of KP_Decimal (Closes: #234902).
    + change scrolling method (Closes: #161244).
    + first day of the week depends of the locale (Closes: #228603).
    + fix fileselector multiple selection handling after keyboard validation
      (Closes: #208744).
    + fix gtktreeview crash when expanding nodes (Closes: #232081).
    + fix quotes missing in gtk-2.0.m4 (Closes: #223316).
    + use the new file selector (Closes: #203677, #201429, #201507).
    + and probably a lot of other bug fixes and improvements ...
  * Sebastien Bacher <seb128@debian.org>:
    * debian/control.in:
      - removed Build-Depends on docbook-utils and linuxdoc-tools-text.
    * patches/001_gtk+-debian-docfix-dtds.patch:
      - removed since we have a xml catalog now.
  * Rob Taylor <robtaylor@fastmail.fm>:
    * debian/control.in, debian/sources, debian/scripts/vars, debian/watch:
      - updated for 2.4.0.
    * debian/patches/:
      - 002_gtk+-debian-freetype.patch:
        + removed, not needed any more, configure already has the changes.
      - 000_gtk+-2.2.4-non-weak-symbols.patch:
        + removed, fixed in upstream source.
      - 000_gtk+-2.2.4-socketfocus.patch:
        + removed, fixed in upstream source.
      - 001_gtk+-debian-aclocal-pass_all.patch :
        + updated.
      - 000_gtk+-2.2.0-buildfix-immodule.patch
        + updated.
      - 000_gtk+-debian-xinerama-pic.patch
        + updated.

 -- Sebastien Bacher <seb128@debian.org>  Mon, 22 Mar 2004 22:00:09 +0100

gtk+2.0 (2.2.4-6) unstable; urgency=low

  * Akira TAGOH <tagoh@debian.org>
  + debian/control:
    - added libxt-dev to fix FTBFS. (closes: Bug#246450)
    - added libgtk2.0-0 to Depends for libgtk2.0-common.

 -- Akira TAGOH <tagoh@debian.org>  Tue,  4 May 2004 11:30:56 +0900

gtk+2.0 (2.2.4-5) unstable; urgency=low

  * Akira TAGOH <tagoh@debian.org>
  + debian/control:
    - moved arch-independent files to libgtk2.0-common again.
    - separated arch-dependent files to libgtk2.0-bin.

 -- Akira TAGOH <tagoh@debian.org>  Sat, 24 Apr 2004 01:12:08 +0900

gtk+2.0 (2.2.4-4) unstable; urgency=low

  * Akira TAGOH <tagoh@debian.org>
  + debian/rules:
    - bumped the shlib version to 2.2.1-3. (closes: Bug#208671)
  + debian/control:
    - separated arch-independent data to libgtk2.0-data package.
      (closes: Bug#233396)
    - fixed the dependencies for the separated xlibs-dev.
      (closes: Bug#241782, Bug#241522)
  + debian/libgtk2.0-data.{dir,files}:
    - added.

 -- Akira TAGOH <tagoh@debian.org>  Thu, 22 Apr 2004 00:42:02 +0900

gtk+2.0 (2.2.4-3) unstable; urgency=low

  * debian/patches/:
    - 002_gtk+-debian-freetype.patch: patch from Daniel Schepler to fix the
      build failure due to freetype (Closes: #225129).

 -- Sebastien Bacher <seb128@debian.org>  Sat, 27 Dec 2003 13:00:17 +0100

gtk+2.0 (2.2.4-2) unstable; urgency=low

  * debian/control:
    - added Uploaders to maintain as team.
    - added gnome-pkg-tools to Build-Depends.
  * debian/gtk-options.7:
    - included a manpage with the help on the options (Closes: Bug#216897).
  * debian/libgtk2.0-doc.doc-base.gtk-faq
  * debian/libgtk2.0-doc.doc-base.gtk-tutorial:
    - replaced book1.html by index.html (closes: Bug#215382).
  * debian/patches/:
    - 000_gtk+-2.2.4-socketfocus.patch: new patch to fix a GtkSocket focus
      problem that hang the system tray applet.
      (closes: Bug#210813, Bug#212772).
    - 001_gtk+-ximian-gtk2-filesel-navbutton-5.patch: updated
      (closes: Bug#216660).
  * debian/rules:
    - modified to generate debian/control using gnome-pkg-tools.

 -- Sebastien Bacher <seb128@debian.org>  Fri, 31 Oct 2003 21:32:29 +0100

gtk+2.0 (2.2.4-1) unstable; urgency=low

  * New upstream release.
    - implemented the im module that produces C_WITH_CEDILLA rather than
      C_WITH_ACUTE for dead_acute+c combinations. it will be used as default
      im module for fr and pt. (closes: Bug#168557)
    - reworked the handling of XIM's status window. (closes: Bug#203009)
  * debian/control:
    - removed libgtk2.0-0png3 which is unnecessary anymore.
    - added non-versioned Conflicts: libgtk2.0-0png3.
    - bumped Standards-Version to 3.6.1.0.
  * debian/patches/: removed the backported patches.
    - 000_gtk+-2.2.2-docfix-gtk2compliant.patch
    - 000_gtk+-2.2.2-docfix-gtktreemodel.patch
    - 000_gtk+-2.2.2-gtkwidget-viewable.patch
    - 000_gtk+-2.2.2-imxim-reconnect.patch

 -- Akira TAGOH <tagoh@debian.org>  Mon,  8 Sep 2003 03:42:18 +0900

gtk+2.0 (2.2.2-3) unstable; urgency=low

  * debian/patches/:
    - 000_gtk+-2.2.2-docfix-gtk2compliant.patch: applied a backported patch
      from CVS to fix the old documentation. (closes: Bug#146723)
    - 000_gtk+-2.2.2-docfix-gtktreemodel.patch: applied a backported patch
      from CVS to fix the sample code. (closes: Bug#201322)
    - 000_gtk+-2.2.2-gtkwidget-viewable.patch: applied a backported patch from
      CVS to fix the garbled pixmaps. (closes: Bug#201808, Bug#202486)
    - 000_gtk+-2.2.2-imxim-reconnect.patch: applied a backported patch from
      CVS to fix the segfaults if the XIM server is killed during running gtk2
      applications.
    - 001_gtk+-debian-docfix-dtds.patch: applied to use the local DTD.
  * debian/control:
    - added Build-Depends-Indep: gtk-doc-tools, docbook-xml to re-generate the
      fixed documents.

 -- Akira TAGOH <tagoh@debian.org>  Thu,  7 Aug 2003 01:42:46 +0900

gtk+2.0 (2.2.2-2) unstable; urgency=low

  * debian/patches/:
    - 001_gtk+-debian-aclocal-pass_all.patch: re-applied a patch to fix FTBFS
      on arm. (closes: Bug#201443)

 -- Akira TAGOH <tagoh@debian.org>  Thu, 24 Jul 2003 03:14:10 +0900

gtk+2.0 (2.2.2-1) unstable; urgency=low

  * New upstream release. (closes: Bug#200350)
    - Fixed threadlocks on GtkTreeView. (closes: Bug#192136)
    - Fixed the crash on moving the cursor when the cursor is invisible.
      (closes: Bug#187858)
    - Fixed the compose table for ascending order. (closes: Bug#182073)
  * debian/control:
    - fix the FTBFS. Thanks to Daniel Baeyens.
    - bumped Standards-Version to 3.6.0.
  * debian/rules:
    - removed dh_undocumented.
    - don't claim the newer shlibs.
  * debian/patches/:
    - 000_gtk+-2.2.1-gdk_event_copy_for_xinput.patch: removed.
    - 000_gtk+-2.2.1-gdk_visual_get_best_with_depth.patch: removed.
    - 000_gtk+-2.2.1-gtk_text_line_previous_could_contain_tag.patch: removed.
    - 000_gtk+-2.2.1-gtktreeview-scroll.patch: removed.
    - 000_gtk+-debian-xinerama-pic.patch: updated.
    - 001_gtk+-debian-aclocal.patch: removed.
    - 001_gtk+-ximian-gtk2-filesel-navbutton-5.patch: applied a Ximian patch
      to improve the GtkFileSel UI. Requested from Ross Burton.
    - 000_gtk+-2.2.2-non-weak-symbols.patch: applied to fix the undefined non
      weak symbols. (closes: Bug#193774)

 -- Akira TAGOH <tagoh@debian.org>  Sun, 13 Jul 2003 21:26:49 +0900

gtk+2.0 (2.2.1-6) unstable; urgency=low

  * debian/patches/001_gtk+-debian-aclocal.patch:
    - damn. forgot to re-run automake and autoconf. fix again.
      (closes: Bug#190569)

 -- Akira TAGOH <tagoh@debian.org>  Sat,  3 May 2003 16:56:18 +0900

gtk+2.0 (2.2.1-5) unstable; urgency=low

  * debian/control:
    - changed a section for libgtk2.0-dbg to libdevel.
  * debian/patches/000_gtk+-debian-aclocal.patch:
    - applied to fix Xinerama library linkage broken on arm and m68k.
      (closes: Bug#190569)
      Thanks to James Troup and Phil Blundell.

 -- Akira TAGOH <tagoh@debian.org>  Sat,  3 May 2003 01:50:52 +0900

gtk+2.0 (2.2.1-4) unstable; urgency=low

  * debian/patches/:
    - 000_gtk+-2.2.1-gtk_text_line_previous_could_contain_tag.patch:
      applied a backported patch from CVS. (closes: Bug#185066)
    - 000_gtk+-2.2.1-gtktreeview-scroll.patch:
      applied a patch from Red Hat to fix infinite expose loops in TreeView.
      (closes: Bug#187312)
  * debian/control:
    - bumped Standards-Version to 3.5.9.
    - changed a section for libgtk2.0-dev to libdevel.
  * debian/rules:
    - fixed the symlinks on /usr/share/gtk-doc/html. (closes: Bug#183377)
  * debian/compat:
    - use it instead of DH_COMPAT.

 -- Akira TAGOH <tagoh@debian.org>  Fri,  4 Apr 2003 01:55:35 +0900

gtk+2.0 (2.2.1-3) unstable; urgency=low

  * build against the latest xlibs and xlibs-pic. so now correct
    libXinerama_pic.a is linked and supporting xinarama is re-enabled.
    (closes: Bug#177318)
  * debian/control:
    - depend on xlibs-pic (>= 4.2.1-6)
  * debian/README.Debian:
    - improve description of static libraries issue. (closes: Bug#181879)
      Thanks to Marcelo E. Magallon <mmagallo@debian.org>
    - mention gtk-key-theme-name and gnome-settings-daemon.
  * debian/rules:
    - create the symlinks in /usr/share/gtk-doc

 -- Akira TAGOH <tagoh@debian.org>  Mon,  3 Mar 2003 01:35:04 +0900

gtk+2.0 (2.2.1-2) unstable; urgency=low

  * debian/patches/:
    - 000_gtk+-2.2.1-gdk_visual_get_best_with_depth.patch:
      backport from CVS to fix wrong pointer returned. (closes: Bug#180786)
    - 000_gtk+-2.2.1-gdk_event_copy_for_xinput.patch:
      applied to fix a crash when using xinput. (closes: Bug#178908)

 -- Akira TAGOH <tagoh@debian.org>  Wed, 19 Feb 2003 03:10:55 +0900

gtk+2.0 (2.2.1-1) unstable; urgency=low

  * New upstream release.
  * debian/patches/: removed patches. they were fixed in this release.
    - 000_gtk+-2.2.0-buildfix-modules.patch
    - 000_gtk+-2.2.0-fix-es.po.patch
    - 000_gtk+-2.2.0-fnmatch-undef.patch
    - 002_gtk+-2.2.0-fixtypo-xinput.patch
  * debian/patches/000_gtk+-debian-xinerama-pic.patch: update.

 -- Akira TAGOH <tagoh@debian.org>  Fri,  7 Feb 2003 03:37:44 +0900

gtk+2.0 (2.2.0-3) unstable; urgency=low

  * debian/: clean the unnecessary files up. (closes: Bug#177809)
  * debian/rules:
    remove the old debug libraries on install process if exists. (closes:
    Bug#177376)
  * debian/patches/:
    - 002_gtk+-2.2.0-fixtypo-xinput.patch:
      fix to enable XFree86 xinput extension. (closes: Bug#176104)
    - 000_gtk+-2.2.0-fix-es.po.patch:
      applied to fix es.po. (closes: Bug#178870)

 -- Akira TAGOH <tagoh@debian.org>  Wed, 29 Jan 2003 23:01:43 +0900

gtk+2.0 (2.2.0-2) unstable; urgency=low

  * debian/control:
    - add Conflicts libgnomeui-0 (<< 2.0.6-2) to avoid the gtk+ 2.2 breakage.
      (closes: Bug#175946)
    - add Conflicts gtk2.0-examples (<< 2.2.0) (closes: Bug#175868)
    - add dependency of libgtk2.0-common. (closes: Bug#175873)
    - removed libgtk-common package. it's no longer needed. I hope the loop
      dependency will be disappeared.
    - used libpng12-0-dev instead of libpng3-dev for Build-Depends.
  * debian/patches/001_gtk+-2.2.0-xinerama-pic.patch:
    disabled Xinerama support until xlibs-pic has libXinerama_pic.a.
    (closes: Bug#175923)

 -- Akira TAGOH <tagoh@debian.org>  Sat, 11 Jan 2003 05:09:12 +0900

gtk+2.0 (2.2.0-1) unstable; urgency=low

  * New upstream release.
    - upstream bug were closed. so it should be fixed. (closes: Bug#147697)
  * debian/control:
    - updated Build-Depends.
    - bumped Standards-Version to 3.5.8.
    - fix description-synopsis-ends-with-full-stop stuff.
  * debian/update-gdkpixbuf-loaders: add brand-new wrapper script.
  * debian/update-gdkpixbuf-loaders.1: add manpage.
  * debian/rules:
    modified to build the static libraries. (closes: Bug#161938)
  * debian/README.Debian: updated.
  * debian/patches/:
    - 000_gtk+-2.0.6-extranotify.patch: removed.
    - 000_gtk+-2.0.6-scroll_to.patch: removed.
    - 000_gtk+-2.2.0-fnmatch-undef.patch:
      applied to fix having main() in the library.
    - 000_gtk+-2.2.0-buildfix-immodule.patch:
      applied to build the static libraries.
    - 000_gtk+-2.2.0-buildfix-modules.patch:
      applied to fix a typo in configure.in.

 -- Akira TAGOH <tagoh@debian.org>  Mon,  6 Jan 2003 18:34:31 +0900

gtk+2.0 (2.0.9-1) unstable; urgency=low

  * New upstream release.
  * debian/patches/000_gtk+-2.0.8-refcolormap.patch: this release contains it.
    removed.

 -- Akira TAGOH <tagoh@debian.org>  Sun, 24 Nov 2002 00:08:42 +0900

gtk+2.0 (2.0.8-2) unstable; urgency=low

  * debian/patches/000_gtk+-2.0.8-refcolormap.patch: applied to fix the crash
    problem with close. For solve your problem, I recommend you restart all
    processes related gtk+2.0. (closes: Bug#169005)

 -- Akira TAGOH <tagoh@debian.org>  Fri, 15 Nov 2002 09:16:40 +0900

gtk+2.0 (2.0.8-1) unstable; urgency=low

  * New upstream release.
  * debian/patches/000_gtk+-2.0.7-gifsymbol.patch: it's no longer needed.
  * debian/rules: fix twice called ldconfig. (closes: Bug#168071)

 -- Akira TAGOH <tagoh@debian.org>  Sun, 10 Nov 2002 16:36:45 +0900

gtk+2.0 (2.0.7-1) unstable; urgency=low

  * New upstream release.
  * debian/rules:
    - support noopt option for DEB_BUILD_OPTIONS.
    - add symlink for gobject. (closes: Bug#167755)
  * Hm, closed a bug which is marked as NMU due to mis-upload. (closes:
    Bug#166442)
  * debian/patches: these patches are no longer needed, so removed.
    - 000_gtk+-2.0.6-64bitfix.patch
    - 000_gtk+-2.0.6-imenvvar.patch
    - 000_gtk+-2.0.6-keycode.patch
    - 000_gtk+-2.0.6-usintl.patch
  * debian/patches/000_gtk+-2.0.7-gifsymbol.patch: applied to fix the
    undefined symbol issue on libpixbufloader-gif.so.

 -- Akira TAGOH <tagoh@debian.org>  Wed,  6 Nov 2002 01:42:22 +0900

gtk+2.0 (2.0.6-4) unstable; urgency=low

  * debian/patches/000_gtk+-2.0.6-64bitfix.patch: applied to fix a segfault on
    IA64. (closes: Bug#166442)

 -- Akira TAGOH <tagoh@debian.org>  Sun, 27 Oct 2002 03:07:59 +0900

gtk+2.0 (2.0.6-3) unstable; urgency=low

  * debian/control: moved libgtk2.0-0png3 to the last entry.
  * debian/rule: fix invalid symlink.

 -- Akira TAGOH <tagoh@debian.org>  Sat, 31 Aug 2002 09:46:36 +0900

gtk+2.0 (2.0.6-2) unstable; urgency=low

  * debian/control:
    - bumped Standards-Version and depends debhelper (>> 4).
    - revert to libgtk2.0-0 and remove Conflicts libgtk2.0-0, then add
      versioned conflict to work eog2, gnome-panel2, celestia, gimp1.3 and
      metatheme. (closes: Bug#155689, Bug#155854)
    - add libgtk2.0-0png3 to Conflicts, Replaces.
    - add a dummy package for libgtk2.0-0png3.
    - remove the image libraries dependency. (closes: Bug#158858)
    - clean up -dev's Depends.
    - add libglib2.0-doc, libatk1.0-doc and libpango1.0-doc to Suggests.
  * debian/patches/: from Red Hat.
    - 000_gtk+-2.0.6-exportsymbols.patch:
      applied to fix stripping the wrong symbols due to libtool's bug. but
      it's not affected about the symbols used by ld and ld.so. mainly for nm,
      gdb and etc.
    - 000_gtk+-2.0.6-extranotify.patch:
      applied to fix extra settings notifies on startup that were causing
      significant performance problems as fonts were reloaded.
    - 000_gtk+-2.0.6-imenvvar.patch:
      applied to fix a bug with GTK_IM_MODULE environment variable.
    - 000_gtk+-2.0.6-keycode.patch: applied to fix a problem with keycodes
      passed to GtkIMContextXIM.
    - 000_gtk+-2.0.6-usintl.patch:
      applied to fix to GtkIMContextSimple compose for us-intl keyboards.
      should be fixed. (closes: Bug#149515)
    - 000_gtk+-2.0.6-scroll_to.patch:
      applied to fix gtk_tree_view_scroll_to_cell.
  * debian/rules: add symlink to fix the missing symlink for glib, atk and
    pango. (closes: Bug#158107)
  * debian/update-gtk-immodules.fr.1: added. Thanks Julien Louis. (closes:
    Bug#156985)

 -- Akira TAGOH <tagoh@debian.org>  Sat, 31 Aug 2002 05:22:33 +0900

gtk+2.0 (2.0.6-1) unstable; urgency=low

  * New upstream release.
  * Build against libpng3 (closes: 147852)

 -- Akira TAGOH <tagoh@debian.org>  Sun,  4 Aug 2002 18:31:53 +0900

gtk+2.0 (2.0.5-2) unstable; urgency=low

  * debian/rules: add --with-xinput=xfree. (closes: Bug#151668)
  * debian/control:
    - add Conflicts: libgdkxft0 to avoid some problem. (closes: Bug#151439).
    - changed a summary from 'Dummy' to 'Empty'.

 -- Akira TAGOH <tagoh@debian.org>  Thu,  4 Jul 2002 00:18:53 +0900

gtk+2.0 (2.0.5-1) unstable; urgency=low

  * New upstream release.
  * debian/control: fix typo (closes: Bug#150147)

 -- Akira TAGOH <tagoh@debian.org>  Mon, 17 Jun 2002 01:07:20 +0900

gtk+2.0 (2.0.4-1) unstable; urgency=low

  * New upstream release.
    - should be fixed in this release. (closes: Bug#149667)
    - now it's not linked to the Pango docs (closes: Bug#149143)
  * debian/libgtk2.0-doc.doc-base.{gdk,gdk-pixbuf,gtk,gtk-faq,gtk-tutorial}:
    add a new line before Format: (closes: Bug#149548, Bug#150043)

 -- Akira TAGOH <tagoh@debian.org>  Sun, 16 Jun 2002 05:16:29 +0900

gtk+2.0 (2.0.3-1) unstable; urgency=low

  * New upstream release.
  * debian/libgtk2.0-doc.doc-base.{gtk-faq,gtk-tutorial}:
    changed an index file.

 -- Akira TAGOH <tagoh@debian.org>  Thu, 30 May 2002 23:35:52 +0900

gtk+2.0 (2.0.2-5) unstable; urgency=high

  * debian/control: add libtiff3g-dev, libpng2-dev and libjpeg62-dev to
    Depends for -dev.
  * set urgency=high because previous version violated our policy 2.3.4.
    it should be into woody as far as possible.

 -- Akira TAGOH <tagoh@debian.org>  Thu, 23 May 2002 00:31:52 +0900

gtk+2.0 (2.0.2-4) unstable; urgency=high

  * debian/patches/000_gtk+2.0-2.0.2-bigendian.patch: applied to fix a problem
    for big endian machines. (closes: Bug#145285)
  * set urgency=high because it should be in woody.

 -- Akira TAGOH <tagoh@debian.org>  Wed,  1 May 2002 02:46:12 +0900

gtk+2.0 (2.0.2-3) unstable; urgency=low

  * debian/update-gtk-immodules: create /etc/gtk-2.0 directory for workaround,
    if it's not found. oh, why didn't you have it? (closes: Bug#143508,
    Bug#144673)

 -- Akira TAGOH <tagoh@debian.org>  Sun, 28 Apr 2002 04:46:30 +0900

gtk+2.0 (2.0.2-2) unstable; urgency=low

  * debian/libgtk2.0-doc.doc-base.{gtk-faq,gtk-tutorial}:
    Grr, fix again... (closes: Bug#141069)
  * debian/scripts/vars.build: fix bashism.

 -- Akira TAGOH <tagoh@debian.org>  Sat,  6 Apr 2002 04:26:14 +0900

gtk+2.0 (2.0.2-1) unstable; urgency=low

  * New upstream release.
    - this release has bug fix only.
  * debian/control: forgot to update versioned dependency for -dev.
  * debian/libgtk2.0-doc.doc-base.gtk-faq,
    debian/libgtk2.0-doc.doc-base.gtk-tutorial:
    fix wrong index. (closes: Bug#141069)

 -- Akira TAGOH <tagoh@debian.org>  Thu,  4 Apr 2002 02:49:49 +0900

gtk+2.0 (2.0.1-1) unstable; urgency=low

  * New upstream release.
  * debian/update-gtk-immodules: check the immodules directory.

 -- Akira TAGOH <tagoh@debian.org>  Sun, 31 Mar 2002 00:59:03 +0900

gtk+2.0 (2.0.0-3) unstable; urgency=low

  * debian/rules: removed regenerate shlibs. all packages no longer needs to
    depend on -common.

 -- Akira TAGOH <tagoh@debian.org>  Sat, 16 Mar 2002 21:51:08 +0900

gtk+2.0 (2.0.0-2) unstable; urgency=low

  * debian/control: changed Build-Depends to libpango1.0-dev (>= 1.0.0-3)
  * debian/{control,rules}: add libgtk-common as dummy package for upgrading.
  * debian/rules: fix the missing directory.
  * debian/update-gtk-immodules: fix file attribute for gtk.immodules.

 -- Akira TAGOH <tagoh@debian.org>  Sat, 16 Mar 2002 04:34:39 +0900

gtk+2.0 (2.0.0-1) unstable; urgency=low

  * Initial Release.

 -- Akira TAGOH <tagoh@debian.org>  Wed, 13 Mar 2002 00:07:25 +0900