File: changelog

package info (click to toggle)
kdelibs 4%3A3.5.5a.dfsg.1-8
  • links: PTS
  • area: main
  • in suites: etch-m68k
  • size: 86,260 kB
  • ctags: 72,369
  • sloc: cpp: 575,111; xml: 116,385; ansic: 27,951; sh: 10,565; perl: 6,241; java: 4,066; makefile: 3,775; yacc: 2,432; lex: 643; ruby: 329; asm: 166; jsp: 128; haskell: 116; f90: 99; ml: 75; awk: 71; tcl: 29; lisp: 24; php: 9
file content (2537 lines) | stat: -rw-r--r-- 88,015 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
kdelibs (4:3.5.5a.dfsg.1-8) unstable; urgency=high

  * Add patch to fix utf8-parsing vulnerability.
  * Urgency high due to security fix.

 -- Sune Vuorela <debian@pusling.com>  Thu, 29 Mar 2007 21:19:35 +0200

kdelibs (4:3.5.5a.dfsg.1-7) unstable; urgency=high

  * Add patch 46_CVE-2007-1564-kdelibs-3.5.6.diff: untrusted sites that allow 
    Javascript injection could cause Konqueror or other web browsers based on 
    KHTML to perform port scanning.  CVE-2007-1564.

 -- Ana Beatriz Guerrero Lopez <ana@debian.org>  Mon, 26 Mar 2007 18:57:14 +0100

kdelibs (4:3.5.5a.dfsg.1-6) unstable; urgency=high

  +++ Changes by Ana Beatriz Guerrero Lopez:
  
  * Add patch 45_konqueror-CVE-2007-0537.diff which fixes: Konqueror does not 
    properly parse HTML comments, which allows remote attackers to conduct 
    cross-site scripting (XSS) attacks. CVE-2007-0537. (Closes: #409868).
    Thanks to Kees Cook for reporting and pointing to the fix.

  +++ Changes by Modestas Vainius:

  * New patch (No. 25) from KDE bug #128564. Fixes khtml crash on loading
    some non existing pages when javascript is disabled (Closes: #408413).
    Probably fixes these KDE bugs too: #126812, #127137, #135117, #138449.

  * Add libc6-dbg to kdelibs-dbg dependencies on amd64. It seems to be
    needed to get a useful backtrace from drkonqi on this arch.

  +++ Changes by Josh Metzler:

  * Add 44_sync_kwallet_changes to make kwallet write changes to disk
    immediately, avoiding losing passwords if kwallet doesn't shutdown
    cleanly.  (Closes: #407272)

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Wed, 17 Jan 2007 09:55:20 -0500

kdelibs (4:3.5.5a.dfsg.1-5) unstable; urgency=low

  +++ Changes by Sune Vuorela:

  * Add qt3-x11-free-dbg to kdelibs-dbg to try to get better backtraces.
  * Add multiple manpages to kdelibs4c2a. Thanks very much to Holger Hartmann.
    (Closes: #376099, #351610, #368180)
  * Add kdelibs4c2a.links to handle common manpages.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Tue, 21 Nov 2006 19:30:14 +0100

kdelibs (4:3.5.5a.dfsg.1-4) unstable; urgency=medium

  [ Debian Qt/KDE Maintainers ]
  * Add 42_xdgMenuPrefix_support patch: add XDG_MENU_PREFIX support. Thanks to
    Kevin Krammer. (Closes: #397057, #398734)
  * Add 43_hardcode_xdgMenuPrefix patch: hardcode xdgMenuPrefix to "kde-"
    string until proper upstream fix.
  * Remove 18_applications_menu_rename patch.
  * Urgency medium, as along with kdebase this upload fixes broken fresh
    installs.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Thu, 16 Nov 2006 17:07:00 -0500

kdelibs (4:3.5.5a.dfsg.1-3) unstable; urgency=medium

  * Patch: 41_x_kde_getactionmenu_no_timeout.diff
    Do not time out when waiting for the reply for the X-KDE-GetActionMenu
    DCOP call. DCOP protocol is synchronouos by design and a reply for the
    timed out call (i.e. garbage) still arrives and might be falsely returned
    as a valid reply for the subsequent DCOP call on the same connection. The
    application currently known to be badly hurt by this is kdesvn and its
    konqueror service menu integration. Its X-KDE-GetActionMenu might take
    longer than current 100 milisecond timeout to complete. As a result
    then, a late reply will "pollute" a main DCOP connection of the client
    application (e.g. konqueror) causing further DCOP failures.
    (Closes: #348411)

  * Add 2 patches from upstream BTS http://bugs.kde.org/115891:
    * 33_cups12_kprinter_fixes.diff - fix various failures with CUPS 1.2
      when there are no printers.
    * 35_cups_unify_ipp_uri_assembling.diff - ensure proper IPP URI
      generation when CUPS is accessed via a UNIX socket. (Closes: #379216)
  * Add 36_kdeprintd_64bit_fix.diff - fix a bug on 64bit arches when kdeprint
    is not able to get a configuration file from CUPS server because kdeprintd
    fails to retreive the password from kpasswdserver.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Thu,  2 Nov 2006 17:54:30 -0500

kdelibs (4:3.5.5a.dfsg.1-2) unstable; urgency=high

  * Rebuild against qt-x11-free 3.3.7. There exists a strange KDE build system
    bug wherein some packages fail to build if the kdelibs against which they
    are building was itself built against a release of qt-x11-free different
    from the one currently present. Until we figure this out, let's just
    rebuild kdelibs against the new qt-x11-free, and thus make the problem
    go away for now. Urgency=high because this doesn't actually change
    anything.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Mon, 23 Oct 2006 20:02:45 -0400

kdelibs (4:3.5.5a.dfsg.1-1) unstable; urgency=medium

  * Remove non-free RFC documentation from the upstream tarball.
    (Closes: #393378)

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Mon, 16 Oct 2006 17:49:07 -0400

kdelibs (4:3.5.5a-2) unstable; urgency=medium

  * Grab two more fixes from KDE_3_5_BRANCH.
    + Fix kate's indentation of C/C++ files.
    + Fix kdeprint's timeout when trying to find cupsd.
      (Closes: #392052, #392052)

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Fri, 13 Oct 2006 17:04:21 -0400

kdelibs (4:3.5.5a-1) unstable; urgency=medium

  * Nes upstream tarball, fixes a grave bug in katepart (Closes: 391414).

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Sat,  7 Oct 2006 16:58:29 +0200

kdelibs (4:3.5.5-1) unstable; urgency=low

  * New upstream release.
    + Fixes crashes in kate when creating doxygen comments.
      (Closes: #381578)

  +++ Changes by Christopher Martin:

  * Drop the kjanuswidget highlight-on-mouseover patch. Though a very nice
    touch, it caused crashes in applications such as adept.

  * Drop the CUPS 1.2 patches that no longer apply, as more or less working
    support was merged upstream. Salvage a few changes to prevent errors
    from popping up when the user has no printers defined. Please report
    obvious regressions.

  +++ Changes by Fathi Boudra:

  * Update copyright file to new KDE source location. (Closes: #385649)

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Tue,  3 Oct 2006 18:28:15 -0400

kdelibs (4:3.5.4-3) unstable; urgency=low

  +++ Changes by Christopher Martin:

  * Fix the avahi patch so that kdelibs builds with or without --enable-final.
    (Disabling it on slow architectures had the unfortunate side effect of
    revealing a problem in the patch, which had unwittingly made
    --enable-final necessary to build the package.) kdelibs should now build
    on arm and m68k.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Mon, 31 Jul 2006 20:12:25 -0400

kdelibs (4:3.5.4-2) unstable; urgency=low

  * KDE_3_5_BRANCH update (up to r567679).

  +++ Changes by Christopher Martin:

  * Re-upload 3.5.4 with a new build hack that disables the use of
    --enable-final on slow architectures. This will hopefully allow kdelibs
    (and other KDE modules) to build on arm and m68k more easily. This should
    in turn ease the movement of recent KDE modules into Testing. Thanks to
    Adeodato Simo for the fix.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Sat, 29 Jul 2006 15:22:37 -0400

kdelibs (4:3.5.4-1) unstable; urgency=low

  * new upstreal release:

    + Fixes null dereference in khtml, which could cause the browser to crash.
      This resolves CVE-2006-3672. Thankfully not every reproducible Konq crash
      bug gets a CVE number... (Closes: #378962)

  +++ Changes by Christopher Martin:

  * Add replaces for kaffeine (<< 0.8.1-3), since x-mplayer2.desktop is now in
    kdelibs-data.

  * Add a number of patches, courtesy of Kubuntu, which attempt to get
    kdeprint working reasonably well with CUPS 1.2.x. These patches should
    resolve a number of user glitches, such as cryptic errors popping up when
    no printer has yet been added to CUPS.
    (Closes: #369140, #370403, #375477, #379216)

  * Apply a GNU/kFreeBSD build patch from Petr Salinger. (Closes: #377213)

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Thu, 27 Jul 2006 10:14:08 +0200

kdelibs (4:3.5.3-1) unstable; urgency=low

  * New upstream release:
    + Fixes crashes in konqueror. (Closes: #356876)

  +++ Changes by Pierre Habouzit:

  * Remove branch pull patches.

  +++ Changes by Christopher Martin:

  * Eliminate the kdelibs-bin package, merging it completely into kdelibs4c2a.

    There existed a (necessary) circular dependency between kdelibs-bin and
    kdelibs4c2a. kdelibs-bin is linked to kdelibs4c2a. Also, every KDE
    application needs the binaries in kdelibs-bin to function properly, yet
    virtually none depend on it. So to break the circular dependency by
    removing kdelibs4c2a's dependency on kdelibs-bin would require that all
    KDE packages be re-uploaded. And every KDE-using system would still need
    both kdelibs-bin and kdelibs4c2a.

    So we'll simply merge them. The general practice of separating libraries
    and programs makes no sense for kdelibs, given the close ties between the
    two. Multiple versions of the KDE libraries can't be installed
    side-by-side in any case.

    For the rare package which depends on kdelibs-bin, kdelibs4c2a will
    "Provides: kdelibs-bin".

    The removal of the circular dependency should make future transitions
    easier for users, avoiding difficulties such as those encountered during
    Woody to Sarge upgrades. (Closes: #310873)

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Sun, 28 May 2006 16:57:06 +0200

kdelibs (4:3.5.2-2) unstable; urgency=low

  * KDE_3_5_BRANCH update (up to r526316). Contains important fixes for khtml.
    Pages which, since the last upload, didn't render at all, or only showed
    headers, should be fixed.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Tue,  4 Apr 2006 09:03:26 -0400

kdelibs (4:3.5.2-1) unstable; urgency=low

  * New upstream release.

  * KDE_3_5_BRANCH update (up to r523640).

  +++ Changes by Christopher Martin:

  * Remove apparently obsolete python dependency from kdelibs-bin.
    (Closes: #356934)

  * Enable inotify support, and change the Recommends: gamin to a Suggests:
    fam, since a third-party tool is only advantageous for remote filesystems.

  * Add dcopstart and dcopfind manpages, from Dr. Johannes Ranke. Thanks!
    (Closes: #359097)

  +++ Changes by Pierre Habouzit:

  * Update debian/control for new kfreebsd-amd64 port.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Tue, 28 Mar 2006 18:02:00 -0500

kdelibs (4:3.5.1-4) unstable; urgency=low

  * KDE_3_5_BRANCH update (up to r517245).

  +++ Changes by Christopher Martin:

  * Add a Makefile.am patch that works around a bit of libtool oddness, to be
    investigated. This problem was causing the kdelibs build to fail. Thanks
    to Daniel Schepler for finding the fix. (Closes: #355099)

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Fri, 10 Mar 2006 12:06:36 -0500

kdelibs (4:3.5.1-3) unstable; urgency=medium

  * KDE_3_5_BRANCH update (up to r515119).

  +++ Changes by Christopher Martin:

  * Add an as-yet-uncommitted patch from upstream that prevents the
    documentation license from being set as the GFDL, even if the author
    specified a different license. Bump urgency for RC fix. (Closes: #353814)

  * Add Replaces for krita and digikam, now that kdelibs includes
    x-raw.desktop.

  * Allow building against libgamin-dev as well as libfam-dev. kdelibs4-dev
    will also depend on libfam-dev | libgamin-dev.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Thu,  2 Mar 2006 13:26:25 -0500

kdelibs (4:3.5.1-2) unstable; urgency=low

  +++ Changes by Christopher Martin:

  * KDE_3_5_BRANCH update (up to r506549).

  * Add a patch to make the Qt Motif Plus style visible again.
    (Closes: #350863)

  * Update the avahi patch, fixing kpf crashes, and probably some kded crashes
    users reported as well. (Closes: #350266, #351598)

  * Remove obsolete netpbm dependency from kdelibs-bin.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Mon,  6 Feb 2006 19:42:06 -0500

kdelibs (4:3.5.1-1) unstable; urgency=low

  * New upstream release.

  +++ Changes by Josh Metzler:
  
  * Add kdelibs-data Replaces for libdjvulibre1 and libdjvulibre15 (<< 3.5.1-2)
    which also include x-djvu.desktop.
    (Closes: #347218, #347885, #348020, #348365, #348899)

  +++ Changes by Isaac Clerencia:

  * Apply patch 27_kdnssd_avahi.diff to replace dummy kdelibs kdnssd
    implementation with a working avahi-based one.

  * Add Build-Depends on libavahi-client-dev and libavahi-qt3-dev to get
    the patch referenced above working.

  +++ Changes by Christopher Martin:

  * Upload to unstable.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Thu, 26 Jan 2006 18:37:01 -0500

kdelibs (4:3.5.0-3) unstable; urgency=low

  +++ Changes by Christopher Martin:

  * No longer build with gcc-3.4 on any architectures, since gcc-4.0 should
    be fixed. (Closes: #342984)

  * Adjust the Debianization of the Konqueror user agent string. The package
    version is not exposed by default. Rather, the level of information
    presented is tied to the level of general operating system the user has
    configured to be sent.
    (Addresses: http://lists.debian.org/debian-qt-kde/2005/12/msg00385.html)

  +++ Changes by Adeodato Simó:

  * Upload to unstable.

  * KDE_3_5_BRANCH update (up to r494869).

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Fri,  6 Jan 2006 14:54:24 +0100

kdelibs (4:3.5.0-2) experimental; urgency=low

  * Upload to experimental.

  * KDE_3_5_BRANCH update (up to r488534). Bump kdelibs4c2a shlibs to account
    for changes.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Wed, 14 Dec 2005 16:16:45 -0500

kdelibs (4:3.5.0-1) alioth; urgency=low

  * New upstream release.

  +++ Changes by Christopher Martin:

  * Remove an old conffile from KDE 3.3, ktexteditor_autobookmarkerrc, on
    upgrade. (Closes: #339491)

  * Bump DH_COMPAT to 5. No changes, except kdelibs4c2a-dbg is replaced by
    kdelibs-dbg, which contains debugging symbols for all kdelibs binaries.

  * Make kdelibs4c2a Recommend gamin, since it supports inotify. Continue
    to build against fam for now, however, to ensure that our users have
    choice.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Tue, 29 Nov 2005 17:19:36 -0500

kdelibs (4:3.4.3-2) unstable; urgency=low

  * KDE_3_4_BRANCH update (up to r483731).

  +++ Changes by Christopher Martin:

  * In the branch update is included a fix for kopete's compilation issues.
    (Closes: #337423, #338901)

  +++ Changes by Adeodato Simó:

  * libstdc++ allocator transition: rename kdelibs4c2 to kdelibs4c2a. Bumped
    build-dependency version on libarts1-dev and libopenexr-dev.
    (Closes: #339190)

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Sun, 27 Nov 2005 23:47:21 +0100

kdelibs (4:3.4.3-1) experimental; urgency=low

  * New upstream release.

  +++ Changes by Christopher Martin:

  * Tweak the rounded text selection patch to avoid it causing icon spacing
    issues in Konqueror. (Closes: #329404)

  * Add a patch to generate a PIC static libkdefakes, libkdefakes_pic.a.
    This will allow other libraries, such as mimelib, to use libkdefakes,
    without acquiring non-PIC code or a dependency upon the full kdelibs.
    (Closes: #326113)

  +++ Changes by Pierre Habouzit:

  * Add /usr/share/bug/$package/presubj for kdelibs{4c2,-bin,} kindly asking
    our users to restart their KDE if reporting a bug just after an upgrade.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Sat, 15 Oct 2005 13:52:25 -0400

kdelibs (4:3.4.2-4) unstable; urgency=low

  * KDE_3_4_BRANCH update (up to r458612).

  +++ Changes by Adeodato Simó:

  * Use khtml/html/htmltokenizer.cpp from 3.5 to fix bogus parsing of
    whitespace around tags found inside <pre>. This was making konqueror
    sometimes ignore blank lines in pre mode, which made this friendly
    maintainer of yours terribly unhappy when visiting bts.turmzimmer.net.

  +++ Changes by Christopher Martin:

  * Add a patch from the "Improving KDE" set that tweaks KDE's default GUI,
    changing some of the selection and highlight effects. Temporarily bump
    the Qt build-depends, to ensure we build against a similarly patched
    package.

  * Add a patch that elimiates the floppy ioslave from the default Open dialog
    toolbar, since the media ioslave is also present by default and handles
    floppy drives.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Fri, 16 Sep 2005 12:52:36 -0400

kdelibs (4:3.4.2-3) unstable; urgency=low

  +++ Changes by Adeodato Simó:

  * Build with g++-3.4 on arm, m68k and hppa; kdelibs triggers the same gcc
    4.0 ICE as arts does.

  * Apply patch by Aurelien Jarno and Robert Millan for GNU/kFreeBSD support
    (closes: #289599). Details for the interested:

    + don't build-depend on libasound2-dev on !linux.
    + use HAVE_SYS_PRCTL_H instead of Q_OS_LINUX in kinit.cpp.
    + define _tcgetattr and _tcsetattr based on the actual availability of
      functions and constants, instead of by operating system name.

    Haven't included a hunk that added an extra check on MNT_NOWAIT, because
    it's not still clear that is really needed.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Mon, 29 Aug 2005 20:33:32 +0200

kdelibs (4:3.4.2-2) unstable; urgency=low

  +++ Changes by Christopher Martin and Adeodato Simó:

  * Improve the fix for #311958 to make kdelibs binNMUable again. Instead of
    having kdelibs4c2 depend on kdelibs-data (= ${Source-Version}), split that
    in (>> 3.X.Y) plus (<< 3.X+1).

    Since this fix can't be introduced in Sarge's kdelibs4, introduce (sigh) a
    conflicts in kdelibs-data against kdelibs4, which fortunately needs not be
    versioned because there is no 3.4.2 version of kdelibs4. This will prevent
    breakage due to partial upgrades and thus closes: #323747, #323967,
    #324147.

  +++ Changes by Christopher Martin:

  * Drop the versioning from kdelibs4-dev's too strict dependency on
    libfam-dev. This should allow libgamin-dev to be installed along with
    kdelibs4-dev once the fam transition is reversed, or libgamin0 stops
    providing libfam0c102. (Closes: #324174)

  +++ Changes by Adeodato Simó:

  * Patched some Makefiles.am to not use LIBADD for convenience libraries,
    since libtool can't prune those; specify the dependencies each time the
    library is used. This allows to reduce a bit more the number of Depends of
    the kdelibs4 package; in total, this version drops 11 dependencies with
    respect to the 3.3.x series.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Wed, 24 Aug 2005 16:05:07 +0200

kdelibs (4:3.4.2-1) unstable; urgency=low

  * New upstream release. Includes a forward declaration of KXMLGUIClient in
    kactioncollection.h, which makes gcc-4.0 happy and thus closes: #317543,
    #318017, #319154, #323093 (arson, smb4k, kile and amarok FTBFS).

  * KDE_3_4_BRANCH update.

  +++ Changes by Christopher Martin:
  
  * GCC 4.0 transition: kdelibs4 becomes kdelibs4c2. Tighten build depends on
    libarts1-dev, libqt3-mt-dev, libfam-dev, libtiff4-dev, and libopenexr-dev
    to ensure that we build against transitioned packages.

    Since kdelibs4 now depends on libopenexr2c2, this upload closes: #320450.
  
  * Make kdelibs4 always depend on the identical version of kdelibs-data.
    (Closes: #311958)

  +++ Changes by Adeodato Simó:

  * Remove obsolete conflicts/replaces relationships against packages/versions
    not present in Sarge.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Tue, 16 Aug 2005 11:16:00 -0400
 
kdelibs (4:3.4.1-1) experimental; urgency=low

  * New upstream release.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Tue, 31 May 2005 15:43:52 -0400

kdelibs (4:3.4.0-0pre5) alioth; urgency=low

  * New upstream release.

  * KDE_3_4_BRANCH update.

  * Bugs reported in the Debian BTS fixed by this release:

    - no longer FTBFS on amd64/gcc-4.0. (Closes: #288900)

  * Converted packaging to CDBS (initial version by Daniel Schepler, further
    changes by Christopher Martin and Adeodato Simó).

  +++ Changes by Adeodato Simó:

  * Added new package kdelibs4-dbg, with separate debugging symbols. Added
    Build-Dependency on binutils (>= 2.14.90.0.7) as per the dh_strip man
    page. (Closes: #257588).

  * [cdbs/kde.mk] Use escaped variables in the definitions of kde_htmldir and
    the like instead of absolute paths, so that /usr/bin/kde-config doesn't
    output them expanded even when --expandvars is not used. (Closes: #287822)

  * Fixed the ability of the build system to find kde.pot, even when it is not
    located at KDEDIR/include/kde.pot. This allows the use of targets such as
    "package-messages" without specifying includedir. (Closes: #283858)

  * Now that graphviz is in main, add it to Build-Depends-Indep together with
    gsfonts-x11 to generate diagrams in the API documentation.

  +++ Changes by Christopher Martin

  * Adjust the placement of the merging of the Debian menu in
    applications.menu. Oddly enough, this seems to work around some issues
    with io slaves and remote file access.

  * Rename applications.menu to kde-applications.menu, avoiding a conflict
    with the new GNOME xdg menu files. (Closes: #307098)

  * Debianize the Konqueror browser's user-agent string. (Closes: #268659)

  * Tighten libart-2.0-dev build dependency. (Closes: #285882)

  * Clean out useless manpages. New or better ones welcome...
    (Closes: #292084)

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Sat, 14 May 2005 13:00:44 -0400

kdelibs (4:3.3.2-7) unstable; urgency=high

  +++ Changes by Adeodato Simó:

  * Do not depend on the disappeared libjack0.80.0-0. Achieve so by updating
    the libtool used to build to the one currently in sid, so that it prunes
    unnecessary dependencies.

  * The above libtool update removes the kdelibs4 dependency on libmad0, so
    closes: #311710 ("does not have a versioned dependency on libmad0").

  * Do not unconditionally remove /etc/kderc and other files in /etc on
    upgrades. Whatever those bits were there for, can be removed now that
    Sarge is released and shipped with them... (Closes: #316255) Deleted the
    now empty preinst scripts for kdelibs4 and kdelibs-bin.

  * Acknowledge NMU by Frank Lichtenheld, thanks! (Closes: #309955)

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Sat, 02 Jul 2005 00:14:21 +0200

kdelibs (4:3.3.2-6.1) unstable; urgency=low

  * Non-maintainer upload.
  * Export modXModeSwitch. Patch by Mattia Dongili (Closes: #309955)

 -- Frank Lichtenheld <djpig@debian.org>  Sat, 21 May 2005 22:02:29 +0200

kdelibs (4:3.3.2-6) unstable; urgency=high

  +++ Changes by Christopher Martin:

  * Includes a corrected fix for CAN-2005-1046. The previous upstream patch
    broke certain filetypes. This resolves the issue.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Sat,  7 May 2005 10:30:05 -0400

kdelibs (4:3.3.2-5) unstable; urgency=medium

  +++ Changes by Christopher Martin:

  * KDE_3_3_BRANCH update. Includes fixes for CAN-2005-1046, a series of
    vulnerabilities involving improper input validation for image files,
    potentially resulting in arbitrary code execution. (Closes: #304465)

  * Add GFDL to debian/copyright.

  * Add another kaccel patch that fixes non-English keyboards on
    SunRay terminals. Thanks to Nikita Youshchenko. (Closes: #301971)

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Fri, 22 Apr 2005 11:21:11 -0400

kdelibs (4:3.3.2-4) unstable; urgency=low

  * Improve the fix for CAN-2005-0365 ("insecure temporary file
    creation") with a patch provided by Javier Fernández-Sanguino Peña:
    now mktemp is used, previously the temporary file was still created
    in an unsafe way, although in a safe directory. (Closes: #298533)

  * KDE_3_3_BRANCH update, with several improvements for the IDN situation:
    - matches SSL certificates based on the punycode version of the hostname.
    - some TLDs are whitelisted and IDN domains will be resolved for them.
      These are, by default: at, ch, cn, de, dk, kr, jp, li, no, se, tw.
      The KDE_USE_IDN environment variable can be set to a colon-separated
      list of TLDs to override this default, so if empty IDN will be disabled.

  * Backport small patch from KDE 3.4 to prevent kate from printing lots of
    assertion failures to stderr when editing a long line. (Closes: #298308)

  * Backport small patch from KDE 3.4 to make KSpell search for dictionaries
    in /usr/lib/aspell-0.6, which is now used by Aspell. (Closes: #296240)

  * As OpenOffice.org 1.1.3 will enter testing together with this version of
    kdelibs, re-add to kdelibs-data the template .desktop files removed in
    3.3.2-1. Replace openoffice.org-mimelnk (<< 1.1.3), but don't conflict.

  * This upload will get built with a non-broken gcc version in mipsel,
    and thus closes: #298615.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Sat, 12 Mar 2005 18:02:54 +0100

kdelibs (4:3.3.2-3) unstable; urgency=high

  * Urgency high as it closes a security RC bug.

  +++ Changes by Isaac Clerencia:

  * Fix syntax error in dcopidlng, closes: #297095 (was causing kdepim an
    others to FTBFS).
 
  * Apply patch from KDE 3.4 to fix CAN-2005-0237 (spoofing using IDN),
    closes: #294271, #294204. IDN is now disabled in all KDE apps unless
    the environment variable KDE_USE_IDN is set.
 
  * Christopher Cheney has kindly relicensed man pages written by him from
    GDFL to GPL, update the license statement accordingly. Closes: #292085.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Mon, 28 Feb 2005 14:05:30 +0100

kdelibs (4:3.3.2-2) unstable; urgency=high

  +++ Changes by Adeodato Simó:

  * Include patch to fix CAN-2005-0365, "insecure temporary file creation in
    kdelibs 3.3.2". dcopidlng no longer creates its temporary files in /tmp.
    (Closes: #294832, #294896) Urgency set to high because of this and other
    RC bug fixes below.

  * KDE_3_3_BRANCH update.

  * Include patch from CVS to fix XMLHttpRequest POST being broken in KHTML
    due to a blank line in headers. (Closes: #292765)

  +++ Changes by Christopher Martin:

  * Add patch from upstream that solves the problem wherein programs whose
    .desktop entry contained their full path, rather than just the binary
    to be executed (mainly games), confused kdeinit.
    (Closes: #270592, #290323)

  * debian/control: Add necessary kdelibs-data Replaces for old
    openoffice.org packages. (Closes: #292569)

  * Add better manpage for lnusertemp. Thanks to Javier Fernández-Sanguino
    Peña. (Closes: #292081)

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Sun, 13 Feb 2005 04:58:29 +0100

kdelibs (4:3.3.2-1) unstable; urgency=medium

  +++ Changes by Adeodato Simó:

  * Uploading to unstable. This new upstream version fixes CAN-2004-1145,
    "Konqueror Java Vulnerability", and thus closes: #286521. Urgency set
    to medium for this reason (the package has been in experimental for some
    time, and has been checked to work properly with the rest of 3.3.1
    packages).

  * debian/control:
    - make kdelibs-data replace kjscmd (<< 4:3.3.0), which was missed in the
      3.3.1-1 upload and completely forgotten since then. (Closes: #288653)

  * debian/kdelibs-data.install: the files added in the previous upload were
    checked not to exist in oo.o-mimelnk in sid, but sadly they exist in the
    version in sarge. Reverted them for now, will be re-added when OpenOffice
    1.1.3 enters sarge (with the proper Conflicts: entry). (Closes: #287097)

    List of files:
      - usr/share/mimelnk/application/vnd.sun.xml.calc.template.desktop
      - usr/share/mimelnk/application/vnd.sun.xml.draw.template.desktop
      - usr/share/mimelnk/application/vnd.sun.xml.impress.template.desktop
      - usr/share/mimelnk/application/vnd.sun.xml.writer.template.desktop

  +++ Changes by Christopher Martin:

  * KDE_3_3_BRANCH update. Pulls in the fix for CAN-2004-1165, the FTP command
    injection bug. (Closes: #285128, #287201)

  * Add patch to change the group set by KDE CUPS configurator to Debian's
    default, lpadmin, rather than sys. (Closes: #263430)

  * Add kaccel hack that works around a Konqueror crash with Russian keyboards.
    (Closes: #287566)

  * Change debian/copyright file to refer to licenses, instead of copyright,
    when discussing KDE's licenses. (Closes: #290191, #290190)

  * Change dependency on perl-suid to perl, and add Recommends: perl-suid.
    The lack of perl-suid should only cause problems for some users using
    NFS or SMB shares. (Closes: #289164)

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Sun, 16 Jan 2005 20:48:01 +0100

kdelibs (4:3.3.2-0pre1) experimental; urgency=low

  * New upstream release.

  * KDE_3_3_BRANCH update. Includes the kdelibs part of the fix
    for CAN-2004-1158. [CM]

  * Removed patches:
    - post-3.3.1-kdelibs-khtml.diff and post-3.3.1-kdelibs-kio.diff since
      these fixes are in KDE_3_3_BRANCH. [CM]

  * New patches:
    - 06_automake-1.9.diff
    - 12_cups_docroot.diff: changed the CUPS document path in kdeprint to
      reflect the Debian default. [CM]

  * Updated dcop.1 manpage with patch by Helge Kreutzman. (Closes: #250631)

  * New entries in debian/kdelibs-data.install:
    - usr/share/mimelnk/application/java.desktop
    - usr/share/mimelnk/application/xml.desktop
    - usr/share/mimelnk/application/vnd.sun.xml.calc.template.desktop
    - usr/share/mimelnk/application/vnd.sun.xml.draw.template.desktop
    - usr/share/mimelnk/application/vnd.sun.xml.impress.template.desktop
    - usr/share/mimelnk/application/vnd.sun.xml.writer.template.desktop
    - usr/share/apps/ksgmltools2/customization/cs/entities/underLGPL.docbook

  * New entries in debian/kdelibs4-dev.install:
    - usr/include/kde/kiobuffer.h
    - usr/include/kde/kwallettypes.h

  * debian/control:
    - removed unneeded build-dependency on automake1.9. [CM]

  * debian/rules:
    - call dh_makeshlibs with DH_COMPAT set to 3, so that -V works again for
      us (works around debhelper bug #280830). (Closes: #280826)

 -- Adeodato Simó <asp16@alu.ua.es>  Fri, 17 Dec 2004 01:30:13 +0100

kdelibs (4:3.3.1-4) unstable; urgency=high

  * The "from kde maintainers to m68k porters with love" release.
  * Move the Conflicts with (<< 3.3.0) packages from kdelibs (dummy package)
    to kdelibs4 (real package). They were put in the wrong package due to a
    wrong assumption on how the testing scripts work.

 -- Riku Voipio <riku.voipio@iki.fi>  Sun, 19 Dec 2004 16:45:39 +0000

kdelibs (4:3.3.1-3) unstable; urgency=high

  * Fix kdeaccessability Conflict. Closes: #285391
  * Added patch to fix half of Konqueror Window Injection Vulnerability 
    CAN-2004-1158. kdebase upload will fix the rest.

 -- Riku Voipio <riku.voipio@iki.fi>  Mon, 13 Dec 2004 18:53:21 +0000

kdelibs (4:3.3.1-2) unstable; urgency=medium

  * New upload to aid with transition of KDE 3.3 to sarge and to fix security
    hole. Urgency set to medium because of these reasons.

  * Add versioned conflicts (<< 4:3.3.0) for all KDE official modules in
    kdelibs. This will permit the testing transition to happen all at once.
  
  * Fixed kdewebdev conflict (was << 4:3.3.0, while kdewebdev in sid
    is 1:3.3.0 -Riku

  * Include patch to fix CAN-2004-1171 ("plain text password exposure").
    Closes half of #285126. Notes about the patches:

    - post-3.3.1-kdelibs-khtml.diff: dropped hunks #2 and #3 of patch to
      khtml_part.cpp, since they were whitespace adjustments and were causing
      failures to apply.

    - post-3.3.1-kdelibs-kio.diff: the patch as given in the KDE Advisory
      can't be used, since kdelibs 3.3.1-1 includes a KDE_3_3_BRANCH pull that
      already modifies kio/kio/job.cpp and makes the supplied patch unusable.

      Regenerated patch from CVS: Diff for /kdelibs/kio/kio/job.cpp between
      version 1.397.2.7 and 1.397.2.8.

 -- Adeodato Simó <asp16@alu.ua.es>  Sat, 11 Dec 2004 00:23:09 +0100

kdelibs (4:3.3.1-1) unstable; urgency=low

  * New upstream release.
  * KDE_3_3_BRANCH update.

 -- Christopher L Cheney <ccheney@debian.org>  Sun, 31 Oct 2004 03:30:00 -0600

kdelibs (4:3.3.0-2) unstable; urgency=low

  * KDE_3_3_BRANCH update.

 -- Christopher L Cheney <ccheney@debian.org>  Thu, 23 Sep 2004 17:00:00 -0500

kdelibs (4:3.3.0-1.1) unstable; urgency=low

  * The "Please stop spamming the OpenEXR maintainer (me)" Debian release.
    - Non Maintainer Upload.
    - Force rebuild against libopenexr2.
      (closes: #266504)

 -- Andrew Lau <netsnipe@users.sourceforge.net>  Fri, 27 Aug 2004 14:22:03 +1000

kdelibs (4:3.3.0-1) unstable; urgency=high

  * New upstream release.

 -- Christopher L Cheney <ccheney@debian.org>  Fri, 13 Aug 2004 18:00:00 -0500

kdelibs (4:3.2.3-4) unstable; urgency=high

  * KDE_3_2_BRANCH Update.
  * Apply patch for mktemp security issue. (Closes: #261386)
  * Build-Depends: libtiff4-dev. (Closes: #262589, #262832)

 -- Christopher L Cheney <ccheney@debian.org>  Mon,  2 Aug 2004 22:00:00 -0500

kdelibs (4:3.2.3-3) unstable; urgency=low

  * KDE_3_2_BRANCH Update.

 -- Christopher L Cheney <ccheney@debian.org>  Thu, 22 Jul 2004 03:00:00 -0500

kdelibs (4:3.2.3-2) unstable; urgency=low

  * KDE_3_2_BRANCH Update.

 -- Christopher L Cheney <ccheney@debian.org>  Sat, 12 Jun 2004 14:30:00 -0500

kdelibs (4:3.2.3-1) unstable; urgency=high

  * New upstream release.
  * kdelibs-bin Depends: menu-xdg. (Closes: #248610)

 -- Christopher L Cheney <ccheney@debian.org>  Thu,  3 Jun 2004 19:00:00 -0500

kdelibs (4:3.2.2-2) unstable; urgency=high

  * kdelibs-data Depends: hicolor-icon-theme. (Closes: #238839)
  * Remove preinst bashism. (Closes: #242946, #242961, #243475)
  * Do not remove /etc/kde3/system.kdeglobals. (Closes: #245149)
  * kdelibs-bin Recommends: menu-xdg.

 -- Christopher L Cheney <ccheney@debian.org>  Wed, 21 Apr 2004 18:00:00 -0500

kdelibs (4:3.2.2-1) unstable; urgency=low

  * New upstream release.
  * Added CUPS usage information to README.Debian. (Closes: #132587)
  * Update kdelibs-data Replaces: openoffice.org-mimlnk. (Closes: #233700,
    #236508)
  * Correct debian menu replacewith usage. (Closes: #237260, #238769,
    #239260, #241083, #241420, #242266)
  * debian/Packaging.txt, debian/dh-make/menu.ex: Removed references to
    the obsolete kderemove menu tag in kdelibs' documentation.
  * debian/Packaging.txt, debian/dh-make/menu.ex: Added quotes to the menu
    file examples.
  * debian/dh-make/rules, debian/Packaging.txt: updated the information to
    the state that things currently are in sid.
  * debian/dh-make/rules, debian/Packaging.txt: Added an example icon entry
    to the example menu file content.
  * debian/Packaging.txt: Added a paragraph by Nathaniel W. Turner
    explaining how to use CDBS for packaging a KDE app.

 -- Christopher L Cheney <ccheney@debian.org>  Mon,  5 Apr 2004 23:00:00 -0500

kdelibs (4:3.2.1-1) unstable; urgency=low

  * New upstream release.
  * Added kdelibs4 Depends xbase-clients. (Closes: #232348)

 -- Christopher L Cheney <ccheney@debian.org>  Thu, 04 Mar 2004 22:00:00 -0600

kdelibs (4:3.2.0-0pre1v1) experimental; urgency=low

  * New upstream release.

 -- Christopher L Cheney <ccheney@debian.org>  Tue, 17 Feb 2004 01:00:00 -0600

kdelibs (4:3.1.95-1) unstable; urgency=low

  * New upstream release.

 -- Christopher L Cheney <ccheney@debian.org>  Wed, 21 Jan 2004 21:00:00 -0600

kdelibs (4:3.1.5-1) unstable; urgency=low

  * New upstream release.
  * Added libtool arm patch.
  * Corrected meinproc manpage. (Closes: #220883)
  * Added --enable-dnotify to configure (Closes: #206976)

 -- Christopher L Cheney <ccheney@debian.org>  Sat, 10 Jan 2004 14:00:00 -0600

kdelibs (4:3.1.4-3) unstable; urgency=low

  * Added Replaces to kdelibs-data for arson, k3b. (Closes: #214534)
  * Move meinproc to kdelibs-bin so that khelpcenter glossary works.
    (Closes: #214815)
  * Restore generation of system.kdeglobals. (Closes: #216463)
  * Remove symlink /usr/share/config -> /etc/kde3.

 -- Christopher L Cheney <ccheney@debian.org>  Tue,  4 Nov 2003 22:00:00 -0600

kdelibs (4:3.1.4-2) unstable; urgency=low

  * Added patch to update autotools files.
  * Added patch to remove pedantic-errors from KDE_CHECK_FUNC_EXT since it
    causes configure checks to fail due to #line numbers being > 32767.
  * Added patch to make KStandardDirs::addKDEDefaults look in /usr/local as
    well.

 -- Christopher L Cheney <ccheney@debian.org>  Sun,  5 Oct 2003 18:00:00 -0500

kdelibs (4:3.1.4-1) unstable; urgency=low

  * New upstream release.

 -- Christopher L Cheney <ccheney@debian.org>  Sat, 27 Sep 2003 02:00:00 -0500

kdelibs (4:3.1.3-1) unstable; urgency=low

  * New upstream release.

 -- Christopher L Cheney <ccheney@debian.org>  Tue, 29 Jul 2003 20:00:00 -0500

kdelibs (4:3.1.2-2.1) unstable; urgency=low

  * NMU
  * kdelibs4-dev Depends: libxml2-utils.
    Closes: #196222, #196958, #199044, #200483, #200484

 -- LaMont Jones <lamont@debian.org>  Wed,  9 Jul 2003 15:26:11 -0600

kdelibs (4:3.1.2-2) unstable; urgency=low

  * Add xlibs-pic to kdelibs-dev Depends. (Closes: #193863)
  * Add libssl-dev to kdelibs-dev Depends. (Closes: #180542)

 -- Christopher L Cheney <ccheney@debian.org>  Mon, 19 May 2003 12:00:00 -0500

kdelibs (4:3.1.2-1) unstable; urgency=low

  * New upstream release. (Closes: #185697, #192616, #192931)

 -- Christopher L Cheney <ccheney@debian.org>  Sun, 18 May 2003 01:00:00 -0500

kdelibs (4:3.1.1-1) unstable; urgency=low

  * New upstream release. (Closes: #181547, #181870)
  * Correct imagetops manpage description. (Closes: #180868)

 -- Christopher L Cheney <ccheney@debian.org>  Tue, 11 Mar 2003 19:00:00 -0600

kdelibs (4:3.1.0-2) unstable; urgency=low

  * Add 'chmod +x configure' to rules.

 -- Christopher L Cheney <ccheney@debian.org>  Wed,  5 Feb 2003 12:00:00 -0600

kdelibs (4:3.1.0-1) unstable; urgency=low

  * New Upstream.
  * Rebuilt debian dir.
  * Split arts out of kdelibs source.

 -- Christopher L Cheney <ccheney@debian.org>  Sat, 01 Feb 2003 01:00:00 -0600

kdelibs (4:2.2.2-14) unstable; urgency=low

  * And a quick update to send it to unstable; no changes from -13.woody.3.

 -- Daniel Stone <dstone@trinity.unimelb.edu.au>  Wed, 11 Sep 2002 22:29:31 +1000

kdelibs (4:2.2.2-13.woody.8) stable-security; urgency=high

  * Non-maintainer upload by the Security Team
  * Apply the following patches from upstream:
    - post-2.2.2-kdelibs-http.patch (CAN-2003-0459)
    - post-2.2.2-kdelibs-kio-2.diff (CAN-2003-0370)
    - post-2.2.2-kdelibs-kssl-2.diff (CAN-2003-0370)
  * These address the issues described in:
    - http://www.kde.org/info/security/advisory-20030602-1.txt
    - An upcoming KDE advisory regarding CAN-2003-0370

 -- Matt Zimmerman <mdz@debian.org>  Thu, 24 Jul 2003 12:57:56 -0400

kdelibs (4:2.2.2-13.woody.7) stable-security; urgency=high

  * Non-maintainer upload by the Security Team
  * Applied upstream patch so ghostscript won't execute arbitrary commands
    hidden inside of postscript files.

 -- Martin Schulze <joey@infodrom.org>  Thu, 10 Apr 2003 12:05:36 +0200

kdelibs (4:2.2.2-13.woody.6) stable-security; urgency=high

  * Non-maintainer upload by the Security Team
  * Applied upstream patches to fix several potential vulnerabilities.
    http://www.kde.org/info/security/advisory-20021220-1.txt

 -- Martin Schulze <joey@infodrom.org>  Mon,  6 Jan 2003 08:20:04 +0100

kdelibs (4:2.2.2-13.woody.5) stable-security; urgency=high

  * Non-maintainer upload by the Security Team
  * Second (or third, since the first one burnt together with satie and
    the entire building around it) injection into the security build
    network since 8 buildds refuse to upload the binary packages and the
    maintainer refuses to answer.  *sigh*

 -- Martin Schulze <joey@infodrom.org>  Sat, 30 Nov 2002 18:25:33 +0100

kdelibs (4:2.2.2-13.woody.4) stable-security; urgency=high

  * Non-maintainer upload by the Security Team
  * Remove rlogin.protocol and telnet.protocol to fix URL KIO
    vulnerability (as reported by the KDE team)
  * Add special detection routine for big/little endianess on MIPS since
    the line "byteorder  : {big|little} endian" from /proc/cpuinfo was
    removed as of Linux 2.4.20, resulting in the mipsel buildd being
    unable to build this package.

 -- Martin Schulze <joey@infodrom.org>  Fri, 22 Nov 2002 11:42:59 +0100

kdelibs (4:2.2.2-13.woody.3) stable-security; urgency=high

  * Non-maintainer upload authored by security team (Joey)
  * Fixes cross-site scripting vulnerability in KHTML.
    (http://www.kde.org/info/security/advisory-20020908-2.txt)

 -- Daniel Stone <dstone@trinity.unimelb.edu.au>  Wed, 11 Sep 2002 22:24:35 +1000

kdelibs (4:2.2.2-13.woody.2) stable-security; urgency=high

  * Non-maintainer upload by security team
  * Security upload to fix SSL problems with Konqueror.
  * Fix local denial of service attack with aRts. This is NOT a local root
    vulnerability, just a stupid, over-excited skript kiddie wanting propz
    off SecurityFocus. *sigh*. (closes: #152211)
  * Adjusted Build-Depends (i.e. added libstdc++2.10-dev/libstdc++3-dev and g++)
  * Removed setuid bits for artswrapper from lintian overrides
  * Added sanity checks to artswrapper so open(), fopen() etc. never
    return file descriptors 1 or 2 (reserved for stdout and stderr)
  * Applied upstream patch to avoid a local denial of service (hence not
    raising the nice level)
  * Don't install artswrap setuid root anymore because of the above

 -- Martin Schulze <joey@infodrom.org>  Fri, 16 Aug 2002 18:46:10 +0200

kdelibs (4:2.2.2-13.woody.1) testing-security; urgency=high

  * Non-maintainer upload by security team
  * Don't install artswrapper suid, it is a security problem waiting to
    happen

 -- Wichert Akkerman <wakkerma@debian.org>  Fri, 12 Jul 2002 22:47:26 +0200

kdelibs (4:2.2.2-13) unstable; urgency=high

  * Fixed kdelibs-dev dependency should be libpng2-dev

 -- Christopher L Cheney <ccheney@debian.org>  Fri,  1 Mar 2002 17:00:00 -0600

kdelibs (4:2.2.2-12) unstable; urgency=high

  * New maintainer.
  * Remove Build-Depends on libglib1.3-dev since it has unstable ABI
    (Closes: #133171, #134168)
  * added suggests libjpeg-mmx-progs | libjpeg-progs, netpbm (Closes: #129094)

 -- Christopher L Cheney <ccheney@debian.org>  Thu, 28 Feb 2002 13:00:00 -0600

kdelibs (4:2.2.2-11) unstable; urgency=low

  * Adopting orphaned package, thanks to Ivan for all the great work over the
    years.

 -- Daniel Stone <daniel@sfarc.net>  Fri,  4 Jan 2002 09:14:46 -0500

kdelibs (4:2.2.2-10) unstable; urgency=low

  * Fix Deps (Closes: #126232)
  * Change nas-dev suggests to depends
  * A Couple upstream fixes

 -- Ivan E. Moore II <rkrusty@debian.org>  Thu, 27 Dec 2001 23:20:00 -0700

kdelibs (4:2.2.2-9) unstable; urgency=low

  * Move all non-module .la files from /usr/lib into -dev package.  We leave 
    all the .la files out of /usr/lib/kde2 and those that may not be normal
    libraries out of /usr/lib
  * Fix spelling error (Closes: #124989)

 -- Ivan E. Moore II <rkrusty@debian.org>  Mon, 17 Dec 2001 22:00:00 -0700

kdelibs (4:2.2.2-8) unstable; urgency=low

  * Depend on libfam-dev (Closes: #124264)

 -- Ivan E. Moore II <rkrusty@debian.org>  Sun, 16 Dec 2001 17:21:00 -0700

kdelibs (4:2.2.2-7) unstable; urgency=low

  * Break out bin files from kdelibs3 so that we can interoperate with
    kdelibs4 easily.
  * Fix deviceman.cc (Closes: #124132)

 -- Ivan E. Moore II <rkrusty@debian.org>  Fri, 14 Dec 2001 18:28:00 -0700

kdelibs (4:2.2.2-6) unstable; urgency=low

  * sync with upstream
  * Add in Build-Depends we normally get through libqt-dev so we can better
    follow policy
  * Add libfam-dev to Build-Depends
  * Version the libjpeg62-dev deps and add libjpeg to the depends for
    kdelibs-dev since some older versions don't have the .la file
  * Put bug reporting back to KDE so the users are happy and the developers
    are not.
  * Conflict (Closes: #123846)
  * Update dh-make files

 -- Ivan E. Moore II <rkrusty@debian.org>  Thu, 13 Dec 2001 00:57:00 -0700

kdelibs (4:2.2.2-5) unstable; urgency=low

  * sync with upstream
  * Build with nas support by popular demand
  * Update Build-Depends:  +nas-dev

 -- Ivan E. Moore II <rkrusty@debian.org>  Wed, 05 Dec 2001 06:04:00 -0700

kdelibs (4:2.2.2-4) unstable; urgency=low

  * sync with upstream
  * Build cleanup.  export CFLAGS/CXXFLAGS instead of the old method
  * Build-Depends cleanup
  * Dep cleanup.  Let's not conflict so much for the final release and lets
    not Recommend everything for the final release. (Closes: #118952)
  * Build with Xinerama support for i386 only (Closes: #116765)
  * Add in bits in debian/rules to make it easier to build optimized binaries
  * Remove old replaces/conflicts for keystone
  * Cleanup documentation for freeze
  * Cleanup dh-make files
  * Default to Reject for cookie acceptions. (Closes: #121750)
  * kio_https.* no longer exists and due to diversions we could end up 
    with the files existing but not tied to any package..so let's make
    sure to remove them.

 -- Ivan E. Moore II <rkrusty@debian.org>  Fri, 30 Nov 2001 12:39:00 -0700

kdelibs (4:2.2.2-3) unstable; urgency=low

  * a couple upstream fixes
  * debianrules cleanup
  * More lintian cleanup
  * Remove stupid debug messages (Closes: #120647)
  * More work on BTS stuff.  Give 2 options for Help/Report Bug, one to
    check current reports and one to report.

 -- Ivan E. Moore II <rkrusty@debian.org>  Sun, 25 Nov 2001 20:11:00 -0700

kdelibs (4:2.2.2-2) unstable; urgency=low

  * Remove recommends for libssl as I'm breaking policy by recommending
    something outside of main.  Will put this back once libssl goes into
    main.
  * libkmid | libkmid-alsa to help users out a bit

 -- Ivan E. Moore II <rkrusty@debian.org>  Thu, 22 Nov 2001 20:14:00 -0700

kdelibs (4:2.2.2-1) unstable; urgency=low

  * New upstream version
  * Provide replace/etc bits for easier migration to/from kde3
  * Update python deps (Closes: #118208)
  * Fix glib inclusion bits for gmcop stuff...however we are still
    not going to build with it until someone has a need for it.
  * Remove some other hacks
  * Update deps for qt as qt 2.3.2 has a fix which breaks a piece of kdelibs
    so let's make sure we match up across the board.
  * Update shlibs for the same reason
  * Use libasound2
  * Fix printing to files with spaces in the name (Closes: #117962)
  * Fix build with new libxml2 (Closes: #118638)
  * Update build-depends
  * Fix overwrite issues (Closes: #118802)
  * Updates to take care of changes in Qt 2.3.2 (Closes: #118868)
  * Do away with /etc/kderc and provide a link from /etc/kde2 to
    /usr/share/kde2/config.  Hardcode the config dir to /usr/share/kde2/config
    instead of /usr/share/config.  Can't hardcode it to /etc/kde2 since 
    the /usr part of it all is pulled from the prefix.  This will work tho
  * Move certain -dev binaries over to the -dev package
  * Should fix socks autodetection (Closes: #118925)

 -- Ivan E. Moore II <rkrusty@debian.org>  Mon, 19 Nov 2001 23:17:00 -0700

kdelibs (4:2.2.1-14) unstable; urgency=low

  * Fix overwrite problem (Closes: #116773)
  * Hopefully fix arts for bigendian (Closes: #115292)
  * Sync with upstream

 -- Ivan E. Moore II <rkrusty@debian.org>  Thu, 25 Oct 2001 09:39:00 -0700

kdelibs (4:2.2.1-13) unstable; urgency=low

  * Fix overwrite problem (Closes: #116568)
  * Sync with upstream

 -- Ivan E. Moore II <rkrusty@debian.org>  Sun, 21 Oct 2001 19:27:00 -0700

kdelibs (4:2.2.1-12) unstable; urgency=low

  * more js fixes
  * more ssl fixes
  * gernal sync with upstream
  * Added missing build-conflict
  * Get rid of automake hacks...hard code build-dep version for new automake
    thank god kde3 builds with automake1.5...

 -- Ivan E. Moore II <rkrusty@debian.org>  Fri, 19 Oct 2001 12:43:00 -0700

kdelibs (4:2.2.1-11) unstable; urgency=low

  * Several crash fixes
  * js fixes
  * ssl fixes
  * Update shlibs. This should take care of a few problems

 -- Ivan E. Moore II <rkrusty@debian.org>  Tue, 15 Oct 2001 00:15:00 -0700

kdelibs (4:2.2.1-10) unstable; urgency=low

  * Hopefully fix both the AA problem and the kicker crash problem
  * Clean up lintian overrides
  * Sync with upstream

 -- Ivan E. Moore II <rkrusty@debian.org>  Fri, 12 Oct 2001 10:18:00 -0700

kdelibs (4:2.2.1-9) unstable; urgency=low

  * Fix deps (Closes: #115064)

 -- Ivan E. Moore II <rkrusty@debian.org>  Mon, 08 Sep 2001 09:55:00 -0700

kdelibs (4:2.2.1-8) unstable; urgency=low

  * Remove build-depends for auto* since we are doing that locally to
    get around the automake 1.5 issues
  * Remove configure checks for automake/autoheader.  On some archs it seems
    to track this info down and attempt to run auto* which just hoses things
  * More upstream fixes
  * Update standards version

 -- Ivan E. Moore II <rkrusty@debian.org>  Mon, 08 Sep 2001 09:55:00 -0700

kdelibs (4:2.2.1-7) unstable; urgency=low

  * Not sure what happened but let's chmod 755 configure just to make
    sure it's got the proper perms before we execute it (Closes: #114552)
  * Various other upstream fixes

 -- Ivan E. Moore II <rkrusty@debian.org>  Fri, 05 Sep 2001 09:48:00 -0700

kdelibs (4:2.2.1-6) unstable; urgency=low

  * let this puppy build with automake 1.5
  * Various other upstream fixes

 -- Ivan E. Moore II <rkrusty@debian.org>  Tue, 02 Sep 2001 01:00:00 -0700

kdelibs (4:2.2.1-5) unstable; urgency=low

  * arts updates ... this should fix some of the arts related problems
  * crash fix for css
  * Various other upstream fixes
  * fix shlibs

 -- Ivan E. Moore II <rkrusty@debian.org>  Sun, 30 Sep 2001 01:00:00 -0700

kdelibs (4:2.2.1-4) unstable; urgency=low

  * Build-Conflict for nas-lib so that we can build properly

 -- Ivan E. Moore II <rkrusty@debian.org>  Mon, 24 Sep 2001 19:25:00 -0700

kdelibs (4:2.2.1-3) unstable; urgency=low

  * Post 2.2.1 quick fixes from upstream

 -- Ivan E. Moore II <rkrusty@debian.org>  Sun, 23 Sep 2001 18:42:00 -0700

kdelibs (4:2.2.1-2) unstable; urgency=low

  * Grrrr build on alpha!
  * Fix replaces (Closes: #112902)
  * Fix replacement (Closes: #112901)

 -- Ivan E. Moore II <rkrusty@debian.org>  Wed, 19 Sep 2001 16:27:00 -0700

kdelibs (4:2.2.1-1) unstable; urgency=low
 
  * New upstream version
  * Move artsc-config into -dev package (Closes: #109973)
  * Priority set to extra for -alsa packages
  * Do NOT build with Xinerama support due to the library being static
    and that whole PIC/non-PIC so thing. 
  * Fix ctrl+s (Closes: #110694)
  * Don't need to build with gcc3 for alpha anymore, however we still
    need to build with -O0
  * Provide undocumented links (Closes: #94280)
  * Fixes printing (Closes: #108301, #111388, #109930)
  * Fix shlibs for alsa packages (Closes: #111640, #110159)
  * Don't use objprelink anymore
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Fri, 07 Sep 2001 12:10:00 -0700

kdelibs (4:2.2.0-final-3) unstable; urgency=low
 
  * Sync with upstream
  * Fix a couple more deps/build-deps
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Wed, 22 Aug 2001 10:59:00 -0700

kdelibs (4:2.2.0-final-2) unstable; urgency=low
 
  * update build-depends for i386
  * Updated translation bits
  * sync with upstream

 -- Ivan E. Moore II <rkrusty@debian.org>  Sun, 19 Aug 2001 00:01:00 -0700

kdelibs (4:2.2.0-final-1) unstable; urgency=low
 
  * New upstream version 2.2
  * Build with objprelink for i386
  * update build-depends
  * do not build with xinerama support for hppa
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Sat, 04 Aug 2001 02:30:00 -0700

kdelibs (4:2.2.0-0.1beta1-2) unstable; urgency=low
 
  * synce with upstream
  * more https related fixes
  * Fix shlibs
  * Fix build issues with new libxml2-dev (Closes: #106766)
  * fix postrm of kdelibs-dev
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Fri, 27 Jul 2001 12:18:00 -0700

kdelibs (4:2.2.0-0.1beta1-1) unstable; urgency=low
 
  * synce with upstream
  * Drop optimization down for cross arch building
  * Move libkscreensaver.so over to -dev package where it belongs
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Wed, 25 Jul 2001 03:35:00 -0700

kdelibs (4:2.2.0-0beta1-6) unstable; urgency=low
 
  * synce with upstream
  * Update debhelper templates for alpha build bits
  * Update/Clean/Fix various dependency issues
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Sun, 08 Jul 2001 00:53:00 -0700

kdelibs (4:2.2.0-0beta1-5) unstable; urgency=low
 
  * synce with upstream
  * Add -mieee for Alpha builds
  * Add Recommends for aspell | ispell
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Sat, 07 Jul 2001 00:57:00 -0700

kdelibs (4:2.2.0-0beta1-4) unstable; urgency=low
 
  * synce with upstream
  * Remove old pam bit (Closes: #103493)
  * Fix http proxy support
  * More js fixes
  * Update standards version
  * Re-establish shlibs for libarts (Closes: #103655)

 -- Ivan E. Moore II <rkrusty@debian.org>  Wed, 04 Jul 2001 14:37:00 -0700

kdelibs (4:2.2.0-0beta1-3) unstable; urgency=low
 
  * Fix description (Closes: #103206)
  * Sync with upstream
  * Update build-depends
  * don't compress .bz2 files (Closes: #103262)
  * Use dpkg-divert instead of alternatives
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Mon, 02 Jul 2001 13:18:00 -0700

kdelibs (4:2.2.0-0beta1-2) unstable; urgency=low
 
  * Move over a cups file that didn't get into -cups package
  * Fix alsa-stamp build location
  * Change kdelibs3-cups depends on kdebase-libs to a recommends
  * More upstream fixes
  * Fix overwrites (Closes: #102857)

 -- Ivan E. Moore II <rkrusty@debian.org>  Fri, 29 Jun 2001 13:18:00 -0700

kdelibs (4:2.2.0-0beta1-1) unstable; urgency=low

  * Fix mips build (Closes: #102007)
  * Fix postinst stuff
  * New upstream CVS pull (post alpha2)
  * 2.2 beta 1
  * Remove old .shlibs files
  * Moving to -cvs{date] format for entering into experimental
  * This is a post alpha1 snapshot taken from the HEAD cvs branch.  
    date listed in the version number states when the initial pull was made
    however updates may and most likely will have taken place since that
    date.  Look at it as a >= cvs{date}
  * More arts cleanup
  * Adding artsbuilder to the suggests for libarts/libarts-alsa
  * Includes /tmp security fix
  * Updated Build-Depends/Depends for docbook stuff
  * More cleanup in debian/rules
  * move artsmessage into libarts package where it belongs
  * Update copyright information
  * more build cleanup...moving to debhelper version 3
  * Move dh_make files into kdelibs-dev package where they were supposed to be
  * Move more includes from kdelibs3 to kdelibs-dev ... new stuff I missed
  * More more cups bits out of kdelibs3 and into kdelibs3-cups
  * Reseting all lintian overrides
  * Add flex to build-depends as well as other deps
  * Add Debian menu items: cupsdconf
  * New packages: kdelibs3-cups
  * Moving kdoc and qt-doc into Build-Depends-Indep
  * Add Provides in for libarts-alsa/libkmid-alsa

 -- Ivan E. Moore II <rkrusty@debian.org>  Fri, 22 Jun 2001 06:30:00 -0700

kdelibs (4:2.1.1-7) unstable; urgency=low
 
  * Adding in a dh-make template tree under /usr/share/doc/kdelibs-dev/dh-make
    It is for a single binary package.  
  * Update README
  * Remove old undocumented.in bits since it's now pointless
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Mon, 09 Apr 2001 03:00:00 -0700

kdelibs (4:2.1.1-6) unstable; urgency=low
 
  * Sync with upstream.
    Locale updates
    More http fixes
  * Update build-depends to include real | virtual
  * Adding in a Packaging.txt document to kdelibs-dev the goal of which is to
    answer any question one might have about packaging a KDE app for Debian.
  * Fixing docs file for libarts

 -- Ivan E. Moore II <rkrusty@debian.org>  Mon, 09 Apr 2001 03:00:00 -0700

kdelibs (4:2.1.1-5) unstable; urgency=low
 
  * Sync with upstream.
    Several more http fixes
  * Removing old AA bits 
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Sat, 07 Apr 2001 04:33:00 -0700

kdelibs (4:2.1.1-4) unstable; urgency=low
 
  * Sync with upstream.
    Proxy Authentication fix...round 2.
  * Oh..and Happy Birthday to my wife Audra.  :)
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Wed, 04 Apr 2001 18:04:00 -0700

kdelibs (4:2.1.1-3) unstable; urgency=low
 
  * Sync with upstream.  
    Includes several khtml fixes
    Memory leak fix
    Proxy Authentication fix
  * Update pam file for kde, add more documentation in it and modify defaults
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Tue, 03 Apr 2001 10:18:00 -0700

kdelibs (4:2.1.1-2) unstable; urgency=low
 
  * 2 birds with 1 debuild.  
    Rebuild against older libc6
    Couple upstream fixes in kjs
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Mon, 19 Mar 2001 13:39:00 -0700

kdelibs (4:2.1.1-1) unstable; urgency=low
 
  * New upstream release
  * Dropping provides for kdelibs3-dev
  * don't allow POST data to dump to the debug output...
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Mon, 19 Mar 2001 10:26:00 -0700

kdelibs (4:2.1.0.1-5) unstable; urgency=low
 
  * Several fixes moving us towards 2.1.1
  * Several "don't crash when..." fixes
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Thu, 15 Mar 2001 10:26:00 -0700

kdelibs (4:2.1.0.1-4) unstable; urgency=low
 
  * More upstream fixes
  * Add in a pam_env statement to kde pam file.  This *should* fix problems
    people have had with kde not reading in their environment settings

 -- Ivan E. Moore II <rkrusty@debian.org>  Tue, 13 Mar 2001 16:24:00 -0700

kdelibs (4:2.1.0.1-3) unstable; urgency=low
 
  * More upstream fixes
    location object fixes for JavaScript
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Sun, 11 Mar 2001 02:43:00 -0700

kdelibs (4:2.1.0.1-2) unstable; urgency=low
 
  * More upstream fixes
    several khtml fixes especially with css
    more font fixes
    more session fixes..hopefully solving some of the reports
  * built with new kdoc
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Sun, 11 Mar 2001 02:43:00 -0700

kdelibs (4:2.1.0.1-1) unstable; urgency=low
 
  * Fix proxy authentication
  * Several other upstream fixes
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Thu, 08 Mar 2001 15:22:00 -0700

kdelibs (4:2.1.0-3) unstable; urgency=low
 
  * More upstream fixes
   Fix for URLs like "http://www.kde.org?query=bla" and "http://www.kde.org#ref"
   Fix for crashes opening http://www.radiocomercial.pt
   Fix for accessing cookies via javascript
   Fix for problem with filenames getting cut with umlauts
   Fix for problem with permission changes in properties dialog
   Don't unzip if the filename ends with .gz

 -- Ivan E. Moore II <rkrusty@debian.org>  Wed, 07 Mar 2001 01:54:00 -0700

kdelibs (4:2.1.0-2) unstable; urgency=low
 
  * Adding libbz2-dev and libsasl-dev into Build-Depends so that the ioslaves
    will be built on other archs.  Other archs probably didn't even notice. 
  * dcopserver freeze fix
  * Several other http fixes along with hopefully proper fixes to
    the url entry problems
  * Applying patch for Simplified Chinese support
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Sun, 04 Mar 2001 09:09:00 -0700

kdelibs (4:2.1.0-1) unstable; urgency=low
 
   * Re-pulling from CVS instead of using the official tarballs.  The
     official tarballs had problems which made it hard to handle patches
   * Version changed to 2.1.0 instead of 2.1-final as we are post 2.1-final
     and pre 2.1.1 which will be released in about a month.  This also allows
     for the source upload.
   * Modified ksgmltools configure.in.in to handle new location of sgml files
   * Updating build-depends

 -- Ivan E. Moore II <rkrusty@debian.org>  Tue, 27 Feb 2001 19:00:00 -0700

kdelibs (4:2.1-final-1) unstable; urgency=low
 
   * New upstream version
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Mon, 19 Feb 2001 02:31:00 -0700

kdelibs (4:2.1-beta2-0128-2) unstable; urgency=low
  
   * Adding in cleanup for kde doc link (Closes: #85653)
   * Moving from kdelibs3-dev to kdelibs-dev to conform to policy
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Sun, 18 Feb 2001 02:31:00 -0700

kdelibs (4:2.1-beta2-0128-1) unstable; urgency=low
 
   * Fixing artsdsp LD_PRELOAD problem (Closes: #83592)
   * Adding in replaces/conflicts for *ancient* non-existant kdelibs-nossl
     package. (Closes: #83607)
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Sun, 28 Jan 2001 01:30:00 -0700

kdelibs (4:2.1-beta2-3) unstable; urgency=low
 
   * Lots of little fixes
   * Fixing -dev dependencies...(allowing for -alsa packages)
   * fix shlibs for libkssl
   * Adding in a couple more build-depends - autoconf, libtool, gettext
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Thu, 25 Jan 2001 02:16:00 -0700

kdelibs (4:2.1-beta2-2) unstable; urgency=low
 
   * Fixes problem with version number not showing
   * Cleaning up depends for -dev packages
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Tue, 23 Jan 2001 12:36:00 -0700

kdelibs (4:2.1-beta2-1) unstable; urgency=low
 
   * New upstream beta
   * Fixing shlibs
   * Fixing confliction problem (Closes: #83083)
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Mon, 22 Jan 2001 06:00:00 -0700

kdelibs (4:2.1-20010118-1) unstable; urgency=low
 
   * more upstream bug fixes
     fix JS and onmouseovers
   * mimetype fixes (Closes: #76455)
   * fix build order for libarts-alsa
   * breaking out libkmid to avoid unnessary depends (Closes: #82901, #82924)
   * libarts and libkmid are Recommends of kdelibs3 and not dependant now

 -- Ivan E. Moore II <rkrusty@debian.org>  Thu, 18 Jan 2001 13:00:00 -0700

kdelibs (4:2.1-20010115-1) unstable; urgency=low
 
   * more upstream bug fixes
   * a ton of documentation updates
   * move away from suidregister
   * Fix postinst ldconfig calls.  (Closes: #82246)
   * Adding a libarts-alsa package
   * Upstream fixes for libltdl includes (Closes: #82359)
   * Fixes problem with bug report email address
   * JavaScript/Java happy again...happy happy joy joy happy happy joy joy...
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Mon, 15 Jan 2001 01:00:00 -0700

kdelibs (4:2.1-20010109-1) unstable; urgency=low
 
   * more upstream bug fixes
   * More dependency/build-depend fixes
   * This was definatly built with the same dpkg that kdelibs-crypto was so
     I'm assuming this just squeaked by dinstall...so just to be sure...
   * Java should work again
   * Fix kdesud security by
     a) Not creating the socket under /tmp
     b) Verifying afterwards that it was our own socket
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Tue, 09 Jan 2001 10:00:00 -0700

kdelibs (4:2.1-20010106-1) unstable; urgency=low
 
   * more upstream bug fixes
   * Contains both the symlink/sniff attack fix for kdesu
   * Moving conflicts for task-* packages to kdebase
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Sat, 06 Jan 2001 15:00:00 -0700

kdelibs (4:2.1-20010101-1) unstable; urgency=low
 
   * more upstream bug fixes
   * Applying new i18n patch
   * Adding in conflicts for old task- packages (Closes: #81003)

 -- Ivan E. Moore II <rkrusty@debian.org>  Mon, 01 Jan 2001 03:30:00 -0700

kdelibs (4:2.1-20001218-2) unstable; urgency=low
 
  * more upstream bug fixes
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Wed, 20 Dec 2000 12:22:00 -0700

kdelibs (4:2.1-20001218-1) unstable; urgency=low
 
  * more upstream bug fixes
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Mon, 18 Dec 2000 22:44:00 -0700

kdelibs (4:2.1-20001216-1) unstable; urgency=low
 
  * more upstream bug fixes
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Sat, 16 Dec 2000 18:44:00 -0700

kdelibs (4:2.1-20001214-1) unstable; urgency=low

  * new kdelibs-doc rules thanks to Gordon Sadler w/ tweaks to allow building
    when kdelibs is not already installed... (Closes: #79583)
  * more upstream bug fixes

 -- Ivan E. Moore II <rkrusty@debian.org>  Thu, 14 Dec 2000 13:35:00 -0700

kdelibs (4:2.1-20001213-1) unstable; urgency=low
 
  * New upstream beta
  * Breaking out aRts pieces into their own packages so that others don't
    need to install kdelibs in it's entirety to use arts.
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Wed, 13 Dec 2000 14:22:00 -0700

kdelibs (4:2.0-final-5) unstable; urgency=low
 
  * More upstream fixes
  * More dependency work
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Sun, 12 Nov 2000 18:15:00 -0700

kdelibs (4:2.0-final-4) unstable; urgency=low
 
  * More upstream fixes
  * Applying new i18n patch
  * More dependency work
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Wed, 08 Nov 2000 17:30:00 -0700
                                                                                
kdelibs (4:2.0-final-3.1) unstable; urgency=low
 
  * Applying i18n patch (Closes: #75830)
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Sun, 05 Nov 2000 23:00:00 -0700

kdelibs (4:2.0-final-3) unstable; urgency=low
 
  * More upstream fixes
  * Fixing (again) suid bit on artswrapper
  * Changing bug reporting to point to bugs.debian.org - hopefully I don't 
    totally hose the bug reporting pieces...
  * Building against X4 libs
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Sat, 04 Nov 2000 01:30:00 -0700
                                                                                
kdelibs (4:2.0-final-2.2) unstable; urgency=low
 
  * Fixing dependency I hosed 
  * Fixing suid bit on artswrapper
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Fri, 03 Nov 2000 00:30:00 -0700
                                                                                
kdelibs (4:2.0-final-2.1) unstable; urgency=low
 
  * kdelibs-doc once again contains it's kdoc output
  * kstyles upstream fixes
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Thu, 02 Nov 2000 21:46:00 -0700

kdelibs (4:2.0-final-2) unstable; urgency=low

  * more upstream fixes

 -- Ivan E. Moore II <rkrusty@debian.org>  Thu, 02 Nov 2000 18:00:00 -0700

kdelibs (4:2.0-final-0) unstable; urgency=low
 
  * KDE 2.0
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Mon, 23 Oct 2000 00:00:00 -0700
                                                                                
kdelibs (4:2.0-20001016-0) unstable; urgency=low

  * more upstream fixes

 -- Ivan E. Moore II <rkrusty@debian.org>  Mon, 16 Oct 2000 15:00:00 -0700

kdelibs (4:2.0-20001015-0) unstable; urgency=low
 
  * more upstream fixes
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Sun, 15 Oct 2000 20:05:00 -0700
                                                                                
kdelibs (4:2.0-20001013-0) unstable; urgency=low
 
  * more upstream fixes
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Fri, 13 Oct 2000 23:45:00 -0700
                                                                                
kdelibs (4:2.0-20001011-0) unstable; urgency=low
 
  * more upstream fixes
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Wed, 11 Oct 2000 03:45:00 -0700
                                                                                
kdelibs (4:2.0-20001009-3) unstable; urgency=low
 
  * more upstream fixes
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Tue, 10 Oct 2000 17:00:00 -0700
                                                                                
kdelibs (4:2.0-20001009-2) unstable; urgency=low
 
  * more upstream fixes
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Tue, 10 Oct 2000 00:00:00 -0700
                                                                                
kdelibs (4:2.0-20001009-0) unstable; urgency=low
 
  * KDE 2.0 RC2
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Mon, 09 Oct 2000 08:00:00 -0700
                                                                                
kdelibs (4:2.0-20001006-4) unstable; urgency=low
 
  * Fixing startup crashes
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Sun, 08 Oct 2000 09:00:00 -0700
                                                                                
kdelibs (4:2.0-20001006-3) unstable; urgency=low
 
  * More upstream fixes
  * Fixing preinst applnk problem (Closes: #74195, #74218)
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Sun, 08 Oct 2000 03:00:00 -0700
                                                                                
kdelibs (4:2.0-20001006-2) unstable; urgency=low
 
  * More crypto fixes
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Fri, 06 Oct 2000 15:30:00 -0700
                                                                                
kdelibs (4:2.0-20001006-0) unstable; urgency=low
   
  * More upstream fixes
  * Getting rid of kdelibs-nossl and now providing a kdelibs-crypto package

 -- Ivan E. Moore II <rkrusty@debian.org>  Fri, 06 Oct 2000 01:30:00 -0700
                                                                                
kdelibs-nossl (4:2.0-20001004-2) unstable; urgency=low
 
  * More upstream fixes
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Thu, 05 Oct 2000 15:00:00 -0700
                                                                                
kdelibs-nossl (4:2.0-20001004-0) unstable; urgency=low
 
  * More upstream fixes
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Wed, 04 Oct 2000 23:30:00 -0700
                                                                                
kdelibs (4:2.0-20001002-0) unstable; urgency=low
 
  * KDE 2.0 RC1
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Mon, 02 Oct 2000 01:30:00 -0700
                                                                                
kdelibs (4:2.0-20000927-0) unstable; urgency=low
 
  * More upstream fixes
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Wed, 27 Sep 2000 23:30:00 -0700

kdelibs (4:2.0-20000925-0) unstable; urgency=low

  * More upstream fixes

 -- Ivan E. Moore II <rkrusty@debian.org>  Mon, 25 Sep 2000 15:30:00 -0700

kdelibs (4:2.0-20000923-0) unstable; urgency=low
 
  * More upstream fixes
  * Fixing build issues
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Sat, 23 Sep 2000 23:00:00 -0700

kdelibs (4:2.0-20000920-0) unstable; urgency=low
 
  * More upstream fixes 
  * Fixing build issues 
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Wed, 20 Sep 2000 23:00:00 -0700

kdelibs (4:2.0-20000918-0) unstable; urgency=low
 
  * More upstream fixes (-beta5)
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Mon, 18 Sep 2000 17:00:00 -0700
                                                                                
kdelibs (4:2.0-20000910-0) unstable; urgency=low

  * More upstream fixes

 -- Ivan E. Moore II <rkrusty@debian.org>  Sun, 10 Sep 2000 23:00:00 -0700

kdelibs (4:2.0-20000909-0) unstable; urgency=low
  
  * More package cleanup
  * More upstream fixes
  * All lintian errors are bogus currently.  k*.so files are modules and
    I can only assume that lintian just doesn't know how to handle them.
    the extra license's are needed for KDE and specially setup for KDE

 -- Ivan E. Moore II <rkrusty@debian.org>  Sat, 09 Sep 2000 02:00:00 -0700

kdelibs (4:2.0-20000907-0.1) unstable; urgency=low
 
  * Fixing issue with requiring -dev package
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Thu, 07 Sep 2000 21:00:00 -0700

kdelibs-nossl (4:2.0-20000907-0) unstable; urgency=low

  * More Upstream fixes
  * Initial Debian upload

 -- Ivan E. Moore II <rkrusty@debian.org>  Thu, 07 Sep 2000 01:00:00 -0700

kdelibs (4:2.0-20000905-0.1) unstable; urgency=low

  * More Upstream fixes

 -- Ivan E. Moore II <rkrusty@debian.org>  Tue, 05 Sep 2000 18:30:00 -0700

kdelibs (4:2.0-20000905-0) unstable; urgency=low

  * More Upstream fixes
  * Adding in a version number for libqt2.2 dependency

 -- Ivan E. Moore II <rkrusty@debian.org>  Tue, 05 Sep 2000 00:30:00 -0700

kdelibs (4:2.0-20000901-0) unstable; urgency=low

  * More Upstream fixes

 -- Ivan E. Moore II <rkrusty@debian.org>  Fri, 01 Sep 2000 00:02:00 -0700

kdelibs (4:2.0-20000829-0) unstable; urgency=low
 
  * More Upstream fixes
  * Committing most package updates to CVS tree
  * No GPL/QT conflictions

 -- Ivan E. Moore II <rkrusty@debian.org>  Tue, 29 Aug 2000 21:15:00 -0700

kdelibs (4:2.0-20000825-0) experimental; urgency=low
 
  * Upstream fixes
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Fri, 25 Aug 2000 20:00:00 -0700
                                                                                
kdelibs (4:2.0-20000824-1.0) experimental; urgency=low
 
  * KDE 2.0 beta 4

 -- Ivan E. Moore II <rkrusty@debian.org>  Thu, 24 Aug 2000 18:30:00 -0700
                                                                                
kdelibs (4:2.0-20000821-1.0) experimental; urgency=low

  * New upstream fixes
  * Adding config link check into postinst script

 -- Ivan E. Moore II <rkrusty@debian.org>  Mon, 21 Aug 2000 22:45:00 -0700

kdelibs (4:2.0-20000820-1.0) experimental; urgency=low
 
  * New upstream fixes
  * No requirement for -dev package now
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Sun, 20 Aug 2000 07:45:00 -0700
                                                                                
kdelibs (4:2.0-20000816-1.0) experimental; urgency=low

  * Major hacking to fix tons of issues
  * New upstream beta version

 -- Ivan E. Moore II <rkrusty@debian.org>  Wed, 16 Aug 2000 22:30:00 -0700

kdelibs (4:2.0-20000814-1.0) experimental; urgency=low

  * More CVS updates
  * Tweaks to applnk items

 -- Ivan E. Moore II <rkrusty@debian.org>  Mon, 14 Aug 2000 02:30:00 -0700

kdelibs (4:2.0-20000810-1.0) experimental; urgency=low
 
  * More CVS updates
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Thu, 10 Aug 2000 02:30:00 -0700

kdelibs-cvs (4:2.0-20000517-1.0) experimental; urgency=low
 
  * More CVS updates
  * Turning on debugging
  * Fixes to preinst script
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Wed, 17 May 2000 22:30:00 -0700

kdelibs-cvs (4:2.0-20000512-1.2) experimental; urgency=low

  * New upstream beta version
  * Turning on debugging

 -- Ivan E. Moore II <rkrusty@debian.org>  Fri, 12 May 2000 20:30:00 -0700

kdelibs-cvs (4:2.0-20000403-1.0) experimental; urgency=low
 
  * More upstream CVS updates
  * Adding in depends for kde-qt-addon
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Mon, 03 Apr 2000 06:30:00 -0700

kdelibs-cvs (4:2.0-20000306-1.1) experimental; urgency=low
 
  * More upstream CVS updates
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Mon, 06 Mar 2000 22:45:00 -0700

kdelibs-cvs (4:2.0-20000302-1.0) experimental; urgency=low
 
  * More upstream CVS updates
 
 -- Ivan E. Moore II <rkrusty@debian.org>  Thu, 02 Mar 2000 22:00:00 -0700
                                                                
kdelibs-cvs (4:2.0-20000229-1.0) experimental; urgency=low

  * More upstream CVS updates
  * Adding in build-depends
  * Making changes to ust libqt2.1

 -- Ivan E. Moore II <rkrusty@debian.org>  Tue, 29 Feb 2000 22:00:00 -0700

kdelibs-cvs (4:2.0-20000221-1.1) experimental; urgency=low

  * Rebuild with updated CVS files and new cleanups

 -- Ivan E. Moore II <rkrusty@debian.org>  Tue, 22 Feb 2000 18:00:00 -0700

kdelibs-cvs (4:2.0-20000221-1.0) experimental; urgency=low

  * More upstream changes
  * Adding in a shlibs.local file to clear up self-dependency
  * Adding in missing man pages
  * Seperating out doc files again

 -- Ivan E. Moore II <rkrusty@debian.org>  Mon, 21 Feb 2000 22:00:00 -0700

kdelibs-cvs (4:2.0-19991117-1.0) experimental; urgency=low

  * More upstream changes

 -- Ivan E. Moore II <rkrusty@debian.org>  Wed, 17 Nov 1999 05:30:00 -0400

kdelibs-cvs (4:2.0-19991020-1.0) experimental; urgency=low

  * More upstream changes

 -- Ivan E. Moore II <rkrusty@debian.org>  Wed, 20 Oct 1999 06:30:00 -0400

kdelibs-cvs (4:2.0-19991013-1.0) experimental; urgency=low

  * More upstream changes
  * More cleanup
  * Removing conffiles for compile time creaction of it
  * Adding in pre* scripts
  * Commenting out dh_link piece to see if we still need it

 -- Ivan E. Moore II <rkrusty@debian.org>  Wed, 13 Oct 1999 23:30:00 -0400

kdelibs-cvs (4:2.0-19991001-0.1) experimental; urgency=low

  * new upstream CVS version

 -- Ivan E. Moore II <rkrusty@debian.org>  Fri, 01 Oct 1999 14:30:00 -0400

kdelibs-cvs (4:2.0-19990921-0.1) experimental; urgency=low

  * new upstream CVS version
  * Fixing postinst script and one minor issue with rules to bring everything
    up to Debian policy.

 -- Ivan E. Moore II <rkrusty@debian.org>  Tue, 21 Sep 1999 11:15:00 -0400

kdelibs-cvs (4:2.0-19990912-0.1) experimental; urgency=low

  * new upstream CVS version
  * Using 0.x numbers for my updates which is mainly to keep up with CVS

 -- Ivan E. Moore II <rkrusty@debian.org>  Mon, 13 Sep 1999 14:30:39 -0400

kdelibs-cvs (4:2.0-19990903-1.0) experimental; urgency=low

  * new upstream version

 -- Stephan Kulow <coolo@kde.org>  Fri,  3 Sep 1999 21:01:39 +0200

kdelibs-cvs (4:2.0-19990823-1.0) experimental; urgency=low

  * More CVS updates
  * Adding in a process to the postinst to verify that /usr/doc/kde/HTML/default
    is a link and not a directory
  * Removing ldconfig from postrm

 -- Ivan E. Moore II <rkrusty@debian.org>  Mon, 23 Aug 1999 07:30:28 -0400

kdelibs-cvs (4:2.0-19990822-1.0) experimental; urgency=low

  * Adding a link from /etc/kde2 to /usr/share/config until the proper
    solution is made.
  * More CVS updates

 -- Ivan E. Moore II <rkrusty@debian.org>  Sun, 22 Aug 1999 05:00:28 -0400

kdelibs-cvs (4:2.0-19990820-1.1) experimental; urgency=low

  * New upstream CVS version

 -- Ivan E. Moore II <rkrusty@debian.org>  Sat, 21 Aug 1999 00:30:28 -0400

kdelibs-cvs (4:2.0-19990820-1) experimental; urgency=low

  * New upstream CVS version
  * Moving into /usr from /opt

 -- Ivan E. Moore II <rkrusty@debian.org>  Fri, 20 Aug 1999 11:00:28 -0400

kdelibs-cvs (4:2.0-19990720-1) experimental; urgency=low

  * New upstream CVS version

 -- Ivan E. Moore II <rkrusty@debian.org>  Tue, 20 Jul 1999 07:45:28 -0400

kdelibs-cvs (4:2.0-19990626-2) experimental; urgency=low

  * back to using the paths out of debianrules with some dependency trick
    in rules. No more hardcoded paths there
  * don't use kderc file, but add the paths that are known to be 
    nonstandard in rules. And install into $kde_confdir/system.kdeglobals
    /etc/kderc may be used for the noncvs version later. For now it asks
    for trouble in my eyes :)
  * some changes in debianrules to make it more flexible too
  * don't compile with --enable-debug, but with --disable-debug - this does
    more than removing -g, don't know who made this policy within debian
  * use --enable-final as it makes thinks smaller, faster and better anyway ;)
  
 -- Stephan Kulow <coolo@kde.org>  Sat, 26 Jun 1999 14:33:05 +0200

kdelibs-cvs (4:2.0-19990626-1) experimental; urgency=low

  * New upstream CVS version
  * Fixing the /etc/kderc file (had it there, just didn't install it)

 -- Ivan E. Moore II <rkrusty@debian.org>  Sat, 26 Jun 1999 07:00:28 -0400

kdelibs-cvs (4:2.0-19990624-1) experimental; urgency=low

  * New upstream CVS version
  * Adding in a /etc/kderc file

 -- Ivan E. Moore II <rkrusty@debian.org>  Fri, 25 Jun 1999 23:50:28 -0400

kdelibs-cvs (4:2.0-19990620-1) experimental; urgency=low

  * New upstream CVS version
  * Migrating to /etc/kde from /etc/kde2

 -- Ivan E. Moore II <rkrusty@debian.org>  Sun, 20 Jun 1999 11:00:28 -0400

kdelibs-cvs (4:2.0-19990601-1) experimental; urgency=low

  * New upstream CVS version

 -- Ivan E. Moore II <rkrusty@debian.org>  Tue, 01 Jun 1999 01:00:28 -0400

kdelibs-cvs (4:2.0-19990524-1) experimental; urgency=low

  * migrating back to / from /opt
  * migrating in new build fixes from -stable bringing package more in
    line with current Debian dist

 -- Ivan E. Moore II <rkrusty@debian.org>  Mon, 24 May 1999 07:00:28 -0400

kdelibs-cvs (4:2.0-19990314-1) experimental; urgency=low

  * moving the -cvs from version to package name

 -- Stephan Kulow <coolo@kde.org>  Sun, 14 Mar 1999 21:12:28 +0100

kdelibs (4:2.0-19990312-cvs-3) experimental; urgency=low

  * use INSTALL_DATA with -p

 -- Stephan Kulow <coolo@kde.org>  Sat, 13 Mar 1999 23:13:09 +0100

kdelibs (4:2.0-19990312-cvs-2) experimental; urgency=low

  * use DESTDIR

 -- Stephan Kulow <coolo@kde.org>  Sat, 13 Mar 1999 23:11:16 +0100

kdelibs (4:2.0-19990312-cvs-1) experimental; urgency=low

  * new upstream version with corba support libraries integrated

 -- Stephan Kulow <coolo@kde.org>  Fri, 12 Mar 1999 23:31:27 +0100

kdelibs (4:2.0-19990309-1) experimental; urgency=low

  * new upstream version out of CVS (many translation updates and some
    security fixes
  * install it into /opt/kde2pre for now (unstripped)

 -- Stephan Kulow <coolo@kde.org>  Sat,  6 Mar 1999 18:03:04 +0100

kdelibs (4:1.1-19990217-1) unstable; urgency=low

  * new upstream version

 -- Stephan Kulow <coolo@kde.org>  Wed, 17 Feb 1999 19:09:42 +0100

kdelibs (4:1.1-19990207-2) unstable; urgency=low

  * fixed a bug with the jpeglib version

 -- Stephan Kulow <coolo@kde.org>  Tue,  9 Feb 1999 09:31:40 +0100

kdelibs (4:1.1-19990207-1) unstable; urgency=low

  * new upstream version 1.1 and new epoche

 -- Stephan Kulow <coolo@kde.org>  Sun,  7 Feb 1999 12:12:58 +0100

kdelibs (2:980710-1.0-1) unstable; urgency=low

  * new upstream version 1.0

 -- Stephan Kulow <coolo@kde.org>  Sun, 12 Jul 1998 10:12:19 +0200

kdelibs (2:980419-b4-1) unstable; urgency=low

  * new upstream version Beta4

 -- Stephan Kulow <coolo@kde.org>  Sun, 19 Apr 1998 13:58:13 +0200

kdelibs (2:980312-4) frozen; urgency=low

  * touch the .so.0 files to satisfy lintian
  * moved all unnecessary files out of -dev
  * moved the symbolic link default->en to kdelibs, where it belongs
  * fixed the shlibs format
  * new qt1g release (1.33)

 -- Stephan Kulow <coolo@kde.org>  Tue, 31 Mar 1998 13:00:00 +0100   

kdelibs (2:980312-3) frozen; urgency=low

  * new g++ and libstdc++ release (egcs-2.90.26-1)

 -- Stephan Kulow <coolo@kde.org>  Tue, 24 Mar 1998 14:45:16 +0100

kdelibs (2:980312-2) unstable; urgency=low

  * use debhelper now

 -- Stephan Kulow <coolo@kde.org>  Sun, 15 Mar 1998 21:28:42 +0100

kdelibs (2:980312-1) experimental; urgency=low

  * changed the files file
  * New upstream release

 -- Stephan Kulow <coolo@kde.org>  Thu, 12 Mar 1998 22:15:37 +0100

kdelibs (2:980310-3) experimental; urgency=low

  * removed the preinst script
  * use absolute paths instead of the one with 
  * changed directory for libraries

 -- Stephan Kulow <coolo@kde.org>  Wed, 11 Mar 1998 20:11:50 +0100

kdelibs (2:980310-2) experimental; urgency=low

  * removed the file correction part from kderules

 -- Stephan Kulow <coolo@kde.org>  Mon,  9 Mar 1998 23:29:50 +0100

kdelibs (2:980310-1) experimental; urgency=low

  * New upstream release

 -- Stephan Kulow <coolo@kde.org>  Mon,  9 Mar 1998 22:47:16 +0100

kdelibs (980303-1) experimental; urgency=low

  * New upstream release

 -- Stephan Kulow <coolo@kde.org>  Wed, 4 Mar 1998 10:43:42 +0100

kdelibs (980228-1) experimental; urgency=low

  * added *.moc to the clean target
  * New upstream release

 -- Stephan Kulow <coolo@kde.org>  Sat, 28 Feb 1998 21:05:58 +0100

kdelibs (980227-2) experimental; urgency=low

  * removed the REENTRANT flag. KDE don't uses threds
  * updated libmediatool

 -- Stephan Kulow <coolo@kde.org>  Sat, 28 Feb 1998 01:22:56 +0100

kdelibs (980227-1) experimental; urgency=low

  * changed the name of libjpeg-dev
  * renamed preint to preinst (typo while moving last time)
  * added fields in control file (most taken from AJ's versions)
  * New upstream release

 -- Stephan Kulow <coolo@kde.org>  Fri, 27 Feb 1998 20:20:24 +0100

kdelibs (980225-1) experimental; urgency=low

  * New upstream release

 -- Stephan Kulow <coolo@kde.org>  Wed, 25 Dec 1998 19:23:12 +0100

kdelibs (980224-1) experimental; urgency=low

  * New upstream release

 -- Stephan Kulow <coolo@kde.org>  Wed, 25 Dec 1998 11:25:23 +0100

kdelibs (1:Beta2-2.1) experimental; urgency=low

  * New upstream release

 -- Andreas Jellinghaus <aj@debian.org>  Fri,  5 Dec 1997 21:15:52 +0100

kdelibs (1:Beta2-2) unstable; urgency=low

  * removed virtual package names.

 -- Andreas Jellinghaus <aj@debian.org>  Sun, 30 Nov 1997 16:59:27 +0100

kdelibs (1:Beta2-1) unstable; urgency=low

  * New upstream release

 -- Andreas Jellinghaus <aj@debian.org>  Sun, 23 Nov 1997 14:04:20 +0100

kdelibs (1:Beta1.2-2) unstable; urgency=low

  * new compile cycle with bugfixes.

 -- Andreas Jellinghaus <aj@debian.org>  Sun,  9 Nov 1997 19:43:46 +0100

kdelibs (1:Beta1.2-1) unstable; urgency=low

  * New upstream release

 -- Andreas Jellinghaus <aj@debian.org>  Mon, 27 Oct 1997 11:16:24 +0100

kdelibs (1:Beta1.1-1) unstable; urgency=low

  * New upstream release

 -- Andreas Jellinghaus <aj@debian.org>  Mon, 20 Oct 1997 12:33:52 +0200

kdelibs (971019-1) unstable; urgency=low

  * New upstream release
  * Fixed all paths to match debian setup
  * Fixed locale path

 -- Andreas Jellinghaus <aj@debian.org>  Sun, 19 Oct 1997 12:05:32 +0200

kdelibs (971013-1) unstable; urgency=low

  * New upstream release

 -- Andreas Jellinghaus <aj@debian.org>  Mon, 13 Oct 1997 08:18:16 +0200

kdelibs (971011-1) unstable; urgency=low

  * New upstream release

 -- Andreas Jellinghaus <aj@debian.org>  Sun, 12 Oct 1997 12:08:40 +0200

kdelibs (971009-1) unstable; urgency=low

  * New upstream release

 -- Andreas Jellinghaus <aj@debian.org>  Thu,  9 Oct 1997 10:47:00 +0200

kdelibs (971008-1) unstable; urgency=low

  * New upstream release

 -- Andreas Jellinghaus <aj@debian.org>  Wed,  8 Oct 1997 10:03:09 +0200

kdelibs (971006-2) unstable; urgency=low

  * daily recompile of everything.

 -- Andreas Jellinghaus <aj@debian.org>  Tue,  7 Oct 1997 10:36:58 +0200

kdelibs (971006-1) unstable; urgency=low

  * New upstream release

 -- Andreas Jellinghaus <aj@debian.org>  Mon,  6 Oct 1997 09:19:17 +0200

kdelibs (971005-1) unstable; urgency=low

  * New upstream release

 -- Andreas Jellinghaus <aj@debian.org>  Sun,  5 Oct 1997 17:27:13 +0200

kdelibs (971003-1) unstable; urgency=low

  * New upstream release

 -- Andreas Jellinghaus <aj@debian.org>  Fri,  3 Oct 1997 08:16:14 +0200

kdelibs (971002-1) unstable; urgency=low

  * New upstream release

 -- Andreas Jellinghaus <aj@debian.org>  Thu,  2 Oct 1997 08:47:49 +0200

kdelibs (970930-1) unstable; urgency=low

  * New upstream release

 -- Andreas Jellinghaus <aj@debian.org>  Tue, 30 Sep 1997 11:39:38 +0200

kdelibs (970929-1) unstable; urgency=low

  * New upstream release

 -- Andreas Jellinghaus <aj@debian.org>  Mon, 29 Sep 1997 09:36:11 +0200

kdelibs (970925-2) unstable; urgency=low

  * daily recompile of everything.

 -- Andreas Jellinghaus <aj@debian.org>  Fri, 26 Sep 1997 08:42:24 +0200

kdelibs (970925-1) unstable; urgency=low

  * New upstream release

 -- Andreas Jellinghaus <aj@debian.org>  Thu, 25 Sep 1997 08:04:45 +0200

kdelibs (970924-2) unstable; urgency=low

  * new use kderules.
  * daily recompile of everything.

 -- Andreas Jellinghaus <aj@debian.org>  Wed, 24 Sep 1997 10:21:17 +0200

kdelibs (970924-1) unstable; urgency=low

  * New upstream release

 -- Andreas Jellinghaus <aj@debian.org>  Wed, 24 Sep 1997 08:28:48 +0200

kdelibs (970923-1) unstable; urgency=low

  * New upstream release

 -- Andreas Jellinghaus <aj@debian.org>  Tue, 23 Sep 1997 08:36:52 +0200

kdelibs (970922-1) unstable; urgency=low

  * New upstream release

 -- Andreas Jellinghaus <aj@debian.org>  Mon, 22 Sep 1997 09:48:41 +0200

kdelibs (970921-1) unstable; urgency=low

  * New upstream release

 -- Andreas Jellinghaus <aj@debian.org>  Sun, 21 Sep 1997 13:45:48 +0200

kdelibs (970920-1) unstable; urgency=low

  * Initial Release.

 -- Andreas Jellinghaus <aj@debian.org>  Sat, 20 Sep 1997 09:59:48 +0200