~oif-team/qt/touch-end-reentrant

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
qt4-x11 (4:4.7.3-1ubuntu3) oneiric; urgency=low

  * debian/rules:
    - preserve default flags (like -g)

 -- Didier Roche <didrocks@ubuntu.com>  Thu, 09 Jun 2011 18:33:15 +0200

qt4-x11 (4:4.7.3-1ubuntu2) oneiric; urgency=low

  [ Chase Douglas ]
  * Fix touch end event handling, LP: #785433
    - Updated kubuntu_28_xi2.1.patch with the fix

  [ Didier Roche ]
  * debian/rules:
    - use -fno-strict-aliasing for now as a lot of QML codes broke because of
      aliasing wrongly optimized. Issue under work upstream. (LP: #791213)

 -- Didier Roche <didrocks@ubuntu.com>  Wed, 08 Jun 2011 17:20:48 +0200

qt4-x11 (4:4.7.3-1ubuntu1) oneiric; urgency=low

  * Merge from Debian unstable, remaining changes:
    - Do not package ibase/firebird package, remove from debian/rules and
      debian/control
    - libqt4-sql-ibase not recommend for libqt4-sql
    - build with -no-phonon
    - do not build libqt4-phonon, disable in debian/control
    - Build packages with lzma compression using the dh addon from pkg-kde-tools
    - Rules to remove po dir in clean
    - Add MessagesQt.sh
    - Rules to create Messages.sh link to MessagesQt.sh and rules to create po
      dir and exectue extract-messages.sh in common-install-prehook-impl
    - Make libqt4-dev depend on libx11-dev
    - In debian/rules: configure with "-arch armv6" option on armel
    - Add and install Trolltech.conf in libqtcore4.install
    - Build QtWebkit and use it only for QtAssistant
      + Rule to put qt_webkit_version.pri in mkspecs/modules
      + Rule to remove libQtWebKit* after build
      + Exclude usr/bin/assistant-qt4 from dh_shlibdeps
    - Fix Lucid upgrades: libqt4-help breaks/replaces libqtcore4 (<< 4:4.7.0)
    - Change OpenGL backend from GL to GLES 2 for ARM
      + Build-depend and make libqt4-opengl-dev depend on libgles2-mesa-dev
        instead of libgl1-mesa-dev and libglu1-mesa-dev
      + Pass "-opengl es2" to configure
  * Drop kubuntu_23_syncqt_no_timestamp_change.diff, replaced by
    02_syncqt_sane_timestamp_for_nonexisting_headers.diff.
  * Drop kubuntu_02_neon_flags.patch, replaced by 95_neon_flags.patch.
  * Disable x-0003-Use-GCC-intrinsics-for-armv6-atomic-operations.patch as
    we use kubuntu_23_arm_memory_barriers.patch instead.
  * Drop appmenu-qt from libqtgui4's Recommends since indicator-appmenu
    recommends it.
  * Drop kubuntu_30_blacklist_ssl_certificates.diff, applied upstream.
  * Update Vcs links as the branch is owned by kubuntu-packagers now.

 -- Felix Geyer <debfx-pkg@fobos.de>  Tue, 31 May 2011 15:48:58 +0200

qt4-x11 (4:4.7.3-1) unstable; urgency=low

  * New upstream release.
  * Remove blacklist_fraudulent_comodo_certificates.diff - stolen upstream.
  * Add patches cherry-picked upstream:
    - Fix_GL_problems_on_stock_1.4_SGX_drivers.patch
    - Fixed_missing_text_when_using_static_text_items_in_GL_2_engine.patch
    - Update_createwindow_in_qgl_x11egl.patch
    - Improve-performance-of-partial-updates-in-raster-win.patch
    - Fix_transformIsSimple_in_QGraphicsScene.patch
    - Micro-optimization_for_QSpanData.patch
    - Some_Optimizations_for_the_gray_raster.patch
    - Make_use_of_the_fast_image_paths.patch
    - Add_support_for_QT_USE_DRAG_DISTANCE_env_var.patch
    - Prevent_recursion_when_creating_window_surface.patch

  [ Pino Toscano ]
  * Build depend on libssl-dev. (Closes: #623596)

  [ Modestas Vainius ]
  * Build with system compiler on s390 (which is 4.6 now). However, in order to
    avoid #606079, build depend >= g++ 4:4.5 on s390.
  * Bump Standards-Version to 3.9.2: no changes needed.
  * Drop blacklist_fraudulent_comodo_certificates.diff patch, upstream.
  * Refresh patches.
  * Build depend on g++-4.6 (>= 4.6.0-7~) [armel] and make libqt4-dev break
    g++-4.6 (<< 4.6.0-7~). (Closes: #625825)
  * Drop 91_s390_use_gstabs.diff patch. It's no longer needed as webkit is not
    built from Qt sources anymore.
  * Drop 89_powerpc_opts.diff patch. No longer needed with gcc 4.4 or later.
  * Build designer library with -gstabs on powerpc to avoid gcc 4.6 dwarf2 ICE,
    which makes the package FTBFS (patch powerpc_designer_gstabs.diff).

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Wed, 04 May 2011 13:08:38 +0300

qt4-x11 (4:4.7.2-4) unstable; urgency=low

  [ José Manuel Santamaría Lema ]
  * Blacklist a set of fraudulent ssl certificates with the patch
    blacklist_fraudulent_comodo_certificates.diff.
  * Fix CVE-2010-3170 (browser wildcard cerficate validation weakness) with
    cve_2010_3170_ssl_certificates_wildcard.diff. This problem affects the Arora
    web browser.

  [ Pino Toscano ]
  * FireBird/ibase:
    - rules: enable the ibase plugin only if the libqt4-sql-ibase package is
      enabled for the current architecture (this allows to get rid of an
      hardcoded list of architectures in rules).
    - control: synchronize the list of architectures of libqt4-sql-ibase
      to be the same as the one of the firebird2.1-dev build dependency.
      This should make libqt4-sql-ibase available to few more architectures.
    - control: add sh4 to the architectures for libqt4-sql-ibase.
      (Closes: #623282)
  * Add patches:
    - powerpcspe.diff: identify PowerPCSPE as PowerPC. (Closes: #623185)
    - sh.diff: identify correctly sh4 CPUs. (Closes: #623281)
  * Update debian/control:
    - qt4-dev-tools: suggest qt-assistant-compat instead of qt4-dev-tools,
      as the former now contains the old assistant with uses HTML documentation.
  * debian/qt4-qmake.links:
    - stop forcing the "default" symlink of the mkspecs to linux-g++, just let
      Qt create it according to the platform.

  [ Modestas Vainius ]
  * Add patch kfreebsd_monotonic_clock.diff which fixes monotonic clock
    detection on kFreeBSD. This should unbreak QProcess::waitForFinished().
    (Closes: #624679)
  * Update symbol files for all debian arches.
  * Update symbol files for gcc 4.6 on amd64.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Mon, 02 May 2011 01:18:05 +0300

qt4-x11 (4:4.7.2-3) unstable; urgency=low

  [ Pino Toscano ]
  * Change the directory used for the hppa readdir test from doc/html (which
    gets removed in clean) to doc/src/images.
  * Set earlier the compiler for s390. (really closes: #606079)
  * Update Homepage.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Tue, 22 Mar 2011 10:21:55 +0100

qt4-x11 (4:4.7.2-2) unstable; urgency=low

  [ Konstantinos Margaritis ]
  * armhf support. (Closes: #618670)
    backport from Ubuntu:
    * http://launchpadlibrarian.net/66374974/x-0003-Use-GCC-intrinsics-for-armv6-atomic-operations.patch

  [ Sune Vuorela ]
  * Use gcc4.5 on s390 (Closes: #606079)
  * Make qt4-dev-tools conflict with qt3-dev-tools-embedded (due to
    qvfb). Closes: 617579

 -- Sune Vuorela <sune@debian.org>  Sat, 19 Mar 2011 18:00:06 +0100

qt4-x11 (4:4.7.2-1) unstable; urgency=low

  * New upstream release.

  [ Modestas Vainius ]
  * Confirm symbol files on hurd-i386, kfreebsd-amd64, kfreebsd-i386, mips.
  * Clean up #MISSING symbols because they didn't reappear on any arch.

  [ Fathi Boudra ]
  * Update installed files.
  * Remove patches:
    - 0001_backport_e3f1268_alsa_buffer_overrun.diff - stolen upstream.
    - 0002_backport_6ae84f1_fix_QTextEdit_selectAll_crash.diff - stolen
      upstream.
    - 17_add_postgresql_8.3_support.diff - fixed upstream.
    - 22_use___GLIBC__.diff - merged upstream.
  * Add patches:
    - qtdebug_syslog.patch - send Q_ASSERT, qDebug, qWarning and qFatal
      messages to syslog.
    - buildable_appchooser_states_demos.patch - images files aren't shipped
      (Closes: #616500)
  * Update symbols files.
  * Update debian/rules:
    - remove catalan translation, obsolete and should have been contributed
      upstream.
    - pass -opengl desktop and -no-egl configure options. (Closes: #616391)
  * Update debian/control:
    - Suggests/Recommends QML plugin packages to libqt4-declarative and
      qt4-demos packages. (Closes: #597900)

  [ Pino Toscano ]
  * Add a -qt4 suffix for the shipped icons of assistant, designer, linguist,
    and qtconfig.
  * Rename qt4config.desktop to qtconfig-qt4.desktop.

 -- Fathi Boudra <fabo@debian.org>  Thu, 03 Mar 2011 20:58:36 +0200

qt4-x11 (4:4.7.2-0ubuntu6.1) natty-proposed; urgency=low

  * Add kubuntu_92_qml_memory_leak.diff from Canonical Design team to
    fix a memory leak in QML, LP: #723956

 -- Jonathan Riddell <jriddell@ubuntu.com>  Tue, 26 Apr 2011 17:07:09 +0100

qt4-x11 (4:4.7.2-0ubuntu6) natty; urgency=low

  * SECURITY UPDATE: Fake SSL certificates produced by Comodo, LP: #742377
  * Update kubuntu_30_blacklist_ssl_certificates.diff from upstream staging
    - in qsslsocket_openssl.cpp block bad certificates
    - http://qt.gitorious.org/+qt-developers/qt/staging/commit/b87528a71b66e786c11804d7b79e408aae612748
    - http://bugreports.qt.nokia.com/browse/QTBUG-18338
    - http://www.comodo.com/Comodo-Fraud-Incident-2011-03-23.html

 -- Jonathan Riddell <jriddell@ubuntu.com>  Fri, 25 Mar 2011 17:31:29 +0000

qt4-x11 (4:4.7.2-0ubuntu5) natty; urgency=low

  * libqtgui4 recommends appmenu-qt, LP: #733309
  * SECURITY UPDATE: Fake SSL certificates produced by Comodo, LP: #742377
    - Add kubuntu_30_blacklist_ssl_certificates.diff from upstream staging, lists
      and blocks known bad certificates
    - http://qt.gitorious.org/+qt-developers/qt/staging/commit/04e074e8d7c097295505e63565abdc7ca2b49f7b
    - http://bugreports.qt.nokia.com/browse/QTBUG-18338
    - http://www.comodo.com/Comodo-Fraud-Incident-2011-03-23.html

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 23 Mar 2011 17:31:55 +0000

qt4-x11 (4:4.7.2-0ubuntu4) natty; urgency=low

  [ Felix Geyer ]
  * Drop accidentally added debian-changes-4:4.7.2-0ubuntu1 patch.

  [ Scott Kitterman ]
  * Rebuild again to get rid of gcc4.4 on armel now that pkg-kde-tools has
    been reverted to use gcc4.5 too

 -- Scott Kitterman <scott@kitterman.com>  Sun, 13 Mar 2011 12:26:39 -0400

qt4-x11 (4:4.7.2-0ubuntu3) natty; urgency=low

  * Stop forcing Qt4 on ARM to build against gcc-4.4 (drop build-dep and
    related rules changes)
  * Replace Debian Vcs-* fields in Ubuntu Vcs-* in debian/control

 -- Scott Kitterman <scott@kitterman.com>  Fri, 11 Mar 2011 16:26:52 -0500

qt4-x11 (4:4.7.2-0ubuntu2) natty; urgency=low

  * debian/patches/kubuntu_02_neon_flags.patch: Pass -mfpu=neon to
    files that use NEON instructions, fix ARM FTBFS.
  * debian/patches/kubuntu_23_arm_memory_barriers.patch: Make ARM
    atomic operations SMP-safe by adding memory barriers. Backported
    from Qt master branch.

 -- Jani Monoses <jani@ubuntu.com>  Fri, 04 Mar 2011 14:53:00 +0200

qt4-x11 (4:4.7.2-0ubuntu1) natty; urgency=low

  [ Jonathan Riddell ]
  * New upstream release
  * Remove 17_add_postgresql_8.3_support.diff now upstream
  * Remove 22_use___GLIBC__.diff now upstream
  * Remove kubuntu_19_gtkstyle_inactive_background.diff now upstream
  * Remove kubuntu_20_gtkstyle_tabwidget_focus.diff now upstream
  * Remove kubuntu_25_qsortfilterproxymodel.diff now upstream

  [ Chase Douglas ]
  * If no widget is found on touch begin, stop processing touch (LP:
    #725959)

  [ Felix Geyer ]
  * Add kubuntu_29_egl_qglcontext_stubs.diff to retain ABI/API compatibility
    when Qt is built with EGL support. (LP: #707794)

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 03 Mar 2011 10:51:40 +0000

qt4-x11 (4:4.7.1-2) experimental; urgency=low

  [ Pino Toscano ]
  * libqt4-network.install: specify the single directory with bearer plugins,
    instead of the single plugins; this avoids build failures due to few
    bearers being compiled for Linux only. (Closes: #606063)
  * Update debian/control:
    - Add qt4-qmlviewer as suggestion for libqt4-declarative and qt4-demos.

  [ Modestas Vainius ]
  * Confirm symbol files for 4.7.1 on alpha, armel, i386, ia64, mipsel,
    powerpc, sparc.
  * Add appropriate Build-Depends-Package field to libqt4-declarative and
    libqt4-openvg symbol files.

  [ Frederik Schwarzer ]
  * Add upstream patch
    0002_backport_6ae84f1_fix_QTextEdit_selectAll_crash.diff
    that fixes a crash when using the backspace key under
    various circumstances. (Closes: #606405)

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Sat, 18 Dec 2010 18:54:28 +0200

qt4-x11 (4:4.7.1-1) experimental; urgency=low

  * New upstream release. (Closes: #605364)

  [ Fathi Boudra ]
  * Remove patches:
    - 0001_webkit_self_injection_into_qt_configuration.patch - stolen upstream
    - 0002_fix_qstatictext_with_opengl1_engine.patch - stolen upstream
    - 0003_add_three_new_style-hints_to_qfont.patch - stolen upstream
    - 0004_fix_qstatictext_copy_constructor.patch - stolen upstream
  * Refresh patches.
  * Update installed files.
  * Update symbols files.

  [ Pino Toscano ]
  * Rework and replace patch 50_kfreebsd_build_fix.diff with two new patches:
    - 22_use___GLIBC__.diff: use __GLIBC__ instead of Q_OS_LINUX for GLIBC
      functions
    - 50_kfreebsd_Q_OS.diff: define Q_OS_FREEBSD_KERNEL for kFreeBSD
  * Add a new patch 01_debian_append_qt4_suffix.diff, which contains all the
    changes for appending the -qt4 suffix to various tools; it is the result
    of the merge of the following patches (which are removed, as obsolete):
    - 01_qmake_for_debian.diff
    - 02_launch_assistant-qt4.diff
    - 03_launch_moc-qt4.diff
    - 04_launch_uic-qt4.diff
    - 05_append_qt4_target.diff
  * Demote qt4-qtconfig from recommend to suggest of libqtgui4.
    (Closes: #599635)
  * Remove sharutils from Build-Depends, as there is no more need to uudecode
    binaries at install time.

  [ Modestas Vainius ]
  * Merge revisions from 4:4.6.3-1 to 4:4.6.3-4:
    - refresh 23_permit_plugins_built_with_future_qt.diff patch;
    - bump libqt4-dbus Replaces/Breaks against libqt4-dev to << 4:4.7.1 because
      4:4.7.0~rc1-1 still has dbus.1 manpage misplaced;
    - remove merged patches which were backported from upstream:
      - 0005_fix_detection_of_headers_files.diff
      - 0006_webkit_propriotary_flash_init_gtk_first.diff
      - 0007_qsslsocket_improve_error_handling_CVE-2010-2621.patch
      - 22_fix_disappearing_cursor.diff
  * Bump debian/compat to 7. This source package uses dh v7.
  * Confirm symbol files for 4.7.0~rc1 on alpha armel hurd-i386 i386 ia64
    kfreebsd-amd64 kfreebsd-i386 mipsel powerpc sparc (based on experimental
    build logs).
  * Drop a couple of patches as recommended by Thiago and Jonathan:
    - 0180-window-role.diff - rejected by upstream, unnecessary KDE apps have
      names already;
    - 0209-prevent-qt-mixing.diff - should be dropped;
    - 0216-allow-isystem-for-headers.diff - mac only skip it;
    - 09_qmake_lflags_as-needed.diff - configure script supports LDFLAGS
      nowadays. Drop the patch and export appropriate LDFLAGS in debian/rules
      instead.
  * Do not pass --sourcedir=debian/tmp to dh_install anymore. Not needed for
    compat level 7 or higher.
  * Remove quilt from Build-Depends. It's no longer needed for source format
    3.0 (quilt).
  * Confirm symbol files for official 4.7.1 on amd64.
  * 4.7.1 tarball ships with bogus executable bits on some data files in
    mkspecs, docs, examples and demos subdirs. Remove those -x bits when files
    are installed to debian/tmp.
  * Fix formatting error in the qmake-qt4.1 manpage at line 83.
  * Use dh_auto_* wrappers in place of $(MAKE) within debian/rules in order to
    get automatic handling of parallel building settings for these calls.
  * Backport patch 0001_backport_e3f1268_alsa_buffer_overrun.diff to fix
    potential buffer overrun in ALSA QAudioInput implementation. Thanks to
    Gregor Herrmann for heads up. (Closes: #603052)
  * Patch bin/synqt to generate sane timestamp for symlinks of non existing
    headers. This is needed to avoid timestamp screw up for QtConfig
    header-symlink file.
    Patch 02_syncqt_sane_timestamp_for_nonexisting_headers.diff.
  * Do not run syncqt before ./configure in debian/rules. Simply remove include
    directory forcing ./configure to run syncqt for us.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Sun, 05 Dec 2010 19:50:11 +0200

qt4-x11 (4:4.7.1-0ubuntu12) natty; urgency=low

  * Fix kubuntu_28_xi2.1.patch, use double instead of casting to qreal

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 28 Feb 2011 22:15:06 +0000

qt4-x11 (4:4.7.1-0ubuntu11) natty; urgency=low

  [ Felix Geyer ]
  * Explicitly disable EGL support on all architectures except ARM. The last
    version accidentally enabled it as libegl1-mesa-dev was pulled in.
    (LP: #724867)

  [ Jonathan Riddell ]
  * Cast use of double in kubuntu_28_xi2.1.patch to fix FTBFS on armel.

  [ Ricardo Salveti de Araujo ]
  * Changing OpenGL backend from GL to GLES 2 for ARM (LP: #707794)

 -- Felix Geyer <debfx-pkg@fobos.de>  Fri, 25 Feb 2011 14:21:36 +0100

qt4-x11 (4:4.7.1-0ubuntu10) natty; urgency=low

  * Add multitouch support through preliminary XInput 2.1
    - Add debian/patches/kubuntu_28_xi2.1.patch
    - Add build dependency on new libxi-dev with XInput 2.1 support

 -- Chase Douglas <chase.douglas@ubuntu.com>  Wed, 23 Feb 2011 10:59:05 -0500

qt4-x11 (4:4.7.1-0ubuntu9) natty; urgency=high

  * Force Qt4 on ARM to build against gcc-4.4 due to compiler regression in
    gcc 4.5 (LP: #713452)

 -- Michael Casadevall <mcasadevall@ubuntu.com>  Mon, 07 Feb 2011 12:11:02 -0800

qt4-x11 (4:4.7.1-0ubuntu8) natty; urgency=low

  * Add kubuntu_26_dbusconnection_pointer.diff,
    kubuntu_27_dbus_signal_filter_passes_not_handled.diff from Qt 4.8
    to add a way to obtain the DBusConnection* pointer from a
    QDBusConnection.  Requested by Ryan Lortie

 -- Jonathan Riddell <jriddell@ubuntu.com>  Tue, 18 Jan 2011 20:37:32 +0000

qt4-x11 (4:4.7.1-0ubuntu7) natty; urgency=low

  [ Scott Kitterman ]
  * Drop debian/patches/kubuntu_01_volatile_bit_fields.diff, no longer needed

  [ Jonathan Riddell ]
  * Add kubuntu_24_large_qtreeview.diff by David Faure, fix crash when
    using large lists in KPackageKit
  * Add kubuntu_25_qsortfilterproxymodel.diff requested by David Jarvie
    for KAlarm from http://qt.gitorious.org/qt/qt/merge_requests/934
  * Update kubuntu_15_appmenu.diff with 20110111 from Aurelien Gateau
    this version loads plugins for menubars and gets rid of the dbusmenu-qt
    code duplication

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 12 Jan 2011 00:07:51 +0000

qt4-x11 (4:4.7.1-0ubuntu6) natty; urgency=low

  * No-change rebuild against fixed pkg-create-dbgsym. (LP: #669430)

 -- Martin Pitt <martin.pitt@ubuntu.com>  Fri, 31 Dec 2010 15:33:39 +0100

qt4-x11 (4:4.7.1-0ubuntu5) natty; urgency=low

  * Add debian/patches/kubuntu_91_fix_qtextedit_selectall_crash.patch to fix
    http://bugreports.qt.nokia.com/browse/QTBUG-15659

 -- Kristóf Kiszel <ulysses@kubuntu.org>  Fri, 10 Dec 2010 08:53:24 +0100

qt4-x11 (4:4.7.1-0ubuntu4) natty; urgency=low

  * Add debian/patches/kubuntu_01_volatile_bit_fields.diff to work around gcc
    bug (LP 675347) and fix FTBFS on armel

 -- Scott Kitterman <scott@kitterman.com>  Thu, 18 Nov 2010 11:40:25 -0500

qt4-x11 (4:4.7.1-0ubuntu3) natty; urgency=low

  * Further fixes to kubuntu_23_syncqt_no_timestamp_change.diff

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 17 Nov 2010 11:52:21 +0000

qt4-x11 (4:4.7.1-0ubuntu2) natty; urgency=low

  * Add kubuntu_23_syncqt_no_timestamp_change.diff, stop it changing
    file timestamps during build which results in qconfig.h being set to
    0, http://bugreports.qt.nokia.com/browse/QTBUG-12731

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 17 Nov 2010 11:01:01 +0000

qt4-x11 (4:4.7.1-0ubuntu1) natty; urgency=low

  * New upstream release
  * Remove kubuntu_21_fix_phantom_cursor.diff applied upstream
  * Refresh 10_config_tests_fixes.diff
  * Refresh 01_debian_append_qt4_suffix.diff
  * Add kubuntu_22_thumb2_support.diff LP: #673085, remove implict thumb
    flag from debian/rules

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 15 Nov 2010 17:20:18 +0000

qt4-x11 (4:4.7.0-0ubuntu8) natty; urgency=low

  * In debian/rules add export CXXFLAGS += -Wa,-mimplicit-it=thumb on armel
    to work around lack of IT instruction usage and fix FTBFS

 -- Scott Kitterman <scott@kitterman.com>  Fri, 29 Oct 2010 18:10:05 -0400

qt4-x11 (4:4.7.0-0ubuntu7) natty; urgency=low

  * Remove kubuntu_08_add_missing_bold_style.diff and 
    kubuntu_08_add_missing_bold_style.diff, as they were causing regressions
    with normal bold fonts, and were in fact already disabled before they
    were acidentally re-enabled in a merge.

 -- Jonathan Thomas <echidnaman@kubuntu.org>  Sat, 23 Oct 2010 13:14:16 -0400

qt4-x11 (4:4.7.0-0ubuntu6) natty; urgency=low

  * Remove dh_shlibdeps --remaining-packages no needed, fix FTBFS
  * Update symbol files

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Tue, 19 Oct 2010 23:55:28 +0200

qt4-x11 (4:4.7.0-0ubuntu5) natty; urgency=low

  * Merge with Debian, remaining changes:
    - Do not package firebird and ibase packages, remove from debian/rules and
      debian/control
    - libqt4-sql-ibase not recommend for libqt4-sql
    - libqtgui4: suggest, not recommend, qt4-qtconfig
    - build with -no-phonon
    - do not build libqt4-phonon, disable in debian/control
    - Build packages with lzma compression using the dh addon from
      pkg-kde-tools
    - Rules to remove po dir in clean
    - Add MessagesQt.sh
    - Rules to create Messages.sh link to MessagesQt.sh and rules to create po
      dir and exectue extract-messages.sh in common-install-prehook-impl
    - Make libqt4-dev depend on libx11-dev
    - In debian/rules Set DEB_HOST_ARCH and DEB_HOST_ARCH_OS. Configure with
      "-arch armv6" option on ARM
    - Add and install Trolltech.conf in libqtcore4.install
    - Build QtWebkit and use it only for QtAssistant
      + Rule to put qt_webkit_version.pri in mkspecs/modules
      + Rule to remove libQtWebKit* after build
      + Exclude usr/bin/assistant-qt4 from dh_shlibdeps
    - kubuntu_08_add_missing_bold_style.diff to make qt support bold style CJK
      fonts
    - kubuntu_09_use_ft_glyph_embolden_to_fake_bold.diff to make qt support
      bold style CJK fonts
    - kubuntu_10_ibus_input_method.diff to change default input method
    - kubuntu_12_fix_stack_protector.diff restore the stack protector
      compiler flag (LP: #538237).
    - kubuntu_15_appmenu.diff  from Aurelien Gateau, adds support
      for external menu bars exported over dbus
    - kubuntu_16_qt-designer-toplevel-mode-menubar.diff from Aurelien
      Gateau to keep designer working with global menu when in toplevel
      mode
    - kubuntu_17_enable_qtwebkit_for_qtassistant.diff Build QtWebkit so
      QtAssistant is able to link 
      against it. (LP: #624697)
    - kubuntu_18_fix_qtreeview_regression.diff
      (http://bugreports.qt.nokia.com/browse/QTBUG-13567
       https://bugs.kde.org/show_bug.cgi?id=246997)
    - kubuntu_19_gtkstyle_inactive_background.diff fixes
      http://bugreports.qt.nokia.com/browse/QTBUG-13792
      'GTK style: Wrong foreground color for selected item when unfocused'
    - kubuntu_20_gtkstyle_tabwidget_focus.diff fixes
      http://bugreports.qt.nokia.com/browse/QTBUG-14161
     'Tab focus incorrectly drawn with Ubuntu Ambience theme'
    - kubuntu_21_fix_phantom_cursor.diff cursor would disappear after
      attempting to paste something
      (http://bugreports.qt.nokia.com/browse/QTBUG-6185)
    - Fix Lucid -> Maverick upgrade (LP: #652029) libqt4-help replaces
      libqtcore4 (<< 4:4.7.0)
  * Refresh 01_debian_append_qt4_suffix.diff
  * Refresh 10_config_tests_fixes.diff
  * Add kubuntu_90_webkit_htmlxml_gb_gb18030_detect.diff to handle
    gb2312/gbk/gb18030 correctly

 -- Jonathan Riddell <jriddell@ubuntu.com>  Fri, 15 Oct 2010 12:23:16 +0100

qt4-x11 (4:4.7.0-0ubuntu4) maverick; urgency=low

  * Fix Lucid -> Maverick upgrade (LP: #652029)
    - libqt4-help replaces libqtcore4 (<< 4:4.7.0)

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Sun, 03 Oct 2010 04:14:04 +0200

qt4-x11 (4:4.7.0-0ubuntu3) maverick; urgency=low

  [ Jonathan Riddell ]
  * Add kubuntu_19_gtkstyle_inactive_background.diff recommended by
    upstream, fixes http://bugreports.qt.nokia.com/browse/QTBUG-13792
    'GTK style: Wrong foreground color for selected item when unfocused'
  * Add kubuntu_20_gtkstyle_tabwidget_focus.diff recommended by
    upstream, fixes http://bugreports.qt.nokia.com/browse/QTBUG-14161
    'Tab focus incorrectly drawn with Ubuntu Ambience theme'

  [ Jonathan Thomas ]
  * Add kubuntu_21_fix_phantom_cursor.diff to fix a problem visible in
    several KDE applications (such as Konversation, KPackageKit, and KOrg, to
    name a few) where the cursor would disappear after attempting to paste
    something (http://bugreports.qt.nokia.com/browse/QTBUG-6185)

 -- Jonathan Riddell <jriddell@ubuntu.com>  Fri, 01 Oct 2010 11:59:23 +0100

qt4-x11 (4:4.7.0-0ubuntu2) maverick; urgency=low

  * Add kubuntu_18_fix_qtreeview_regression.diff
    (http://bugreports.qt.nokia.com/browse/QTBUG-13567
     https://bugs.kde.org/show_bug.cgi?id=246997)

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Sun, 26 Sep 2010 19:34:58 +0200

qt4-x11 (4:4.7.0-0ubuntu1) maverick; urgency=low

  [ Alessandro Ghersi ]
  * New upstream release
    - Enable 11_build_translations.diff

  [ Jonathan Riddell ]
  * Update kubuntu_15_appmenu.diff from Aurelien Gateau, LP: #643393

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Wed, 22 Sep 2010 21:33:24 +0200

qt4-x11 (4:4.7.0~rc1+git20100917-0ubuntu1) maverick; urgency=low

  * New upstream git snapshot
    - Fix FTBS
    - Refresh patches
    - Update install files
    - Update symbol files 

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Fri, 17 Sep 2010 08:12:23 +0200

qt4-x11 (4:4.7.0~rc1+git20100916-0ubuntu1) maverick; urgency=low

  * New upstream git snapshot
    - Refresh patches
    - Removed 0001_webkit_self_injection_into_qt_configuration.patch
      fixed by upstream
    - Update install files
    - Update symbol files

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Wed, 15 Sep 2010 18:57:09 +0200

qt4-x11 (4:4.7.0~rc1-1ubuntu3) maverick; urgency=low

  * Build QtWebkit so QtAssistant is able to link against it. (LP: #624697)
    We don't actually package QtWebkit here but make qt4-dev-tools depend on
    the binary-compatible libqtwebkit4 package.
    - add kubuntu_17_enable_qtwebkit_for_qtassistant.diff

 -- Felix Geyer <debfx-pkg@fobos.de>  Tue, 14 Sep 2010 15:48:41 +0200

qt4-x11 (4:4.7.0~rc1-1ubuntu2) maverick; urgency=low

  * Update kubuntu_15_appmenu.diff from Aurelien Gateau, fixes memory
    leaks, patch 20100909

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 09 Sep 2010 15:26:42 +0100

qt4-x11 (4:4.7.0~rc1-1ubuntu1) maverick; urgency=low

  [ Felix Geyer ]
  * Merge with Debian git (unreleased), remaining changes:
    - Do not package firebird and ibase packages, remove from debian/rules and
      debian/control
    - libqt4-sql-ibase not recommend for libqt4-sql
    - libqtgui4: suggest, not recommend, qt4-qtconfig
    - Build with -no-phonon
    - Do not package libqt4-phonon
    - Build packages with lzma compression using the dh addon from pkg-kde-tools
    - Rules to remove po dir in clean
    - Add MessagesQt.sh
    - Rules to create Messages.sh link to MessagesQt.sh and rules to create po
      dir and exectue extract-messages.sh in common-install-prehook-impl
    - Rules to remove Messages.sh link
    - Make libqt4-dev depend on libx11-dev
    - In debian/rules Set DEB_HOST_ARCH and
      DEB_HOST_ARCH_OS. Configure with "-arch armv6" option on ARM
    - Disable the Qt OpenVG module
    - Add Kubuntu patches:
      - kubuntu_08_add_missing_bold_style.diff
      - kubuntu_09_use_ft_glyph_embolden_to_fake_bold.diff
      - kubuntu_10_ibus_input_method.diff
      - kubuntu_12_fix_stack_protector.diff
      - kubuntu_15_appmenu.diff
  * Drop kubuntu_16_qx11embed.diff, applied upstream.
  * Adapt kubuntu_15_appmenu.diff to new upstream version.

  [ Jonathan Riddell ]
  * Add kubuntu_16_qt-designer-toplevel-mode-menubar.diff from Aurelien
    Gateau to keep designer working with global menu when in toplevel
    mode

 -- Jonathan Riddell <jriddell@ubuntu.com>  Fri, 03 Sep 2010 13:32:37 +0100

qt4-x11 (4:4.7.0~rc1-1) experimental; urgency=low

  * New upstream release.
  * Remove 0001_add_webkit_qt_config.patch in favor of
    0001_webkit_self_injection_into_qt_configuration.patch.
  * Add patches:
    - 0002_fix_qstatictext_with_opengl1_engine.patch
      OpenGL1 paint engine transforms text coordinates itself and
      does not require QStaticText to use device coordinates.
    - 0003_add_three_new_style-hints_to_qfont.patch
      Add three new style-hints to QFont to match CSS generic font families.
    - 0004_fix_qstatictext_copy_constructor.patch
      Fix QStaticText copy constructor to also copy text option property.
  * Update debian/control:
    - bump Standards-Version to 3.9.1 (no changes needed).
    - add libqt4-assistant and libqt4-webkit-dbg dummy transitional packages.
  * Update debian/rules:
    - add -no-openvg configure option.
  * Refresh patches.
  * Update installed files.
  * Update symbols files.

 -- Fathi Boudra <fabo@debian.org>  Thu, 26 Aug 2010 19:54:00 +0300

qt4-x11 (4:4.7.0~beta2-3) experimental; urgency=low

  * Add 0001_add_webkit_qt_config.patch to load modules .pri files.
    Fix the detection of Qt WebKit when shipped standalone.
  * Update debian/control:
    - remove references to Debian in package descriptions
      (derivatives friendly).
    - add libqtwebkit-dev to libqt4-dev package.
    - remove libpulse-dev build dependency. It's used to build Phonon.

 -- Fathi Boudra <fabo@debian.org>  Tue, 20 Jul 2010 16:55:20 +0300

qt4-x11 (4:4.7.0~beta2-2) experimental; urgency=low

  [ Fathi Boudra ]
  * Remove qt_webkit_version.pri file, installed inconditionaly.
    It conflicts with qt_webkit_version.pri shipped in Qt WebKit.

  [ Modestas Vainius ]
  * Make libqt4-dev conflict with libqtwebkit-dev less broad: (<< 2.0~). The
    latest version which this conflict is supposed to cover is 0~svn29752-1.
  * Add Breaks (or turn Conflicts into Breaks) next to Replaces as recommended
    by policy 3.9.0.
  * Remove conflicts against old (predating etch) qt-x11-free (Qt3) packages.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Tue, 13 Jul 2010 16:20:28 +0300

qt4-x11 (4:4.7.0~beta2-1) experimental; urgency=low

  * New upstream release.
  * Remove Qt Multimedia, Qt MediaServices and Qt WebKit packages.
  * Remove Debian patches:
    - 81_hurd_architecture.diff - merged upstream.
    - 97_alpha_ftbfs_qatomic_alpha_h_types.diff - merged upstream.
  * Update debian/control:
    - bump Standards-Version to 3.9.0.
    - remove libqt4-declarative-widgets package.
    - add libqt4-declarative-folderlistmodel package.
    - add libqt4-declarative-gestures package.
    - add libqt4-webkit dummy transitional package for the libqtwebkit4
      package.
  * Update debian/rules:
    - replace -multimedia by -no-multimedia configure option.
    - replace -webkit by -no-webkit configure option.
    - remove leftover directories in override_dh_auto_install target.
  * Update installed files.
  * Update symbols files.
  * Update debian/copyright: include files licensed under a BSD-style license.

 -- Fathi Boudra <fabo@debian.org>  Thu, 08 Jul 2010 16:59:50 +0300

qt4-x11 (4:4.7.0~beta2-0ubuntu8) maverick; urgency=low

  * Fix path in libqtcore4.install

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 26 Aug 2010 09:14:03 +0100

qt4-x11 (4:4.7.0~beta2-0ubuntu7) maverick; urgency=low

  * Add debian/Trolltech.conf installed into /etc/xdg to point at KDE
    plugin directory for oxygen style, closes LP: #600646

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 26 Aug 2010 00:55:02 +0100

qt4-x11 (4:4.7.0~beta2-0ubuntu6) maverick; urgency=low

  * Add kubuntu_16_qx11embed.diff to fix QX11Embed widgets, fix from
    qt's git repository (change
    9a1b0695277a3864b42d082095962f8742cdcf04), Closes LP: #614699

 -- Jonathan Riddell <jriddell@ubuntu.com>  Tue, 24 Aug 2010 13:34:47 +0100

qt4-x11 (4:4.7.0~beta2-0ubuntu5) maverick; urgency=low

  * Update kubuntu_15_appmenu.diff to 20100819

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 19 Aug 2010 15:16:21 +0100

qt4-x11 (4:4.7.0~beta2-0ubuntu4) maverick; urgency=low

  * Update kubuntu_15_appmenu.diff to 20100810

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 11 Aug 2010 01:13:34 +0100

qt4-x11 (4:4.7.0~beta2-0ubuntu3) maverick; urgency=low

  * Weekly update to kubuntu_15_appmenu.diff

 -- Jonathan Riddell <jriddell@ubuntu.com>  Fri, 23 Jul 2010 09:47:36 +0100

qt4-x11 (4:4.7.0~beta2-0ubuntu2) maverick; urgency=low

  [ Felix Geyer ]
  * Add libqt4-webkit and libqt4-webkit-dbg dummy transitional packages,
    remove references to Debian in package descriptions
  * Make libqt4-dev replace/conflict with libqtwebkit-dev (<< 2.0~) and
    recommend libqtwebkit-dev instead of libqt4-webkit.

  [ Jonathan Riddell ]
  * Merge some changes from Debian
   - Drop multimedia package, QtMultimediaKit in QtMobility replaces it
   - Copy over patches from Debian, only header differences
   - in debian/rules remove qt_webkit_version.pri
   - Copy over debian's libqt4-dev.install, just different order of files

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 19 Jul 2010 15:02:46 +0100

qt4-x11 (4:4.7.0~beta2-0ubuntu1) maverick; urgency=low

  * New upstream beta release
    - Refresh all patches
    - Enabled 11_build_translations.diff
    - Update symbols files
    - Update libqt4-dev.install
    - Update libqtcore4.install
    - Sync qt4-demos.lintian-overrides with Debian
    - Sync debian/copyright with Debian

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Fri, 09 Jul 2010 19:38:17 +0200

qt4-x11 (4:4.7.0~beta1+git20100706-0ubuntu2) maverick; urgency=low

  [ Alessandro Ghersi ]
  * libqt4-opengl-dev replaces libqt4-dev (<< 4:4.7.0~beta1+git20100706)
    (LP: #602856)

  [ Jonathan Riddell ]
  * Weekly update to kubuntu_15_appmenu.diff

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 08 Jul 2010 21:05:19 +0100

qt4-x11 (4:4.7.0~beta1+git20100706-0ubuntu1) maverick; urgency=low

  * New upstream snapshot
    - Refresh kubuntu patches
    - libqt4-help replaces qt4-dev-tools (<< 4:4.7.0~beta1+git20100706)
    - qt4-designer replaces qt4-dev-tools (<< 4:4.7.0~beta1+git20100706)
    - Disable kubuntu_08_add_missing_bold_style.diff
    - Disable kubuntu_09_use_ft_glyph_embolden_to_fake_bold.diff
    - New packages:
      - qt4-qmlviewer, which replaces qt4-dev-tools
      - libqt4-declarative-{particles, gestures, folderlistmodel} which
        replaces libqt4-declarative (<< 4:4.7.0~beta1+git20100706)
  * Merge with Debian git (unreleased) remaining changes:
    - Do not package firebird and ibase packages, remove from debian/rules and
      debian/control
    - libqt4-sql-ibase not recommend for libqt4-sql
    - libqtgui4: suggest, not recommend, qt4-qtconfig
    - Build with -no-phonon
    - Do not package libqt4-phonon
    - Do not add libpulse-dev to build-depends
    - Do not package libqt4-webkit transitional package
    - Build with -multimedia for now
      - Keep libqt4-multimedia package in debian/control
      - Keep libqt4-multimedia.{install, symbols, lintian-overrides}
    - libqt4-dev recommends libqt4-webkit
    - Build packages with lzma compression with override_dh_builddeb
    - Rules to remove po dir in clean
    - Add MessagesQt.sh
    - Rules to create Messages.sh link to MessagesQt.sh and rules to create po
      dir and exectue extract-messages.sh in common-install-prehook-impl
    - Rules to remove Messages.sh link
    - Make libqt4-dev depend on libx11-dev
    - In debian/rules Set DEB_HOST_ARCH and
      DEB_HOST_ARCH_OS. Configure with "-arch armv6" option on ARM
    - Add Kubuntu patches:
      - kubuntu_08_add_missing_bold_style.diff
      - kubuntu_09_use_ft_glyph_embolden_to_fake_bold.diff
      - kubuntu_10_ibus_input_method.diff
      - kubuntu_12_fix_stack_protector.diff
      - kubuntu_14_qtdemos_compile_failure.diff
      - kubuntu_15_appmenu.diff

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Tue, 06 Jul 2010 02:43:04 +0200

qt4-x11 (4:4.7.0~beta1+git3529+59c5857-1) UNRELEASED; urgency=low

  * NOT RELEASED YET.
  * Remove Qt Multimedia, Qt MediaServices and Qt WebKit packages.
  * Remove Debian patches:
    - 81_hurd_architecture.diff - merged upstream.
    - 97_alpha_ftbfs_qatomic_alpha_h_types.diff - merged upstream.
  * Update debian/control:
    - bump Standards-Version to 3.9.0.
    - remove libqt4-declarative-widgets package.
    - add libqt4-declarative-folderlistmodel package.
    - add libqt4-declarative-gestures package.
    - add libqt4-webkit dummy transitional package for the libqtwebkit4
      package.
  * Update debian/rules:
    - replace -multimedia by -no-multimedia configure option.
    - replace -webkit by -no-webkit configure option.
    - remove leftover directories in override_dh_auto_install target.
  * Update installed files.
  * Update symbols files.

 -- Fathi Boudra <fabo@debian.org>  Mon, 28 Jun 2010 14:41:40 +0300

qt4-x11 (4:4.7.0~beta1+git20100522-0ubuntu5) maverick; urgency=low

  * Weekly update to kubuntu_15_appmenu.diff from Aurelien Gateau

 -- Jonathan Riddell <jriddell@ubuntu.com>  Fri, 25 Jun 2010 14:40:20 +0100

qt4-x11 (4:4.7.0~beta1+git20100522-0ubuntu4) maverick; urgency=low

  * Update kubuntu_15_appmenu.diff with appmenu-qt-4.7-20100617.diff
    from Aurelien Gateau

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 17 Jun 2010 14:53:48 +0100

qt4-x11 (4:4.7.0~beta1+git20100522-0ubuntu3) maverick; urgency=low

  * Update kubuntu_15_appmenu.diff with appmenu-qt-4.7-20100610.diff
    from Aurelien Gateau

 -- Jonathan Riddell <jriddell@ubuntu.com>  Fri, 11 Jun 2010 00:29:10 +0100

qt4-x11 (4:4.7.0~beta1+git20100522-0ubuntu2) maverick; urgency=low

  * Add kubuntu_15_appmenu.diff from Aurelien Gateau, adds support
    for external menu bars exported over dbus

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 31 May 2010 17:31:34 +0000

qt4-x11 (4:4.7.0~beta1+git20100522-0ubuntu1) maverick; urgency=low

  * New git snapshot:
    - Refresh patches:
      - 0180-window-role.diff
      - 0209-prevent-qt-mixing.diff
      - 05_append_qt4_target.diff
      - 11_build_translations.diff
      - kubuntu_14_qtdemos_compile_failure.diff
    - Update install files:
      - libqt4-declarative.install
      - libqt4-dev.install
      - libqt4-multimedia.install
      - libqtcore4.install
      - qt4-dev-tools.install

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Sat, 22 May 2010 01:55:18 +0200

qt4-x11 (4:4.7.0~beta1-1) experimental; urgency=low

  * New upstream release.
    - QtAssistant client library removal (libqt4-assistant).
    - legacy Qt Assistant removal (assistant_adp).
    - new QtDeclarative module (libqt4-declarative).
    - new QtMediaServices module (libqt4-mediaservices).
  * Remove upstream patches:
    - 0001_qpixmap_load_no_modify_referenced_copies.diff - stolen upstream
    - 0002_qmake_qfileinfo_absolutepath.diff - stolen upstream
    - 0003_s390_fix_atomic_ops_related_crashes.diff - stolen upstream
    - 0004_problem_displaying_half_width_character.diff - stolen upstream
    - 0005_always_redraw_the_complete_control.diff - stolen upstream
    - 0006_expand_indicator_would_not_be_displayed.diff - stolen upstream
  * Remove Debian patches:
    - 82_hurd_SA_SIGINFO.diff - merged upstream
    - 95_sparc_platform_definition.diff - merged upstream
    - 98_alpha_ftbfs_wtf_platform_support.diff - stolen upstream
  * Refresh Debian patches:
    - 30_webkit_unaligned_access.diff - partially merged upstream
  * Update debian/control:
    - add libgstreamer0.10-dev, libgstreamer-plugins-base0.10-dev,
      libpulse-dev and libxv-dev build dependencies.
    - add libqt4-declarative, libqt4-mediaservices,
      libqt4-declarative-$PLUGINS and qt4-qmlviewer packages.
    - remove libqt4-assistant package.
  * Update debian/rules:
    - add -importdir configure option.
  * Update installed files.
  * Update symbols files.

 -- Fathi Boudra <fabo@debian.org>  Fri, 21 May 2010 10:31:22 +0300

qt4-x11 (4:4.7.0~beta1-0ubuntu1) maverick; urgency=low

  * New upstream beta release
  * Merge with Debian, remaining changes:
    - Do not package firebird and ibase packages, remove from debian/rules and
      debian/control
    - libqt4-sql-ibase not recommend for libqt4-sql
    - libqtgui4: suggest, not recommend, qt4-qtconfig
    - build with -no-phonon
    - Build packages with lzma compression with override_dh_buildded
    - Rules to remove po dir in clean
    - Add MessagesQt.sh
    - Rules to create Messages.sh link to MessagesQt.sh and rules to create po
      dir and exectue extract-messages.sh in common-install-prehook-impl
    - Rules to remove Messages.sh link
    - Make libqt4-dev depend on libx11-dev
    - In debian/rules Set DEB_HOST_ARCH and
      DEB_HOST_ARCH_OS. Configure with "-arch armv6" option on ARM
  * Build with no-webkit, let's see if we can package QtWebKit standalone
  * Build with no-phonon, let's see if we can package Phonon standalone
  * Add build-dep on libgstreamer0.10-dev for QtMultimedia
  * New package libqt4-declarative
  * Add kubuntu_13_gstreamer_test.diff fix gstreamer config test
  * Add kubuntu_14_qtdemos_compile_failure.diff don't compile
    qtdemo, it uses obsolete libraries

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 19 May 2010 11:03:10 +0000

qt4-x11 (4:4.6.3-4) unstable; urgency=high

  [ Pino Toscano ]
  * Update debian/control:
    - make libqtgui4 recommend libcups2, as it dlopen's cups for the printing
      support
    - drop suggestion of a browser from qt4-doc, as it does not contain any
      HTML documentation.

  [ Modestas Vainius ]
  * Confirm 4.6.3 symbol files on the rest (!amd64) of arches. All symbols
    affected are optional. Also remove old stale MISSING symbols in the
    process.
  * Backport 22_fix_disappearing_cursor.diff patch from 4.7.1 to fix a bug
    with mouse cursor disappearing randomly on various widgets (QTreeView,
    QListView etc.).
  * Add 23_permit_plugins_built_with_future_qt.diff patch to permit loading
    plugins built with future version of Qt. This should restore full
    compatibility with symbol files. (Closes: #586831)
  * Urgency=high due to RC bug fix.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Sat, 16 Oct 2010 04:05:32 +0300

qt4-x11 (4:4.6.3-3) unstable; urgency=low

  * Update debian/control: add missing Replaces libqt4-dev (<< 4:4.6.3-2) to
    libqt4-dbus package.
  * Update debian/rules: replace -dbus configure option by -dbus-linked to link
    against dbus library instead of dlopen it. (Closes: #599224)

 -- Fathi Boudra <fabo@debian.org>  Wed, 06 Oct 2010 12:57:17 +0300

qt4-x11 (4:4.6.3-2) unstable; urgency=low

  [ Fathi Boudra ]
  * Add upstream patch:
    - 0005_fix_detection_of_headers_files.diff
      Disable the include generation if a dot which is not followed by [hH]
      is found after the last path separator. This implies that dots in
      directory names are now ignored, and that files without an extension are
      always considered headers (e.g., STL headers and Qt forwarding headers).
      (Closes: #586166)
    - 0007_qsslsocket_improve_error_handling_CVE-2010-2621.patch
      Improve error handling in QSslSocket. (Closes: #587711)
  * Fix qdbus manpage install. It is misplaced. (Closes: #588985)

  [ Modestas Vainius ]
  * Fix debian/control Vcs fields to point to the new location.

  [ Sune Vuorela ]
  * Steal 0006_webkit_propriotary_flash_init_gtk_first patch from upstream
    to make webkit not crash when loading adobe flash plugin.
    This is related to a change in flashplugin.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Mon, 06 Sep 2010 09:03:32 +0300

qt4-x11 (4:4.6.3-1) unstable; urgency=low

  * New upstream release.

  [ Modestas Vainius ]
  * Expand 96_webkit_no_gc_sections.diff to cover mips(el) as well. Hopefully,
    this will make linker less memory demanding and solve out-of-memory
    condition on buildds.
  * Add usleep(1000) before fork() in QProcess on hppa in order to decrease
    failure rate caused by #561203. Hopefully, probablity of the failure
    becomes so low that packages do not FBTFS anymore. This hack is just an
    ugly but very needed workaround for a common manifestation of the bug in
    QProcess (patch 99_hppa_bug561203_decrease_failure_rate.diff).

  [ Fathi Boudra ]
  * Remove upstream patches:
    - 0001_qpixmap_load_no_modify_referenced_copies.diff - stolen upstream 
    - 0002_qmake_qfileinfo_absolutepath.diff - stolen upstream 
    - 0003_s390_fix_atomic_ops_related_crashes.diff - stolen upstream 
    - 0005_always_redraw_the_complete_control.diff - stolen upstream 
    - 0006_expand_indicator_would_not_be_displayed.diff - stolen upstream 
  * Remove Debian patches:
    - 97_alpha_ftbfs_qatomic_alpha_h_types.diff - merged upstream
    - 98_alpha_ftbfs_wtf_platform_support.diff - merged upstream
  * Refresh Debian patches:
    - 05_append_qt4_target.diff
    - 30_webkit_unaligned_access.diff

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Tue, 08 Jun 2010 09:39:56 +0300

qt4-x11 (4:4.6.2-5) unstable; urgency=low

  [ Modestas Vainius ]
  * Update symbol files for armel, hppa and mips.
  * Add 98_alpha_ftbfs_wtf_platform_support.diff: support for alpha to QtScript
    copy of wtf/Platform.h. This change fix FTBFS on alpha.

  [ Fathi Boudra ]
  * Add upstream patches:
    - 0004_problem_displaying_half_width_character.diff (Closes: #578604)
      QTBUG-1726 - Fixed problem displaying half width character as full width.
    - 0005_always_redraw_the_complete_control.diff (Closes: #578606)
      QTBUG-8807 - Always redraw the complete control when an input event comes
      in.
    - 0006_expand_indicator_would_not_be_displayed.diff
      QTBUG-7443 - Expand indicator would not be displayed after removal of a
      collapsed item's child.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Sun, 18 Apr 2010 23:42:13 +0300

qt4-x11 (4:4.6.2-4) unstable; urgency=low

  [ Modestas Vainius ]
  * Revert previous s390 specific change as it did not solve FTBFS.
  * Do not link webkit with -Wl,--gc-sections on s390. This should workaround
    FTBFS on s390 caused by internal linker error which is due to bugs when
    processing UString.o and some others (built with -ffunction-sections).
    Implemented in the 96_webkit_no_gc_sections.diff patch.
  * Steal patch from upstream 4.6 branch to fix s390 atomic ops related
    crashes. One of them made the package to FTBFS. Upstream commit:
    cdf4701f442149546043b155cddcc53116875f1c
  * Update symbol files for amd64, i386, ia64, kfreebsd-amd64, kfreebsd-i386,
    powerpc, s390, sparc.
  * Release to unstable (Closes: #571990). Finally!

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Wed, 14 Apr 2010 20:56:19 +0300

qt4-x11 (4:4.6.2-3) experimental; urgency=low

  [ Sune Vuorela ]
  * Do not build webkit with debugging symbols on s390. These becomes too big
    and thus the build fails, as the linker can't handle more than a couple of
    GB large files, and debugging symbols on s390 are real large. This is a
    repetition of #528485
  * Also add the GNU/kFreeBSD patch from 4:4.6.2-1 to the second
    JavaScriptCore copy (used for QtSCript)

  [ Modestas Vainius ]
  * Clean target: limit application/x-executable lookup to executable files.
    This should speed up clean target a lot.
  * Add 97_alpha_ftbfs_qatomic_alpha_h_types.diff patch to fix FTBFS on alpha
    caused by invalid type conversions in qatomic_alpha.h.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Sat, 10 Apr 2010 01:00:49 +0300

qt4-x11 (4:4.6.2-2) experimental; urgency=low

  [ Fathi Boudra ]
  * Add upstream patches:
    - 0001_qpixmap_load_no_modify_referenced_copies.diff
      Fixed QPixmap::load() to not modify referenced copies.
    - 0002_qmake_qfileinfo_absolutepath.diff
      Fixed QFileInfo::absolutePath() warning when running "qmake -project"
      (Closes: #574043)
  * Fix FTBFS on sparc caused by a wrong platform_arg value:
    check for exact string match (instead of findstring usage).
  * Fix FTBFS on ia64: -m64 option isn't recognized by gcc.
    set platform_arg to linux-g++ on this architecture.
  * Switch to dpkg-source 3.0 (quilt).
  * Fix some lintian warnings.
  * Add libqt4-phonon lintian overrides.
  * Update applications icons.

  [ Pino Toscano ]
  * Make more use of the dpkg source 3.0 format: directly ship the binary files
    (PNG icons and qch) instead of uuencode them at install time.
  * Fix watch file to report only stable versions (ie non-tp and non-rc ones).

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Sun, 04 Apr 2010 09:51:36 +0200

qt4-x11 (4:4.6.2-1) experimental; urgency=low

  * New upstream release (Closes: #571990).
    - Fix a crash in QDBusPendingReply/QDBusReply in case of unconnected calls.
      (Closes: #560838)
    - Fix FTBFS on GNU/kFreeBSD due to lack of WTF_USE_JSVALUE64.
      (Closes: #565731)

  [ Modestas Vainius ]
  * Change my email address to @debian.org one.
  * Restore binary compatibility with binaries built with g++-4.3 on armel
    (patch 92_armel_gcc43_valist_compat.diff). (Closes: #566259)
  * Add symbol files for Qt public libraries. They are based on the 4:4.5.3
    version and upgraded to 4:4.6.1/4:4.6.2 on amd64/i386.
  * Bump build dependency of pkg-kde-tools to version 0.6.4 as it is needed to
    handle symbol files.
  * Build depend on libjpeg-dev rather than libjpeg62-dev.
  * Drop Phonon from Qt. Leave only libqt4-phonon package which sole purpose is
    to enable bootstraping of new arches.

  [ Fathi Boudra ]
  * Add debian/patches/95_sparc_platform_definition.diff patch to fix build for
    32-bit sparc machines.
  * Update debian/rules:
    - Use linux-g++-64 as platform_arg on required architectures (amd64, ia64
      and sparc64).
  * Add 96_powerpc_no_gc_sections.diff: Don't pass -Wl,--gc-sections on powerpc
    when building libQtWebKit.so; works around a binutils bug that results in a
    segfault. Thanks to Steve Langasek.
  * Add 20_install_qvfb.diff: build Qt Virtual Framebuffer (qvfb) tool.
  * Add 51_kfreebsd_strnstr_build_fix.diff: Fix FTBFS on GNU/kFreeBSD caused by
    missing strnstr() on glibc systems.
  * Remove patches:
    - 19_install_qdoc3.diff - merged upstream.
    - 81_hurd_clock_gettime.diff - merged upstream.
    - 0289-context-for-shortcuts-tr.diff - rejected upstream.
  * Merge with Kubuntu:
    - add 21_qt_ia32_library_path.diff patch
      fix ia32 library path (e.g. skype application).
  * Update debian/control:
    - bump Standards-Version to 3.8.4 (no changes needed).
    - build-depend on firebird2.1-dev instead of firebird2.0-dev.
      (Closes: #564683)
    - extend architecture list for firebird2.1-dev.
    - build-depend on libxtst-dev to build qvfb.
    - conflict against qt-x11-free-dbg on libqt4-dbg (qvfb).
    - conflict against qt3-dev-tools-embedded on qt4-dev-tools (qvfb).
  * Update debian/qt4-dev-tools.install: add qvfb binary and the translations.
  * Update debian/rules:
    - add -qvfb configure option.
    - add -audio-backend option.
    - remove qm target call. It isn't needed anymore.
    - bump debhelper build dependency to version 7.4.13 to properly support dh
      options.
    - enable parallel build by passing --parallel option to dh.
    - remove Phonon development files.
  * Update debian/libphonon-dev.install: Include headers have been changed.
    The only official method for including Phonon headers is <phonon/ClassName>
    or <phonon/classname.h>.
  * Add a manpage for qdbus. Thanks to Andreas Marschke. (Closes: #568186)

  [ Pino Toscano ]
  * Update debian/control: Don't build-depends on libasound2-dev for
    GNU/kFreeBSD and GNU/Hurd architectures.
  * Add 81_hurd_architecture.diff: recognize the proper architecture on
    GNU/Hurd. This will make Qt BIC there, but we can live with that.
  * Add 82_hurd_SA_SIGINFO.diff: fix FTBFS on GNU/Hurd causes by unconditional
    usage of SA_SIGINFO.
  * Adapt watch file to the new file names of the Qt/X11 tarballs.
  * Polish a bit qdbus manpage.
  * Add x-www-browser as alternative in qt4-doc-html's browser suggestion.
  * Suggest qt4-doc-html in qt4-dev-tools, as the latter contains assistant_adp
    which uses such HTML documentation. (Closes: #498701)
  * For now, remove the uic-qt4 manpage, which actually refers to Qt3's uic;
    a totally misleading manpage is worse than no manpage at all. (Closes: #464375)

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Mon, 01 Mar 2010 13:26:14 +0100

qt4-x11 (4:4.6.2-0ubuntu5) lucid; urgency=low

  [ Alessandro Ghersi ]
  * Update applications icons (LP: #350312)
  * Fix watch file to report only stable versions
  * Sync patches with Debian:
    - 02_launch_assistant-qt4.diff
    - 10_config_tests_fixes.diff
    - 15_fix_qmake_makefile_generation.diff
    - 16_hide_std_symbols_on_qtwebkit.diff
    - 40_alpha_ice.diff
  * Fix qdbus.1 manpage
  * Sync desktop files with Debian to fix lintian warning
  * Fix lintian warning: binary-control-field-duplicates-source
  * Add upstream patch 0002_qmake_qfileinfo_absolutepath.diff
    - Fixed QFileInfo::absolutePath() warning when running "qmake -project"
      http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=%23574043

  [ Jonathan Thomas ]
  * Update upstream's libphonon patch. This will correct build system issues
    that caused both the PulseAudio integration to fail as well as the
    libphonon version to be under-reported (LP: #557514)

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Fri, 09 Apr 2010 05:57:00 +0200

qt4-x11 (4:4.6.2-0ubuntu4) lucid; urgency=low

  [ Alessandro Ghersi ]
  * Drop 90_ia64_opts.diff, is obsolete, fixed in gcc now

  [ Anthony Mercatante ]
  *  Added kubuntu_06_qdnd_x11_cursor.diff:
    - Use X11 theme for drag and drop icons
    - Closes LP: #280113

 -- Anthony Mercatante <tonio@ubuntu.com>  Wed, 07 Apr 2010 12:35:07 +0200

qt4-x11 (4:4.6.2-0ubuntu3) lucid; urgency=low

  [ Jonathan Thomas ]
  * Update kubuntu_07_phonon_4.3.80.diff, patches Qt's libphonon to Phonon
    4.4.0

  [ Alessandro Ghersi ]
  * Add cherry-picked patch 0001_qpixmap_load_no_modify_referenced_copies.diff
    from upstream  (sync with Debian)
  * Rename kubuntu_07_phonon_4.3.80.diff to kubuntu_07_phonon_4.4.0.diff
  * qt4-dev-tools replaces libqtcore4 (<< 4:4.6.2) (LP: #544688)

  [ Michael Vogt ]
  * debian/control:
    - fix missing Replaces in phonon-dbg (LP: #546024)

  [ Roderick B. Greening ]
  * Release 4:4.6.2-0ubuntu3 

 -- Roderick B. Greening <roderick.greening@gmail.com>  Mon, 29 Mar 2010 13:54:01 -0230

qt4-x11 (4:4.6.2-0ubuntu2) lucid; urgency=low

  [ Matthias Klose ]
  * 90_ia64_opts.diff: Build with -Os on ia64, to work around
    PR target/43348. LP: #531697.
  * debian/rules (clean): Use find/xargs for a small speedup.

  [ Kees Cook ]
  * Add kubuntu_12_fix_stack_protector.diff: restore the stack protector
    compiler flag (LP: #538237).

 -- Matthias Klose <doko@ubuntu.com>  Sun, 14 Mar 2010 13:58:43 +0100

qt4-x11 (4:4.6.2-0ubuntu1) lucid; urgency=low

  [ Jonathan Riddell ]
  * New upstream release
  * Update kubuntu_07_phonon_4.3.80.diff
  * Update 05_append_qt4_target.diff

  [ Alessandro Ghersi ]
  * Update patches:
    - 0180-window-role.diff
    - 15_fix_qmake_makefile_generation.diff
    - 18_enable_qt3support_qtwebkit_debug_info.diff
    - 81_hurd_architecture.diff
    - 82_hurd_SA_SIGINFO.diff
    - 96_powerpc_no_gc_sections.diff
  * Sync 92_armel_gcc43_valist_compat.diff with Debian
  * Add kubuntu_11_fix_main_window_without_central_widget.diff (LP: #515132)
    (backport from Qt 4.6.3)
  * In libqt4-dbg add conflicts with qt-x11-free-dbg (LP: #517263)
  * qt4-dev-tools replaces libqt4-core (<= 4.5.3really4.5.2-0ubuntu1)
    (LP: #527534)
  * Sync manpages/qdbus.1 with Debian
    - Update libqt4-dev.manpages
  * qt4-dev-tools conflicts with qt3-dev-tools-embedded
  * qt4-dev-tools suggests qt4-doc-html
  * Update all symbol files
  * Bump build dependency of debhelper and pkg-kde-tools to version 0.6.4 as it
    is needed to handle symbol files and build with pkgkde symbolshelper and
    parallel addon
  * Call dh_auto_build instead of $(MAKE) for parallel build
  * In override_dh_makeshlibs: do not FTBS if there are lost symbols
  * Drop rules to generating libphonon4 symbols, no longer need

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Thu, 25 Feb 2010 02:23:43 +0100

qt4-x11 (4:4.6.1-1ubuntu2) lucid; urgency=low

  * Fix kubuntu_04_qt_ia32_library_path.patch to use QLatin1String
    fix ftbs on i386

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Wed, 03 Feb 2010 21:23:43 +0100

qt4-x11 (4:4.6.1-1ubuntu1) lucid; urgency=low

  [ Alessandro Ghersi ]
  * New upstream release
    - Phonon stuff:
      - In libphonon-dev.install install headers in the right place to build
        KDE with phonon support
    - Refresh patches:
      - 96_powerpc_no_gc_sections.diff
      - 0180-window-role.diff
      - 0216-allow-isystem-for-headers.diff
      - 05_append_qt4_target.diff
      - 07_trust_dpkg-arch_over_uname-m.diff
      - 08_configure_quilt_compat.diff
      - 09_qmake_lflags_as-needed.diff
      - 12_add_nostrip_for_debug_packages.diff
      - 18_enable_qt3support_qtwebkit_debug_info.diff
      - 20_install_qvfb.diff
      - 30_webkit_unaligned_access.diff
      - 40_alpha_ice.diff
      - 92_armel_gcc43_valist_compat.diff
      - 95_sparc_platform_definition.diff
      - 96_powerpc_no_gc_sections.diff
      - kubuntu_04_qt_ia32_library_path.patch
      - kubuntu_09_use_ft_glyph_embolden_to_fake_bold.diff
      - kubuntu_07_phonon_4.3.80.diff
    - Remove patches merged upstream:
      - 93_jsvalue64_on_ia64.diff
      - 94_fix_crash_in_qdbuspendingreply_qdbusreply.diff
      - 97_prevent_crash_on_inputcontext_creation.diff
  * Merge with Debian git remaining changes:
    - Do not package firebird and ibase packages, remove from debian/rules and
      debian/control
    - libqt4-sql-ibase not recommend for libqt4-sql
    - libqt4-gui: suggest, not recommend, qt4-qtconfig
    - libphonon and libphonon-dev replace libqt4-phonon{,-dev}
    - libphonon replaces libqt4-phonon-dev (<= 4.5.3really4.5.2-0ubuntu1),
      usr/lib/qt4/plugins/designer/libphononwidgets.so was moved from
      libqt4-phonon-dev
    - libqt4-phonon-dev replaces libphonon-dev (<= 4:4.3.1-1ubuntu1)
    - libqt4-phonon-dbg replaces phonon-dbg (<= 4:4.3.1-4ubuntu1)
    - Install various extra headers in libqt4-opengl-dev.install and
      libqt4-dev.install
    - Build packages with lzma compression
    - Add links from /usr/share/qt4/lib/ to /usr/lib for Qt libraries
      needed for Qt Jambi in debian/rules
    - Rules to remove po dir in clean
    - Add MessagesQt.sh
    - Rules to create Messages.sh link to MessagesQt.sh and rules to create po
      dir and exectue extract-messages.sh in common-install-prehook-impl
    - Rules to remove Messages.sh link
    - Make libqt4-dev depend on libx11-dev
    - Add libpulse-dev to build-depends
    - In debian/rules Set DEB_HOST_ARCH and DEB_HOST_ARCH_OS.
      Configure with "-arch armv6" option on ARM
    - Keep Kubuntu patches:
      - kubuntu_04_qt_ia32_library_path.patch
      - kubuntu_07_phonon_4.3.95.diff
      - kubuntu_08_add_missing_bold_style.diff
      - kubuntu_09_use_ft_glyph_embolden_to_fake_bold.diff

  [ Zhengpeng Hou ]
  * Add kubuntu_08_add_missing_bold_style.diff and
    kubuntu_09_use_ft_glyph_embolden_to_fake_bold.diff
    to make qt support bold style CJK fonts

  [ Jonathan Riddell ]
  * Add kubuntu_10_ibus_input_method.diff to change default input method

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Tue, 19 Jan 2010 13:26:43 +0100

qt4-x11 (4:4.6.1-1) UNRELEASED; urgency=low

  * New upstream release.
    - Fix a crash in QDBusPendingReply/QDBusReply in case of unconnected calls.
      (Closes: #560838)
    - Fix FTBFS on GNU/kFreeBSD due to lack of WTF_USE_JSVALUE64.
      (Closes: #565731)

  [ Modestas Vainius ]
  * Change my email address to @debian.org one.
  * Restore binary compatibility with binaries built with g++-4.3 on armel
    (patch 92_armel_gcc43_valist_compat.diff).

  [ Fathi Boudra ]
  * Add debian/patches/95_sparc_platform_definition.diff patch to fix build for
    32-bit sparc machines.
  * Update debian/rules:
    - Use linux-g++-64 as platform_arg on required architectures (amd64, ia64
      and sparc64).
  * Add 96_powerpc_no_gc_sections.diff: Don't pass -Wl,--gc-sections on powerpc
    when building libQtWebKit.so; works around a binutils bug that results in a
    segfault. Thanks to Steve Langasek.
  * Add 20_install_qvfb.diff: build Qt Virtual Framebuffer (qvfb) tool.
  * Add 51_kfreebsd_strnstr_build_fix.diff: Fix FTBFS on GNU/kFreeBSD caused by
    missing strnstr() on glibc systems.
  * Remove patches:
    - 19_install_qdoc3.diff - merged upstream.
    - 81_hurd_clock_gettime.diff - merged upstream.
    - 0289-context-for-shortcuts-tr.diff - rejected upstream.
  * Merge with Kubuntu:
    - add 21_qt_ia32_library_path.diff patch
      fix ia32 library path (e.g. skype application).
  * Update debian/control:
    - build-depend on firebird2.1-dev instead of firebird2.0-dev.
      (Closes: #564683)
    - extend architecture list for firebird2.1-dev.
    - build-depend on libxtst-dev to build qvfb.
  * Update debian/qt4-dev-tools.install: add qvfb binary and the translations.
  * Update debian/rules:
    - add -qvfb configure option.
    - add -audio-backend option.
    - remove qm target call. It isn't needed anymore.
  * Update debian/libphonon-dev.install: Include headers have been changed.
    The only official method for including Phonon headers is <phonon/ClassName>
    or <phonon/classname.h>.

  [ Pino Toscano ]
  * Update debian/control: Don't build-depends on libasound2-dev for
    GNU/kFreeBSD and GNU/Hurd architectures.
  * Add 81_hurd_architecture.diff: recognize the proper architecture on
    GNU/Hurd. This will make Qt BIC there, but we can live with that.
  * Add 82_hurd_SA_SIGINFO.diff: fix FTBFS on GNU/Hurd causes by unconditional
    usage of SA_SIGINFO.
  * Adapt watch file to the new file names of the Qt/X11 tarballs.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Sun, 31 Jan 2010 01:40:16 +0100

qt4-x11 (4:4.6.0-1ubuntu6) lucid; urgency=low

  * Add patch kubuntu_05_powerpc_build.diff to fix build on powerpc,
    apply in debian/rules
  * Rename 93_jsvalue64_on_ia64.diff to kubuntu_06_jsvalue64_on_ia64.diff
  * Rename updated-phonon.diff to kubuntu_07_phonon_4.3.80.diff

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 23 Dec 2009 23:50:07 +0000

qt4-x11 (4:4.6.0-1ubuntu5) lucid; urgency=low

  * Add missing #endif to debian/patches/93_jsvalue64_on_ia64.diff

 -- Scott Kitterman <scott@kitterman.com>  Sun, 20 Dec 2009 09:06:18 -0500

qt4-x11 (4:4.6.0-1ubuntu4) lucid; urgency=low

  * debian/patches/92_powerpc_no_gc_sections.diff: Don't pass
    -Wl,--gc-sections on powerpc when building libQtWebKit.so; works around
    a binutils bug that results in a segfault.
  * debian/patches/93_jsvalue64_on_ia64.diff: make sure we're setting
    WTF_USE_JSVALUE64 on ia64, as in previous releases.
  * fix override_dh_clean target to not *completely bypass* dh_clean

 -- Steve Langasek <steve.langasek@ubuntu.com>  Sun, 20 Dec 2009 07:36:30 +0000

qt4-x11 (4:4.6.0-1ubuntu3) lucid; urgency=low

  * Add updated-phonon.diff, diff between Phonon in Qt 4.6.0 and Phonon in
    http://qt.gitorious.org/~sandsmark/qt/sandsmarks-kde-qt-with-updated-phonon
    Thanks to Martin T. H. Sandsmark
  * Add libpulse-dev in build-deps
  * Update libphonon-dev.install

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Sun, 13 Dec 2009 20:53:59 +0100

qt4-x11 (4:4.6.0-1ubuntu2) lucid; urgency=low

  * Make libqt4-dev depend on libx11-dev
  * In debian/rules Set DEB_HOST_ARCH and DEB_HOST_ARCH_OS. Configure with "-arch armv6" option on ARM

 -- Jonathan Riddell <jriddell@ubuntu.com>  Tue, 08 Dec 2009 13:30:39 +0000

qt4-x11 (4:4.6.0-1ubuntu1) lucid; urgency=low

  * Merge with Debian experimental, remaining changes:
    - Do not package firebird and ibase packages, remove from debian/rules and
      debian/control
    - libqt4-sql-ibase not recommend for libqt4-sql
    - libqt4-gui: suggest, not recommend, qt4-qtconfig
    - libphonon and libphonon-dev replace libqt4-phonon{,-dev}
    - libphonon replaces libqt4-phonon-dev (<= 4.5.3really4.5.2-0ubuntu1),
      usr/lib/qt4/plugins/designer/libphononwidgets.so was moved from
      libqt4-phonon-dev
    - libqt4-phonon-dev replaces libphonon-dev (<= 4:4.3.1-1ubuntu1)
    - libqt4-phonon-dbg replaces phonon-dbg (<= 4:4.3.1-4ubuntu1)
    - Install various extra headers in libqt4-opengl-dev.install and
      libqt4-dev.install
    - Build packages with lzma compression
    - Add links from /usr/share/qt4/lib/ to /usr/lib for Qt libraries
      needed for Qt Jambi in debian/rules
    - Rules to remove po dir in clean
    - Add MessagesQt.sh
    - Rules to create Messages.sh link to MessagesQt.sh and rules to create po
      dir and exectue extract-messages.sh in common-install-prehook-impl
    - Rules to remove Messages.sh link

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Sun, 06 Dec 2009 04:25:35 +0100

qt4-x11 (4:4.6.0-1) experimental; urgency=low

  * New upstream release.

  +++ Changes by Fathi Boudra:

  * Add french translations.
  * Merge with Kubuntu: add libqt4-sql-tds plugin.

  +++ Changes by Frederik Schwarzer:

  * Fix typos in package descriptions.
    (Closes: #557397, #557396, #557374, #557375, #557376)

 -- Fathi Boudra <fabo@debian.org>  Tue, 01 Dec 2009 14:07:47 +0100

qt4-x11 (4:4.6.0-0ubuntu1) lucid; urgency=low

  [ Alessandro Ghersi ]
  * New upstream release:
    - Update qt4-dev-tools.install
    - Update qt4-designer.install
    - Update libqt4-help.install

 -- Scott Kitterman <scott@kitterman.com>  Sat, 05 Dec 2009 18:26:57 -0500

qt4-x11 (4:4.6.0~rc1-1ubuntu1) lucid; urgency=low

  [Alessandro Ghersi]
  * Merge with Debian experimental, remaining changes:
    - Do not package firebird and ibase packages, remove from debian/rules and
      debian/control
    - libqt4-sql-ibase not recommend for libqt4-sql
    - libqt4-gui: suggest, not recommend, qt4-qtconfig
    - libphonon and libphonon-dev replace libqt4-phonon{,-dev}
    - libphonon replaces libqt4-phonon-dev (<= 4.5.3really4.5.2-0ubuntu1),
      usr/lib/qt4/plugins/designer/libphononwidgets.so was moved from
      libqt4-phonon-dev
    - libqt4-phonon-dev replaces libphonon-dev (<= 4:4.3.1-1ubuntu1)
    - libqt4-phonon-dbg replaces phonon-dbg (<= 4:4.3.1-4ubuntu1)
    - Install various extra headers in libqt4-opengl-dev.install and
      libqt4-dev.install
    - Keep kubuntu_03_use_bash_in_configure.diff
    - Build packages with lzma compression
    - Add links from /usr/share/qt4/lib/ to /usr/lib for Qt libraries
      needed for Qt Jambi in debian/rules
    - Rules to remove po dir in clean
    - Add MessagesQt.sh
    - Rules to create Messages.sh link to MessagesQt.sh and rules to create po
      dir and exectue extract-messages.sh in common-install-prehook-impl
    - Rules to remove Messages.sh link
  * Refresh kubuntu_04_qt_ia32_library_path.patch

  [Jonathan Riddell]
  * Remove kubuntu_03_use_bash_in_configure.diff, Debian uses dash too
    and they don't need it
  * Add depends on freetds-dev and add libqt4-sql-tds with -plugin-sql-tds

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Tue, 17 Nov 2009 21:09:55 +0100

qt4-x11 (4:4.6.0~rc1-1) experimental; urgency=low

  * New upstream release.
  * Remove kde-qt patches:
    - 0288-more-x-keycodes - merged upstream.
  * Update debian/libqt4-dev.install: update installed files.

 -- Fathi Boudra <fabo@debian.org>  Tue, 17 Nov 2009 12:12:36 +0100

qt4-x11 (4:4.6.0~beta1-1ubuntu1) lucid; urgency=low

  * Merge with Debian experimental, remaining changes:
    - Do not package firebird and ibase packages, remove from debian/rules and
      debian/control
    - libqt4-sql-ibase not recommend for libqt4-sql
    - libqt4-gui: suggest, not recommend, qt4-qtconfig
    - libphonon and libphonon-dev replace libqt4-phonon{,-dev}
    - libphonon replaces libqt4-phonon-dev (<= 4.5.3really4.5.2-0ubuntu1),
      usr/lib/qt4/plugins/designer/libphononwidgets.so was moved from
      libqt4-phonon-dev
    - libqt4-phonon-dev replaces libphonon-dev (<= 4:4.3.1-1ubuntu1)
    - libqt4-phonon-dbg replaces phonon-dbg (<= 4:4.3.1-4ubuntu1)
    - Install various extra headers in libqt4-opengl-dev.install and
      libqt4-dev.install
    - Keep kubuntu_03_use_bash_in_configure.diff
    - Build packages with lzma compression
    - Add links from /usr/share/qt4/lib/ to /usr/lib for Qt libraries
      needed for Qt Jambi in debian/rules
    - Rules to remove po dir in clean
    - Add MessagesQt.sh
    - Rules to create Messages.sh link to MessagesQt.sh and rules to create po
      dir and exectue extract-messages.sh in common-install-prehook-impl
    - Rules to remove Messages.sh link
    - Build against libiodbc2-dev and libreadline5-dev, for now don't switch to
      unixodbc-dev and libreadline-dev to prevent FTBS
  * Drop our custom -dbg setup, launchpad Bug 261380 was fixed by Fathi Boudra
    in 4:4.6.0~beta1-1 and merged in our package
  * Refresh kubuntu_04_qt_ia32_library_path.patch

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Mon, 02 Nov 2009 18:30:08 +0100

qt4-x11 (4:4.6.0~beta1-1) experimental; urgency=low

  * New upstream release.
  * Refresh qt-copy patches: 0180 and 209.
  * Remove qt-copy patches: 0255, 0274, 0280 and 0287.
  * Refresh Debian patches: 01, 05, 09, 11, 16, 18, 19, 30, 40, 41, 50 and 81.
  * Remove upstream patches:
    - 0078-Fix-regressions-in-qeventloop-qtimer-and-qsocketnoti - stolen
      upstream.
  * Remove Debian patches:
    - 14_add_libraries_to_gui_build_where_actually_needed - fixed upstream.
  * Add Debian patches:
    - 12_add_nostrip_for_debug_packages
      Set nostrip to generate debug packages.
  * Update debian/control:
    - Remove Brian Nelson from uploaders field.
      Thanks for his great work on Qt.
    - Drop cdbs build dependency.
    - Add libasound2-dev build dependency.
    - Add libqt4-multimedia package.
  * Update installed files and related lintian files.
  * Rewrite debian/rules, converted to dh usage.
  * Build with -no-separate-debug-info. Adjust debian/rules accordingly.

 -- Fathi Boudra <fabo@debian.org>  Thu, 15 Oct 2009 23:14:56 +0200

qt4-x11 (4:4.5.3-4) unstable; urgency=low

  * Add 08_configure_quilt_compat.diff patch. (Closes: #550127)
    quilt creates '.pc' directory. It breaks qmake projects search.
  * Update debian/rules: re-add -fast configure option.

 -- Fathi Boudra <fabo@debian.org>  Thu, 15 Oct 2009 22:32:28 +0200

qt4-x11 (4.5.3really4.5.2-0ubuntu1) karmic; urgency=low

  * Revert back to 4.5.2.  Our 4.5.3 package does not compile in the
    build daemons and we are unable to recreate the problem so a
    solution looks unlikely before freeze.

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 14 Oct 2009 16:14:19 +0100

qt4-x11 (4.5.3-0ubuntu3) karmic; urgency=low

  * Remove -fast from ./configure in debian/rules, fix fail to build

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 12 Oct 2009 15:43:52 +0100

qt4-x11 (4.5.3-0ubuntu2) karmic; urgency=low

  * debian/rules: cleanup make target usage by removing sub-src and sub-tools
    call. Fix FTBS on buildds caused by make target ordering.
    Thanks to Fathi Boudra

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Fri, 09 Oct 2009 05:24:41 +0200

qt4-x11 (4:4.5.3-3) unstable; urgency=low

  * Remove -fast configure option. Qt configure has -no-fast as default value
    and will generate Makefiles for all project files, including bootstrap.
    (Closes: #550127)

 -- Fathi Boudra <fabo@debian.org>  Fri, 09 Oct 2009 13:53:57 +0200

qt4-x11 (4:4.5.3-2) unstable; urgency=low

  * Update debian/rules: cleanup make target usage by removing sub-src and
    sub-tools call. Fix a FTBFS on buildds caused by make target ordering.
    (Closes: #550127)

 -- Fathi Boudra <fabo@debian.org>  Thu, 08 Oct 2009 15:31:52 +0200

qt4-x11 (4.5.3-0ubuntu1) karmic; urgency=low

  [ Jonathan Riddell ]
  * Add kubuntu_05_qtimer_delay.diff from 
    http://qt.gitorious.org/qt/qt/commit/d0d0fdb8e46351b4ab8492de31e5363ef6662b57.patch
    as advised by upstream http://mail.kde.org/pipermail/release-team/2009-October/003337.html
	
  [ Alessandro Ghersi ]
  Thanks to Fathi Boudra
  * debian/rules:
    - Improve shlibs version rules
    - Build translations
    - Test file type on *.a cleaning. tests directory contains *.a in their
      names
    - Make sure translations directory is created before calling lrelease
  * Add qt-copy patch:
    - 0289-context-for-shortcuts-tr.diff
      Some languages have special rules for using "+" to concatenate strings
      and for example it needs to be Ctrl + Shift instead of Ctrl+Shift,
      adding context to these strings helps creating a more correct translation
  * Sync debian/copyright file with Debian
  * Add watch and README.source file
  * Update debian/manpages files
  * Update patches to fix offset lines:
    - 0180-window-role.diff
    - 0216-allow-isystem-for-headers.diff
    - 0225-invalidate-tabbar-geometry-on-refresh.patch
    - 0255-qtreeview-selection-columns-hidden.diff
    - 0274-shm-native-image-fix.diff
    - 07_trust_dpkg-arch_over_uname-m.diff
    - 09_qmake_lflags_as-needed.diff
    - 15_fix_qmake_makefile_generation.diff
    - 17_add_postgresql_8.3_support.diff
    - 40_alpha_ice.diff
  * Add patch from Debian:
    - 11_build_translations.diff for fix build translations, with correct
      prependALL path and with our lupdate-qt4 and lrelease-qt4
  * Update 05_append_qt4_target.diff patch
  * Add some translations files
  * Update libqt4-phonon-dev.install and delete libqt4-phonon-dev.links no
    longer need

  [ Roderick B. Greening ]
  * New upstream release
  * Update Patches
    - 0274-shm-native-image-fix.diff
    - 05_append_qt4_target.diff
    - 70_hppa_ldcw_fix.diff
    - kubuntu_03_use_bash_in_configure.diff
  * Remove Patches
    - 0286-fix-error-string.diff - fixed upstream
    - kubuntu_05_fix_arora_drag_crash.diff - fixed upstream
    - kubuntu_06_fix_webkit_mimetype_detection.diff - fixed upstream
    - kubuntu_07_CVE_2009_2700.diff - fixed upstream

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Sun, 04 Oct 2009 04:12:20 +0200

qt4-x11 (4:4.5.3-1) unstable; urgency=low

  * New upstream release:
    - Fix CVE-2009-2700 - QSSlCertificate  incorrect verification of SSL
      certificate with NUL in subjectAltName. (Closes: #545793)
    - Fix a regresion in Qt 4.5.2 causing a broken clipboard with scim.
      (Closes: #544764, #546282)
    - Fix phonon wrong #include paths. (Closes: #537304)

  +++ Changes by Ana Beatriz Guerrero Lopez:

  * Switch from libreadline5-dev to libreadline-dev.

  +++ Changes by Modestas Vainius:

  * VCS changed to git, adjust Vcs-* field in debian/control accordingly.
  * Bump Standards-Version to 3.8.3: no changes needed.
  * Document Git repository policy and packaging workflows in
    debian/README.source.

  +++ Changes by Fathi Boudra:

  * Add upstream patches:
    - 0078-Fix-regressions-in-qeventloop-qtimer-and-qsocketnoti.patch
      Fix regressions in qeventloop, qtimer, and qsocketnotifier autotests.
  * Add Debian patches:
    - 99_build_translations
      Fix translations build when sources comes from git.
  * Add qt-coy patches:
    - 0288-more-x-keycodes.diff
      Fill gap of X.org/XFree multimedia/special/launcher keys. Qt up to 4.5.x
      is missing whole setup of multimedia keys already defined by X.
    - 0289-context-for-shortcuts-tr.diff
      Some languages have special rules for using "+" to concatenate strings
      and for example it needs to be Ctrl + Shift instead of Ctrl+Shift,
      adding context to these strings helps creating a more correct translation
    - 0287-qmenu-respect-minwidth.diff
      If one sets a minimum width on a QMenu and that size is larger than the
      smallest size needed by the large menu item, it ignores the minimum width
      and just uses the largest menu item size.
  * Refresh and adjust patches.
  * Remove patches:
    - 0286-fix-error-string - Merged upstream.
    - 0287-attempt-to-fix-header-installation-for-phonon - Merged upstream.
    - 06_CVE-2009-1725 - Merged upstream.
  * Update debian/control:
    - Switch from iodbc to unixodbc. (Closes: #548976)
  * Update debian/copyright:
    - Update Nokia Qt url.
    - Update Nokia Qt LGPL Exception from version 1.0 to version 1.1.
  * Update *.install and *.lintian files.
  * Update debian/rules:
    - Build translations
    - Generate include directory before configure call.
    - Test file type on *.a cleaning. tests directory contains *.a in their
      names.
    - Make sure translations directory is created before calling lrelease.
  * Update debian/watch:
    - Update Nokia Qt url.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Tue, 15 Sep 2009 15:27:39 +0200

qt4-x11 (4.5.2-0ubuntu6) karmic; urgency=low

  * Add MessagesQt.sh (Messages.sh is a link for extract-messages.sh)
  * rules to create po dir and exectue extract-messages.sh in
    common-install-prehook-impl
  * rules to remove po dir in clean
  * Build-Depends pkg-kde-tools for extract-messages.sh

 -- Harald Sitter <apachelogger@ubuntu.com>  Sun, 27 Sep 2009 18:53:30 +0200

qt4-x11 (4.5.2-0ubuntu5) karmic; urgency=low

  * SECURITY UPDATE: fix vulnerability with NULL byte in Subject Alternate
    Names field of X.509 certificates
    - debian/patches/kubuntu_07_CVE_2009_2700.diff: adjust
      network/ssl/qsslcertificate.cpp to use QString::fromLatin1 instead of
      QLatin1String
    - CVE-2009-2700

 -- Jamie Strandboge <jamie@ubuntu.com>  Wed, 09 Sep 2009 12:57:48 -0500

qt4-x11 (4.5.2-0ubuntu4) karmic; urgency=low

  * Build with mysql 5.1

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 19 Aug 2009 20:40:32 +0100

qt4-x11 (4:4.5.2-2) unstable; urgency=low

  +++ Changes by Fathi Boudra:

  * Add patch to fix CVE-2009-1725 (Closes: #538347):
    WebKit in Apple Safari before 4.0.2 does not properly handle numeric
    character references, which allows remote attackers to execute
    arbitrary code or cause a denial of service (memory corruption and
    application crash) via a crafted HTML document.

  +++ Changes by Sune Vuorela:

  * Add qt4-dev-tools to -demo recommends just like qt4-doc to make it possible
    to actually use the documentation from the demo application.
    (Closes: #536558)

  +++ Changes by Modestas Vainius:

  * Loosen requirements of the phonon metapackage in the libphonon4 symbols
    file. Too tight dependency causes unnecessary complications installing
    build dependencies on arches which lag behind on Qt4 builds.
  * Build depend on libmysqlclient-dev rather than libmysqlclient15-dev.
    Backports friendly as libmysqlclient-dev is a virtual package in lenny.
  * Likewise, make libqt4-dev suggest libmysqlclient-dev rather than
    libmysqlclient15-dev.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Tue, 18 Aug 2009 21:36:48 +0200

qt4-x11 (4.5.2-0ubuntu3) karmic; urgency=low

  [ Jonathan Thomas ]
  * Change Vcs-Browser and Vcs-Bzr in debian/control
  * Add kubuntu_05_fix_arora_drag_crash.diff to stop QtWebkit from crashing
    when dragging things to the desktop (LP: #400794)
  * Add kubuntu_06_fix_webkit_mimetype_detection.diff to stop QtWebKit from
    trying to load mimetypes it doesn't know as images
  * Add 0286-fix-error-string.diff from kde-qt git
  * Add 0287-qmenu-respect-minwidth.diff from kde-qt git to fix the ugly
    Plasma task manager context menus
  * Add 0288-more-x-keycodes from kde-qt git to add support for more X
    keycodes to Qt (LP: #293213)

  [ Jonathan Riddell ]
  * Add pkg-config to libqt4-dev depends, see launchpad.net/bugs/410228

 -- Jonathan Thomas <echidnaman@kubuntu.org>  Sun, 02 Aug 2009 20:03:52 -0400

qt4-x11 (4.5.2-0ubuntu2) karmic; urgency=low

  * Make libqtgui4 suggest qt4-qtconfig (instead of recommending). This prevents
    qt4-qtconfig from getting on the Kubuntu CD and thus create a one-item
    "Settings" category in the menu

 -- Harald Sitter <apachelogger@ubuntu.com>  Mon, 20 Jul 2009 19:24:06 +0200

qt4-x11 (4.5.2-0ubuntu1) karmic; urgency=low

  * New upstream release
  * Remove patches fixed by upstream:
    - 0234-fix-mysql-threaded.diff
    - 0273-odbc-64bit-compile.diff
    - 0279-svg-rendering-regression.diff
    - 0282-fix-qpixmapcache-leak.diff
    - 90_ia64_boilerplate.diff
    - kubuntu_05_multi_line_cookies.diff
  * Update patches:
    - 0274-shm-native-image-fix.diff
    - 05_append_qt4_target.diff
    - 19_install_qdoc3.diff
  * Update libqt4-phonon-dev.install:
    - add usr/lib/libphonon.prl
  * Update libqt4-help.install, libqtcore4.install, qt4-designer.install,
    qt4-dev-tools.install, qt4-qtconfig.install, not-installed

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Thu, 25 Jun 2009 16:37:49 +0200

qt4-x11 (4:4.5.2-1) unstable; urgency=low

  * New upstream release:
    - QtWebKit
      * Backported various security fixes (r41262, r41568,
        r41741, r41854, r42081, r42216, r42223, r42333,
        r42365, r42532, r42533, r44010)
      (Closes: #532718, #534947) Related to CVE-2009-0945, CVE-2009-1687,
      CVE-2009-1698, CVE-2009-1690 and CVE-2009-1709.

  +++ Changes by Sune Vuorela:

  * Add patch to build s390 debugging symbols with -gstabs instead of with -g,
    to make them a bit smaller. Noone can use a 1G file with debugging
    symbols. (Closes: #528485)

  +++ Changes by Fathi Boudra:

  * Sync qt-copy patches from kde-qt git repository.
  * Refresh patches:
    - 05_append_qt4_target
    - 19_install_qdoc3.diff
  * Remove patches:
    - 20_mips_atomic_ops - Merged upstream.
    - 21_fix_quiloader_wrong_header_translated - Merged upstream.
    - 81_hurd_more_max_path - Merged in 80_hurd_max_path.
    - 90_ia64_boilerplate - Fixed upstream.
    - 0234-fix-mysql-threaded - Fixed upstream.
    - 0273-odbc-64bit-compile - Fixed upstream.
    - 0279-svg-rendering-regression - Fixed upstream.
  * Add patches:
    - 0280-deserialization-custom-dbus-properties.diff
      Fix deserialization of values with custom types when setting properties
      on dbus adaptors.
    - 0286-fix-error-string.diff
      Fix #error line not to have a ' as it's not correct.
    - 0287-attempt-to-fix-header-installation-for-phonon.diff
      This is the long-standing issue of whether Phonon headers should be
      written with a capital P or a lowercase one.
    - 81_hurd_clock_gettime.diff
      Fix FTBFS on hurd-i386. Thanks to Samuel Thibault. (Closes #533526)
  * Add epoch 4 to avoid headache for Phonon handling.
  * Build Phonon from Qt sources:
    - Remove libphonon-dev build dependency.
    - Do not remove phonon files anymore.
    - Keep libphonon4 symbols file and add pkg-kde-tools build dependency.
  * Bump Standards-Version to 3.8.2 (no changes needed).
  * Add qt4-demos-dbg package.
  * Update installed files.

  +++ Changes by Didier Raboud:

  * Add debian/watch file.

  +++ Changes by Frederik Schwarzer:

  * Update manpages

 -- Fathi Boudra <fabo@debian.org>  Thu, 25 Jun 2009 15:23:55 +0200

qt4-x11 (4.5.1-1ubuntu6) karmic; urgency=low

  * Add patches from qt-copy
   - 0281-syncqt-create-phonon-global.diff
   - 0282-fix-qpixmapcache-leak.diff
   - 0283-do-not-deduce-scrollbar-extent-twice.diff
   - 0285-qgv-dontshowchildren.diff

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 17 Jun 2009 15:36:39 +0100

qt4-x11 (4.5.1-1ubuntu5) karmic; urgency=low

  * Add kubuntu_05_multi_line_cookies.diff from 4.5 branch, fix
    multi-line cookies (we need our facebook)

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 15 Jun 2009 17:11:33 +0100

qt4-x11 (4.5.1-1ubuntu4) karmic; urgency=low

  * Fix debian/control file, it helps if packages have the right name

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 06 May 2009 14:08:20 +0000

qt4-x11 (4.5.1-1ubuntu3) karmic; urgency=low

  * Move phonon files to libqt4-phonon and libqt4-phonon-dev, version trickery 
    doesn't work currently due to depends.

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 06 May 2009 10:06:19 +0000

qt4-x11 (4.5.1-2) unstable; urgency=low

  +++ Changes by Fathi Boudra:

  * Update debian/rules:
    - Build with -opensource configure option to avoid Qt edition question
      triggered on some build setups caused by a bug in configure script.
      (Closes: #525570)
  * Add patch:
    - 21_fix_quiloader_wrong_header_translated.diff
      The header of the QTableWidgets loaded with QUiLoader are not
      translated when the language change. This patch fix the issue.

  +++ Changes by Aurelien Jarno:

  * Add patch:
    - 20_mips_atomic_ops.diff
      Set the mips instruction set to MIPS II around ll/sc in
      qatomic_mips.h. (Closes: #525707)

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Sun, 03 May 2009 14:22:26 +0200

qt4-x11 (4.5.1-1ubuntu2) karmic; urgency=low

  [ Jonathan Thomas ]
  * Merge with Debian unstable, remaining changes:
    - Do not package firebird and ibase packages, remove from debian/rules
      and debian/control
    - Use our custom -dbg setup
    - libqt4-dev depends on a load of -dev packages
    - Install various extra headers in libqt4-opengl-dev.install and
      libqt4-dev.install
    - Keep kubuntu_03_use_bash_in_configure.diff
    - Build packages with lzma compression
    - Add links from /usr/share/qt4/lib/ to /usr/lib for Qt libraries
      needed for Qt Jambi in debian/rules
  * Remove unused kubuntu_08_fix_systemtray.diff
  * Update KUBUNTU-DEBIAN-DIFFERENCES
  * Add -opensource flag to config target in debian/rules to work around an               
    upstream bug in the configure script

  [ Jonathan Riddell ]
  * Add 0280-deserialization-custom-dbus-properties.diff from qt-copy
  * Build phonon from Qt and set rules to set the version number

 -- Jonathan Thomas <echidnaman@kubuntu.org>  Wed, 29 Apr 2009 09:17:18 -0400

qt4-x11 (4.5.1-1) unstable; urgency=low

  * New upstream release:
    - QHostAddress: Fixed compilation by adding a missing QPair include.
      (Closes: #524944)
  * Bump Standards-Version to 3.8.1 (no changes needed).
  * Use section debug for -dbg packages.
  * Update Qt homepage.
  * Add patches:
    - 89_powerpc_opts.diff
      Build with -fno-optimize-sibling-calls on powerpc, since it causes a
      build failure with GCC 4.3. Thanks to Colin Watson.
    - 90_ia64_boilerplate.diff
      Don't try to use special hand assembly for printing the boilerplate
      message on ia64, since it causes a build failure due to undefined
      symbols. Thanks to Steve Langasek.
    - 0279-svg-rendering-regression.diff
      This patch fix the regression introduced in 4.5.1 with SVG rendering.
      The problem appear when a gradient reference an another gradient which
      is after in the svg. Plasma cache should be cleared.
  * Remove qt-copy patches:
    - 0245-fix-randr-changes-detecting.diff - Fixed upstream.
    - 0275-qtconcurrent-threadcount.diff - Fixed upstream.
    - 0276-webkit-pedantic.diff - Fixed upstream.
    - 0278-X11-Use-legacy-LCD-filtering-if-specified-in-font-c.diff - Fixed
      upstream.

 -- Fathi Boudra <fabo@debian.org>  Thu, 23 Apr 2009 14:23:06 +0200

qt4-x11 (4.5.0-0ubuntu4) jaunty; urgency=low

  * debian/patches/90_ia64_boilerplate.diff: don't try to use special
    hand assembly for printing the boilerplate message on ia64, since it
    causes a build failure due to undefined symbols.

 -- Steve Langasek <steve.langasek@ubuntu.com>  Sun, 05 Apr 2009 08:44:43 +0000

qt4-x11 (4.5.0-0ubuntu3) jaunty; urgency=low

  * Fix debug packages according to LP #261380
  * Reinstantiating explicit debug packages (LP #261380 comment #26 by
    Jonathan Thomas).
  * Leaving out lintian overrides for packages (comment #24).
  * Listing DEB_DBG_PACKAGE_* explicitely, as implicit logic doesn't seem to
    work as I would have expected.

 -- Martin von Gagern <Martin.vGagern@gmx.net>  Wed, 18 Mar 2009 16:07:10 +0100

qt4-x11 (4.5.0-0ubuntu2) jaunty; urgency=low

  * kubuntu_09_powerpc_opts.patch: Build with
    -fno-optimize-sibling-calls on powerpc, until such time as we start
    using GCC 4.4 (LP: #342335).

 -- Colin Watson <cjwatson@ubuntu.com>  Sat, 14 Mar 2009 13:33:52 +0000

qt4-x11 (4.5.0-2) experimental; urgency=low

  * Add qt-copy patches:
    - 0275-qtconcurrent-threadcount.diff
      Calling idealThreadCount() calls sysconfig in every run, as well as
      ignoring the configured number of threads for the main thread pool.
    - 0276-webkit-pedantic.diff
      Fix playground/base/plasma/applet/welcome compile with -pedantic.
    - 0278-X11-Use-legacy-LCD-filtering-if-specified-in-font-c.diff
      If Freetype is built without subpixel rendering, we should use
      the Qt 3 intrapixel filter instead of the bitmap convolution
      when the Legacy LCD filter is chosen. (Closes: #448555)

 -- Fathi Boudra <fabo@debian.org>  Mon, 16 Mar 2009 11:59:24 +0100

qt4-x11 (4.5.0-1) experimental; urgency=low

  * New upstream released:
    - Fix knode 4.2.x crash. (Closes: #516740)
  * Update copyright:
    - Add LGPL license support.
    - Add a sentence about QPL license dropped from Qt 4.4.0.
      (Closes: #508190, #500905)
  * Remove patches:
    - 20_fix_ftbfs_callgrindChildExitCode.diff - Merged upstream.
    - 21_fix_ppc_build.diff - Reverted upstream.
    - 22_fix_qiconvcodec.diff - Merged upstream.
  * Add qt-copy patches:
    - 0274-shm-native-image-fix.diff
      This patch makes the raster graphics system use shared images instead of
      shared pixmaps.

 -- Fathi Boudra <fabo@debian.org>  Tue, 03 Mar 2009 16:40:52 +0100

qt4-x11 (4.5.0-0ubuntu1) jaunty; urgency=low

  * New upstream release
  * Use lzma compression
  * Add 0274-shm-native-image-fix.diff from qt-copy

 -- Jonathan Riddell <jriddell@ubuntu.com>  Tue, 03 Mar 2009 13:31:00 +0000

qt4-x11 (4.5.0~rc1-2) experimental; urgency=low

  * Fix shlibs version. It should be 4.5.0~rc1.
  * Update debian/rules:
    - Build with -phonon and -no-phonon-backend configure options.
    - Remove built phonon and use system phonon.
  * Update debian/control:
    - Add libphonon-dev build dependency.

 -- Fathi Boudra <fabo@debian.org>  Fri, 20 Feb 2009 21:32:16 +0100

qt4-x11 (4.5.0~+rc1-0ubuntu1) jaunty; urgency=low

  * New upstream release candidate (rc1)

  * Fixed libqt4-dbg.install (dup entry)
    - remove usr/lib/libQtXmlPatterns.so.4.5.0.debug, which is also in libqt4-xmlpatterns-dbg.install

  * Added in files from list-missing to appropriate places.

  * Removed patches (applied upstream or obsolete)
    - 0167-fix-group-reading.diff
    - 0203-qtexthtmlparser-link-color.diff
    - 0224-fast-qpixmap-fill.diff
    - 0226-qtreeview-column_resize_when_needed.diff
    - 0238-fix-qt-qttabbar-size.diff
    - 0248-fix-qwidget-scroll-slowness.diff
    - 0249-webkit-stale-frame-pointer.diff
    - 0254-fix-qgraphicsproxywidget-deletion-crash.diff
    - 0256-fix-recursive-backingstore-sync-crash.diff
    - 0257-qurl-validate-speedup.diff
    - 0260-fix-qgraphicswidget-deletionclearFocus.diff
    - 0261-sync-before-reset-errorhandler.patch
    - 0262-fix-treeview-animation-crash.diff
    - 07_trust_dpkg-arch_over_uname-m.diff
    - 12_fix_qmake_pkgconfig.diff
    - 20_mips_atomic_ops.diff
   
  * Merge changes from debian
    - Update install files
    - Update lintian files
    - Refresh patches from debian
      - 02, 03, 04, 05, 09, 14, 15, 16, 17, 30, 40, 41, 50, 71, 80.
    - Refresh qt-copy patches
      - 0180, 0195, 0209, 0216, 0225, 0234, 0245, 0255.
    - Update SHLIBSVERSION to 4.5.0
    - QGtkStyle is part of Qt 4.5 release. (Closes: #507143)
    - Fix useless warning flood when sockets > 1024. (Closes: #511700)
    - Add libgtk2.0-dev build dependency to enable GTK theme support.
    - Add package libqt4-scripttools: The QtScriptTools module provides
      additional components for applications that use Qt Script.
    - Clean up the prl postprocessing.
    - Build documentations if current version is a snapshot.
    - Update *.install and *.lintian files.
    - Move mkspecs in qt4-qmake package to use qt4-qmake standalone.
    - Add qdoc3 to qt4-dev-tools package.
    - Add Debian patches:
      - 18_enable_qt3support_qtwebkit_debug_info.diff
        On Qt >= 4.5, debug info are disabled for Qt3Support and QtWebkit.
        This patch enable them.
      - 19_install_qdoc3.diff
        Install qdoc3 binary. It is used by Qt Creator.
      - 20_fix_ftbfs_callgrindChildExitCode.diff
        Fix ftfbs on qtestcase.cpp. Stolen from snapshot 20090206.
    - Remove Debian patches:
      - 07_trust_dpkg-arch_over_uname-m.diff - Fixed upstream.
      - 12_fix_qmake_pkgconfig.diff
      - 20_mips_atomic_ops.diff - Fixed upstream.

  * Build with -phonon and -no-phonon-backend
   - add rule to remove built phonon and use system phonon
	
 -- Roderick B. Greening <roderick.greening@gmail.com>  Thu, 19 Feb 2009 12:04:00 -0330

qt4-x11 (4.5.0~rc1-1) experimental; urgency=low

  * New upstream release:
    - QGtkStyle is part of Qt 4.5 release. (Closes: #507143)
    - Fix useless warning flood when sockets > 1024. (Closes: #511700)
  * Add libgtk2.0-dev build dependency to enable GTK theme support.
  * Add package libqt4-scripttools: The QtScriptTools module provides
    additional components for applications that use Qt Script.
  * Clean up the prl postprocessing.
  * Build documentations if current version is a snapshot.
  * Update *.install and *.lintian files.
  * Move mkspecs in qt4-qmake package to use qt4-qmake standalone.
  * Add qdoc3 to qt4-dev-tools package.
  * Add Debian patches:
    - 18_enable_qt3support_qtwebkit_debug_info.diff
      On Qt >= 4.5, debug info are disabled for Qt3Support and QtWebkit.
      This patch enable them.
    - 19_install_qdoc3.diff
      Install qdoc3 binary. It is used by Qt Creator.
    - 20_fix_ftbfs_callgrindChildExitCode.diff
      Fix ftfbs on qtestcase.cpp. Stolen from snapshot 20090206.
  * Remove Debian patches:
    - 07_trust_dpkg-arch_over_uname-m.diff - Fixed upstream.
    - 12_fix_qmake_pkgconfig.diff
    - 20_mips_atomic_ops.diff - Fixed upstream.
      In memory of Thiemo Seufer.
      Thanks for his invaluable help on MIPS. He will be missed.
  * Update Debian patches:
    - 02, 03, 04, 05, 09, 14, 15, 16, 17, 30, 40, 41, 50, 71, 80.
  * Remove qt-copy patches:
    - 0167-fix-group-reading.diff - Merged upstream.
    - 0203-qtexthtmlparser-link-color.diff - Merged upstream.
    - 0224-fast-qpixmap-fill.diff - Fixed upstream.
    - 0226-qtreeview-column_resize_when_needed.diff - Fixed upstream.
    - 0238-fix-qt-qttabbar-size.diff - Merged upstream.
    - 0248-fix-qwidget-scroll-slowness.diff - Fixed upstream.
    - 0249-webkit-stale-frame-pointer.diff - Merged upstream.
    - 0254-fix-qgraphicsproxywidget-deletion-crash.diff - Merged upstream.
    - 0256-fix-recursive-backingstore-sync-crash.diff - Fixed upstream.
    - 0257-qurl-validate-speedup.diff - Fixed upstream.
    - 0260-fix-qgraphicswidget-deletionclearFocus.diff - Merged upstream.
    - 0261-sync-before-reset-errorhandler.patch - Merged upstream.
    - 0262-fix-treeview-animation-crash.diff - Merged upstream.
  * Refresh qt-copy patches:
    0180, 0195, 0209, 0216, 0225, 0234, 0245, 0255.

 -- Fathi Boudra <fabo@debian.org>  Fri, 06 Feb 2009 10:03:16 +0100

qt4-x11 (4.4.3-2ubuntu1) jaunty; urgency=low

  * Merge from debian unstable, remaining changes:
    - Fix binary-post-install/libqt4-dev:: to install to debian/libqt4-dev
    - Add missing depends to libqt4-dev
    - kubuntu_03_use_bash_in_configure.diff
    - kubuntu_08_systray_fix.diff
    - Not using firebird (ibase)
    - Add links from /usr/share/qt4/lib/ to /usr/lib for Qt libraries
      needed for Qt Jambi

 -- Scott Kitterman <scott@kitterman.com>  Sun, 21 Dec 2008 00:27:50 -0500

qt4-x11 (4.4.3-2) unstable; urgency=low

  +++ Changes by Armin Berres:

  * Fix offsets in all patches.
  * Add qt-copy patches:
    - 0255-qtreeview-selection-columns-hidden.diff
    - 0256-fix-recursive-backingstore-sync-crash.diff
    - 0257-qurl-validate-speedup.diff
    - 0260-fix-qgraphicswidget-deletionclearFocus.diff
    - 0261-sync-before-reset-errorhandler.patch
    - 0262-fix-treeview-animation-crash.diff

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Wed, 03 Dec 2008 00:54:18 +0100

qt4-x11 (4.4.3-1ubuntu5) jaunty; urgency=low

  * Add 0260-fix-qgraphicswidget-deletionclearFocus.diff from KDE's qt-copy
    Fixes KDE bug 168278 observable in the file watcher plasmoid (LP: #272399)

 -- Jonathan Thomas <echidnaman@kubuntu.org>  Wed, 03 Dec 2008 18:54:29 -0500

qt4-x11 (4.4.3-1ubuntu4) jaunty; urgency=low

  * Fix binary-post-install/libqt4-dev:: to install to debian/libqt4-dev

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 20 Nov 2008 17:57:14 +0000

qt4-x11 (4.4.3-1ubuntu3) jaunty; urgency=low

  * Add 0256-fix-recursive-backingstore-sync-crash.diff from KDE's qt-copy
    Fixes KDE bug 174065 in kmail (new mailing list)
    "Random crashes deep in Qt painting code"

 -- Jonathan Riddell <jriddell@ubuntu.com>  Tue, 11 Nov 2008 21:41:30 +0000

qt4-x11 (4.4.3-1ubuntu2) jaunty; urgency=low

  * Add missing depends to libqt4-dev

 -- Jonathan Riddell <jriddell@ubuntu.com>  Sat, 08 Nov 2008 16:38:28 +0000

qt4-x11 (4.4.3-1ubuntu1) jaunty; urgency=low

  * Merge with Debian, remaining changes
   - kubuntu_03_use_bash_in_configure.diff
   - kubuntu_08_systray_fix.diff
  * Not using firebird (ibase)
  * Add links from /usr/share/qt4/lib/ to /usr/lib for Qt libraries 
    needed for Qt Jambi

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 05 Nov 2008 14:20:44 +0000

qt4-x11 (4.4.3-1) unstable; urgency=low

  * New upstream release:
    It includes updated copyright headers, as well as updated application icons
    and other graphics to reflect the look and feel of the new Qt brand.

  +++ Changes by Fathi Boudra:

  * Update copyright.
  * Remove Debian patches:
    - 60_m68k_inotify_fix.diff (merged upstream)

  +++ Changes by Sune Vuorela:

  * Bump shlibs to 4.4.3. Upstream had apparantly by mistake added at least
    one symbol to 4.4.1 that wasn't in 4.4.0, but no way to fix it.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Mon, 29 Sep 2008 19:10:52 +0200

qt4-x11 (4.4.2-2) unstable; urgency=low

  +++ Changes by Fathi Boudra:

  * Add missing Replaces to qt4-qmake.
  * Add qt-copy patches:
    - 0254-fix-qgraphicsproxywidget-deletion-crash.diff
      Fix deletion of a qgraphicsproxywidget if it is in a layout.
      It Will be included in Qt 4.4.4.

  +++ Changes by Ana Beatriz Guerrero Lopez:

  * Small updates in debian/control:
    - Use always Qt 4 instead of Qt4.
    - Remove architectures that are not being worked on anymore.
    - Some typo.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Tue, 23 Sep 2008 10:19:36 +0200

qt4-x11 (4.4.2-1) unstable; urgency=low

  * New upstream release.

  +++ Changes by Fathi Boudra:

  * Remove upstream patches:
    - 0002_https_lowercase.diff
  * Add Debian patches:
    - 17_add_postgresql_8.3_support.diff
  * Remove Debian patches:
    - 72_generic_arch_atomic_header_fix.diff
  * Sync qt-copy patches:
    * Add:
      - 0245-fix-randr-changes-detecting.diff
      - 0248-fix-qwidget-scroll-slowness.diff
      - 0249-webkit-stale-frame-pointer.diff (fix CVE-2008-3632)
    * Remove:
      - 0214-fix-qgraphicsproxywidget-tab-crash.diff
      - 0230-qtextcontrol-selectnextword.diff
      - 0232-fix-qdesktopwidget-screen-merge.diff
      - 0233-fix-q3textbrowser-image.diff
      - 0235-qdbus-dispatch-async-timeout.diff
      - 0236-qtoolbararealayout-restore.diff
      - 0241-fix-null-stylesheet-warning.diff
  * Add missing QHelpGlobal include in libqt4-dev package.
  * Remove doxygen build dependency.
    It is useless to generate a tag file as Qt is shipped with qt.tags file.
  * Split qmake in its own qt4-qmake package. (Closes: #437354)

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Thu, 18 Sep 2008 18:22:04 +0200

qt4-x11 (4.4.1-1) experimental; urgency=low

  * New upstream release. (Closes: #483790)

  +++ Changes by Fathi Boudra:

  * Bump Standards-Version to 3.8.0 (no changes needed).
  * Add 0241-fix-null-stylesheet-warning.diff from qt-copy.
  * Update libqt4-dev.install: windows related files are not installed anymore.
  * Update Qt 4 designer short descriptions. (Closes: #493379)
  * Replace libcupsys2-dev build dependency by libcups2-dev.

  +++ Changes by Sune Vuorela:

  * Remove watchfile. it doesn't work.
  * mention qmake-qt4 in description of libqt4-dev. (Closes: 415816)
  * Apply patch from friendly hurd porters. (Closes: 485931)
  * Make the rules file parallel build safe.

  +++ Changes by Modestas Vainius:

  * Resync our qt-copy patches with KDE svn:
    * add:
      - 0232-fix-qdesktopwidget-screen-merge.diff
    * removed from qt-copy KDE svn:
      - 0210-fix-crash-q3stylesheet-font-size.diff
      - 0220-no-x-recursion-in-xerrhandler.diff
      - 0223-fix-qpixmap-hasalpha.diff
      - 0227-qdatastream-regression.diff
      - 0228-qsortfilterproxymodel-invalidate-noscroll.diff
    * refresh:
      0167, 0180, 0195, 0203, 0209, 0214, 0216,
      0224, 0226, 0230, 0233, 0235, 0236.
    * other qt-copy patches are in 4.4.1.
  * Resync our patches:
    * remove, merged (stolen from) upstream:
      - 0001_webkit_backround_in_scrollbars_webkit-5b0ea6b840a6e25e97b886e185...
      - 21_qprintdialog_honour_fileprintersadded.diff
      - 73_from4.4.1_no_AAAA_when_ipv6_disabled.diff
      - 90_gcc43.diff
    * partially merged upstream, leave unmerged parts:
      - 71_hppa_unaligned_access_fix_458133.diff
    * refresh:
      - 05_append_qt4_target.diff
      - 14_add_libraries_to_gui_build_where_actually_needed.diff
      - 20_mips_atomic_ops.diff
      - 50_kfreebsd_build_fix.diff
  * Leave shlibs at (>= 4.4.0) since 4.4.1 is supposed to be backwards and
    forward compatible with 4.4.0.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Sat, 02 Aug 2008 22:49:17 +0300

qt4-x11 (4.4.0-4) unstable; urgency=low

  +++ Changes by Sune Vuorela:

  * Get patch from 4.4.2 (yes!) to fix painting of scrollbars in webkit with
    some styles.
  * Get patch from 4.4.2 to allow Https to be treated as https in -network.
  * Fix some unaligned access issues that makes any webkit using application
    crash (SIGBUS) on archs where this isn't allowed. Patch by Mike Hommey.
    See #487745 for details.
  * Don't make the std:: symbols in webkit public. Solution based on the work
    of Mike Hommey in the gtk webkit package.
  * Add 0235-qdbus-dispatch-async-timeout.diff from qt copy. Acked in qt-copy
    by Thiago.
  * Add 0236-qtoolbararealayout-restore.diff to fix a regression in qt4.4.
    Patch from Trolltech.
  * Add 0003_tab_text_cutoff.diff patch to fix rendering of text in tabs.
    Patch available in qt4.5.
  * Add 0234-fix-mysql-threaded.diff from qt-copy to fix usage of qt with
    mysql in multithreaded environments

  +++ Changes by Modestas Vainius:

  * Add 21_qprintdialog_honour_fileprintersadded.diff patch to fix the problem
    with QPrintDialog misdetecting some normal printers as virtual file printers
    on dialog exec and when PrintToFile is disabled (TT #214505).
  * Add 0233-fix-q3textbrowser-image.diff patch from qt copy.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Wed, 09 Jul 2008 02:53:33 +0200

qt4-x11 (4.4.3-0ubuntu1) intrepid; urgency=low

  * New Upstream Release - bump config from ubuntu 4.4.2 deb
  * Update copyright info from debian copyright
  * Re-sync with Debian svn
    - Add following qt-copy patches:
      0245-fix-randr-changes-detecting.diff
      0248-fix-qwidget-scroll-slowness.diff
      0249-webkit-stale-frame-pointer.diff
      0254-fix-qgraphicsproxywidget-deletion-crash.diff
    - Remove following qt-copy patches (prev disabled):
      0214-fix-qgraphicsproxywidget-tab-crash.diff
      0220-no-x-recursion-in-xerrhandler.diff
      0223-fix-qpixmap-hasalpha.diff
      0227-qdatastream-regression.diff
      0228-qsortfilterproxymodel-invalidate-noscroll.diff
      0237-printdialog-assert.diff
      0240-printdialog-print-into-real-printer.diff
    - Remove following Debian patches (prev disabled):
      90_gcc43.diff
    - Add following debian patches:
      16_hide_std_symbols_on_qtwebkit.diff
      17_add_postgresql_8.3_support.diff
      30_webkit_unaligned_access.diff
      71_hppa_unaligned_access_fix_458133.diff
      81_hurd_more_max_path.diff
    - Cosmetic cleanup in control
      replace Qt4 with Qt 4 as per Debian
      some grammer clean-up in comments/notes
    - libqt4-dev.install (insert missing help - usr/include/qt4/QtHelp/QHelpGlobal)
    - Updated some patches (line numbering changed - cosmetic only)
      0167-fix-group-reading.diff
      0180-window-role.diff
      0195-compositing-properties.diff
      0203-qtexthtmlparser-link-color.diff
      0216-allow-isystem-for-headers.diff
      0224-fast-qpixmap-fill.diff
      0226-qtreeview-column_resize_when_needed.diff
      0234-fix-mysql-threaded.diff
      0238-fix-qt-qttabbar-size.diff
      05_append_qt4_target.diff
      50_kfreebsd_build_fix.diff
    - Patches with some re-write changes/fixes (non-cosmetic):
      14_add_libraries_to_gui_build_where_actually_needed.diff
      20_mips_atomic_ops.diff

 -- Roderick B. Greening <roderick.greening@gmail.com>  Mon, 29 Sep 2008 13:59:56 -0230

qt4-x11 (4.4.2-0ubuntu2) intrepid; urgency=low

  * Add links from /usr/share/qt4/lib/ to /usr/lib for Qt libraries 
    needed for Qt Jambi

 -- Jonathan Riddell <jriddell@ubuntu.com>  Tue, 23 Sep 2008 00:28:36 +0100

qt4-x11 (4.4.2-0ubuntu1) intrepid; urgency=low

  * New Upstream Release - bump config from ubuntu 4.4.1 deb
  * Removed the following patches (resolved upstream)
    - 0230-qtextcontrol-selectnextword.diff
    - 0233-fix-q3textbrowser-image.diff
    - 0235-qdbus-dispatch-async-timeout.diff
    - 0236-qtoolbararealayout-restore.diff
    - 0241-fix-null-stylesheet-warning.diff
    - 60_m68k_inotify_fix.diff
    - 72_generic_arch_atomic_header_fix.diff
  * Updated broken patch (code changes upstream)
    - 10_config_tests_fixes.diff
  * Removed unknown header file refs in debian/libqt4-dev.install
    - qatomic_windows.h/qatomic_windowsce.h

 -- Roderick B. Greening <roderick.greening@gmail.com>  Fri, 19 Sep 2008 17:54:57 -0230

qt4-x11 (4.4.1-0ubuntu2) intrepid; urgency=low

  * Add kubuntu_08_systray_fix.diff, should fix systray not showing icons

 -- Jonathan Riddell <jriddell@ubuntu.com>  Tue, 05 Aug 2008 11:23:23 +0100

qt4-x11 (4.4.1-0ubuntu1) intrepid; urgency=low

  * New upstream release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Fri, 01 Aug 2008 11:30:30 +0100

qt4-x11 (4.4.0-3ubuntu2) intrepid; urgency=low

  * Make libqt4-dev depend on the necessary -dev packages again

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 18 Jun 2008 11:08:14 +0100

qt4-x11 (4.4.0-3ubuntu1) intrepid; urgency=low

  * Merge with Debian, remaining changes:
   - remove ibase and firebird from debian/control and debian/rules
   - patches

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 11 Jun 2008 15:01:30 +0000

qt4-x11 (4.4.0-3) unstable; urgency=low

  +++ Changes by Sune Vuorela:

  * Fix generic atomic header. (Closes: #475767)
    This is enough to fix building of kdelibs, but there should be a proper
    hppa fix modelled over the other "real" archs.

  +++ Changes by Fathi Boudra:

  * Add qt-copy patch:
    * 0230-qtextcontrol-selectnextword
      Fix Ctrl+Shift+Right in a khtml textarea when having more than one tab
      open: QTextEdit should react to ShortcutOverride for the keys it handles
      (was already partly done).

  +++ Changes by Modestas Vainius:

  * Steal 73_from4.4.1_no_AAAA_when_ipv6_disabled.diff patch from 4.4.1
    snapshot, which disables IPv6 DNS queries (AAAA) when IPv6 is disabled on
    the system.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Sun, 08 Jun 2008 13:17:02 +0300

qt4-x11 (4.4.0-2) unstable; urgency=low

  +++ Changes by Fathi Boudra:

  * Split html documentation in qt4-doc-html package.
  * Merge Ubuntu patches:
    * Add lpia architecture in trusted dpkg-arch over uname.
    * Add sqlite3 workaround in config tests fixes.
  * Add qt-copy patch:
    * 0227-qdatastream-regression
      Fix a bug that causes all Qt3/2 applications to crash or hang under KDE4.

  +++ Changes by Modestas Vainius:

  * Add 16_qsortfilterproxymodel_invalidate_noscroll.diff patch which stops
    scrolling to the current item/index on QSortFilterProxyModel::invalidate()
    This patch has been scheduled for Qt 4.4.1 (TT #204403).
  * Add missing Replaces:
    - libqt4-opengl-dev replaces libqt4-dev (<< 4.4.0-2) due to obvious
      reasons.
    - libqt4-dev replaces libqt4-opengl-dev (<< 4.4.0-2) (due to qglobal.h
      misplace).

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Fri, 09 May 2008 23:35:16 +0300

qt4-x11 (4.4.0-1ubuntu5) intrepid; urgency=low

  * Remove pkgconfig directory from libqt4-dev.install, it installed
    files that were in other packages

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 19 May 2008 12:52:59 +0100

qt4-x11 (4.4.0-1ubuntu4) intrepid; urgency=low

  * Add depends to libqt4-dev removed in 4.4.0~rc1-3, causes build
    problems in backports, closes LP: #229813

 -- Jonathan Riddell <jriddell@ubuntu.com>  Sat, 17 May 2008 15:56:45 +0100

qt4-x11 (4.4.0-1ubuntu3) intrepid; urgency=low

  * Add kubuntu_08_sqlite_undefined.diff, for some reason we need to 
    add -ldl

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 08 May 2008 22:13:44 +0100

qt4-x11 (4.4.0-1ubuntu2) intrepid; urgency=low

  * libqt4-opengl-dev replaces old libqt4-dev
  * move usr/include/qt4/Qt/qglobal.h to libqt4-dev
  * libqt4-dev replaces old libqt4-opengl-dev for the above

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 08 May 2008 13:04:47 +0100

qt4-x11 (4.4.0-1ubuntu1) intrepid; urgency=low

  * Sync with debian, remaining changes:
   - patches 
     kubuntu_01_load_ssl.diff  
     kubuntu_02_no_undefined.diff  
     kubuntu_03_use_bash_in_configure.diff  
     kubuntu_07_trust_dpkg-arch_over_uname-m.diff
   - remove ibase and firebird from debian/control and debian/rules

 -- Jonathan Riddell <jriddell@ubuntu.com>  Tue, 06 May 2008 12:39:31 +0100

qt4-x11 (4.4.0-1) unstable; urgency=low

  * New upstream release.

  +++ Changes by Modestas Vainius:

  * Split OpenGL headers from libqt4-dev to libqt4-opengl-dev:
    - Update install files.
    - Make libqt4-opengl-dev depend on X OpenGL headers, hence remove the
      latter from libqt4-dev Recommends.
    - Add libqt4-opengl-dev to libqt4-dev Recommends.
    - Remove libq4-opengl from libqt4-dev Depends.
  * Explicitly add libqtcore4 to libqt4-dev (was implicit before).
  * Rename libqt4-gui to libqtgui4 (new package).
  * Make libqt4-gui a transitional package (Closes: #478694) depending on
    libqtgui4, libqt4-opengl (Closes: #478264), libqt4-sql, libqt4-designer,
    libqt4-assistant.
  * Use ${binary:Version} instead of ${source:Version} in dependencies of
    libqt4-core and libqt4-gui transitional packages.
  * Require just libqtcore4 to install libqt4-dbg instead of libqt4-gui.
  * Resync patches:
    - 05_append_qt4_target.diff - fix offsets.
    - 11_qdbus_to_dbus_fix.diff - remove, merged upstream.
    - Revert to "runtime" configuration for xcursor, xinerama, xfixes and drop
      16_always_init_qt_x11data_ptrx.diff patch. Fixed upstream.

  +++ Changes by Fathi Boudra:

  * Update libqt4-dev and libqt4-opengl-dev install to use complete files
    list instead of wildcard.
  * Update installed files: new qt help and assistant translations.
  * Add qt-copy patch:
    * 0226-qtreeview-column_resize_when_needed
      This patch assures that if no header is shown, or if we only have one
      column (so no other columns become shrinked), the contents will be
      visible.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Tue, 06 May 2008 17:37:49 +0200

qt4-x11 (4.4.0~rc1-5) unstable; urgency=high

  +++ Changes by Fathi Boudra:

  * Add libqt4-sql-sqlite dependency to qt4-dev-tools. Qt Assistant and
    qhelpgenerator use the sqlite plugin. (Closes: #476986)
  * Remove qt-copy patches 0191 and 0192. The relevant code has changed
    such that neither patch seems to have any effect (although listviews
    still do not use active/inactive roles correctly).
  * Add qt-copy patches:
    * 0223-fix-qpixmap-hasalpha
      Fix a performance regression in QPixmap::hasAlpha() in Qt 4.4.
    * 0224-fast-qpixmap-fill
      This patch avoids the expensive image->pixmap conversion by discarding
      the old pixmap, creating a new one with the correct format, and doing
      the fill server side.
    * 0225-invalidate-tabbar-geometry-on-refresh
      Fix problem where Konsole's tab bar is not shown immediately on startup.

  +++ Changes by Modestas Vainius:

  * Downgrade libqt4-dev *gl*-dev dependencies to Recommends.
    They pull in half of X11 development headers and are rarely needed.
    What's more, OpenGL apps will probably depend on them explicitly anyway.
  * Add development packages of the SQL plugins to libqt4-dev Suggests.
  * Make libqt4-sql recommend its plugins. Depends does not do us any good
    because we don't know which plugin a user is going to use anyway. Moreover
    installation of the libqt4-sql package does not necessarily imply usage of
    the specific plugin(s). Finally, this resolves circular dependencies among
    libqt4-sql and its plugins.
  * Add myself to Uploaders.
  * Add 16_always_init_qt_x11data_ptrx.diff, which ensures that X11->ptrX*
    are properly initialized when Xcursor, Xinerama, Xfixes are not available
    in default "runtime" configuration  (Closes: #476608).
  * Pass -xfixes -xcursor -xinerama to configure because default "runtime"
    configuration requires a user to have libxfixes-dev, libxcursor-dev and
    libxinerama-dev installed to enable features requires respective X
    libraries (QLibrary simply searches for "lib*.so"). This change in
    configuration makes 16 patch irrelevant for Debian, but I'm leaving it
    as it's still the fix for the crashes which might occur on default Qt 4.4
    configutions.
  * Optimize qmake: pass -optimized-qmake to configure.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Sun, 27 Apr 2008 04:15:28 +0300

qt4-x11 (4.4.0~rc1-4) unstable; urgency=low

  +++ Changes by Sune Vuorela:

  * Have libqt4-dev conflict/replace libqtwebkit-dev.
  * Fix qmake to generate a bit better pkg-config files. Those should usually
    not be generated - as it ends up being crackful. After a bit of patching
    they are a bit less crackful though. (Closes: 457570)
  * Postprocess prl files to remove the same crack as in the pc files.
    (Closes: 470572)
  * Do a bit nicer linking when needed instead of relying on crackfulness from
    prl and pc files.
  * Add a disabled patch to generate better prl files, but unfortunately too
    much of qt4 build process relies on on it and is not yet fixed, but it is
    saved for later use.
  * Fix qmake makefile generation - should not add double slashes to
    makefiles.
  * Make libqt4-core transitional package arch:any. It doesn't bloat the
    archive too much, but it helps on installability.

  +++ Changes by Matthew Rosewarne:

  * Add Recommends: qt4-doc to qt4-demos.
  * Add watch file.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Tue, 15 Apr 2008 23:48:31 +0200

qt4-x11 (4.4.0~rc1-3) unstable; urgency=low

  +++ Changes by Sune Vuorela:

  * Clean up a bit in the dependencies of libqt4-dev. Removed dependencies:
    libqt4-sql-mysql, libqt4-sql-odbc, libqt4-sql-psql, libqt4-sql-sqlite,
    libqt4-sql-sqlite2, libqt4-sql-ibase, firebird2.0-dev, libaudio-dev,
    libcupsys2-dev, libdbus-1-dev, libfreetype6-dev, libglib2.0-dev,
    libice-dev, libiodbc2-dev, libjpeg62-dev, libmng-dev, libmysqlclient15-dev,
    libpam0g-dev, libpng12-dev, libpq-dev, libreadline5-dev, libsm-dev,
    libsqlite0-dev, libsqlite3-dev, libtiff4-dev, libx11-dev, libxcursor-dev,
    libxext-dev, libxft-dev, libxi-dev, libxinerama-dev, libxmu-dev,
    libxrandr-dev, libxrender-dev, libxslt1-dev, libxt-dev, x11proto-core-dev,
    zlib1g-dev

  +++ Changes by Fathi Boudra:

  * Add libqt4-svg dependency to libqt4-gui. It helps for the transition as
    libQtSvg.so.4 was previously in libqt4-gui package. (Closes: #475324)
  * Replace libqcncodecs.so in libqt4-gui (<< 4.4.0~beta1-1). (Closes: #475340)
  * Update 20_mips_atomic_ops patch. Qt4.4 introduced two new atomic operations
    without the necessary assembler .set directives.
    Thanks to Thiemo Seufer. (Closes: #475402)

 -- Fathi Boudra <fabo@debian.org>  Sat, 12 Apr 2008 07:48:37 +0200

qt4-x11 (4.4.0~rc1-2) unstable; urgency=low

  * Add patch for Explicit template specialization cannot have a storage class
    with gcc-4.3. Specializations of templates cannot explicitly specify
    a storage class, and have the same storage as the primary template.

 -- Fathi Boudra <fabo@debian.org>  Wed, 09 Apr 2008 09:40:00 +0200

qt4-x11 (4.4.0~rc1-1) unstable; urgency=low

  * New upstream release. (Closes: #469783)

  +++ Changes by Modestas Vainius:

  * Refresh qt-copy patches:
    * 0167-fix-group-reading.diff - adjust offsets.
    * 0180-window-role.diff - adjust offsets.
    * 0195-compositing-properties.diff - adjust offsets.
    * 0203-qtexthtmlparser-link-color.diff - adjust offsets.
    * 0209-prevent-qt-mixing.diff - adjust offsets.
    * 0214-fix-qgraphicsproxywidget-tab-crash.diff - adjust offsets.
    * 0216-allow-isystem-for-headers.diff - adjust offsets.
  * Remove qt-copy patches:
    * 0172-prefer-xrandr-over-xinerama.diff - merged upstream.
    * 0178-transparency-window-types.diff - merged upstream.
    * 0215-compile-with-Xcursor-linkage.diff - merged upstream.
    * 0217-qurl-isempty-regression.diff - merged upstream.
    * 0218-qassert-macro-fix.diff - merged upstream.
    * fix-qt_bootstrapped-typo.diff  - merged upstream.
  * Add qt-copy patches:
    * 0220-no-x-recursion-in-xerrhandler.diff - adjust offsets.
  * Refresh Debian patches:
    * 02_launch_assistant-qt4.diff - adjust offsets.
    * 05_append_qt4_target.diff - adopt to upstream changes. lrelease and
      lupdate have been moved to tools/linguist/, adjust offsets.
    * 50_kfreebsd_build_fix.diff - adjust offsets.
    * 80_hurd_max_path.diff - adjust offsets.
  * Remove Debian patches:
    * 08_load_ssl.diff - different fix applied upstream.
  * Update *.install files:
    * qt4-dev-tools.install: a few renames of the language files,
      s/assistant-qt3/assistant-qt4/, add usr/bin/xmlpatterns
  * Add libqt4-core transitional package. (Closes: #473658)
  * Add debian/not-installed to document files which are deliberately not
    installed
  * Avoid calling ./configure repeatedly during build/install: tie ./configure
    to config.status

  +++ Changes by Fathi Boudra:

  * Re-introduce LD_LIBRARY_PATH workaround to use lrelease.
  * Remove Conflicts against libqt4-core.
  * Reorder libqt4-sql dependencies to have packages available on all
    architectures listed first. (Closes: #473348)
  * Add architectures availability list to libqt4-sql-ibase package.
    (Closes: #473348)
  * Add patch to fix unaligned access on hppa. Thanks to Bernhard R. Link.
    (Closes: #458133)
  * Add patch to replace remaining qdbus by dbus. Fix libqtscriptdbus build.
  * Update configure options:
    * Replace -qdbus by -dbus.
    * Add -svg.

  +++ Changes by Matthew Rosewarne:

  * Rewrite clean rule to remove remaining build cruft.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Mon, 07 Apr 2008 01:36:54 -0400

qt4-x11 (4.4.0~beta1-1) experimental; urgency=low

  * New upstream release.

  * Add build dependencies: doxygen, firebird2.0-dev, libiodbc2-dev,
    libpam0g-dev, libreadline5-dev, libxslt1-dev.
  * Split libqt4-gui and libqt4-core packages.
  * Create package for each Qt module.
  * Enable all SQL drivers as plugins and add related packages:
    libqt4-sql-ibase, libqt4-sql-mysql, libqt4-sql-odbc, libqt4-sql-psql,
    libqt4-sql-sqlite, libqt4-sql-sqlite2.
  * Add packages: libqt4-assistant, libqt4-dbus, libqt4-designer, libqt4-help,
    libqt4-network, libqt4-opengl, libqt4-script, libqt4-svg, libqt4-test,
    libqt4-webkit, libqt4-xml, libqt4-xmlpatterns and qt4-demos.
  * Replace libqt4-core by libqtcore4 package.
  * Rename libqt4-debug to libqt4-dbg like other debug packages in Debian.
  * Update .lintian override files.
  * Update .install files.
  * Move translations files in their respective packages.
  * Disable DEB_INSTALL_CHANGELOGS_ALL.
  * Build ibase sql plugin on supported architectures only.
  * Enable demos, examples, WebKit and XmlPatterns.
  * Enable exceptions. It is a dependency to XmlPatterns module.
  * Add qtdemo help collection file.
  * Split WebKit and XmlPatterns debug packages from libqt4-dbg.
  * Generate Doxygen tagfile in libqt4-dev. Thanks to Matthew Rosewarne.
  * Examples and Demos are not shipped compressed anymore.
  * Refresh qt-copy patches:
    * 0167-fix-group-reading
    * 0172-prefer-xrandr-over-xinerama
    * 0178-transparency-window-types
    * 0180-window-role
    * 0191-listview-alternate-row-colors
    * 0192-itemdelegate-palette-state
    * 0195-compositing-properties
    * 0203-qtexthtmlparser-link-color
    * 0209-prevent-qt-mixing
    * 0210-fix-crash-q3stylesheet-font-size
  * Remove qt-copy patches:
    * 0175-fix-s390-qatomic
    * 0176-coverity-fixes
    * 0179-transient-hack
    * 0187-fix-font-fixed-pitch
    * 0194-fix-moveonly-dnd-in-itemviews
    * 0200-fix-qsslsocket-waitfor
    * 0205-fast-qpixmap-fill
    * 0211-q3action-crash
  * Add qt-copy patches:
    * 0214-fix-qgraphicsproxywidget-tab-crash
    * 0215-compile-with-Xcursor-linkage
    * 0216-allow-isystem-for-headers
    * 0217-qurl-isempty-regression
    * 0218-qassert-macro-fix
    * fix-qt_bootstrapped-typo
  * Refresh Debian patches:
    * 01_qmake_for_debian
    * 02_launch_assistant-qt4
    * 03_launch_moc-qt4
    * 04_launch_uic-qt4
    * 05_append_qt4_target
    * 08_load_ssl
    * 10_config_tests_fixes
    * 40_alpha_ice
    * 41_disable_opengl_visibility
    * 50_kfreebsd_build_fix
    * 60_m68k_inotify_fix
    * 80_hurd_max_path
  * Remove Debian patches:
    * 06_qtdemo_destdir. Useless as we ship qtdemo again.
    * 30_arm_ftbfs_fixes. Merged upstream.
    * 31_arm_eabi_fix. Upstream changed arm architecture handling.
      This patch doesn't apply as it is.
    * 91_qmake_lflags_no-undefined. Merged upstream.

 -- Fathi Boudra <fabo@debian.org>  Thu, 13 Mar 2008 22:34:45 +0100

qt4-x11 (4.3.4-2) unstable; urgency=low

  * Add patches:
    * 09_qmake_lflags_as-needed
      workaround as LDFLAGS isn't honored by configure script.
      we set --as-needed flag for Qt build only.
    * 10_config_tests_fixes.diff
      configuration test fixes for Interbase/Firebird and ODBC sql drivers.
  * Update 01_qmake_for_debian patch:
    * re-introduce link_prl and drop QT_SHARED workaround.
  * Update rules:
    * Remove exported LDFLAGS.
    * Remove DEB_CONFIGURE_SCRIPT_ENV.
    * Exclude debug files from dh_shlibdeps using DEB_DH_SHLIBDEPS_ARGS_ALL.
    * Update configure options to use libtiff from system.
    * Remove debug configure option to build with -02.
    * Update common-install-arch target to fix wrong path in pkgconfig and prl files.
  * Add libtiff4-dev build dependency.
  * Update libqt4-dev dependencies.

 -- Fathi Boudra <fabo@debian.org>  Sat, 08 Mar 2008 10:09:02 +0100

qt4-x11 (4.3.4-1) unstable; urgency=low

  * New upstream release:
    * This version adds the GNU General Public License (GPL) version 3
      to all Qt Open Source editions. The GPL Exception version 1.1
      applies to both versions of the GPL license.

  * Add qt-copy patches:
    * 0205-fast-qpixmap-fill
      Fix a performance issue in QPixmap::fill()
    * 0209-prevent-qt-mixing
      This patch changes QObjectPrivateVersion, thus preventing mixing parts
      of upstream Qt and qt-copy.
    * 0210-fix-crash-q3stylesheet-font-size
      This patch fixes crashs in q3stylesheet
      (it was possible to use a qfont size < 1)
    * 0211-q3action-crash
      During porting qt3to4 port QGroupAction to Q3GroupAction but not QAction
      to Q3Action (which is logical) But it crashs when it's not a q3action.
  * Refresh and enable 0172-prefer-xrandr-over-xinerama patch.
  * Remove 0204-fix-tulip-aliasing patch. Merged upstream.
  * Remove 90_qmake_cxxflags_fpermissive patch.
  * Add ${shlibs:Depends} to libqt4-dev. See missing shared library
    dependencies thread on debian-devel mailing list.
  * Add catalan translation. Thanks to Javier Serrano Polo. (Closes: #459822)
  * Update copyright file. Add GPL version 3.
  * Remove -fpermissive.

 -- Fathi Boudra <fabo@debian.org>  Tue, 26 Feb 2008 18:38:27 +0100

qt4-x11 (4.3.4-0ubuntu3) hardy; urgency=low

  * Add LPIA support to
    07_trust_dpkg-arch_over_uname-m.diff (renamed to
    kubuntu_07_trust_dpkg-arch_over_uname-m.diff) (LP: #207863)

 -- Steve Magoun <steve.magoun@canonical.com>  Thu, 27 Mar 2008 15:58:25 -0400

qt4-x11 (4.3.4-0ubuntu2) hardy; urgency=low

  * Don't build odbc, fails on amd64.
  * Sync qt-copy patches with Debian

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 28 Feb 2008 14:19:52 +0000

qt4-x11 (4.3.4-0ubuntu1) hardy; urgency=low

  * New upstream releaes

 -- Jonathan Riddell <jriddell@ubuntu.com>  Tue, 26 Feb 2008 16:32:56 +0000

qt4-x11 (4.3.3-2) unstable; urgency=low

  * Update 0203-qtexthtmlparser-link-color qt-copy patch:
    Add qt-bugs@ issue and Trolltech task ID.
  * Add 0204-fix-tulip-aliasing qt-copy patch:
    Fix KDE4 RC2 crashing on startup due to Qt 4.3.3 update.
  * Downgrade libqt4-dev dependency to qt4-dev-tools from Recommends to
    Suggests.
  * Add semicolon at the end of the MimeType key. Thanks to Pino Toscano.
  * Remove 91_qmake_ldflags_as-needed patch:
    It breaks other packages. (Closes: #457038, #457284)
  * Add 91_qmake_lflags_no-undefined patch:
    By default, qmake adds --no-undefined linker flag.

 -- Fathi Boudra <fabo@debian.org>  Sun, 30 Dec 2007 23:29:09 +0100

qt4-x11 (4.3.3-1) unstable; urgency=low

  * New upstream release.

  [Adeodato Simó]

  * Do not depend or build-depend on the transitional package xlibmesa-gl-dev,
    but on libgl1-mesa-dev instead. Ditto for libglu1-xorg-dev/libglu1-mesa-dev.

  [Fathi Boudra]

  * Bump Standards-Version to 3.7.3.
  * Fix description contains homepage lintian warning.
  * Merge Kubuntu load ssl patch. Thanks to Jonathan Riddell.
  * Add CDDL exception to debian/copyright.
  * Add 21_assume_no_fpu_for_embedded_devices patch. Thanks to Thiemo Seufer
    and Bradley Hughes. Not Enabled yet: It breaks ABI on mips.
    We will keep it for later (> 4.3.3-1).
  * Add 91_qmake_ldflags_as-needed patch. Build with --as-needed linker flag.
  * Remove qt-copy patches:
    * 0163-fix-gcc43-support.
    * 0185-fix-format-strings.
    * 0188-fix-moc-parser-same-name-header.
    * 0189-fix-q3toolbar-qcombobox-signal-slot.
    * 0193-qtreeview-division-by-zero.diff.
  * Add qt-copy patches:
    * 0200-fix-qsslsocket-waitfor.
      Fixes some QSslSocket::waitFor$X methods.
    * 0203-qtexthtmlparser-link-color.
      Links are assigned a foreground color according to the system current
      color scheme.

 -- Fathi Boudra <fabo@debian.org>  Thu, 06 Dec 2007 22:06:46 +0100

qt4-x11 (4.3.3-0ubuntu3) hardy; urgency=low

  * Added build-dep on unixodbc-dev
  * Added kubuntu_03_use_bash_in_configure.diff to fix detection of
    available plugins for libQtSql
  * Added package libqt4-plugin-odbc for odbc support (LP: #179261)

 -- Terence Simpson <tsimpson@ubuntu.com>  Thu, 07 Feb 2008 19:23:31 +0000

qt4-x11 (4.3.3-0ubuntu2) hardy; urgency=low

  * Add kubuntu_02_no_undefined.diff as used upstream in Qt 4.4,
    ensures no undefined symbols

 -- Jonathan Riddell <jriddell@ubuntu.com>  Tue, 18 Dec 2007 16:23:03 +0000

qt4-x11 (4.3.3-0ubuntu1) hardy; urgency=low

  * New upstream release
  * Added back 0172-prefer-xrandr-over-xinerama.diff, updated by dirk
  * Updated 0178-transparency-window-types.diff
  * Removed 0193-qtreeview-division-by-zero.diff, applied upstream
  * Add CDDL exception to debian/copyright
  * Add 0203-qtexthtmlparser-link-color.diff from qt-copy

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 05 Dec 2007 16:55:12 +0000

qt4-x11 (4.3.2-1ubuntu1) hardy; urgency=low

  * Merge with Debian, remaining changes:
   - qt4-dev-tools conflicts on qdbusviewer
   - Add kubuntu_01_load_ssl.diff, LP: #155784

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 05 Nov 2007 17:20:28 +0000

qt4-x11 (4.3.2-1) unstable; urgency=low

  * New upstream release.

  [Fathi Boudra]
  * Update desktop files categories.
  * Add desktop files icons. (Closes: #433581)
  * Update patches to Qt4.3.2.
  * Add 90_qmake_cxxflags_fpermissive patch.
  * Remove 0186-fix-component-alpha-text patch. Merged upstream.
  * Add qt-copy patches:
    * 0188-fix-moc-parser-same-name-header
    * 0189-fix-q3toolbar-qcombobox-signal-slot
    * 0191-listview-alternate-row-colors
    * 0192-itemdelegate-palette-state
    * 0193-qtreeview-division-by-zero
    * 0194-fix-moveonly-dnd-in-itemviews
    * 0195-compositing-properties
  * Update qt4-dev-tools long description.
  * Update copyright:
    * Update Trolltech GPL exception to v1.1.
    * Add Trolltech GPL exception addenum.
  * Update rules:
    * Build with -fpermissive.
    * Introduce QTVERSION.
  * Fix qt4-config menu section. (Closes: 444896)

  [Sune Vuorela]
  * Have strict interdependencies between packages with a shlibs.local file.
    (Closes: #438746)
  * Don't trust uname in generating the qt build key. This has bitten us in
    qt3, but will soon bite us in qt4 as qt4 becomes more popular.

  [Ana Beatriz Guerrero Lopez]
  * Add desktop files icons uuencoded and update rules to install them uudecoded.
  * Add sharutils build dependency.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Sat, 06 Oct 2007 07:00:54 +0200

qt4-x11 (4.3.1-2) unstable; urgency=low

  * There is a large difference between 8 spaces and a tab.

 -- Sune Vuorela <debian@pusling.com>  Fri, 10 Aug 2007 22:20:45 +0200

qt4-x11 (4.3.1-1) unstable; urgency=low

  * New upstream release.

  [Fathi Boudra]
  * Switch to quilt patch system.
  * Update copyright. Add Trolltech GPL Exception.
  * Update section in Debian menu files.
  * Update patches for Qt4.3.1.
  * Remove 51_kfreebsd_mkspecs patch. Moved in rules.
  * Add 0187-fix-font-fixed-pitch patch:
    This patch works around broken QFontInfo::fixedPitch by always using a
    glyph metrics comparison test to guess the information. This has the
    property of both ignoring (bad) and not relying on (good) any information
    that might be provided by the OS's font facility. For Mac OS X only.
  * Remove patches merged upstream:
    * 0177-qurl-clear-fix
    * 0183-qprocess-corruption
    * 42_alpha_fetch_and_add
  * Disable:
    * 0172-prefer-xrandr-over-xinerama patch. (Closes: #433931)
    * 0181-qdnd-x11-fix patch.

  [Sune Vuorela]
  * Add a quick and dirty test to make build on hppa fail if a current
    getdents kernel bug is detected.

 -- Fathi Boudra <fboudra@free.fr>  Wed, 08 Aug 2007 15:08:11 +0200

qt4-x11 (4.3.2-0ubuntu3) gutsy; urgency=low

  * Disable 00_0172-prefer-xrandr-over-xinerama.dpatch, causes menus
    to appear on the primary screen even when app is on a second screen
    Closes LP: #135882

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 08 Oct 2007 12:51:57 +0100

qt4-x11 (4.3.2-0ubuntu2) gutsy; urgency=low

  * Remove excessive categories from debian/desktop/qt4config.desktop
    Closes LP: #136425

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 04 Oct 2007 16:21:06 +0100

qt4-x11 (4.3.2-0ubuntu1) gutsy; urgency=low

  * New upstream bugfix release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 03 Oct 2007 17:04:56 +0100

qt4-x11 (4.3.1-0ubuntu3) gutsy; urgency=low

  * SECURITY UPDATE: unterminated UTF8 strings could lead to 2 byte
    overflow that may allow arbitrary code execution.
  * Add debian/patches/kubuntu_01_CVE_2007_4137.dpatch: upstream fixes.
  * References
    CVE-2007-4137
    http://trolltech.com/company/newsroom/announcements/press.2007-09-03.7564032119

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 01 Oct 2007 22:23:19 +0100

qt4-x11 (4.3.1-0ubuntu2) gutsy; urgency=low

  * Build with -fpermissive when building with g++-4.3. LP: #138646.

 -- Matthias Klose <doko@ubuntu.com>  Thu, 13 Sep 2007 17:08:20 +0000

qt4-x11 (4.3.1-0ubuntu1) gutsy; urgency=low

  * Merge with Debian
  * New upstream release
  * Update copyright file
  * Remove qdbusviewer package, now in qt4-dev-tools

 -- Jonathan Riddell <jriddell@ubuntu.com>  Tue, 07 Aug 2007 12:02:01 +0100

qt4-x11 (4.3.0-5) unstable; urgency=low

  [Fathi Boudra]
  * Update 01_qmake_for_debian patch. Add DEFINES += QT_SHARED in qmake.conf
    along with the removal of link_prl. (Closes: #434019)
  * Apply qt-copy patches:
    * 00_0185-fix-format-strings: This patch fixes various code issues with
      handling format strings. None of them seem to be exceptionally bad,
      but its better safe than sorry. It is related to CVE-2007-3388.
      TT claims the problem is not present in any version of Qt 4. Dirk Muller
      disagrees and believes that some of them are possible to exploit.
    * 00_0186-fix-component-alpha-text: This patch fixes component alpha
      (LCD hinted) text when it's drawn on a non-opaque background. Qt doesn't
      initialize the alpha channel in the glyph masks, which causes problems
      in Konsole when transparency is enabled, and in other situations where
      the background isn't fully opaque.

 -- Fathi Boudra <fboudra@free.fr>  Mon, 30 Jul 2007 21:36:25 +0200

qt4-x11 (4.3.0-4ubuntu1) gutsy; urgency=low

  * Sync with Debian, no changes except .orig md5sum
   - Closes https://bugs.launchpad.net/bugs/126766
  * Add package qdbusviewer, replaces dbus-viewer

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 18 Jul 2007 15:43:24 +0100

qt4-x11 (4.3.0-4) unstable; urgency=low

  [Fathi Boudra]
  * Add 42_alpha_fetch_and_add patch to fix broken threading on alpha, hangs
    uselessly on startup. fetch-and-add is supposed to return the original
    value before the addition. Thanks to Steve Langasek and Bradley Hughes.
    (Closes: #433031)
  * Update control: Replace ${source:Version} by ${binary:Version}.
    Make the package binNMU safe. Thanks to Lior Kaplan. (Closes: #433548)

 -- Fathi Boudra <fboudra@free.fr>  Mon, 16 Jul 2007 21:32:01 +0200

qt4-x11 (4.3.0-3) unstable; urgency=low

  [Fathi Boudra]
  * Update control: Replace deprecated ${Source-Version} by ${source:Version}.
  * Update rules:
    * Add bindir and libdir configure options.
    * Replace common-install-arch target. Replaced by build system patches and
      a fix for pkgconfig files. (Closes: #401807)
  * Add patches:
    * 04_launch_uic-qt4: call uic-qt4 binary.
    * 05_append_qt4_target: append -qt4 when needed. It fixes moc-location and
      uic_location are properly in pkgconfig files. (See bug #401807)
    * 06_qtdemo_destdir: remove QT_BUILD_TREE in qtdemo DESTDIR target.
      (Closes: #408639)
  * Revert Qt handling argb visuals on X11 patch. There are dependencies
    not fixed in Qt. They cause a few regressions when this patch is applied.
    (Closes: #430907, #431436, #431943)
  * Update Qt support for new window types used for compositing patch.
    Fix crashes when 'w' is null. (Closes: #431322)
  * Apply qt-copy patches:
    * 00_0172-prefer-xrandr-over-xinerama: only trust libxinerama if it is not
      the emulated information coming from xrandr 1.2.
    * 00_0177-qurl-clear-fix: fix QUrl::clear(). Applied upstream.
    * 00_0183-qprocess-corruption: fix plain data loss bug. Applied Upstream.

 -- Fathi Boudra <fboudra@free.fr>  Fri, 29 Jun 2007 08:15:23 +0200

qt4-x11 (4.3.0-2ubuntu1) gutsy; urgency=low

  * Sync with Debian, no diff except .orig md5sum

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 09 Jul 2007 10:04:03 +0000

qt4-x11 (4.3.0-2) unstable; urgency=low

  [Brian Nelson]
  * Changed dist back to unstable.
  * Tightened qt4-dev-tools's dependency on libqt4-core to
    (= ${Source-Version}), since it uses internal (non-public) classes in
    Qt whose ABI can change. (Closes: #429817)
  * Added a build-dependency on libxi-dev to enable tablet support.
  * Constrict the hack to clean all binary files to the bin, config.tests,
    and qmake directories to drastically improve its speed

  [Fathi Boudra]
  * Qt4 demos builds properly in Qt4.3. (Closes: #408639)
  * Apply qt-copy patches:
    * 00_0178-transparency-window-types: adds Qt support for new window types
      used for compositing.
    * 00_0179-transient-hack: workaround that makes setting of WM_TRANSIENT_FOR
      work with some window types.
    * 00_0180-window-role: several problems with Qt's support for the
      WM_WINDOW_ROLE property.
    * 00_0181-qdnd-x11-fix: makes the find_child algorithm in qdnd look at
      _all_ widgets that contain the QPoint.
    * 00_0182-argb-visuals-default: Qt handling argb visuals on X11.

 -- Brian Nelson <pyro@debian.org>  Wed, 27 Jun 2007 00:02:07 -0400

qt4-x11 (4.3.0-1) experimental; urgency=low

  * New upstream release.
    * Fixes a QListView issue. (Closes: #419654)

  * Update uploaders. Add Ana, Sune and Fathi.

  [Sune Vuorela]
  * Remove 04_utf8_bug_fix: Merged upstream.
  * Update libqt4-dev.install. Upstream installs pkgconfig files the right place.
  * Update libqt4-core.install. Add libQtScript.
  * Update rules:
    * Add utils.mk to use list-missing.
    * Cleaning seems to fail a bit. Trying to hack around that in clean::
      target.

  [Fathi Boudra]
  * Redo 30_arm_ftbfs_fixes to fix another FTBFS. Add arm target to configure
    script. Thanks to Sune Vuorela and Aurelien Jarno. (Closes: #426129)
  * Remove 71_hppa_inotify_fix: Merged upstream.
  * Update patches:
    * 02_launch_assistant-qt4
    * 03_launch_moc-qt4
    * 50_kfreebsd_build_fix
    * 80_hurd_max_path
  * Apply qt-copy patches:
    * 00_0163-fix-gcc43-support: Various fixes to get Qt 4.3 without hundreds
      of warnings compiling.
    * 00_0167-fix-group-reading: In big user environments, getgrgid_r() needs
      more memory than sysconf() returns.
    * 00_0175-fix-s390-qatomic: Fix s390(x) build.
    * 00_0176-coverity-fixes: Fix various obvious memory leaks.
  * Rename disable opengl visibility patch. It is not alpha architecture only.
  * Add desktop files to support Desktop Environments. (Closes: #378915)
  * Update qt4-dev-tools.install. Add qdbusviewer and pixeltool.
    Thanks to Benjamin Meyer for the reminder.
  * Update libqt4-dev.install. Remove qtdemo binary as we provide a tarball of the
    demos directory. qtdemo is useless, it can't launch anything without demos
    builded. It can only show screenshots and short description of demos,
    users have it in Qt assistant.
  * Update rules:
    * Remove -debug-and-release option. Deprecated.
    * Add configure options:
      * -no-exceptions
      * -debug
      * -qdbus
      * -pch
      * -nomake examples
      * -nomake demos

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Sat, 09 Jun 2007 00:25:41 +0200

qt4-x11 (4.2.3-1) unstable; urgency=low

  * New upstream release
    - Fixes build failures when QT_NO_DEBUG_OUTPUT defined
      (Closes: #418832)
    - Fixes broken signal/slot connection in QSvgRenderer
      (Closes: #411292)

 -- Brian Nelson <pyro@debian.org>  Thu, 12 Apr 2007 12:38:06 -0400

qt4-x11 (4.2.2-2) unstable; urgency=high

  * debian/patches/04_utf8_bug_fix.dpatch: new patch to fix the "UTF-8
    overlong sequence decoding vulnerability" [CVE-2007-0242]

 -- Brian Nelson <pyro@debian.org>  Fri, 30 Mar 2007 11:04:20 -0400

qt4-x11 (4.2.2-1) unstable; urgency=low

  * New upstream release (Closes: #410862)

  * debian/rules: set the sysconfdir to /etc/xdg instead of /etc/qt4 to
    match the QSettings documentation (Closes: #407297)

  * Added Riku Voipio's patch for ARM EABI (Closes: #408813)

  * debian/patches/22_launch_moc-qt4.dpatch: new patch to ensure the Qt4
    version of moc is launched by qdbuscpp2xml (Closes: #399049)

  * Added a doc-base file for qt4-doc (Closes: #403290)

  * debian/qt4-designer.links: added a link /usr/share/qt4/bin/designer ->
    /usr/bin/designer-qt4 (Closes: #410885)

  * Re-arranged patches to group them by arch so that they're easier to
    deal with

  * Applied new patches for kFreeBSD and Hurd support
    (Closes: #380097, #402007)

  * debian/libqt4-gui.install: added the codecs plugins, somehow these got
    accidentally dropped (Closes: #409228)

 -- Brian Nelson <pyro@debian.org>  Sun,  4 Mar 2007 13:50:39 -0500

qt4-x11 (4.2.1-2) unstable; urgency=low

  * debian/patches/20_hppa_inotify_fix.dpatch: new patch that should fix
    the FTBFS on hppa due to missing defines (Closes: #394953)

  * Added patches for hurd support (Closes: #380097)

  * debian/patches/10_qmake_for_debian.dpatch: restored the modification
    to remove link_prl from the CONFIG line, which fixes problems with
    unnecessary linkage (Closes: #394836)

 -- Brian Nelson <pyro@debian.org>  Tue, 31 Oct 2006 02:42:02 -0500

qt4-x11 (4.2.1-1) unstable; urgency=high

  * New upstream release
    - Fixes integer overflow in pixmap handling [CVE-2006-4811]
      (Closes: #394192)

  * Install the libqtaccessiblecompatwidgets.so plugin into
    libqt4-qt3support, so that libqt4-gui does not circularly depend on
    libqt4-qt3support (Closes: #394351, #394629)

 -- Brian Nelson <pyro@debian.org>  Mon, 23 Oct 2006 11:59:52 -0400

qt4-x11 (4.2.0-2) unstable; urgency=low

  * debian/control: added a dependency on libglib2.0-dev for libqt4-dev
    (Closes: #392797, #392173)

  * Added a bunch of plugins and their debugging symbols to be installed

  * debian/patches/19_m68k_inotify_fix.dpatch: new patch to fix FTBFS on
    m68k (Closes: #391902)

  * Imported Ubuntu fixes, thanks to Jonathan Riddell for the tip
    - Fix typo in debian/rules -qt-sql-slite to -qt-sql-sqlite
      (Closes: #392808)
    - Install usr/bin/qdbus usr/bin/qdbusxml2cpp and usr/bin/qdbuscpp2xml
      (Closes: #391726)

  * debian/control: added a libqt4-dev dependency on libsqlite0-dev
    (Closes: #392558)

 -- Brian Nelson <pyro@debian.org>  Tue, 17 Oct 2006 23:44:31 -0400

qt4-x11 (4.2.0-1) unstable; urgency=low

  * New upstream release
    - No longer includes "CONFIG = ... debug" in the mkspecs/qconfig.pri
      (Closes: #357136)
    - Fixes QFontDialog assert() failures (Closes: #380418)

  * debian/control: made libqt4-gui conflict/replace libqt4-designer, to
    ensure that old package is removed (Closes: #380253)

  * Enable Qt's new support for using the system's SQLite 3 library
    (Closes: #382238)

  * debian/rules: removed the PostgreSQL and MySQL include hacks from the
    configure arguments, since the configure script now autodetects them
    itself

  * debian/patches/10_qmake_for_debian.dpatch: updated for new upstream

  * debian/patches/13_arm_ftbfs_fixes.dpatch: updated for new upstream

  * debian/patches/19_s390_atomic.dpatch: removed, since it appears to be
    obsolete

  * debian/libqt4-debug.install: changed the wildcards to match the new
    debug lib names.  What was once *_debug.so.* is now *.debug.  Ick.

  * debian/control: removed libqt4-debug-dev since now that the _debug
    libs have been removed and debugging symbols are shipped in their
    place, this package is no longer needed

  * Tar up the demos directory and include it in qt4-doc.  Also added the
    qtdemo binary to libqt4-dev. (Closes: #390925)

  * debian/rules: add -DQT_QLOCALE_USES_FCVT to the configure arguments
    when building on arm, like Qt3, to fix a uic problem (Closes: #386460)

  * debian/libqt4-gui.install: added usr/lib/libQtAssistantClient.so.*,
    since it's now shipped as a shared library; previously it was a static
    library

  * Added build-deps on libdbus-1-dev and libglib2.0-dev, and added
    libQtDBus to the libqt4-core package

 -- Brian Nelson <pyro@debian.org>  Fri,  6 Oct 2006 23:16:46 -0400

qt4-x11 (4.1.4-1.1) unstable; urgency=medium

  * Non-maintainer upload.
  * Reintroduce the libpq-dev dependency, which seems to have been removed by
    mistake in 4.1.0-2. (Closes: #327618)

 -- Steinar H. Gunderson <sesse@debian.org>  Tue, 29 Aug 2006 01:10:59 +0200

qt4-x11 (4.1.4-1) unstable; urgency=low

  * New upstream release (Closes: #378443)

  * Moved usr/lib/libQtDesigner.so.* and
    usr/lib/libQtDesignerComponents.so.* from qt4-designer to libqt4-gui
    so there the libqt4-dev package won't contain dangling symlinks
    (Closes: #374612)

 -- Brian Nelson <pyro@debian.org>  Sun, 16 Jul 2006 15:39:29 -0700

qt4-x11 (4.1.3-3) unstable; urgency=low

  * debian/patches/19_s390_atomic: patch from Bastian Blank to fix
    including of s390 specific atomic header. (Closes: #370241)

  * debian/patches/18_disable_opengl_visibility.dpatch: regenerated so
    that it applies correctly for me

 -- Brian Nelson <pyro@debian.org>  Sun, 25 Jun 2006 11:42:57 -0700

qt4-x11 (4.1.3-2) unstable; urgency=high

  * patches/18_disable_opengl_visibility: disable -fvisibility-inlines-hidden
    for src/opengl/opengl.pro as it makes gcc ICE on alpha.
    (Closes: #368883)

  * urgency set to high so that qt4-x11 stops blocking half of unstable out of
    testing.

 -- Pierre Habouzit <madcoder@debian.org>  Mon,  5 Jun 2006 10:28:29 +0200

qt4-x11 (4.1.3-1) unstable; urgency=high

  * New upstream release

  * debian/patches/16_hppa_ldcw_fix.dpatch: new patch from Ubuntu to
    properly support hppa

  * debian/patches/17_alpha_ice.dpatch: new patch from Steve Langasek to
    fix FTBFS on alpha (Closes: #368883)
    (urgency set to high for that fix).

  * Dropped the .la files since they pull in too many unneeded
    dependencies (Closes: #360802)

  * debian/libqt4-debug.install: removed
    usr/lib/qt4/plugins/codecs/*_debug.so since those aren't included
    upstream anymore

  * Increased standards version to 3.7.2

 -- Brian Nelson <pyro@debian.org>  Sat,  3 Jun 2006 17:56:32 -0700

qt4-x11 (4.1.2-2) unstable; urgency=low

  * debian/libqt4-debug-dev.install, debian/libqt4-dev.install: added
    wildcards to install .a static libraries so that the libQtUiTools and
    libQtAssistantClient libraries are included (Closes: #358224, #355902)

 -- Brian Nelson <pyro@debian.org>  Sun, 14 May 2006 10:03:40 -0700

qt4-x11 (4.1.2-1) unstable; urgency=low

  * New upstream release

  * debian/control: removed dependencies on xlibs-static-dev and
    xlibs-static-pic to transition to building against modular X
    (Closes: #362262)

  * debian/control: changed x-dev dependencies to x11proto-core-dev, for
    modular X transition (Closes: #362053)

 -- Brian Nelson <pyro@debian.org>  Thu, 13 Apr 2006 10:35:28 -0700

qt4-x11 (4.1.1-1) unstable; urgency=low

  * New upstream release
    - Fixes the broken debug-and-release build and a load of resulting
      bugs (Closes: #337764, #337847, #341807, #338380, #354993, #347251)
    - debian/patches/15_alpha_ftbfs_fix.dpatch: removed, integrated upstream

  * debian/control: updated libqt4-debug-dev priority to match that of the
    override file

  * debian/libqt4-dev.links: added a symlink /usr/share/qt4/bin/rcc to
    /usr/bin/rcc (Closes: #349438)

  * debian/libqt4-gui.install: added libqmng.so and libqgif.so plugins
    (Closes: #354266)

 -- Brian Nelson <pyro@debian.org>  Mon,  6 Mar 2006 10:20:47 -0800

qt4-x11 (4.1.0-3) unstable; urgency=low

  * Moved *_debug.prl and *_debug.la support files to the libqt4-debug-dev
    package

  * Updated to debhelper v5 compatibility

  * debian/qt4-dev-tools.install: removed the /usr/share/qt4/templates
    entry, which no longer contains anything

  * Added gif support (Closes: #348092)

  * debian/patches/12_mips_atomic_ops.dpatch: applied fixes from Isaac
    Clerencia <isaac@debian.org>, as the last patch was not good enough to
    fix the FTBFS bug (Closes: #335831)

 -- Brian Nelson <pyro@debian.org>  Tue, 17 Jan 2006 09:49:11 -0800

qt4-x11 (4.1.0-2) unstable; urgency=low

  * debian/patches/12_mips_atomic_ops.dpatch: Updated patch to account for
    2 new functions, q_atomic_test_and_set_acquire_int and
    q_atomic_test_and_set_release_int, that were added in this release.
    This should again fix the build failures on mips. (Closes: #335831)

  * debian/patches/13_arm_ftbfs_fixes.dpatch: renamed, added a fix for the
    new build failure due to a poorly defined qreal (Closes: #347360)

  * debian/control: build against libmysqlclient15, and updated all
    dependencies to libmysqlclient15-dev (Closes: #346586)

  * debian/control: added explicit dependencies for libqt4-dev on the
    Source-Version packages libqt4-core, libqt4-gui, libqt4-sql, and
    libqt4-qt3support.  These dependencies were accidentally dropped in
    the last version.  Also removed some unneeded dependencies.

  * Split the *_debug.so symlinks out of libqt4-dev and into a separate
    libqt4-debug-dev package.  Made the libqt4-debug-dev package depend on
    the Source-Version of libqt4-debug.  This way, the symlinks won't be
    dangling if libqt4-debug isn't installed and prevents failed linking
    due to version mismatches.  (Closes: #346603, #346605)

  * Re-enabled sqlite3 support.  It's still statically linked, however,
    but that'll have to do because I really don't want to futz with the
    build system. (Closes: #330976)

  * Enabled sqlite2 support

  * debian/patches/15_alpha_ftbfs_fix.dpatch: new patch to rename
    q_atomic_test_and_set_release_ptr to q_atomic_test_and_set_ptr, as
    suggested by Isaac Clerencia <isaac@debian.org>, to fix a FTBFS on
    alpha. (Closes: #347353)

  * debian/patches/10_qmake_for_debian: renamed from
    10_qmake_use_qt4_tools, and updated to remove the "link_prl" from the
    default qmake CONFIG line.  This disables the recursive linkage
    against all indirectly-used libraries. (Closes: #343190)

 -- Brian Nelson <pyro@debian.org>  Tue, 10 Jan 2006 19:29:52 -0800

qt4-x11 (4.1.0-1) unstable; urgency=low

  * New upstream release
    - Fixes missing QBitArray operators (Closes: #341658)
    - Fixes qmake problem with including bad build path (Closes: #327359)

  * Added the new QTestLib unit testing framework to the libqt4-core
    package

  * Added the new QtSvg module to the libqt4-gui package

  * debian/patches/13_arm_gcc4.dpatch: new patch from Jeremy Laine to fix
    FTBFS on arm (Closes: #343176)

  * debian/patches/14_kfreebsd_build_fix.dpatch: new patch from Petr
    Salinger to fix FTBFS on GNU/kFreeBSD (Closes: #343191)

  * Split the qtconfig tool out of libqt4-gui and into a separate
    qt4-qtconfig package, due to its linkage against libqt4-qt3support and
    hence ridiculous dependency chain.

  * debian/rules: improved/cleaned up the clean target

 -- Brian Nelson <pyro@debian.org>  Wed,  4 Jan 2006 12:56:23 -0800

qt4-x11 (4.0.1-6) unstable; urgency=low

  * Added a target to automatically install lintian overrides, stolen from
    debian-qt-kde.mk

  * Added a bunch of lintian overrides for stuff that should be ignored

 -- Brian Nelson <pyro@debian.org>  Sat, 19 Nov 2005 01:17:03 -0800

qt4-x11 (4.0.1-5) unstable; urgency=low

  * debian/control: made libqt4-gui replace libqt4-core (<< 4.0.1-3), for
    the plugins move (Closes: #336492)

  * debian/control: removed the mention of a qt4-examples package that
    doesn't actually exist from the qt4-doc package description

  * debian/rules: remove all *.so files under
    examples/tools/plugandpaint/plugins/ in the clean target
    (Closes: #339674)

  * Removed the menu entry for designer-qt4 from qt4-dev-tools.menu, and
    added it to a new qt4-designer.menu

  * Added a tarball of the examples to qt4-doc (Closes: #336832)

 -- Brian Nelson <pyro@debian.org>  Fri, 18 Nov 2005 10:27:03 -0800

qt4-x11 (4.0.1-4) unstable; urgency=low

  * debian/control: changed qt4-designer's section to "devel"

  * Added a patch from Thiemo Seufer to fix the FTBFS on mips/mipsel
    (Closes: #335831)

 -- Brian Nelson <pyro@debian.org>  Wed, 26 Oct 2005 00:13:40 -0700

qt4-x11 (4.0.1-3) unstable; urgency=low

  * debian/libqt4-core.install: only install the non-debug codecs, since
    the debug ones pull in a gratuitous dependency on libqt4-debug
    (Closes: #328913)

  * debian/libqt4-debug.install: install the debug codecs here instead

  * debian/control: replaced obsolete xlibs-dev dependency with the
    required split packages (Closes: #329302)

  * Completely disabled SQLite support since it's too fubar in this
    version to be usable.  The build fails with SQLite2 support, and
    SQLite3 is only supported by linking staticly with a version
    distributed in the Qt source.  Meh.

  * Renamed libqt4-designer to qt4-designer, merged in the designer binary
    from qt4-dev-tools, and added a dependency on libqt4-dev
    (Closes: #330094)

  * Moved the plugins installed in libqt4-core to libqt4-gui, since they
    link against the GUI library.  Otherwise a circular libqt4-core <->
    libqt4-gui dependency results.

 -- Brian Nelson <pyro@debian.org>  Fri, 21 Oct 2005 00:28:53 -0700

qt4-x11 (4.0.1-2) unstable; urgency=low

  * debian/patches/10_qmake_use_qt4_tools.dpatch: new patch that modifies
    qmake.conf so that qmake generates Makefiles that use the -qt4 tools.
    This way, it can cope with systems that have alternatives set to use
    the -qt3 versions.

  * Increased the conflicting Qt3 package versions to <= 3.3.4-7, since
    the Qt3 packages still don't use the alternatives system as needed to
    coexist with Qt4.

  * debian/libqt4-core.install: added /usr/lib/qt4/plugins/codecs

  * debian/patches/11_launch_assistant-qt4: new patch that modifies the
    QAssistantClient class to launch Qt Assistant as "assistant-qt4" to
    cope with the alternatives system (Closes: #327294)

  * debian/control: Upgraded libqt4-dev's dependencies on the modules
    libqt4-sql and libqt4-qt3support from suggests to depends, and added
    libpq-dev and libmysqlclient14-dev | libmysqlclient-dev as
    dependencies.  These dependencies are apparently required to make
    building pkg-config-using packages happy. (Closes: #327618)

  * debian/control: corrected libqt4-sql to suggest libmysqlclient14-dev,
    not libmysqlclient12-dev which is deprecated

  * debian/copyright: updated FSF snailmail address

  * debian/libqt4-debug.install: removed the libqt3supportwidgets_debug.so
    designer plugin, since for some reason having this installed breaks
    designer (Closes: #325782)

 -- Brian Nelson <pyro@debian.org>  Mon, 12 Sep 2005 12:32:53 -0700

qt4-x11 (4.0.1-1) unstable; urgency=low

  * New upstream release

  * Install changes-4.0.1 as upstream changelog

  * debian/manpages/assistant-qt4.1: new manpage written from scratch
    based on the output of "assistant -help"

  * debian/manpages/designer-qt4.1, debian/manpages/linguist-qt4.1:
    manpages stolen from the Qt3 packages and trivially adapted for Qt4
    (Closes: #322403)

  * debian/manpages/moc-qt4.1: escape some '-' characters

  * debian/qt4-dev-tools.manpages: install the new assistant-qt4.1,
    designer-qt4.1, and linguist-qt4.1 manpages

  * debian/control: made qt4-dev-tools recommend qt4-doc, since assisant
    needs it to be useful (Closes: #323251)

  * Removed the FAQ from qt4-doc.docs, since it's no longer included in
    4.0.1, and was useless anyway

  * Build-depend on libmysqlclient14-dev since libmysqlclient12-dev is
    scheduled to be removed

  * debian/libqt4-dev.install: work around TT's broken "install" target in
    this release so that the pkgconfig files are installed in
    /usr/lib/pkgconfig instead of directly in /usr/lib.  Grrrr.

 -- Brian Nelson <pyro@debian.org>  Thu, 25 Aug 2005 19:28:35 -0700

qt4-x11 (4.0.0-3) unstable; urgency=low

  * debian/control: changed the xlibs-pic dependency to xlibs-static-pic
    for the X.org transition (Closes: #319586)

  * Added manpages for lrelease, lupdate, moc, qtconfig, and uic, stolen
    from the Qt3 upstream tarball, and wrote a manpage for qmake from
    scratch.  Since now manpages are included for all executables using
    the alternatives, the symlinks to them no longer dangle.
    (Closes: #319456)

  * debian/libqt4-core.install: added
    usr/lib/qt4/plugins/imageformats/libqjpeg.so to include the jpeg
    plugin (Closes: #321582)

  * debian/libqt4-debug.install: added the libqjpeg_debug.so plugin

  * debian/rules: don't hardcode the /usr/include/postgresql/8.0 path,
    instead of the output of `pg_config --includedir`, stolen from Qt3
    packages

  * debian/libqt4-gui.install: added the OpenGL module library so that it
    actually gets included in a package (Closes: #321874)

  * debian/control: updated the package descriptions to note that the
    Network and XML modules are included in the libqt4-core package, and
    the OpenGL module is included in the libqt4-gui package

 -- Brian Nelson <pyro@debian.org>  Mon,  8 Aug 2005 08:58:10 -0700

qt4-x11 (4.0.0-2) unstable; urgency=low

  * libqt4-dev: added /usr/bin/uic3 (Closes: #318451)

  * Transition to the new X.org packages:
    + (Build-)depend on libglu1-xorg-dev instead of xlibmesa-gl-dev
    + (Build-)depend on libxinerama-dev (Closes: #318682)

 -- Brian Nelson <pyro@debian.org>  Tue, 19 Jul 2005 21:28:19 -0700

qt4-x11 (4.0.0-1) unstable; urgency=low

  * Initial release (Closes: #306694)

 -- Brian Nelson <pyro@debian.org>  Tue,  5 Jul 2005 19:42:18 -0700