~ubuntu-branches/ubuntu/precise/kde-runtime/precise-updates

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

  * SECURITY UPDATE: Insufficient Input Validation By IO Slaves and
    Webkit Part
   - Add upstream_CVE-2014-8600.diff to escape protocol twice: once
     for i18n, and once for HTML
   - https://www.kde.org/info/security/advisory-20141113-1.txt
   - CVE-2014-8600
   - LP: #1393479

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 20 Nov 2014 15:46:42 +0100

kde-runtime (4:4.8.5-0ubuntu0.2) precise; urgency=low

  * Add kubuntu_samba_password.diff from upstream fix LP: #1071453
    Dolphin doesn't store samba share password

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 11 Nov 2013 09:32:03 +0000

kde-runtime (4:4.8.5-0ubuntu0.1) precise-proposed; urgency=low

  * New upstream bugfix release (LP: #1047417)

 -- Scott Kitterman <scott@kitterman.com>  Fri, 07 Sep 2012 16:40:05 +0200

kde-runtime (4:4.8.4-0ubuntu0.1) precise-proposed; urgency=low

  * New upstream release (LP: #1007798)
    - add kcm_ssl docs to kde-runtime-data.install

 -- Philip Muškovac <yofel@kubuntu.org>  Sat, 23 Jun 2012 22:33:49 +0200

kde-runtime (4:4.8.3-0ubuntu0.1) precise-proposed; urgency=low

  * New upstream release (LP: #1002336)
    - New upstream symbols for libnepomukdatamanagement4

 -- Rohan Garg <rohangarg@kubuntu.org>  Wed, 02 May 2012 17:33:19 +0530

kde-runtime (4:4.8.2-0ubuntu1) precise; urgency=low

  * New upstream release

 -- Philip Muškovac <yofel@kubuntu.org>  Fri, 30 Mar 2012 21:36:32 +0200

kde-runtime (4:4.8.1-0ubuntu1) precise; urgency=low

  [ Philip Muskovac ]
  * New upstream release
  * Add a kde-runtime-dev package with the nepomuk headers 
    (LP: #928009, #947498)
  * Add separate packages for libnepomukdatamanagement4 and libnepomuksync4
    and add symbol files
  * libnepomuksync4 breaks/replaces kde-runtime << 4:4.8.1~
  * kde-runtime-dev breaks/replaces kde-runtime << 4:4.8.1~
  * Refresh kde-runtime-data.install

  [ Felix Geyer ]
  * Drop broken /usr/bin/trash4 symlink.
  * Switch kde-runtime-dev to arch:any and make it depend on libnepomuksync4 and
    libnepomukdatamanagement4 instead of kde-runtime.
  * Move /usr/bin/nepomuk-simpleresource-rcgen from kde-runtime to
    kde-runtime-dev and add appropriate dependencies to kde-runtime-dev.
  * kde-runtime: drop unused lintian override shlib-without-versioned-soname
    libnepomukdatamanagement.so.

 -- Felix Geyer <debfx@ubuntu.com>  Wed, 07 Mar 2012 17:38:39 +0100

kde-runtime (4:4.8.0-0ubuntu1) precise; urgency=low

  * New upstream release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 19 Jan 2012 12:01:21 +0000

kde-runtime (4:4.7.97-0ubuntu1) precise; urgency=low

  * New upstream RC release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 04 Jan 2012 13:14:56 +0000

kde-runtime (4:4.7.95-0ubuntu1) precise; urgency=low

  * New upstream release candidate
    - disable kubuntu_knetattach_use_sftp.diff, doesn't apply
    - adapt kubuntu_strigi_ram_detection.diff for upstream changes
    - update kde-runtime.install, kde-runtime-data.install and not-installed
  * drop icoutils from suggests, it's recommended

 -- Philip Muškovac <yofel@kubuntu.org>  Sat, 24 Dec 2011 00:16:36 +0100

kde-runtime (4:4.7.90-0ubuntu1) precise; urgency=low

  * New upstream beta release
  * Add build-dep on libqca

 -- Jonathan Riddell <jriddell@ubuntu.com>  Tue, 13 Dec 2011 11:53:26 +0000

kde-runtime (4:4.7.3-0ubuntu3) UNRELEASED; urgency=low

  * Remove unused patch kubuntu_discard_actions_when_using_ayatana.diff
    equivalent functionality has been upstream for a while now

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 24 Nov 2011 14:30:54 +0000

kde-runtime (4:4.7.3-0ubuntu2) precise; urgency=low

  * New upstream release
  * Merge from Debian Unstable, remaining changes:
    - add 30-nepomuk-inotify-limit.conf
    - add kdebase-runtime.[postinst,prerm] for update-alternatives kdesu
    - debian/control:
      - helpcenter4 no recommend on htdig
    - debian/patches:
      - Don't add:
        - kde4_information_menu.diff
    - debian/kde-runtime-data.install:
      - change etc/xdg/menus/kde4-information.menu to
        etc/xdg/menus/kde-information.menu
      - change usr/share/desktop-directories/kde4-information.directory to
        usr/share/desktop-directories/kde-information.directory
      - Don't install
        usr/share/kde4/apps/kio_desktop/DesktopLinks/Home.desktop
      - Don't install usr/share/kde4/apps/kio_desktop/directory.trash
    - debian/kde-runtime.install
      - install usr/lib/kde4/libexec/kdesu to
        /usr/lib/kde4/libexec/kdesu-distrib/
      - install 30-nepomuk-inotify-limit.conf to /etc/sysctl.d
    - kde-config-phonon-xine commented out in debian/control
    - kde-runtime-data.install: add D-Bus Interface XMLs for Playground
      Nepomuk
    - Remove xine rules in debian/rules
    - Remove xine build-dep in debian/control
    - Remove libqzeitgeist-dev build-dep, not yet in main

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 23 Nov 2011 19:30:25 +0000

kde-runtime (4:4.7.2-0r3) UNRELEASED; urgency=low

  * New upstream release.

  [ Lisandro Damián Nicanor Pérez Meyer ]
  * Remove patch dont_show_netattach_outside_kde.diff, it has been merged
    upstream.
  * Bump build dependencies:
    - shared-desktop-ontologies to >= 0.7.
    - kdelibs5-dev to >= 4:4.7.

  [ Daniele E. Domenichelli ]
  * Bump build dependency on kde-sc-dev-latest to 4:4.7.2.
  * Update dependencies:
    - Add libqtwebkit-dev.
    - Add libqzeitgeist-dev.
    - Bump libsoprano-dev to 2.6.50.
  * Update installed files.

  [ José Manuel Santamaría Lema ]
  * Rename source package from kdebase-runtime to kde-runtime in order
    to match upstream naming.
  * Rename the following binary packages:
    - kdebase-runtime -> kde-runtime
    - kdebase-runtime-data -> kde-runtime-data
  * Add the following dummy packages (which depend on kde-runtime-*):
    - kdebase-runtime
    - kdebase-runtime-dbg
  * Update Vcs-* fields.
  * Update lintian overrides.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Mon, 22 Aug 2011 19:53:35 -0300

kdebase-runtime (4:4.6.5-1) unstable; urgency=low

  * New upstream release.

  [ José Manuel Santamaría Lema ]
  * Bump build dependency on kde-sc-dev-latest to 4:4.6.5.
  * Update lintian overrides.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Mon, 18 Jul 2011 21:53:55 +0300

kdebase-runtime (4:4.6.4-1) unstable; urgency=low

  * New upstream release.

  [ Modestas Vainius ]
  * Fix typo in debian/control: s/COnflicts/Conflicts/. Thanks to Jonathan
    Thomas.

  [ Pino Toscano ]
  * Add finger as suggestion of kdebase-runtime (for the finger kioslave).
  * Change libjpeg62-dev build-dependency to libjpeg-dev.

  [ José Manuel Santamaría Lema ]
  * Bump build dependency on kde-sc-dev-latest to 4:4.6.4.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Thu, 23 Jun 2011 13:05:46 +0300

kde-runtime (4:4.7.3-0ubuntu1) precise; urgency=low

  [ Jonathan Kolberg ]
  * New upstream release

  [ Felix Geyer ]
  * Disable the kde-config-phonon-xine package as we don't support the phonon
    xine backend anymore
    - Drop libxine-dev from build-deps
    - Disable the xine dh addon in debian/rules
  * Build-depend on libjpeg-dev instead of libjpeg62-dev.

 -- Jonathan Kolberg <bulldog98@kubuntu-de.org>  Thu, 10 Nov 2011 15:27:26 +0100

kde-runtime (4:4.7.2-0ubuntu1) oneiric-proposed; urgency=low

  * New upstream release (LP: #872506)
  * Drop patches that are applied upstream:
    - 0001-Connect-to-the-right-object-jobView-instead-of-this.patch
    - 0002-Fix-jobs-some-times-showing-empty.patch

 -- Rohan Garg <rohangarg@kubuntu.org>  Thu, 13 Oct 2011 12:19:44 +0200

kde-runtime (4:4.7.1-0ubuntu5) oneiric; urgency=low

  * Drop all kde-active packages and patches as double-building with different
    patchsets doesn't seem to work on the archive builders.

 -- Felix Geyer <debfx-pkg@fobos.de>  Fri, 16 Sep 2011 14:57:48 +0200

kde-runtime (4:4.7.1-0ubuntu4) oneiric; urgency=low

  * Make a full copy of the source and apply active patches to that, build
    active patches in that tree, then copy the results to the main build so
    patching the source multiple times can not collide

 -- Scott Kitterman <scott@kitterman.com>  Sat, 10 Sep 2011 13:33:33 -0400

kde-runtime (4:4.7.1-0ubuntu3) oneiric; urgency=low

  * Build without --parallel since patch/unpatch sequences are stepping on
    each other

 -- Scott Kitterman <scott@kitterman.com>  Fri, 09 Sep 2011 20:19:28 -0400

kde-runtime (4:4.7.1-0ubuntu2) oneiric; urgency=low

  * Unpatch and repatch the extra active patches in each rule we need them in
    so patches stay in sync
  * Add post-4.7.1 cherrypicks from upstream (added for both series and
    series-active):
    - debian/patches/0001-Connect-to-the-right-object-jobView-instead-of-this.patch
    - debian/patches/0002-Fix-jobs-some-times-showing-empty.patch

 -- Scott Kitterman <scott@kitterman.com>  Fri, 09 Sep 2011 15:32:34 -0400

kde-runtime (4:4.7.1-0ubuntu1) oneiric; urgency=low

  [ Rodrigo Belem ]
  * Add the patches kubuntu-mobile-10-fix-the-signal-signature.patch and
    kubuntu-mobile-09-Add-title-to-activity-resources.patch needed by the
    latest plasma-active snapshot.

  [ Rohan Garg ]
  * New upstream release

  [ Felix Geyer ]
  * Fix kde-runtime and kde-runtime-data install files to not install
    plasma-active stuff.

  [ Michał Zając ]
  * Fixed issue with wrong patches being applied when calling dh_auto_install
    and debug info stripping issues

  [ Jonathan Kolberg ]
  * Update that should fix the installabilty of kde-runtime-active

 -- Felix Geyer <debfx-pkg@fobos.de>  Thu, 08 Sep 2011 21:27:15 +0200

kde-runtime (4:4.7.0a-0ubuntu2) oneiric; urgency=low

  * Added plasma-active patches
  * Added activitymanager files to install files
  * Added a patch series for the plasma-active patches
  * Added the packages kde-runtime-active, kde-runtime-data-active,
   and plasma-scriptengine-javascript-active that will hold the binaries for
   built with the plasma-active patches.
  * Build the source twice to generate the packages with the plasma-active
    patches.

 -- Rodrigo Belem <rbelem@ubuntu.com>  Wed, 24 Aug 2011 20:52:26 -0400

kde-runtime (4:4.7.0a-0ubuntu1) oneiric; urgency=low

  [ Romain Perier ]
  * Remove dont_show_netattach_outside_kde.diff, applied on upstream
  * Refresh kubuntu_nodisplay_knetattach.diff

  [ Philip Muškovac ]
  * New upstream release
  * Bump various breaks/replaces to catch the package version from the
    kubuntu-ppa.

 -- Philip Muškovac <yofel@kubuntu.org>  Tue, 26 Jul 2011 22:28:56 +0200

kde-runtime (4:4.6.90-0ubuntu1) oneiric; urgency=low

  [ Felix Geyer ]
  * Drop sound-theme-freedesktop dependency as it has been added to
    libcanberra0.
  * Make kdebase-runtime-dbg a transitional package for kde-runtime-dbg

  [ Harald Sitter ]
  * New upstream release
  * Refresh:
    - kubuntu_oxygenify_knetattach_icon.diff
    - kubuntu_phonon_forget_option.diff
  * Build depend on libqtwebkit-dev

  [ Philip Muškovac ]
  * Make kdebase-runtime a transitional package for kde-runtime
  * Fix Vcs links for new location
  * kde-runtime-data breaks/replaces nepomukcontroller

 -- Philip Muškovac <yofel@kubuntu.org>  Sat, 09 Jul 2011 10:23:48 +0200

kdebase-runtime (4:4.6.3-1ubuntu3) oneiric; urgency=low

  * Make kdebase-runtime recommend on libcanberra-pulse | libcanberra-gstreamer
    - Much like Phonon, Canberra has backends, so kdebase-runtime needs to
      recommend those. Only recommend because they are only necessary
      for speaker setup testing at this time.
  * Make kdebase-runtime depend on sound-theme-freedesktop
    - The sound theme spec that is implemented by canberra demands this to
      be around as general fallback (much like hicolor for icons).
      Pending a fix for LP: #790608, we depend on it here meanwhile.
  * LP: #790627

 -- Harald Sitter <apachelogger@ubuntu.com>  Tue, 31 May 2011 13:14:17 +0200

kdebase-runtime (4:4.6.3-1ubuntu2) oneiric; urgency=low

  * Mark kdebase-runtime as replacing/breaking pre-merge versions of
    plasma-scriptengine-javascript
  * Mark kdebase-runtime-data as replacing/breaking pre-merge versions of
    kdebase-runtime

 -- Jonathan Thomas <echidnaman@kubuntu.org>  Mon, 30 May 2011 11:56:04 -0400

kdebase-runtime (4:4.6.3-1ubuntu1) oneiric; urgency=low

  [ Jonathan Thomas ]
  * Merge from Debian Unstable, remaining changes:
    - add 30-nepomuk-inotify-limit.conf
    - add kdebase-runtime.[postinst,prerm] for update-alternatives kdesu
    - debian/control:
      - helpcenter4 no recommend on htdig
    - debian/patches:
      - Don't add:
        - kde4_information_menu.diff
    - debian/kdebase-runtime-data.install:
      - change etc/xdg/menus/kde4-information.menu to
        etc/xdg/menus/kde-information.menu
      - change usr/share/desktop-directories/kde4-information.directory to
        usr/share/desktop-directories/kde-information.directory
      - Don't install
        usr/share/kde4/apps/kio_desktop/DesktopLinks/Home.desktop
      - Don't install usr/share/kde4/apps/kio_desktop/directory.trash
    - debian/kdebase-runtime.install
      - install usr/lib/kde4/libexec/kdesu to
        /usr/lib/kde4/libexec/kdesu-distrib/
      - install 30-nepomuk-inotify-limit.conf to /etc/sysctl.d
    - kde-config-phonon-xine replaces/conflicts kcm-phonon-xine
    - kdebase-runtime-data.install: add D-Bus Interface XMLs for Playground
      Nepomuk

  [ Philip Muškovac ]
  * Update Vcs links as the branch is owned by kubuntu-packagers now

  [ Felix Geyer ]
  * Remove sequence number from kubuntu patches.

 -- Felix Geyer <debfx-pkg@fobos.de>  Mon, 30 May 2011 11:41:36 +0200

kdebase-runtime (4:4.6.3-1) unstable; urgency=low

  * New upstream release.

  [ José Manuel Santamaría Lema ]
  * Bump build dependency on kde-sc-dev-latest to 4:4.6.3.
  * Bump Standards-Version to 3.9.2; no changes needed.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Thu, 26 May 2011 03:11:17 +0300

kdebase-runtime (4:4.6.2-1) experimental; urgency=low

  * New upstream release:
    - fixes webdav ioslave wrong deletion and renaming of folders
      (Closes: #593833)
    - plasmapkg doesn't translate package types anymore (Closes: #573806)
    - there is no more Nepomuk indexing icon (Closes: #583085)

  [ Modestas Vainius ]
  * Point debian/control Vcs fields to the new Git repository.
  * Switch debian/rules engine to dhmk based qt-kde-team/2/*.
  * Remove sequence number from debian/patches/*.
  * Drop ksvgtopng4.diff patch: no longer needed as KDE 3 is gone. Add
    conflicts with kdelibs4-dev and kdelibs-dbg, fix install file.
  * Disable testsuite.
  * Remove a link to common-licenses/BSD from debian/copyright.
  * No longer do custom phonon setup.
  * kdebase-runtime: move Depends, Recommends, Suggests above Replaces.
  * Make kdebase-runtime depend on oxygen-icon-theme 4.6.
  * kdebase-runtime-data breaks plasma-widget-networkmanagement earlier than
    0.1+git20110318.941cde9-1+.
  * Add kdebase-workspace-dbg (<< 4:4.6) to kdebase-runtime-dbg
    Replaces/Breaks due to moved kded_networkstatus.
  * Add kdebase-workspace-bin (<< 4:4.6) to kdebase-runtime Replaces/Breaks
    due to moved kded_networkstatus.
  * Bump debhelper build dependency to 7.3.16.
  * Clean up Replaces/Breaks which predate squeeze and can be cleaned up.

  [ George Kiagiadakis ]
  * Change my email address in uploaders.
  * Refresh patches.
  * Update installed files.
  * Add Breaks/Replaces:
    - kdebase-runtime-data replaces kdelibs5-data << 4:4.5.0
      due to moved kcmremotewidgets data files.
    - kdebase-runtime replaces kdelibs5-plugins << 4:4.5.0 and
      kdelibs5 << 4:4.4.0 due to moved kcmremotewidgetshelper
      and kdontchangethehostname executables.
    - kdebase-runtime-dbg replaces kdelibs5-dbg << 4:4.5.0
      due to the moved executables mentioned above.
  * Bump build depedencies versions: kdelibs5-dev to version
    4:4.6 and libsoprano-dev to version 2.4.63.
  * Remove unused build dependencies:
    - libclucene-dev
    - libxcb1-dev
    - libqt4-opengl-dev
  * Re-wrap khelpcenter4's extended description to fix lintian warning.
  * Cleanup unused lintian overrides.

  [ José Manuel Santamaría Lema ]
  * Bump S-V to 3.9.1:
    - update Breaks/Replaces/Conflicts to conform to new policy.
  * Add Breaks/Replaces:
    - kdebase-runtime-data replaces plasma-widget-networkmanagement <<
      0.1+git20110422.810bc16-1+ because they both install
      /usr/share/kde4/apps/desktoptheme/default/icons/network.svgz
    - kdebase-runtime-data replaces kdebase-workspace-bin (<< 4:4.5.95)
      because of /usr/share/kde4/services/kded/networkstatus.desktop
    - kdebase-runtime(-data) replaces plasma-netbook (<< 4:4.5.95)
      because of plasma_containment_newspaper.{so,desktop}
  * Update installed files.
  * Call dh_xine in rules, kde-config-phonon-xine now depends on
    ${xine-x:Depends} (Closes: #575120)
  * Bump build dependency on libphonon-dev to 4:4.6.0really4.4.3
  * Bump build dependency on kde-sc-dev-latest to 4:4.6.2
  * Remove stating articles from short descriptions.
  * Update lintian overrides.
  * Add myself to Uploaders.

  [ Pino Toscano ]
  * Add build dependencies:
    - libntrack-qt4-dev
    - libcanberra-dev
    - libnm-util-dev
    - network-manager-dev
  * Use wildcard architectures:
    - !kfreebsd-i386 !kfreebsd-amd64 !hurd-i386 -> linux-any
  * Drop the hal recommend from kdebase-runtime, as now libsolid has the right
    depends/recommends.
  * Add ${misc:Depends} for kdebase-runtime-dbg.
  * Tighten the libsoprano-dev, libexiv2-dev, shared-desktop-ontologies, and
    libpulse-dev build-dendencies to the versions required upstream.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Wed, 27 Apr 2011 12:23:39 +0300

kdebase-runtime (4:4.6.2-0ubuntu1) natty; urgency=low

  * New upstream release
    - Update kde-sc-dev-latest version

 -- Christian Mangold <neversfelde@ubuntu.com>  Sat, 02 Apr 2011 19:14:35 +0000

kdebase-runtime (4:4.6.1-0ubuntu1) natty; urgency=low

  * New upstream release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 28 Feb 2011 16:16:40 +0000

kdebase-runtime (4:4.6.0-0ubuntu2) UNRELEASED; urgency=low

  * Update kde-sc-dev-latest version
  * Remove kubuntu_85_language_selector.diff now language selector is a
    separate kcontrol module

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 23 Feb 2011 12:17:33 +0000

kdebase-runtime (4:4.6.0-0ubuntu1) natty; urgency=low

  [ Jonathan Riddell ]
  * New upstream release

  [ Felix Geyer ]
  * Prefer phonon-backend-gstreamer over phonon-backend-xine.
    - Make kdebase-runtime depend on phonon-backend-gstreamer | phonon-backend.
  * Refresh and re-enable kubuntu_85_language_selector.diff. (LP: #683435)

 -- Felix Geyer <debfx-pkg@fobos.de>  Mon, 24 Jan 2011 12:45:27 +0100

kdebase-runtime (4:4.5.95-0ubuntu1) natty; urgency=low

  * New upstream release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 05 Jan 2011 13:50:11 +0000

kdebase-runtime (4:4.5.90-0ubuntu1) natty; urgency=low

  * New upstream RC release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 22 Dec 2010 15:23:10 +0000

kdebase-runtime (4:4.5.85-0ubuntu1) natty; urgency=low

  * New upstream beta release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Tue, 07 Dec 2010 11:41:36 +0000

kdebase-runtime (4:4.5.80-0ubuntu4) natty; urgency=low

  * Recommend udisks and upower instead of hal now that they are supported
    upstream

 -- Scott Kitterman <scott@kitterman.com>  Tue, 30 Nov 2010 21:41:43 -0500

kdebase-runtime (4:4.5.80-0ubuntu3) natty; urgency=low

  * kdebase-runtime-dbg replaces kdebase-workspace-dbg (<< 4:4.5.80)
    (Networkstatus moved from workspace to runtime) (LP: #683132)

 -- Philip Muskovac <yofel@gmx.net>  Wed, 01 Dec 2010 00:14:18 +0100

kdebase-runtime (4:4.5.80-0ubuntu2) natty; urgency=low

  * Add kdebase-runtime replaces plasma-netbook (<< 4:4.5.80) (Newspaper
    containment moved from workspace to runtime) (LP: #683002)
  * Drop temporary change to reduce required phonon version now that we have
    Phonon 4.4.3

 -- Scott Kitterman <scott@kitterman.com>  Tue, 30 Nov 2010 08:55:14 -0500

kdebase-runtime (4:4.5.80-0ubuntu1) natty; urgency=low

  * New upstream release
  * Disable kubuntu_85_language_selector.diff FIXME needs sorted
  * Add build-deps on libpulse, libcanberra and libntrack-qt4
  * Don't install .h files for unversioned libraries
  * kdebase-runtime replaces old kdebase-workspace-bin due to moved files

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 24 Nov 2010 11:07:10 +0000

kdebase-runtime (4:4.5.3-0ubuntu1) natty; urgency=low

  * New upstream release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 04 Nov 2010 14:45:54 +0000

kdebase-runtime (4:4.5.2-0ubuntu2) natty; urgency=low

  * Upload without broken autogenerated patch

 -- Jonathan Riddell <jriddell@ubuntu.com>  Fri, 22 Oct 2010 16:58:02 +0100

kdebase-runtime (4:4.5.2-0ubuntu1) natty; urgency=low

  [ Alessandro Ghersi ]
  * Merge with Debian git remaining changes:
    - add 30-nepomuk-inotify-limit.conf
    - add kdebase-runtime.[postinst,prerm] for update-alternatives kdesu
    - debian/control:
      - helpcenter4 no recommend on htdig
    - debian/patches:
      - Don't add:
        - 01_kde4_information_menu.diff
        - 02_ksvgtopng4.diff
    - debian/kdebase-runtime-data.install:
      - change etc/xdg/menus/kde4-information.menu to
        etc/xdg/menus/kde-information.menu
      - change usr/share/desktop-directories/kde4-information.directory to
        usr/share/desktop-directories/kde-information.directory
      - Don't install
        usr/share/kde4/apps/kio_desktop/DesktopLinks/Home.desktop
      - Don't install usr/share/kde4/apps/kio_desktop/directory.trash
    - debian/kdebase-runtime.install
      - install usr/lib/kde4/libexec/kdesu to
        /usr/lib/kde4/libexec/kdesu-distrib/
    - kde-config-phonon-xine replaces/conflicts kcm-phonon-xine
    - kdebase-runtime-data.install: add D-Bus Interface XMLs for Playground
      Nepomuk
    - Build against kdelibs5-dev 4.5.2-0ubuntu1 for libkutils4 transition
  * Update KUBUNTU_DEBIAN_DIFFERENCES

  [ Jonathan Riddell ]
  * New upstream release
  * Remove kubuntu_92_remove_kmail2_mapping_drkonqi.diff now upstream
  * Remove
    kubuntu_93_nepomuk_services_run_with_low_cpu_and_io_scheduling.diff
    now upstream

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Sat, 16 Oct 2010 05:16:54 +0200

kdebase-runtime (4:4.5.1-0ubuntu3.1) maverick-proposed; urgency=low

  * Add kubuntu_94_rupee.diff to change default currency to new
    rupee symbol. (LP: #656196)

 -- Rohan Garg <rohangarg@kubuntu.org>  Thu, 07 Oct 2010 17:37:42 +0530

kdebase-runtime (4:4.5.1-0ubuntu3) maverick; urgency=low

  * Fix Lucid -> Maverick upgrade (LP: #652055)
    - kdebase-runtime-dbg replaces kdelibs5-dbg (<< 4:4.5.0)

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Sun, 03 Oct 2010 02:40:59 +0200

kdebase-runtime (4:4.5.1-0ubuntu2) maverick; urgency=low

  [ Alessandro Ghersi ]
  * Add kubuntu_92_remove_kmail2_mapping_drkonqi.diff
    we don't ship kmail2 in maverick
    (http://bugs.kde.org/show_bug.cgi?id=250553)
  * Add kubuntu_93_nepomuk_services_run_with_low_cpu_and_io_scheduling.diff
    make all Nepomuk services run with low CPU and IO scheduling priority,
    from upstream.

  [ Felix Geyer ]
  * kdebase-runtime replaces kdebase-runtime-data << 4:4.4.80. (LP: #631151)

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Tue, 14 Sep 2010 17:47:46 +0200

kdebase-runtime (4:4.5.1-0ubuntu1) maverick; urgency=low

  * New upstream release.
  * Drop kubuntu_08_network_ioslave_lockup.diff, applied upstream.
  * Update install files.

 -- Felix Geyer <debfx-pkg@fobos.de>  Mon, 30 Aug 2010 16:58:47 +0200

kdebase-runtime (4:4.5.1-0r1) UNRELEASED; urgency=low

  * New upstream release.

  [ Modestas Vainius ]
  * Point debian/control Vcs fields to the new Git repository.

  [ George Kiagiadakis ]
  * Change my email address in uploaders.
  * Refresh patches.
  * Update installed files.
  * Add replaces:
    - kdebase-runtime-data replaces kdelibs5-data << 4:4.5.0
      due to moved kcmremotewidgets data files.
    - kdebase-runtime replaces kdelibs5-plugins << 4:4.5.0 and
      kdelibs5 << 4:4.4.0 due to moved kcmremotewidgetshelper
      and kdontchangethehostname executables.
    - kdebase-runtime-dbg replaces kdelibs5-dbg << 4:4.5.0
      due to the moved executables mentioned above.
  * Bump build depedencies versions: kdelibs5-dev to version
    4:4.5 and libsoprano-dev to version 2.4.63.
  * Remove unused build dependencies:
    - libclucene-dev
    - libxcb1-dev
    - libqt4-opengl-dev
    - libpulse-dev
  * Re-wrap khelpcenter4's extended description to fix lintian warning.
  * Cleanup unused lintian overrides.

  [ José Manuel Santamaría Lema ]
  * Add replaces:
    - kdebase-runtime-data replaces plasma-widget-networkmanagement <=
      0.1~svn1175124-1 because they both install
      /usr/share/kde4/apps/desktoptheme/default/icons/network.svgz

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Fri, 30 Jul 2010 14:51:46 +0300

kdebase-runtime (4:4.5.0b-0ubuntu2) maverick; urgency=low

  * kdebase-runtime-data replaces old kdelibs5-dev

 -- Jonathan Riddell <jriddell@ubuntu.com>  Tue, 10 Aug 2010 14:42:14 +0100

kdebase-runtime (4:4.5.0b-0ubuntu1) maverick; urgency=low

  * New tar from upstream
  * Add kubuntu_08_network_ioslave_lockup.diff advised by upstream to
    stop network kioslave locking kded
    http://websvn.kde.org/?revision=1160391&view=revision

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 04 Aug 2010 23:20:01 +0100

kdebase-runtime (4:4.5.0-0ubuntu3) UNRELEASED; urgency=low

  * Add debian/30-nepomuk-inotify-limit.conf installed with kdebase-
    runtime to up the inotify limit

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 04 Aug 2010 19:00:30 +0100

kdebase-runtime (4:4.5.0-0ubuntu2) maverick; urgency=low

  * Fix build by not trying to instal files that are not there.

 -- Harald Sitter <apachelogger@ubuntu.com>  Mon, 02 Aug 2010 23:00:20 +0200

kdebase-runtime (4:4.5.0-0ubuntu1) maverick; urgency=low

  [ Jonathan Thomas ]
  * Add kubuntu_91_phonon_forget_option.diff from openSUSE to allow users with
    roaming home directories to tell Phonon to always forget about old hw

  [ Jonathan Riddell ]
  * Update kdebase-runtime-data.install for new search providers

  [ Harald Sitter ]
  * New upstream release
    - Refresh kubuntu_89_strigi_ram_detection.diff

 -- Harald Sitter <apachelogger@ubuntu.com>  Fri, 30 Jul 2010 12:07:04 +0200

kdebase-runtime (4:4.4.92-0ubuntu2) maverick; urgency=low

  * Add kubuntu_90_search_engines.diff to add baidu and bing to search
    engines

 -- Jonathan Riddell <jriddell@ubuntu.com>  Fri, 23 Jul 2010 14:11:00 +0100

kdebase-runtime (4:4.4.92-0ubuntu1) maverick; urgency=low

  * New upstream RC release
    - Bump kde-sc-dev-latest to 4.4.92

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Thu, 08 Jul 2010 04:36:20 +0200

kdebase-runtime (4:4.4.90-0ubuntu1) maverick; urgency=low

  [ Michał Zając ]
  * New upstream beta release
    - Bump on build-depends
    - Commented out kubuntu_88_nepomuksearch_uds-url.diff in
    debian/patches/series

  [ Jonathan Thomas ]
  * Make kdebase-runtime provide notification-daemon since it implements
    the FD.o notification spec

 -- Michał Zając <michal.zajac@gmail.com>  Thu, 24 Jun 2010 22:47:02 +0200

kdebase-runtime (4:4.4.85-0ubuntu1) maverick; urgency=low

  * New upstream beta release
    - Bump build-depends
    - kdebase-runtime-data replaces kdelibs5-data << 4:4.4.85
    - kdebase-runtime replaces kdelibs5-plugin << 4:4.4.85

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Mon, 07 Jun 2010 19:20:38 +0200

kdebase-runtime (4:4.4.80-0ubuntu2) maverick; urgency=low

  * kde-config-phonon-xine conflict/replace kcm-phonon-xine,
    kcm-phonon-xine is gone in the last merge

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Tue, 01 Jun 2010 02:45:07 +0200

kdebase-runtime (4:4.4.80-0ubuntu1) maverick; urgency=low

  * New upstream beta release:
    - Bump build-depend versions
    - Refresh knetattach patches for upstream indentation changes
    - Drop the virtuosoconverter patch, no longer needed
    - Adapt kubuntu_89_strigi_ram_detection.diff to new upstream changes
    - Update various .install files
  * Switch to source format 3.0:
    - Bump debhelper build-depend version to 7.3.16
    - Remove README.source

 -- Jonathan Thomas <echidnaman@kubuntu.org>  Mon, 24 May 2010 14:32:13 -0400

kdebase-runtime (4:4.4.5-1) unstable; urgency=low

  * New upstream release.

  [ Sune Vuorela ]
  * KNetattach is in kde4 libexec dir, so the desktop file should not be
    available outside kde, else it can't be found. (Closes: #582844)
  * Finally move to my debian.org address.
  * Remove the 04_attica_0.1.4_compat.diff. applied upstreams.
  * Update some descriptions

  [ Modestas Vainius ]
  * Bump kde-sc-dev-latest build dependency to 4:4.4.5.

 -- Modestas Vainius <modax@debian.org>  Sun, 04 Jul 2010 19:00:50 +0300

kdebase-runtime (4:4.4.4-1) unstable; urgency=low

  * New upstream release.

  [ Modestas Vainius ]
  * Bump pkg-kde-tools build dependency to (>= 0.9) for HTML_INSTALL_DIR
    switch and 3.0 (quilt) source format support.
  * Switch to 3.0 (quilt) source package format and original tar.bz2
    tarballs.
  * Replace usr/share/doc/kde4 references with usr/share/doc/kde.
  * Drop quilt from Build-Depends, no longer needed for 3.0 (quilt).
  * Remove debian/README.source. Patch support is part of source format
    now.
  * Bump kde-sc-dev-latest build dependency to 4:4.4.4.
  * Add 04_attica_0.1.4_compat.diff patch which fixes FTBFS with attica >=
    0.1.4 (Closes: #583019). Bump build dependency on libattica-dev to 0.1.4.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Tue, 01 Jun 2010 01:15:13 +0300

kdebase-runtime (4:4.4.3-1ubuntu1) maverick; urgency=low

  [ Michał Zając ]
  * Merge with Debian
   - Docs path remains unchanged
   - Added debian/patches/03_disable_usr_lib_install_rpath.diff and synced
     debian/patches/25_khelp_htdig.diff
   - Added man/*
   - Renamed kcm-phonon-xine.install to kde-config-phonon-xine.install
   - Copied over *.litian.overrides and khelpcenter.{dirs, links}
   - Copied over debian/rules
   - Synced Replaces & Conflicts
   - Removed transitional packages.

  [ Jonathan Thomas ]
  * Drop kubuntu_90_strigi_notification_polish.diff for KDE 4.4.3, upstream
    had something else in mind
  * Drop kubuntu_91_set_US_time_format.diff, upstream in 4.4.3

 -- Michał Zając <michal.zajac@gmail.com>  Fri, 21 May 2010 22:28:59 +0200

kdebase-runtime (4:4.4.3-1) unstable; urgency=low

  * New upstream release.

  [ Modestas Vainius ]
  * Improve grammar in the description of the plasma-scriptentine-javascript
    package (Closes: #576711).
  * Bump kde-sc-dev-latest build dependency to 4.4.3.
  * Release KDE SC 4.4.3 to unstable.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Sat, 01 May 2010 23:37:51 +0300

kdebase-runtime (4:4.4.2-1) experimental; urgency=low

  * New upstream release:
    - DrKonqi no longer reports kscreenlocker crashes to the wrong component at
      bugs.kde.org. (Closes: #575718)
    - Soprano no longer crashes on nested analysis results. (Closes: #571721)

  [ Modestas Vainius ]
  * Change my email address to modax@debian.org in Uploaders field.
  * Fix Vcs-Browser URL.
  * libkdeinit4_*.so have been moved to private directory (Closes: #553117).
  * Make kdebase-runtime depend on kdelibs5-plugins.
  * Bump Standards-Version to 3.8.4: no changes needed.
  * Make kdebase-runtime depend on plasma-scriptengine-javascript (addresses
    aseigo complaints in his blog).
  * Bump oxygen-icon-theme dependency to 4:4.4.
  * Make /usr/share/services/khelpcenter.desktop symlink relative.
  * Exclude attica_kde.so from kdebase-runtime shlibs.
  * Move knetattach.desktop to kdebase-runtime "near" its executable.
    (Closes: #517769)
  * Add lintian-overrides for kdebase-runtime and khelpcenter4.
  * Add ${perl:Depends} and ${misc:Depends} as needed.
  * Add cmake to Build-Depends.
  * Add kde-sc-dev-latest (>= 4:4.4.2) to Build-Depends.
  * Bump pkg-kde-tools build dependency to 0.6.4.
  * Make kdebase-runtime recommend virtuoso-minimal.

  [ Pino Toscano ]
  * Drop pmount recommend, no more used now. (Closes: #557424)
  * kdebase-runtime does not use kdepimlibs, so kdebase-runtime-dbg does not
    need to depend on kdepimlibs-dbg, but just kdelibs5-dbg. (Closes: #466167)
  * "javascript" -> "JavaScript" in plasma-scriptengine-javascript
    descriptions. (Closes: #567166)
  * Drop kfreebsd-gnu and hurd alternatives for hal recommend, as hal is
    available on these architectures now.
  * Add icoutils suggest to kdebase-runtime, as it contains a thumbnailer for
    icons in Windows executables which uses wrestool and icotool.

  [ George Kiagiadakis ]
  * Drop backported patch 00_1034807_4.4_backport_rtldglobal.diff.
  * Refresh patch 25_khelp_htdig.diff.
  * Add patch 03_disable_usr_lib_install_rpath.diff to disable
    setting RPATH to /usr/lib for the phonon platform plugin.
  * Bump kdelibs5-dev build dependency to >= 4:4.4.
  * Bump libsoprano-dev build dependency to >= 2.3.70.
  * Bump libphonon-dev build dependency to >= 4:4.6.0really4.3.80.
  * Add build-dependencies to libattica-dev, libssh-dev, libexiv2-dev.
  * Drop libknotificationitem-1-dev build-dependency.
  * Update installed files.
  * Add build and runtime dependency to shared-desktop-ontologies.

  [ Jonathan Thomas ]
  * Split the KCM for the Phonon Xine backend into a separate package from the
    kdebase-runtime binary package to prevent all of KDE from depending on Xine.
    (Closes: #559748)

  [ Ryan Kavanagh ]
  * Update and apply Martin Olsen's patch to add a manpage for
    /usr/bin/kioclient (Closes: #493054).

  [ Ferdinand Thommes ]
  * updated copyright

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Mon, 05 Apr 2010 16:21:50 +0300

kdebase-runtime (4:4.4.2-0ubuntu4) lucid; urgency=low

  * In kubuntu_89_ram_detection.diff, add a "First start=true" key to the
    nepomukserver.kcfg. It is imperative to set the first start key here, as
    doing it in kubuntu-default-settings led to the code preferring the k-d-s
    setting over the default-when-key-doesn't-exist value set in the code. I
    also included a few logic fixes, and this plus kubuntu-default-settings
    10.04ubuntu23 should fix this bug. (LP: #564049)

 -- Jonathan Thomas <echidnaman@kubuntu.org>  Fri, 16 Apr 2010 10:43:54 -0400

kdebase-runtime (4:4.4.2-0ubuntu3) lucid; urgency=low

  * Rebuild for sneaky libssh ABI breakage. The ftp:/ ioslave worked, but
    the sftp:/ ioslave didn't...

 -- Jonathan Thomas <echidnaman@kubuntu.org>  Tue, 13 Apr 2010 20:19:15 -0400

kdebase-runtime (4:4.4.2-0ubuntu2) lucid; urgency=low

  [ Brandon Holtsclaw ]
  * Removed searchhandlers from being installed to hide the search tab in
    khelpcenter4 (htdig broken/not in main) Closes (LP: #19767)

  [ Jonathan Thomas ]
  * Backport kubuntu_91_set_US_time_format.diff from upstream's 4.4 branch to
    properly set a timezone for US users.

  [ Scott Kitterman ]
  * Update debian/copyright from Debian (Thanks to Ferdinand Thommes)

 -- Scott Kitterman <scott@kitterman.com>  Sun, 11 Apr 2010 23:39:59 -0400

kdebase-runtime (4:4.4.2-0ubuntu1) lucid; urgency=low

  [ Alessandro Ghersi ]
  * New upstream release
    - Bump build-depends
    - Update kdebase-runtime-data.install
    - Add final newline to kubuntu_87_nepomuk_virtuosoconverter.diff

  [ Jonathan Riddell ]
  * Drop recommends on virtuosoconverter, virtuoso 5 was never used in
    the main archive and virtuosoconverter is in universe

  [ Jonathan Thomas ]
  * Add kubuntu_89_strigi_ram_detection.diff. This will make Nepomuk disable
    strigi on systems with less than or equal to 1GB of RAM, on its first
    run. Users will still be able to enable it for themselves if they wish.
  * Add kubuntu_90_strigi_notification_polish.diff. This silences the
    extraneous indexing notifications, except for the low disk space one.

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 29 Mar 2010 18:14:36 +0100

kdebase-runtime (4:4.4.1-0ubuntu3) lucid; urgency=low

  * kdebase-runtime needs to recommend kubuntu-debug-installer, so that
    drkonqi can automatically install debug packages (LP: #514557)

 -- Harald Sitter <apachelogger@ubuntu.com>  Sun, 07 Mar 2010 21:29:23 +0100

kdebase-runtime (4:4.4.1-0ubuntu2) lucid; urgency=low

  * Add nepomuk dbus interface files to kdebase-runtime-data, needed for
    compiling nepomuk playground parts

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 04 Mar 2010 19:13:45 +0000

kdebase-runtime (4:4.4.1-0ubuntu1) lucid; urgency=low

  [ Alessandro Ghersi ]
  * New upstream release
    - Bump build-depends
    - Update kdebase-runtime-data.install

  [ Achim Bohnet ]
  * add patch: kubuntu_88_nepomuksearch_uds-url.diff: fixes
    URLs handed over to programs when clicking on files returned
    from a nepomuksearch. Now file:///... instead of
    nepomuksearch:SearchThis/weird-cryptic-string is used. See:
    also http://reviewboard.kde.org/r/3069/
    Closes LP: #529021

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Sat, 27 Feb 2010 01:30:54 +0100

kdebase-runtime (4:4.4.0-0ubuntu3) lucid; urgency=low

  * Make kdebase-runtime depend on shared-desktop-ontologies

 -- Jonathan Riddell <jriddell@ubuntu.com>  Tue, 16 Feb 2010 12:07:34 +0000

kdebase-runtime (4:4.4.0-0ubuntu2) lucid; urgency=low

  * Make kdebase-runtime depend on plasma-scriptengine-javascript

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 11 Feb 2010 22:57:30 +0000

kdebase-runtime (4:4.4.0-0ubuntu1) lucid; urgency=low

  [ Vikram Dhillon ]
  * Added kubuntu_87_nepomuk_virtuosoconverter.diff nepomuk-virtuosoconverter patch

  [ Michał Zając ]
  * New upstream release
   - Bump on Build-Depends

 -- Michał Zając <michal.zajac@gmail.com>  Thu, 04 Feb 2010 16:20:20 +0100

kdebase-runtime (4:4.3.98-0ubuntu1) lucid; urgency=low

  [ Michał Zając ]
  * New upstream release
   - Bump on build-deps
   - Updated kdebase-runtime and kdebase-runtime-data install files

  [ Alessandro Ghersi ]
  * Bump Qt to 4.6.1
  * Bump kdelibs5-dev to 4.3.98
  * Bump Soprano to 2.3.73

 -- Michał Zając <michal.zajac@gmail.com>  Mon, 01 Feb 2010 11:30:24 +0100

kdebase-runtime (4:4.3.95-0ubuntu1) lucid; urgency=low

  * New upstream release
    - Bump build-deps
    - Update kdebase-runtima-data.install

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Wed, 20 Jan 2010 12:29:09 +0100

kdebase-runtime (4:4.3.90-0ubuntu3) lucid; urgency=low

  * Add Recommends on icoutils to kdebase-runtime for extended thumbnailer
    support. (LP: #505424)

 -- Jonathan Thomas <echidnaman@kubuntu.org>  Mon, 11 Jan 2010 14:50:25 -0500

kdebase-runtime (4:4.3.90-0ubuntu2) lucid; urgency=low

  * Add libssh-dev build-dep now it has been promoted to main for sftp ioslave

 -- Jonathan Riddell <jriddell@ubuntu.com>  Sat, 09 Jan 2010 00:55:09 +0000

kdebase-runtime (4:4.3.90-0ubuntu1) lucid; urgency=low

  [ Jonathan Thomas ]
  * New uptream release candidate:
    - Bump build-depend versions
    - Update .install files
  * Remove kubuntu_08_suggest_soprano_backend_sesame.diff from debian/patches/
    series
  * Build against newest libexiv2 (LP: #502565)

  [ Jonathan Riddell ]
  * Do not set DEB_KDE_LINK_WITH_AS_NEEDED to no, "This should be no
    more needed after r1061445"
  * Remove kubuntu_08_suggest_soprano_backend_sesame.diff, we use virtuoso now

 -- Jonathan Thomas <echidnaman@kubuntu.org>  Wed, 06 Jan 2010 16:42:22 -0500

kdebase-runtime (4:4.3.85-0ubuntu2) lucid; urgency=low

  * Rebuild for liblzma-dev transition
    - Bump kdelibs5-dev build-dep to >= 4:4.3.85-0ubuntu4~ to ensure all archs
      build against the same liblzma-dev as kdelibs

 -- Scott Kitterman <scott@kitterman.com>  Tue, 22 Dec 2009 12:01:29 -0500

kdebase-runtime (4:4.3.85-0ubuntu1) lucid; urgency=low

  * New upstream beta release
  * Bump on kdelibs5-dev (4.3.85)
  * Removed kubuntu_95_temp_arm_compile_fixes.diff, went upstream.
  * Removed Nepomuk ontologies,fixed docbook paths for KHTML and added Phonon
    docs in kdebase-runtime-data.install

 -- Michał Zając <michal.zajac@gmail.com>  Fri, 18 Dec 2009 23:48:56 +0100

kdebase-runtime (4:4.3.80-0ubuntu10) lucid; urgency=low

  * Remove debian/kdebase-runtime-*.install.armel - arch specific install
    files should not be needed anymore and these are definitely wrong

 -- Scott Kitterman <scott@kitterman.com>  Thu, 17 Dec 2009 23:04:56 -0500

kdebase-runtime (4:4.3.80-0ubuntu9) lucid; urgency=low

  * Remove the KDE4_DISABLE_MULTIMEDIA=ON flag now that we have a working
    Phonon; update .install files (LP: #494643)
  * Split the KCM for the Phonon Xine backend into a separate package from the
    kdebase-runtime binary package. The KCM depends on Xine, and making all
    of KDE depend on Xine because of it isn't nice, especially when we have
    Phonon's wonderful backend system. (LP: #386406)

 -- Jonathan Thomas <echidnaman@kubuntu.org>  Tue, 15 Dec 2009 14:46:17 -0500

kdebase-runtime (4:4.3.80-0ubuntu8) lucid; urgency=low

  * Ensure patch kubuntu_95_temp_arm_compile_fixes.diff is complete

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 14 Dec 2009 22:40:38 +0000

kdebase-runtime (4:4.3.80-0ubuntu7) lucid; urgency=low

  * Fix patch kubuntu_95_temp_arm_compile_fixes.diff

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 14 Dec 2009 18:37:09 +0000

kdebase-runtime (4:4.3.80-0ubuntu6) lucid; urgency=low

  * Update kubuntu_95_temp_arm_compile_fixes.diff with complete fix

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 14 Dec 2009 16:57:22 +0000

kdebase-runtime (4:4.3.80-0ubuntu5) lucid; urgency=low

  * Drop debian/patches/kubuntu_12_arm_no_soprano.diff and related
    debian/rules changes
    - The was a just before release hack and if it's still a problem it should
      be corrected properly in Lucid

 -- Scott Kitterman <scott@kitterman.com>  Sun, 13 Dec 2009 03:27:42 -0500

kdebase-runtime (4:4.3.80-0ubuntu4) lucid; urgency=low

  [ Alessandro Ghersi ]
  * In kdebase-runtime bump kdebase-runtime-bin-kde4 conflicts/replaces
    (LP: #486028)
  * In kdebase-runtime-data bump kdebase-runtime-data-common conflicts/replaces

  [ Scott Kitterman ]
  * Refreshed kubuntu_85_language_selector.diff
  * Add kubuntu_95_temp_arm_compile_fixes.diff to fix FTBFS on armel
    - Already fixed in trunk, can be dropped after the next upstream update

 -- Scott Kitterman <scott@kitterman.com>  Sat, 12 Dec 2009 21:50:52 -0500

kdebase-runtime (4:4.3.80-0ubuntu3) lucid; urgency=low

  * Stop kdebase-runtime recommending pmount

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 09 Dec 2009 12:49:27 +0000

kdebase-runtime (4:4.3.80-0ubuntu2) lucid; urgency=low

  * Drop libssh-dev as build-dep (needs MIR)

 -- Harald Sitter <apachelogger@ubuntu.com>  Mon, 07 Dec 2009 22:22:16 +0100

kdebase-runtime (4:4.3.80-0ubuntu1) lucid; urgency=low

  * New upstream release:
    - Remove build-depend on libknotificationitem-dev, now part of
      kdelibs5-dev
    - Add build-depend on libattica-dev for KNewStuff support
    - Add build-depend on shared-desktop-ontologies for Nepomuk support
    - Whitespace fix in debian/control
    - Remove kubuntu_02_fix_dash_incompatibility.diff,
      kubuntu_11_kstyle_fixes.diff, kubuntu_86-90.diff; merged upstream
    - Refresh all patches
    - Update various .install files
    - Temporarily build with KDE4_DISABLE_MULTIMEDIA=ON to work around old
      Phonon from Qt

 -- Jonathan Thomas <echidnaman@kubuntu.org>  Tue, 01 Dec 2009 09:57:22 -0500

kdebase-runtime (4:4.3.4-2) unstable; urgency=low

  +++ Changes by Modestas Vainius:

  * Make kdebase-runtime conflict with kdebase-kio-plugins due to ktrash
    (Closes: #560291).

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Thu, 10 Dec 2009 12:35:30 +0200

kdebase-runtime (4:4.3.4-1) unstable; urgency=low

  * New upstream release

  +++ Changes by Xavier Vello:

  * Added khelpcenter.desktop to /usr/share/services to enable khelpcenter4
    support in kde3 apps

  +++ Changes by Lukasz Janyst:

  * Bump build depends.

  +++ Changes by Pino Toscano:

  * Add liblzma-dev build-depend to add XZ support.

  +++ Changes by Sune Vuorela:

  * Remove the ktrash debian renaming. Not needed since we got rid of kde3
    kdebase in unstable.

  +++ Changes by Ana Beatriz Guerrero Lopez:

  * Remove myself from Uploaders.

  +++ Changes by Modestas Vainius:

  * Update install files.
  * Backport a patch from KDE 4.4 to make it possible to use kstyles
    with RTLD_GLOBAL. Unbreaks openoffice.org (Closes: #550905) (patch
    00_1034807_4.4_backport_rtldglobal.diff, kdebase-runtime part).

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Wed, 09 Dec 2009 00:24:05 +0200

kdebase-runtime (4:4.3.3-0ubuntu3) lucid; urgency=low

  * Add missing epoch to Qt build-depends version

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 25 Nov 2009 13:46:59 +0000

kdebase-runtime (4:4.3.3-0ubuntu2) lucid; urgency=low

  * Rebuild against Qt 4.6 rc 1, which is binary incompatible with 4.6
    beta

 -- Jonathan Riddell <jriddell@ubuntu.com>  Tue, 24 Nov 2009 08:59:52 +0000

kdebase-runtime (4:4.3.3-0ubuntu1) lucid; urgency=low

  * New upstream release
  * Merge with Debian testing, remaining changes:
    - add debian/kdebase-runtime.install.armel: Work around arm build failure
      by disabling nepomuk code from compile
    - add kdebase-runtime.[postinst,prerm] for update-alternatives kdesu
    - debian/control:
      - build against libphonon-dev >= 4:4.6.0~beta1
      - add liblzma-dev to build-deps
      - helpcenter4 no recommend on htdig
      - Keep khelpcenter transitional package with appropriate replaces
      - khelpcentre4 Conflicts: khelpcenter (<< 4:4.1.2), khelpcenter-kde4
      - add kdebase-runtime-bin-kde4 transitional package which depends on kdebase-runtime
      - add kdebase-runtime-data-common transitional package which depends on kdebase-runtime-data
    - debian/patches:
      - Remove:
        - 01_kde4_information_menu.diff
        - 02_ksvgtopng4.diff
        - 03_ktrash4.diff
      - Keep:
        - 25_khelp_htdig.diff
        - kubuntu_01_nodisplay_knetattach.diff
        - kubuntu_02_fix_dash_incompatibility.diff
        - kubuntu_03_knetattach_use_sftp.diff
        - kubuntu_07_oxygenify_knetattach_icon.diff
        - kubuntu_08_suggest_soprano_backend_sesame.diff
        - kubuntu_11_kstyle_fixes.diff
        - kubuntu_85_language_selector.diff
        - kubuntu_86_fdo_notifications.diff
        - kubuntu_87_fdo_notifications.diff
        - kubuntu_88_fdo_notifications.diff
        - kubuntu_89_fdo_notifications.diff
        - kubuntu_90_fdo_notifications_discard_actions.diff
        - kubuntu_12_arm_no_soprano.diff
    - debian/kdebase-runtime-data.install:
      - change etc/xdg/menus/kde4-information.menu to etc/xdg/menus/kde-information.menu
      - change usr/share/desktop-directories/kde4-information.directory to usr/share/desktop-directories/kde-information.directory
      - path for docs is usr/share/doc/kde/HTML
      - Don't install usr/share/kde4/apps/kio_desktop/DesktopLinks/Home.desktop
      - Don't install usr/share/kde4/apps/kio_desktop/directory.trash
    - debian/kdebase-runtime.install
      - install usr/lib/kde4/libexec/kdesu to /usr/lib/kde4/libexec/kdesu-distrib/
    - debian/rules:
      - Set DEB_KDE_LINK_WITH_AS_NEEDED = no for kde file dialogs in Qt apps
      - Apply kubuntu_12_arm_no_soprano.diff

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Tue, 10 Nov 2009 19:18:51 +0100

kdebase-runtime (4:4.3.2-1) unstable; urgency=low

  * New upstream release.

 -- Ana Beatriz Guerrero Lopez <ana@debian.org>  Tue, 06 Oct 2009 15:15:35 +0200

kdebase-runtime (4:4.3.2-0ubuntu4) karmic; urgency=low

  * Work around arm build failure by disabling nepomuk code from
    compile.  Add kubuntu_12_arm_no_soprano.diff, apply it in
    debian/rules and create .install.armel files

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 26 Oct 2009 13:44:40 +0000

kdebase-runtime (4:4.3.2-0ubuntu3) karmic; urgency=low

  * kdebase-runtime-data replaces old Konsole, fixes hardy upgrade
  * kdebase-runtime replaces old kdebase-kio-plugins

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 21 Oct 2009 13:49:43 +0100

kdebase-runtime (4:4.3.2-0ubuntu2) karmic; urgency=low

  * Add kubuntu_11_kstyle_fixes.diff from
    http://websvn.kde.org/?revision=1034808&view=revision fixes issues
    with file dialogue in OpenOffice

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 14 Oct 2009 12:42:29 +0100

kdebase-runtime (4:4.3.2-0ubuntu1) karmic; urgency=low

  * New upstream bugfix release:
    - Bump build-depends
    - Drop kubuntu_09_remove_indexer_notifications.diff, it fails to apply
      plus we do not have nepomuk enabled by default anyways
  * Update not-installed to reflect recent packaging changes

 -- Jonathan Thomas <echidnaman@kubuntu.org>  Fri, 02 Oct 2009 13:58:39 -0400

kdebase-runtime (4:4.3.1-1) unstable; urgency=low

  * New upstream release.

  +++ Changes by Modestas Vainius:

  * Add kcontrol to kdebase-runtime Replaces.
  * Bump Standards-Version to 3.8.3, no changes needed.
  * Bump KDE build dependencies to 4.3.1.
  * Update debian/not-installed.
  * Update install files.
  * Do not ship Dbus intefaces XMLs. There is no dev package.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Sat, 29 Aug 2009 21:06:19 +0300

kdebase-runtime (4:4.3.1-0ubuntu4) karmic; urgency=low

  * Keep desktop clean, don't install
    usr/share/kde4/apps/kio_desktop/DesktopLinks/Home.desktop
    usr/share/kde4/apps/kio_desktop/directory.trash

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 23 Sep 2009 14:22:59 +0100

kdebase-runtime (4:4.3.1-0ubuntu3) karmic; urgency=low

  * Add kubuntu_90_fdo_notifications_discard_actions.diff from
    http://people.canonical.com/~agateau/actionless-notification-
    server/index.html

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 23 Sep 2009 12:45:36 +0100

kdebase-runtime (4:4.3.1-0ubuntu2) karmic; urgency=low

  * Introduce update-alternatives for kdesu vs. kdesudo (LP: #345776)
  * Add preinst script to remove kdesudo's divert on the kdesu binary. kdesudo
    Pre-Depends on -runtime while -runtime Conflicts and breaks kdesudo. This
    causes an intermediate removal of kdesudo until -runtime is fully configured
    this removal in combo with the diversion removal should prevent any issue.

 -- Harald Sitter <apachelogger@ubuntu.com>  Tue, 15 Sep 2009 08:30:17 +0200

kdebase-runtime (4:4.3.1-0ubuntu1) karmic; urgency=low

  * New upstream release
    - Bump build-depends
    - Remove kubuntu_10_fish.diff fixed by upstream

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Sat, 29 Aug 2009 03:16:06 +0200

kdebase-runtime (4:4.3.0-2) unstable; urgency=medium

  +++ Changes by Modestas Vainius:

  * Merge kdebase-runtime-data-common to kdebase-runtime-data.
  * Merge kdebase-runtime-bin-kde4 to kdebase-runtime.
  * kdebase-runtime conflicts with kcontrol. (Closes: #540009).
  * Urgency medium due to RC bugfix.
  * Add build depend on libslp-dev.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Wed, 05 Aug 2009 13:30:30 +0200

kdebase-runtime (4:4.3.0-1) unstable; urgency=low

  * New upstream release.

  +++ Changes by Fathi Boudra:

  * Bump libsoprano-dev build dependency version to >= 2.3.0.
  * Update installed files.

  +++ Changes by Ana Beatriz Guerrero Lopez:

  * Bump build depends to >= 4.3.0.
  * Update packaging copyright in debian/copyright.
  * Update Standards-Version to 3.8.2, no changes required.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Tue, 04 Aug 2009 09:05:51 +0200

kdebase-runtime (4:4.3.0-0ubuntu4) karmic; urgency=low

  * Fix missing lzma support
    - Add liblzma-dev to build-depends
    - Add usr/share/kde4/services/lzma.protocol and xz.protocol to
      debian/kdebase-runtime-data.install

 -- Scott Kitterman <scott@kitterman.com>  Thu, 27 Aug 2009 00:23:17 -0400

kdebase-runtime (4:4.3.0-0ubuntu3) karmic; urgency=low

  * Add kubuntu_10_fish.diff fix kio fish, http://bugs.kde.org/189235

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 24 Aug 2009 12:00:31 +0100

kdebase-runtime (4:4.3.0-0ubuntu2) karmic; urgency=low

  * Bump build-dep to kdelibs 4.3

 -- Jonathan Riddell <jriddell@ubuntu.com>  Tue, 04 Aug 2009 14:23:55 +0000

kdebase-runtime (4:4.3.0-0ubuntu1) karmic; urgency=low

  [ Jonathan Thomas ]
  * New upstream release:
    - Bump KDE versions
  * Merge from Debian Experimental, remaining changes:
    - helpcenter4 no recommend on htdig
    - kde-base is not an alternative dep to kdebase-runtime-data-common in
      kdebase-runtime-data
    - Keep khelpcenter transitional package with appropriate replaces
    - Remove dependency from kdebase-runtime-bin-kde4 on pmount
    - khelpcentre4 Conflicts: khelpcenter (<< 4:4.1.2), khelpcenter-kde4
    - Set DEB_KDE_LINK_WITH_AS_NEEDED = no for kde file dialogs in Qt apps
    - Remove:
      - 01_kde4_information_menu.diff
      - 02_ksvgtopng4.diff
      - 03_ktrash4.diff
    - Keep:
      - kubuntu_01_nodisplay_knetattach.diff
      - kubuntu_02_fix_dash_incompatibility.diff
      - kubuntu_03_knetattach_use_sftp.diff
      - kubuntu_04_kiosmb.diff
      - kubuntu_05_knetattach_open_filebrowser.diff
      - kubuntu_06_fix_knetattach_folder_icon.diff
      - kubuntu_07_oxygenify_knetattach_icon.diff
      - kubuntu_85_language_selector.diff
  * Update KUBUNTU_DEBIAN_DIFFERENCES
  * Bump kdebase-runtime-data's replace version of kdebase-workspace-data to
    (<< 4:4.2.95) (LP: #405726)

  [ Khashayar Naderehvandi ]
  * Add kubuntu_09_remove_indexer_notifications.diff to remove unnecessary
    notifications from strigi (LP: #406167)

 -- Jonathan Thomas <echidnaman@kubuntu.org>  Wed, 29 Jul 2009 16:40:04 -0400

kdebase-runtime (4:4.2.98-0ubuntu3) karmic; urgency=low

  * Rebuild with new pkg-kde-tools to build translation templates

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 29 Jul 2009 18:11:57 +0100

kdebase-runtime (4:4.2.98-0ubuntu2) karmic; urgency=low

  * Set DEB_KDE_LINK_WITH_AS_NEEDED = no, Arora and other Qt-only
    apps now use KDE file open dialogues

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 27 Jul 2009 11:45:24 +0100

kdebase-runtime (4:4.2.98-0ubuntu1) karmic; urgency=low

  * New upstream release
    - Bump build-depend versions to 4.2.98
    - Bump libsoprano-dev build-dep to 2.3.0
    - Update kdebase-runtime-data.install

 -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Wed, 22 Jul 2009 06:01:07 +0200

kdebase-runtime (4:4.2.96-1) experimental; urgency=low

  * New upstream release candidate 2

  +++ Changes by George Kiagiadakis:

  * Bump build-dependency on kdelibs5-dev to version 4.2.95.
  * Bump build-dependency on libsoprano-dev to version 2.2.67.
  * Add build-dependency on libknotificationitem-1-dev.
  * Refresh patches.
  * Remove patch 04_disable_debug_by_default.diff.
  * Update installed files.
  * Move package plasma-scriptengine-javascript from kdebase-workspace
    to kdebase-runtime as the sources for this component were moved upstream.
  * Add replaces: kdebase-runtime replaces kdebase-workspace-bin (<< 4.2.90)
    and kdebase-runtime-dbg replaces kdebase-workspace-dbg (<< 4.2.90)
    because plasmapkg was moved upstream.
  * Add replaces: kdebase-runtime replaces kdebase-bin (<< 4.2.90),
    kdebase-runtime-dbg replaces kdebase-dbg (<< 4.2.90) and kdebase-runtime-data
    replaces kdebase-data (<< 4.2.90) because kdeditfiletype was moved upstream.
  * Add replaces: kdebase-runtime-data replaces akonadi-kde (<< 4.2.90) because
    some nepomuk-related files were moved upstream.
  * Add myself in uploaders.
  * Drop package kde-icons-oxygen as it was moved to a separate source package.
  * Make kdebase-runtime depend on oxygen-icon-theme (>= 4.2.90),
    instead of kde-icons-oxygen (>= ${source:Version}).
  * Make kdebase-runtime depend on phonon-backend-xine | phonon-backend, so
    that the xine backend is preferred.

  +++ Changes by Sune Vuorela:

  * More installed files.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Fri, 26 Jun 2009 18:01:03 +0300

kdebase-runtime (4:4.2.96-0ubuntu2) karmic; urgency=low

  * Backport support for freedesktop.org notifications. Makes it possible for
    GNOME and KDE applications to display notifications using the native
    desktop notification system.
   - added debian/patches/kubuntu_86_fdo_notifications.diff
   - added debian/patches/kubuntu_87_fdo_notifications.diff
   - added debian/patches/kubuntu_88_fdo_notifications.diff
   - added debian/patches/kubuntu_89_fdo_notifications.diff

 -- Aurélien Gâteau <aurelien.gateau@canonical.com>  Fri, 17 Jul 2009 14:13:55 +0200

kdebase-runtime (4:4.2.96-0ubuntu1) karmic; urgency=low

  [ Christian Mangold ]
  * New upstream release
  * Bump kdelibs5-de build-dep to 4.2.96

  [ Alessandro Ghersi ]
  * Add kde-icons-oxygen to depends in kdebase-runtime package (LP: #395418)

 -- Christian Mangold <neversfelde@ubuntu.com>  Thu, 09 Jul 2009 22:40:25 +0200

kdebase-runtime (4:4.2.95-0ubuntu3) karmic; urgency=low

  * kdebase-runtime-dbg replaces old kdebase-dbg

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 02 Jul 2009 13:44:52 +0100

kdebase-runtime (4:4.2.95-0ubuntu2) karmic; urgency=low

  * Fix -data .install file

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 01 Jul 2009 22:05:26 +0100

kdebase-runtime (4:4.2.95-0ubuntu1) karmic; urgency=low

  * New upstream release candidate:
    - Bump build-depend versions
    - Update various .install files

 -- Jonathan Thomas <echidnaman@kubuntu.org>  Thu, 25 Jun 2009 15:28:29 -0400

kdebase-runtime (4:4.2.90-0ubuntu4) karmic; urgency=low

  * kdebase-runtime depends on phonon-backend-xine | phonon-backend
    not just phonon-backend

 -- Jonathan Riddell <jriddell@ubuntu.com>  Tue, 16 Jun 2009 14:18:31 +0100

kdebase-runtime (4:4.2.90-0ubuntu2) karmic; urgency=low

  * kdebase-runtime depends on phonon-backend-xine not
    phonon-backend (Closes LP: #376396)

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 08 Jun 2009 14:57:12 +0100

kdebase-runtime (4:4.2.90-0ubuntu1) karmic; urgency=low

  * New upstream release:
    - bump KDE versions to 4.2.90 (KDE 4.3 Beta 2)
  * debian/control:
    - Create plasma-scriptengine-javascript binary
    - bump standards version to 3.8.1, no change
    - bump build dep on soprano to 2.2.3+dfsg-svn977681
  * Update various .install files:
    - kdebase-runtime-bin-kde4.install
    - kdebase-runtime-data.install
    - kdebase-runtime.install
    - add plasma-scriptengine-javascript.install

 -- Steve Stalcup <vorian@ubuntu.com>  Thu, 04 Jun 2009 15:09:31 -0400

kdebase-runtime (4:4.2.85-0ubuntu5) karmic; urgency=low

  * Bump version of kdebase-runtime replaces kdebase-runtime-bin-kde4
  * Correct kdebase-runtime-data to replace kde-icons-oxygen instead of the
    non-existant kde-oxygen-icons

 -- Scott Kitterman <scott@kitterman.com>  Fri, 22 May 2009 00:33:53 -0400

kdebase-runtime (4:4.2.85-0ubuntu4) karmic; urgency=low

  * kdebase-runtime-data replaces kde-oxygen-icons (<< 4:4.2.85)
  * Remove kde-icons-oxygen.install, the package moved to the oxygen-icons
    source package

 -- Jonathan Thomas <echidnaman@kubuntu.org>  Mon, 18 May 2009 10:58:56 -0400

kdebase-runtime (4:4.2.85-0ubuntu3) karmic; urgency=low

  * kdebase-runtime conflicts kdebase-runtime-data (<< 4:4.2.85)
  * akonadi-kde4 conflict/replace -> akonadi-kde, my mistake

 -- Jonathan Thomas <echidnaman@kubuntu.org>  Sun, 17 May 2009 10:44:34 -0400

kdebase-runtime (4:4.2.85-0ubuntu2) karmic; urgency=low

  [ Jonathan Thomas ]
  * Replace/conflict kdebase-runtime-bin-kde4 (<< 4:4.1.85)
    for kdebase-runtime(LP: #374676)
  * Replace/conflict kdebase-data (<< 4:4.2.85) for kdebase-runtime-data
  * Replace/conflict kdebase-bin (<< 4:4.2.85) for kdebase-runtime-bin-kde4
  * Replace/conflict akonadi-kde4 (<< 4:4.2.85) for kdebase-runtime-data

  [ Scott Kitterman ]
  * Restore Kubuntu VCS* headers in debian/control (in place of Debian's)

 -- Scott Kitterman <scott@kitterman.com>  Sat, 16 May 2009 16:20:53 -0400

kdebase-runtime (4:4.2.85-0ubuntu1) karmic; urgency=low

  * New upstream beta release:
    - Remove oxygen icon packaging, it's moved to the oxygen-icons package
    - Update 04_disable_debug_by_default.diff
    - Add build-depend on libknotificationitem-dev
    - Change libphonon-dev build-dep to libqt4-phonon-dev
    - Bump build-deps in general
    - Add build-dep on libslp-dev for OpenSLP support in the network:// kio
      slave
    - Update .install files

 -- Jonathan Thomas <echidnaman@kubuntu.org>  Wed, 13 May 2009 11:24:59 -0400

kdebase-runtime (4:4.2.4-2) unstable; urgency=medium

  * Move a file from kde-icons-oxygen to kdebase-runtime-data where it
    belongs.
  * Medium urgency as this is a quite important fix to ease the users upgrades
    to kde4.3.

 -- Sune Vuorela <debian@pusling.com>  Sat, 04 Jul 2009 00:39:41 +0200

kdebase-runtime (4:4.2.4-1) unstable; urgency=low

  * New upstream release.

  +++ Changes by Sune Vuorela:

  * Update sections.

  +++ Changes by Fathi Boudra:

  * Bump Standards-Version to 3.8.1. No changes needed.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Fri, 01 May 2009 13:49:01 +0200

kdebase-runtime (4:4.2.2-1ubuntu5) karmic; urgency=low

  * Really fix .install files

 -- Jonathan Riddell <jriddell@ubuntu.com>  Sun, 10 May 2009 20:52:25 +0000

kdebase-runtime (4:4.2.2-1ubuntu4) karmic; urgency=low

  * In kdebase-runtime-data.install fix /usr/share/desktop-directories/kde-information.directory path

 -- Jonathan Riddell <jriddell@ubuntu.com>  Sun, 10 May 2009 17:17:46 +0000

kdebase-runtime (4:4.2.2-1ubuntu3) karmic; urgency=low

  * Fix kdebase-runtime-data

 -- Jonathan Riddell <jriddell@ubuntu.com>  Sun, 10 May 2009 16:34:09 +0000

kdebase-runtime (4:4.2.2-1ubuntu2) karmic; urgency=low

  * Fix debian/patches/series file

 -- Jonathan Riddell <jriddell@ubuntu.com>  Sun, 10 May 2009 15:53:14 +0000

kdebase-runtime (4:4.2.2-1ubuntu1) karmic; urgency=low

  * Merge with Debian, remaining changes:
    - helpcenter4 no recommend on htdig
    - kde-base is not an alternative dep to kdebase-runtime-data-common in
      kdebase-runtime-data
    - Remove dependency from kdebase-runtime-bin-kde4 on pmount
    - Keep khelpcenter transitional package with appropriate replaces
    - Remove:
      - 01_kde4_information_menu.diff
      - 02_ksvgtopng4.diff
      - 03_ktrash4.diff
    - Keep:
      - kubuntu_01_nodisplay_knetattach.diff
      - kubuntu_02_fix_dash_incompatibility.diff
      - kubuntu_03_knetattach_use_sftp.diff
      - kubuntu_05_knetattach_open_filebrowser.diff
      - kubuntu_07_oxygenify_knetattach_icon.diff
      - kubuntu_08_suggest_soprano_backend_sesame.diff
      - kubuntu_85_language_selector.diff
   * Don't build kde-icons-oxygen, now a separate source

 -- Jonathan Riddell <jriddell@ubuntu.com>  Fri, 01 May 2009 21:02:52 +0000

kdebase-runtime (4:4.2.2-1) unstable; urgency=low

  * New upstream release.

  +++ Changes by Sune Vuorela:

  * Bump build-deps.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Sun, 05 Apr 2009 01:36:57 +0200

kdebase-runtime (4:4.2.2-0ubuntu1) jaunty; urgency=low

  * New upstream release
  * Bump KDE versions in debian/contol

 -- Steve Stalcup <vorian@ubuntu.com>  Sat, 28 Mar 2009 21:56:26 -0400

kdebase-runtime (4:4.2.1-2) unstable; urgency=low

  * Upload to unstable.

 -- Ana Beatriz Guerrero Lopez <ana@debian.org>  Thu, 12 Mar 2009 20:01:15 +0100

kdebase-runtime (4:4.2.1-1) experimental; urgency=low

  * New upstream release.

  +++ Changes by Pino Toscano:

  * Simplify 25_khelp_htdig.diff and make it work again.
  * Suggest djvulibre-bin in kdebase-runtime, as it provides a DjVu thumbnail
    plugin which calls `ddjvu`.

  +++ Changes by Modestas Vainius:

  * Point Debian Vcs URLs to pkg-kde/trunk (new location).

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Fri, 27 Feb 2009 23:20:40 +0200

kdebase-runtime (4:4.2.1-0ubuntu2) jaunty; urgency=low

  * Add kubuntu_08_suggest_soprano_backend_sesame.diff from
    Aurélien Gâteau to prompt for sesame install

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 19 Mar 2009 12:14:15 +0000

kdebase-runtime (4:4.2.1-0ubuntu1) jaunty; urgency=low

  [ Roderick B. Greening ]
  * New upstream release
  * Update kdebase-runtime.install (replace 4.2.0 ref with 4.2.*)
  * Update build-dep (kdelibs5-dev, libphonon-dev)

  [ Scott Kitterman ]
  * Add missing conflicts for kdebase-runtime on kde5libs << 4.1.73

  [ Jonathan Thomas ]
  * Add missing conflicts for kdebase-runtime-dbg on kdelibs5-dbg <<
    4.1.80 (LP: #324277)

 -- Roderick B. Greening <roderick.greening@gmail.com>  Fri, 27 Feb 2009 10:27:55 -0330

kdebase-runtime (4:4.2.0-1) experimental; urgency=low

  * New upstream release.

  +++ Changes by Modestas Vainius:

  * Drop build dependency on kdepimlibs5-dev.
  * Bump build dependency on kdelibs5-dev to 4.2.0.
  * Remove cmake build dependency (gets pulled via kdelibs5-dev).
  * Bump strigi build dependencies to 0.6.3.
  * Refresh 03_ktrash4.diff patch.
  * Add build dependency on libjpeg62-dev, libqt4-opengl-dev and
    libpulse-dev.
  * Add debian/README.source.
  * Update install and installgen files.
  * Drop phonon-backend-xine package. Also make kdebase-runtime(-data) not to
    depend on phonon-backend-xine and conflict with previous
    phonon-backend-xine versions (due to moved kcm_phononxine).
  * kdebase-runtime-data replaces kdebase-workspace-data << 4:4.1.85+svn897913
    due to moved windowmanagers desktop files and default plasma desktoptheme.
  * Switch to new installgen format.
  * Bump debian/compat and debhelper build dependency to v7 (to get more
    sophisticated debian/tmp handling).
  * Switch from internal debian/cdbs/kde.mk to pkg-kde-tools:
    - build depend on pkg-kde-tools 0.4;
    - remove debian/cdbs directory;
    - replace debian/cdbs/kde.mk with
      /usr/share/pkg-kde-tools/qt-kde-team/1/debian-qt-kde.mk in debian/rules.

  +++ Changes by George Kiagiadakis:

  * kdebase-runtime-data replaces kdelibs5-data << 4:4.1.80 due to moved
    nepomuk files.
  * kdebase-runtime replaces kdelibs5 and kdelibs-bin << 4:4.1.80
    due to some kded modules and kwalletd that were moved.
  * kdebase-runtime-dbg replaces kdelibs5-dbg << 4:4.1.80 for the same
    reason as above.
  * Bump build dependency on libsoprano-dev to 2.1.64.
  * Allow kdesud to install with setgid root in order to enable
    the remember password feature in kdesu.

  +++ Changes by Ana Beatriz Guerrero Lopez:

  * Refresh 01_kde4_information_menu.diff.
  * Add information about the patches to 2_ksvgtopng4 and 03_ktrash4.
  * Update versioned depend on phonon to 4.2.0.

  +++ Changes by Sune Vuorela:

  * Update copyright file.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Mon, 26 Jan 2009 20:08:42 +0100

kdebase-runtime (4:4.2.0-0ubuntu1) jaunty; urgency=low

  * New upstream release
  * Bump duild-deps accordingly
  * updated *.install doc path from kde4 to kde

 -- Roderick B. Greening <roderick.greening@gmail.com>  Thu, 22 Jan 2009 21:19:21 -0330

kdebase-runtime (4:4.1.96-0ubuntu2) jaunty; urgency=low

  * Make kdebase-runtime depend on phonon-backend-xine | phonon-backend

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 14 Jan 2009 23:11:23 +0000

kdebase-runtime (4:4.1.96-0ubuntu1) jaunty; urgency=low

  * New upstream RC release
  * Remove kubuntu_06_fix_knetattach_folder_icon.diff, committed upstream

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 08 Jan 2009 14:53:27 +0000

kdebase-runtime (4:4.1.85-0ubuntu2) jaunty; urgency=low

  * Do not install usr/lib/libkwalletbackend.so, it isn't used and
    clashes with kdelibs4-dev

 -- Jonathan Riddell <jriddell@ubuntu.com>  Tue, 06 Jan 2009 12:46:37 +0000

kdebase-runtime (4:4.1.85-0ubuntu1) jaunty; urgency=low

  * New upstream release

 -- Harald Sitter <apachelogger@ubuntu.com>  Fri, 12 Dec 2008 15:32:48 +0100

kdebase-runtime (4:4.1.80-0ubuntu2) UNRELEASED; urgency=low

  * Change Vcs-Browser to Launchpad and replace Vcs-Svn with Vcs-Bzr

 -- Harald Sitter <apachelogger@ubuntu.com>  Wed, 03 Dec 2008 15:01:21 +0100

kdebase-runtime (4:4.1.80-0ubuntu1) jaunty; urgency=low

  * New upstream release
  * Remove obsolte build dependency on kdepimlibs5-dev
  * Remove kdepimlibs5-dbg dependency from kdebase-runtime-dbg
  * Add dependency on kdelibs5-dev (due to removal of kdepimlibs5-dev)
  * kdebase-runtime replaces kdebase-workspace-data << 4:4.1.73

 -- Harald Sitter <apachelogger@ubuntu.com>  Mon, 24 Nov 2008 14:26:43 +0100

kdebase-runtime (4:4.1.73-0ubuntu1) jaunty; urgency=low

  * New upstream snapshot
  * Add build-dep on libpulse-dev
  * phonon-backend-xine moved to phonon
  * Bump replaces version on kdelibs5, files have moved

 -- Jonathan Riddell <jriddell@ubuntu.com>  Fri, 14 Nov 2008 16:23:27 +0000

kdebase-runtime (4:4.1.4-1) experimental; urgency=low

  * New upstream release.
  * Bump Build-Depends.

  +++ Changes by Modestas Vainius:

  * Bump build dependency on kdepimlibs5-dev and kdelibs5-dev to 4.1.4-1.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Fri, 09 Jan 2009 22:26:26 +0100

kdebase-runtime (4:4.1.3-1) experimental; urgency=low

  * New upstream release
    - few files missed, probably a outdated manual.

 -- Sune Vuorela <debian@pusling.com>  Sat, 01 Nov 2008 11:57:12 +0100

kdebase-runtime (4:4.1.2-1ubuntu1) jaunty; urgency=low

  * Merge with Debian, remaining changes:
    - helpcenter4 doesn't recommend on htdig
    - Edit kde-icons-oxygen.install to not install scalable icons,
      save disk space
    - kde-base is not an alternative dep to kdebase-runtime-data-common in
      kdebase-runtime-data
    - Remove dependency from kdebase-runtime-bin-kde4 on pmount
    - Keep khelpcenter transitional package with appropriate replaces
    - Keep -kde4 package conflicts/replaces
    - khelpcentre4 Conflicts: khelpcenter (<< 4:4.1.2), khelpcenter-kde4
    - Remove:
      - 01_kde4_information_menu.diff
      - 02_ksvgtopng4.diff
      - 03_ktrash4.diff
    - Keep:
      - kubuntu_01_nodisplay_knetattach.diff
      - kubuntu_02_fix_dash_incompatibility.diff
      - kubuntu_03_knetattach_use_sftp.diff
      - kubuntu_04_kiosmb.diff
      - kubuntu_05_knetattach_open_filebrowser.diff
      - kubuntu_06_fix_knetattach_folder_icon.diff
      - kubuntu_07_oxygenify_knetattach_icon.diff
      - kubuntu_85_language_selector.diff
    - .orig md5sum different
  *Update KUBNTU-DEBIAN-DIFFERENCES

 -- Jonathan Thomas <echidnaman@kubuntu.org>  Fri, 07 Nov 2008 09:07:36 -0500

kdebase-runtime (4:4.1.2-1) experimental; urgency=low

  * New upstream release.

  +++ Changes by Sune Vuorela:

  * Revert /usr/bin/kdesu link. It is *not* expected to be there. Reopens 495999.

  +++ Changes by Ana Beatriz Guerrero Lopez:

  * Update kdebase-runtime-data.install.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Sun, 28 Sep 2008 15:22:21 +0200

kdebase-runtime (4:4.1.2-0ubuntu6) intrepid; urgency=low

  * Fix typo in kubuntu_01_nodisplay_knetattach.diff (LP: #277156)

 -- Harald Sitter <apachelogger@ubuntu.com>  Wed, 15 Oct 2008 22:49:55 +0200

kdebase-runtime (4:4.1.2-0ubuntu5) intrepid; urgency=low

  * Replace kubuntu_01_onlyshow_knetattach_in_kde.diff with
    kubuntu_01_nodisplay_knetattach.diff, if the user starts knetattach from
    the menu there is no indication where the links will end up, which is
    confusing.
  * kubuntu_05_knetattach_open_filebrowser.diff open the default file browser
    instead of the default web browser (LP: #271967)
  * kubuntu_06_fix_knetattach_folder_icon.diff don't use non-existing icons.
  * kubuntu_07_oxygenify_knetattach_icon.diff don't use crystal icons if an
    Oxygen replacement is available (using folder-new since it seems more
    appropriate considering kubuntu_01_nodisplay_knetattach.diff though).

 -- Harald Sitter <apachelogger@ubuntu.com>  Wed, 15 Oct 2008 02:06:39 +0200

kdebase-runtime (4:4.1.2-0ubuntu4) intrepid; urgency=low

  * Add kubuntu_04_kiosmb.diff from trunk, fixes smb access

 -- Jonathan Riddell <jriddell@ubuntu.com>  Tue, 14 Oct 2008 10:59:43 +0100

kdebase-runtime (4:4.1.2-0ubuntu3) intrepid; urgency=low

  [ Ryan Kavanagh ]
  * Make the Add Languages dropdown menu clear itself before listing the
    newly installed languages to avoid duplicates (LP: 278620)

  [ Harald Sitter ]
  * Add knotify4 manpage (LP: #278165)
  * Add kubuntu_01_onlyshow_knetattach_in_kde.diff to only show knetattach
    in KDE (LP: #277156)
  * Add kubuntu_02_fix_dash_incompatibility.diff (LP: #241916)
  * Add kubuntu_03_knetattach_use_sftp.diff to make knetattach use sftp by
    default, since it is preferred and works by default on Kubuntu (LP: #133957)

 -- Harald Sitter <apachelogger@ubuntu.com>  Mon, 06 Oct 2008 02:22:16 +0200

kdebase-runtime (4:4.1.2-0ubuntu2) intrepid; urgency=low

  * Added Versioned conflicts, provides, and replaces for khelpcenter4
  * Added transitional package for khelpcenter, for upgrade purposes
  * (LP: #271779)

 -- Sarah Hobbs <hobbsee@ubuntu.com>  Mon, 29 Sep 2008 11:41:29 +1000

kdebase-runtime (4:4.1.2-0ubuntu1) intrepid; urgency=low

  * New upstream release

 -- Harald Sitter <apachelogger@ubuntu.com>  Fri, 26 Sep 2008 15:05:23 +0200

kdebase-runtime (4:4.1.1-2) experimental; urgency=low

  +++ Changes by Ana Beatriz Guerrero Lopez:

  * Fix htdig paths, so Build Search Index should work now. (Closes: #497518)
    Patch 25_khelp_htdig.diff.

  +++ Changes by Modestas Vainius:

  * Provide the link /usr/bin/kdesu in kdebase-runtime-bin-kde4.
    (Closes: #495999)

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Wed, 10 Sep 2008 14:43:46 +0200

kdebase-runtime (4:4.1.1-1) experimental; urgency=low

  * New upstream release.

  +++ Changes by Sune Vuorela:

  * Refresh patches:
    + Remove 05_r839927_qreal.diff - merged upstream.
  * Remove KHelpcenter icons, they seem have moved away.
  * Rename Applets.desktop in khelpcenter, it is now called plasma.desktop.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Tue, 02 Sep 2008 18:34:08 +0200

kdebase-runtime (4:4.1.1-0ubuntu6) intrepid; urgency=low

  * kdebase-runtime replaces files from
    kdelibs4-dev << 4:3.5.10-0ubuntu3 (LP: 272383)

 -- Harald Sitter <apachelogger@ubuntu.com>  Sat, 20 Sep 2008 14:57:57 +0200

kdebase-runtime (4:4.1.1-0ubuntu5) intrepid; urgency=low

  * Remove .svgz files from kde-icons-oxygen.install

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 24 Sep 2008 13:32:29 +0100

kdebase-runtime (4:4.1.1-0ubuntu4) intrepid; urgency=low

  * Add ported version of kubuntu_85_language_selector.diff to
    launch language-selector from System Settings

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 08 Sep 2008 14:05:19 +0100

kdebase-runtime (4:4.1.1-0ubuntu3) intrepid; urgency=low

  * Remove:
    - 01_kde4_information_menu.diff
    - 02_ksvgtopng4.diff
    - 03_ktrash4.diff
    At least the latter patch caused problems (with the trash plasmoid) and
    since we don't ship a KDE 3 desktop anymore these patches are obsolete
    (LP: #264163)

 -- Harald Sitter <apachelogger@ubuntu.com>  Wed, 03 Sep 2008 09:59:06 +0200

kdebase-runtime (4:4.1.1-0ubuntu2) intrepid; urgency=low

  * Rebuild against kdelibs 4:4.1.1+really4.1.1

 -- Harald Sitter <apachelogger@ubuntu.com>  Tue, 02 Sep 2008 03:50:50 +0200

kdebase-runtime (4:4.1.1-0ubuntu1) intrepid; urgency=low

  * New upstream release

 -- Harald Sitter <apachelogger@ubuntu.com>  Fri, 29 Aug 2008 02:03:16 +0200

kdebase-runtime (4:4.1.0-2) unstable; urgency=high

  +++ Changes by Pino Toscano:

  * Add upstream patch 05_r839927_qreal.diff to fix the build of phonon-xine
    when qreal is not double but float.

  +++ Changes by Fathi Boudra:

  * Bump Standards-Version to 3.8.0 (no changes needed).

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Thu, 31 Jul 2008 10:09:25 +0200

kdebase-runtime (4:4.1.0-1) unstable; urgency=low

  * New upstream released.
  * Update build depends.
  * Reviewed copyright file. (Closes: #486343)

 -- Ana Beatriz Guerrero Lopez <ana@debian.org>  Fri, 25 Jul 2008 23:49:44 +0200

kdebase-runtime (4:4.1.0-0ubuntu3) intrepid; urgency=low

  * Remove dependency from kdebase-runtime-bin-kde4 on pmount

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

kdebase-runtime (4:4.1.0-0ubuntu2) intrepid; urgency=low

  * switch to kde4.mk from cdbs

 -- Jonathan Riddell <jriddell@ubuntu.com>  Fri, 01 Aug 2008 15:29:37 +0000

kdebase-runtime (4:4.1.0-0ubuntu1) intrepid; urgency=low

  [ Steve Stalcup ]
  * New upstream release, 4.1 final
    -updated kde-icons-oxygen.install file
    -bumped build-deps on kdepimlibs5-dev to (>= 4:4.1.0)

  [ Harald Sitter ]
  * Bump build-dep versions of libphonon-dev and libsoprano-dev
  * Remove kdebase-data as alternativ dependency of kdebase-runtime-data

 -- Harald Sitter <apachelogger@ubuntu.com>  Sat, 26 Jul 2008 01:56:07 +0200

kdebase-runtime (4:4.0.98-1) unstable; urgency=low

  * New upstream release, Release Candidate 1.

  +++ Changes by Modestas Vainius:

  * Remove Provides: phonon-backend, phonon-backend-xine from kdebase-runtime
    (Closes: #489801). kdebase-runtime does not shipped them, but
    phonon-backend-xine package does.
  * Correct ${source:Version} to ${binary:Version} in kdebase-runtime depends.
  * Move phononxine kcm module from kdebase-runtime* to phonon-backend-xine.
    Update Replaces as appropriate. That should make kdebase-runtime drop
    xine dependency.
  * kde-icons-oxygen replaces previous versions of libkdepim4
    (due to move of 32x32/actions/appointment-new.png).

  +++ Changes by Ana Beatriz Guerrero Lopez:

  * Update installed files.
  * Bump build depends on >= 4.0.98.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Mon, 14 Jul 2008 12:59:14 +0200

kdebase-runtime (4:4.0.98-0ubuntu2) intrepid; urgency=low

  * Edit kde-icons-oxygen.install to not install scalable icons,
    save disk space

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 21 Jul 2008 17:38:34 +0100

kdebase-runtime (4:4.0.98-0ubuntu1) intrepid; urgency=low

  * New upstream release candidate release
  * Bump Standards-Version to 3.8.0

 -- Harald Sitter <apachelogger@ubuntu.com>  Sat, 12 Jul 2008 03:29:58 +0200

kdebase-runtime (4:4.0.84+svn828328-1) unstable; urgency=low

  * New upstream development snapshot.
  * Remove 97_fix_target_link_libraries.diff, it is not needed now.

 -- Ana Beatriz Guerrero Lopez <ana@debian.org>  Sat, 05 Jul 2008 18:59:53 +0200

kdebase-runtime (4:4.0.84-1) experimental; urgency=low

  * New upstream snapshot.
  * Add build depend on libxcursor-dev.

 -- Sune Vuorela <debian@pusling.com>  Fri, 27 Jun 2008 20:54:53 +0200

kdebase-runtime (4:4.0.83-0ubuntu3) intrepid; urgency=low

  * Install kcm_phononxine to phonon-backend-xine

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 30 Jun 2008 14:48:28 +0000

kdebase-runtime (4:4.0.83-0ubuntu2) intrepid; urgency=low

  * Don't recommend htdig

 -- Jonathan Riddell <jriddell@ubuntu.com>  Wed, 25 Jun 2008 17:56:44 +0000

kdebase-runtime (4:4.0.83-0ubuntu1) intrepid; urgency=low

  * New upstream beta release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 19 Jun 2008 11:45:14 +0000

kdebase-runtime (4:4.0.82+svn819867-1) experimental; urgency=low

  * New upstream development snapshot.
  * Update install files.

  +++ Changes by Modestas Vainius:

  * Build depend on libasound2-dev on linux arches.
  * Add replaces with kdelibs5* due to moved phonon stuff.
  * Bump kdelibs5 build depends version. No longer depend on phonon, it's
    implied via kdelibs5-dev dependency.
  * Update 97_fix_target_link_libraries.diff.
  * Add myself to Uploaders.
  * Exclude dependancy on phonon metapackage.

  +++ Changes by Ana Beatriz Guerrero Lopez:

  * More updates on installed files.

  +++ Changes by Pino Toscano:

  * Split the Xine backend of Phonon in an own phonon-backend-xine.
  * Install phonon-backend-xine by default.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Sat, 14 Jun 2008 03:48:19 +0200

kdebase-runtime (4:4.0.80-2) experimental; urgency=low

  +++ Changes by Modestas Vainius:

  * Install desktop-directory files to kdebase-runtime-data-common (37 files).
  * Bump kdepimlibs5-dev and libphonon-dev build dependencies to 4.0.80
    (Closes: #483117)
  * Revive khelpcenter (from r9108) as khelpcenter4 package. Make it conflict
    with khelpcenter (KDE3). Make kdebase-runtime-data-common recommend
    khelpcenter4.
    - Add some replaces for khelpcenter4: kdebase-runtime-data due to
      Help.desktop and org.kde.khelpcenter.kcmhelpcenter.xml, kdebase-runtime
      due to libkdeinit4_khelpcenter.so. Update respective install files.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Tue, 27 May 2008 22:22:42 +0200

kdebase-runtime (4:4.0.80-1ubuntu3) intrepid; urgency=low

  * Fix config install paths

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 09 Jun 2008 16:08:33 +0100

kdebase-runtime (4:4.0.80-1ubuntu2) intrepid; urgency=low

  * Update kde.mk, use /usr/share/kde4/config for settings, mark
    packages as Kubuntu not Debian

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 09 Jun 2008 15:10:36 +0100

kdebase-runtime (4:4.0.80-1ubuntu1) intrepid; urgency=low

  * New upstream release, merge with Debian
  * Remove 97_fix_target_link_libraries.diff

 -- Jonathan Riddell <jriddell@ubuntu.com>  Tue, 27 May 2008 10:51:47 +0100

kdebase-runtime (4:4.0.80-1) experimental; urgency=low

  * New upstream development milestone (KDE 4.1 Beta1).

  +++ Changes by Modestas Vainius:

  * Resync 97th patch.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Mon, 26 May 2008 16:47:21 +0300

kdebase-runtime (4:4.0.74-1) experimental; urgency=low

  * New upstream snapshot.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Fri, 16 May 2008 13:38:34 +0200

kdebase-runtime (4:4.0.73+svn807734-1) experimental; urgency=low

  * New upstream development snapshot:
    - The latest upstream commit is r807734 by mkretz
    - Date: Wed May 14 15:44:43 2008 UTC

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Wed, 14 May 2008 21:20:39 +0200

kdebase-runtime (4:4.0.72-1) experimental; urgency=low

  * New upstream development snapshot.

  +++ Changes by Fathi Boudra:

  * Add libstreamanalyzer-dev and libx11-dev build dependencies.

  +++ Changes by Modestas Vainius:

  * Add build dependencies on libopenexr-dev and libbz2-dev.
  * Add 97_fix_target_link_libraries.diff to fix link failures.
  * Add installgen files.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Wed, 30 Apr 2008 22:04:19 +0200

kdebase-runtime (4:4.0.68+svn794641-1) experimental; urgency=low

  * New upstream snapshot.

  +++ Changes by Sune Vuorela:

  * Some files conflicting with kde3 kdebase-data moved in from -workspace.
    They also don't belong in runtime, but windows don't have workspace. Put
    them in not-installed so far. This is post revision 792360.

  +++ Changes by Ana Beatriz Guerrero Lopez:

  * Update installed files.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Thu, 03 Apr 2008 23:42:16 +0200

kdebase-runtime (4:4.0.66+svn791114-1) experimental; urgency=low

  * First KDE 4.1 snapshot packaged, this goes to experimental.
  * Update installed files.
  * Bump build depends on >= 4.0.66
  * Build depends on strigi >= 0.5.8-2 built against Qt 4.4 on experimental
    and soprano >= 2.0.97~.

 -- Ana Beatriz Guerrero Lopez <ana@debian.org>  Fri, 28 Mar 2008 15:05:35 +0100

kdebase-runtime (4:4.0.3-0ubuntu2) hardy; urgency=low

  * Removed kdebase-bin-kde3 conflict and it replacing
    kdebase-bin (<< 4:3.96.0)

 -- Jonathan Aquilina <eagles051387@gmail.com>  Mon, 14 Apr 2008 16:13:25 +0200

kdebase-runtime (4:4.0.3-0ubuntu1) hardy; urgency=low

  * New upstream release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Fri, 28 Mar 2008 11:59:57 +0000

kdebase-runtime (4:4.0.2-1) unstable; urgency=low

  * New upstream release.

  +++ Changes by Armin Berres:

  * Ignore debug symbols from kdebase-runtime-kde4 (Closes: #464106)

  +++ Changes by Fathi Boudra:

  * Add /usr/share/doc/KDE4/html/en/*/common in kdebase-runtime-data package.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Tue, 04 Mar 2008 22:43:18 +0100

kdebase-runtime (4:4.0.2-0ubuntu2) hardy; urgency=low

  * Fix exec path in knetattach's desktop file (LP: #200925)

 -- Harald Sitter <apachelogger@ubuntu.com>  Sun, 23 Mar 2008 03:06:31 +0100

kdebase-runtime (4:4.0.2-0ubuntu1) hardy; urgency=low

  * New upstream release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 03 Mar 2008 11:37:30 +0000

kdebase-runtime (4:4.0.1-1) unstable; urgency=low

  * New upstream release.
  * Bump to build-depends >= 4:4.0.1.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Mon, 04 Feb 2008 13:45:37 +0100

kdebase-runtime (4:4.0.1-0ubuntu1) hardy; urgency=low

  * New upstream release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 31 Jan 2008 17:34:08 +0000

kdebase-runtime (4:4.0.0-3) unstable; urgency=low

  +++ Changes by Ana Beatriz Guerrero Lopez:

  * Do not ship khelpcenter for now, KDE 4 does not contain any help anyway,
    and it is updating KDE 3's khelpcenter. (Closes: #462227)
  * Move Conflict on kdebluetooth from the source fields to the
    kdebase-runtime package fields.

  +++ Changes by Matthew Rosewarne:

  * Changed kdebase-runtime-dbg Depends: kdelibs5-dbg to kdepimlibs-dbg.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Tue, 22 Jan 2008 20:07:02 -0500

kdebase-runtime (4:4.0.0-2) unstable; urgency=low

  +++ Changes by Armin Berres:

  * Add conflicts and replaces for a smoother upgrade.

  +++ Changes by Fathi Boudra:

  * Add hal and pmount Recommends to kdebase-runtime-bin-kde4 package,
    previously in kde4libs.
  * Add conflicts to kdebase-runtime against kdebluetooth << 1.0~beta7-1.
    because of /usr/bin/kioclient. (Closes: #461211)
  * Add Vcs-Browser and Vcs-Svn fields.
  * Bump compat/debhelper to 6.

  +++ Changes by Matthew Rosewarne:

  * Tweak package descriptions.
  * Change Soprano minimum version to 2.0.0.
  * Change KDE 4 dependency version to 4:4.0.0-1.
  * Remove unnecessary Replaces.
  * Make dependencies binNMU-friendly.
  * Change kdebase-runtime-dbg Depends from kdepimlibs-dbg to kdelibs5-dbg.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Tue, 22 Jan 2008 10:18:14 +0100

kdebase-runtime (4:4.0.0-1) experimental; urgency=low

  * New upstream release.

  +++ Changes by Armin Berres:

  * Add a patch to make kdebugdialog only select debug areas
    which aren't enabled.

  +++ Changes by Ana Beatriz Guerrero Lopez:

  * Update *.install files, sounds files have been renamed and they are all
    now only in kdebase-runtime-data without clashing with KDE3's files.
  * Update years in copyright.
  * Bump build-depends to >= 4.0.0-1.

  +++ Changes by Matthew Rosewarne:

  * Add Homepage: to control.
  * Tweak package descriptions.
  * Replace source:Version with binary:Version.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Sat, 05 Jan 2008 08:04:49 +0100

kdebase-runtime (4:4.0.0-0ubuntu2) hardy; urgency=low

  * set XDG_APPS_INSTALL_DIR=/usr/share/applications/kde4/ in kde.mk

 -- Jonathan Riddell <jriddell@ubuntu.com>  Tue, 29 Jan 2008 13:30:51 +0000

kdebase-runtime (4:4.0.0-0ubuntu1) hardy; urgency=low

  * New upstream release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Sun, 06 Jan 2008 18:18:36 +0000

kdebase-runtime (4:3.98.0~svn755919-2ubuntu1) hardy; urgency=low

  * Merge with Debian, remaining change: our kde.mk and paths
  * kdebase-runtime-data-common does not replace kdebase-data
  * kdebase-runtime depends on dbus-x11

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 03 Jan 2008 13:30:55 +0000

kdebase-runtime (4:3.98.0~svn755919-1) experimental; urgency=low

  * New svn snapshot release to revision 755919.

  +++ Changes by Fathi Boudra:

  * Add libphonon-dev build dependency.
  * Bump soprano build dependency version.

  +++ Changes by Armin Berres:

  * Raise build-dep to >= 4:3.98.0~svn755919-1.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Wed, 02 Jan 2008 11:12:58 +0100

kdebase-runtime (4:3.98.0~svn753247-1) experimental; urgency=low

  * Svn snapshot of revision 753247.

  +++ Changes by Armin Berres:

  * Replace the meta-package kdebase-workspace with the former content of the
    now removed kdebase-runtime-bin.
  * Use source:Version when depending on arch-all packages.
  * Make dependency of kdebase-runtime-data on kdebase-runtime-data-common
    versioned.
  * Add some missing replaces when conflicting with packages.

  +++ Changes by Ana Beatriz Guerrero Lopez:

  * Bump build-dep to >= 4:3.98.0~svn753247-1.
  * Update *.install files.
  * Remove kinfocenter, it has been moved to kdebase.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Thu, 27 Dec 2007 02:36:47 +0100

kdebase-runtime (4:3.97.0-1ubuntu5) hardy; urgency=low

  * Merge with Debian
  * Remove CMAKE_SKIP_RPATH from debian/cdbs/kde.mk due to our install
    directories

  +++ Added by Terence Simpson

  * Really pass arguements to executibles from wrapper scripts
  * Add PATH to wrapper scripts

 -- Richard A. Johnson <nixternal@kubuntu.org>  Sun, 30 Dec 2007 23:20:44 -0600

kdebase-runtime (4:3.97.0-1ubuntu4) hardy; urgency=low

  * Fix Exec= entry in .desktop files
  * Pass arguements to executibles from wrapper scripts

 -- Terence Simpson <stdin@stdin.me.uk>  Wed, 12 Dec 2007 16:40:19 +0000

kdebase-runtime (4:3.97.0-1ubuntu3) hardy; urgency=low

  * Move wrapper script target in debian/rules

 -- Jonathan Riddell <jriddell@ubuntu.com>  Sat, 08 Dec 2007 11:16:36 +0000

kdebase-runtime (4:3.97.0-1ubuntu2) hardy; urgency=low

  * Add epoch to kdepimlibs build-dep

 -- Jonathan Riddell <jriddell@ubuntu.com>  Fri, 07 Dec 2007 11:30:09 +0000

kdebase-runtime (4:3.97.0-1ubuntu1) hardy; urgency=low

  * Merge with Debian for new upstream release

 -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 06 Dec 2007 12:28:06 +0000

kdebase-runtime (4:3.97.0-1) experimental; urgency=low

  * New upstream release:
    - Bump build-dep to >=4:3.97.0.
    - Add epoch to kdepimlibs build-dep.
    - Update *.install files.
  * Update Standards-Version to 3.7.3.
  * khelpenter still needs htdig, add Depends on it.
  * Add export LDFLAGS+="-Wl,--as-needed" in rules to make dpkg-shlibdeps
    happier.

 -- Ana Beatriz Guerrero Lopez <ana@debian.org>  Fri, 07 Dec 2007 17:31:14 +0100

kdebase-runtime (4:3.96.0-2) experimental; urgency=low

  * kdebase-runtime-bin-kde4 must be Arch: any. (Closes: #452538)

 -- Ana Beatriz Guerrero Lopez <ana@debian.org>  Fri, 23 Nov 2007 18:51:07 +0100

kdebase-runtime (4:3.96.0-1ubuntu1) hardy; urgency=low

  * Sync with Debian
  * Use modified kde.mk
  * Rename packages:
   - khelpcenter -> khelpcenter-kde4
   - kinfocenter -> kinfocenter-kde4
  * Remove replaces/conflicts to kde 3 packages

 -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 19 Nov 2007 13:12:03 +0000

kdebase-runtime (4:3.96.0-1) experimental; urgency=low

  *  New upstream release.

  +++ Changes by Armin Berres:

  * Depend on up to date kdepimlibs5-dev.
  * Split kdebase-runtime-data-common off which contains conflicting files with KDE3's
    kdebase-data package. kdebase-runtime-data-common will be installed if
    KDE3's kdebase-data is not installed.
  * Split out kdebase-runtime-bin-kde4 which contains files which can be
    provided by KDE3 or KDE4.
  * kdebase-runtime-data must replace kdebase-data versions less than
    4:3.95.0 and not 3.95.0.
  * Fix 02_ksvgtopng4 and 03_ktrash4 patches.
  * Move the rest of drkonqi into kdebase-runtime-data and remove the package.
  * Move kinfocenter into a separate package.

  +++ Changes by Fathi Boudra:

  * Remove 01_knotify4_desktop patch. Merged upstream.
  * Bump kdepimlibs5-dev build dependency version.
  * Add libclucene-dev, libsoprano-dev and libstrigiqtdbusclient-dev build
    dependencies for nepomuk.
  * Update installed files.
  * Add 01_kde4_information_menu: prepend kde4 to information.menu.
  * Add 02_ksvgtopng4: append 4 to ksvgtopng.
  * Add 03_ktrash4: append 4 to ktrash.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Wed, 14 Nov 2007 22:33:53 +0100

kdebase-runtime (4:3.95.2-1) experimental; urgency=low

  * New upstream release.

  +++ Changes by Fathi Boudra:

  * Remove 01_knotify4_desktop patch. Merged upstream.
  * Bump kdepimlibs5-dev build dependency version.
  * Add libclucene-dev, libsoprano-dev and libstrigiqtdbusclient-dev build
    dependencies for nepomuk.
  * Update installed files.
  * Add 01_kde4_information_menu: prepend kde4 to information.menu.
  * Add 02_ksvgtopng4: append 4 to ksvgtopng.
  * Add 03_ktrash4: append 4 to ktrash.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Fri, 09 Nov 2007 00:13:11 +0100

kdebase-runtime (4:3.95.0-1) experimental; urgency=low

  * KDE 4 beta 4, first upload to the Debian archive.

  +++ Changes by Armin Berres:

  * Initial release with KDE4 beta 4. Former part of kdebase.

  +++ Changes by Fathi Boudra:

  * Add kdebase-runtime-data build dependency to kdebase-runtime-bin.
  * Add 01_knotify4_desktop patch. Execute the right binary name.
  * Add gdb dependency to drkonqi.

 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  Wed, 31 Oct 2007 14:30:35 +0100