1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923
|
kde-runtime (4:16.08.3-2) unstable; urgency=medium
* Add new patch: Make-sure-people-are-not-trying-to-sneak-invisible-charac.patch.
Thanks to Moritz Mühlenhoff for the follow ups to the kde-cli-tools' bug
(Closes: 842498) See: CVE-2016-7787
-- Maximiliano Curia <maxy@gnuservers.com.ar> Tue, 21 Mar 2017 11:25:21 +0100
kde-runtime (4:16.08.3-1) unstable; urgency=medium
* New upstream release (16.08.3)
-- Maximiliano Curia <maxy@debian.org> Wed, 23 Nov 2016 21:07:35 +0100
kde-runtime (4:16.08.2-1) unstable; urgency=medium
* New upstream release (16.08.2)
-- Maximiliano Curia <maxy@debian.org> Tue, 18 Oct 2016 23:56:09 +0200
kde-runtime (4:16.08.0-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* Drop oxygen5-icon-theme primary alternative for oxygen-icon-theme, leaving
only the latter (which is the canonical package).
* Update lintian overrides.
* Limit the udisks2 recommend in kde-runtime as linux-any, as udisks2 is
Linux-specific.
* Update the patches:
- kubuntu_drkonqi_whoopsie_integration.patch: drop, KUbuntu-specific
(whoopsie is not even available in Debian)
- kubuntu_disable-gpg-backend.diff: drop, as it was not applied anymore
since 4:16.04.2-2
* Stop installing the webp mime type definition, since shared-mime-info
provides it already.
-- Pino Toscano <pino@debian.org> Sun, 21 Aug 2016 10:16:51 +0200
kde-runtime (4:16.04.3-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* Remove the unused libqzeitgeist-dev build dependency.
* Update the patches:
- upstream_set-cmake_min_req-to-match-kdelibs-policy-and-enable.patch:
drop, backported
- upstream_cmake-fix-add_definitions-according-to-new-policy.patch: drop,
backported
* Stop shipping the custom /etc/sysctl.d/30-baloo-inotify-limit.conf: this
is the wrong place for it, and maybe no more needed.
* Fix arch-dep Hurd build: dnyamically create kde-runtime.install.hurd from
kde-runtime.install, removing the samba bits.
-- Pino Toscano <pino@debian.org> Sun, 31 Jul 2016 20:26:03 +0200
kde-runtime (4:16.04.2-2) unstable; urgency=medium
* Prefer oxygen5-icon-theme
* Refresh patches
* Reenable gpg backend
-- Maximiliano Curia <maxy@debian.org> Mon, 04 Jul 2016 15:08:04 +0200
kde-runtime (4:16.04.2-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* Disable the build of khelpcenter, as it is not used from this source.
- remove leftover bits from kde-runtime.install
- stop use the ${perl:Depends} substvar in kde-runtime
* Wrap too long changelog lines in older entries.
* Remove unused and outdated installgen file.
* Restore headers for patches.
* Drop patch khelp_htdig.diff, no more needed now that khelpcenter is not
built.
* Clean not-installed file.
* Backport upstream commits 5a1d89e006ca69c6bf5351a796f7da57a6f96582 and
823d2fbd9cbc146e007510a41b4820fb8b9e81b8 to set the cmake minimum version
required and policies, and build properly with that; patches
upstream_set-cmake_min_req-to-match-kdelibs-policy-and-enable.patch and
upstream_cmake-fix-add_definitions-according-to-new-policy.patch.
* Fix build on Hurd, by providing a fallback definition of PATH_MAX in
kio_nfs; patch hurd.diff.
-- Pino Toscano <pino@debian.org> Sat, 18 Jun 2016 12:20:25 +0200
kde-runtime (4:16.04.0-1) unstable; urgency=medium
[ Automatic packaging ]
* Bump Standards-Version to 3.9.8
* Missing line in diff file
* Refresh patches
[ Maximiliano Curia ]
* New upstream release (15.12.2).
* Replace the "Historical name" ddeb-migration by its "Modern, clearer"
replacement dbgsym-migration.
* Add upstream metadata (DEP-12)
* debian/control: Update Vcs-Browser and Vcs-Git fields
* Drop openslp from the build deps
* Update testsuite scripts
* testsuite: Add a basic XDG environment, use kdeinit4
* testsuite: add missing openbox
-- Maximiliano Curia <maxy@debian.org> Fri, 13 May 2016 22:31:07 +0200
kde-runtime (4:15.12.1-1) experimental; urgency=medium
* New upstream release (15.12.0).
* New upstream release (15.12.1).
-- Maximiliano Curia <maxy@debian.org> Mon, 01 Feb 2016 10:22:47 +0100
kde-runtime (4:15.08.3-1) unstable; urgency=medium
* New upstream release (15.08.3).
-- Maximiliano Curia <maxy@debian.org> Wed, 02 Dec 2015 12:39:34 +0100
kde-runtime (4:15.08.2-1) unstable; urgency=medium
* New upstream release (15.08.2).
-- Maximiliano Curia <maxy@debian.org> Fri, 16 Oct 2015 08:06:41 +0200
kde-runtime (4:15.08.1-1) unstable; urgency=medium
* New upstream release (15.08.1).
-- Maximiliano Curia <maxy@debian.org> Sat, 19 Sep 2015 19:10:37 +0200
kde-runtime (4:15.08.0-2) unstable; urgency=medium
* Team upload.
* Don't build smbclient support on hurd due to Bug #190367
-- Diane Trout <diane@debian.org> Mon, 31 Aug 2015 16:31:54 -0700
kde-runtime (4:15.08.0-1) unstable; urgency=medium
* New upstream release (15.04.0).
* New upstream release (15.04.1).
* New upstream release (15.04.2).
* New upstream release (15.04.3).
* New upstream release (15.08.0).
* New patch: add_glib_for_nm.
* Add libsoprano-dev build dep.
-- Maximiliano Curia <maxy@debian.org> Mon, 31 Aug 2015 20:14:55 +0200
kde-runtime (4:14.12.3-1) experimental; urgency=medium
* New upstream release (14.12.3).
-- Maximiliano Curia <maxy@debian.org> Sun, 29 Mar 2015 15:13:32 +0200
kde-runtime (4:14.12.3-0ubuntu1) vivid; urgency=medium
* New upstream release
-- Scarlett Clark <sgclark@kubuntu.org> Fri, 13 Mar 2015 14:32:44 -0700
kde-runtime (4:14.12.2-1) experimental; urgency=medium
* New upstream release (14.12.2).
* Bump Standards-Version to 3.9.6, no changes needed.
* Remove upstream patch: upstream_sanitize_path
* Refresh patches.
-- Maximiliano Curia <maxy@debian.org> Tue, 24 Feb 2015 13:12:06 +0100
kde-runtime (4:14.12.2-0ubuntu1) vivid; urgency=medium
* New upstream release
-- Scarlett Clark <sgclark@kubuntu.org> Tue, 10 Feb 2015 09:36:06 -0800
kde-runtime (4:14.12.0-0ubuntu3) vivid; urgency=medium
* Remove depends on qapt-runtime
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 27 Jan 2015 11:05:59 +0100
kde-runtime (4:14.12.0-0ubuntu2) vivid; urgency=medium
* Don't apply kubuntu_langpack_install.diff, libkubuntu is moving to
kf5
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 20 Jan 2015 17:38:58 +0100
kde-runtime (4:14.12.0-0ubuntu1) vivid; urgency=medium
[ Scarlett Clark ]
* New upstream release
* Remove kdelibs5-dev depend version as there was not a new release.
* Remove kdepimlibs5-dev depend version as there was not a new release.
[ Jonathan Riddell ]
* Do not make khelpcenter4, we have khelpcenter from plasma 5
-- Scarlett Clark <sgclark@kubuntu.org> Fri, 12 Dec 2014 04:24:33 -0800
kde-runtime (4:14.11.97-0ubuntu1) vivid; urgency=medium
[ Philip Muškovac ]
* Merge with debian git, remaining changes:
- add and install 30-baloo-inotify-limit.conf
- build-depend on libboost1.55-dev instead of libboost-dev
- build-depend on libkubuntu-dev
- kde-runtime:
+ depends on language-selector-common and libqapt2-runtime
+ recommends, not suggests icoutils, libcanberra-pulse,
sound-theme-freedesktop
+ recommends udisks2, upower
+ breaks/replaces kde-runtime-data (<< 4:4.13.97)
- kde-runtime-data breaks/replaces kde-runtime (<< 4:4.13.90)
- khelpcenter4 breaks/replaces kde-runtime-data (<< 4:4.13.90)
- put kdesu into /usr/lib/kde4/libexec/kdesu-distrib/
- add kde-runtime.(postins|preinst|prerm) for kdesu handling
- keep our changes to not-installed
- add patches:
+ kubuntu_disable-gpg-backend.diff
+ kubuntu_drkonqi_whoopsie_integration.patch
+ kubuntu_langpack_install.diff
+ kubuntu_nodisplay_knetattach.diff
+ kubuntu_shutup_shutup_shutup.diff
+ upstream_CVE-2014-8600.diff
+ use_always_present_path_to_test.patch
* New upstream release candidate
- drop upstream_CVE-2014-8600.diff, applied upstream
- refresh kde-runtime-data.install
* Fix watch urls for new release location
* Update Vcs urls for the new repository location
* Update the maintainer
[ Jonathan Riddell ]
* Make depends on kdelibs5-plugins unversioned
-- Philip Muškovac <yofel@kubuntu.org> Sun, 23 Nov 2014 18:30:53 +0100
kde-runtime (4:4.14.2-5) UNRELEASED; urgency=medium
* Team upload.
* Don't build smbclient support on hurd due to Bug #190367
-- Diane Trout <diane@debian.org> Thu, 27 Aug 2015 18:11:46 -0700
kde-runtime (4:4.14.2-4) unstable; urgency=medium
* Team upload.
* Remove helpcenter4 binary as it's now provided as a transitional package
by the Kf5 based khelpcenter package
- Remove from debian/control
- Remove debian/khelpcenter4.dirs debian/khelpcenter4.install
debian/khelpcenter4.links debian/khelpcenter4.lintian-overrides
- Add files from debian/khelpcenter4.install to debian/not-installed
-- Scott Kitterman <scott@kitterman.com> Wed, 26 Aug 2015 00:07:42 -0400
kde-runtime (4:4.14.2-3) unstable; urgency=medium
* Team upload.
* Add libsoprano-dev to build-depends to fix FTBFS now that it is no longer
pulled in transitively
-- Scott Kitterman <scott@kitterman.com> Tue, 25 Aug 2015 16:59:36 -0400
kde-runtime (4:4.14.2-2) unstable; urgency=medium
[ Lisandro Damián Nicanor Pérez Meyer ]
* Remove myself from Uploaders.
[ Maximiliano Curia ]
* New upstream patch: upstream_sanitize_path, fixes CVE-2014-8600
(Closes: #769632) Thanks to Salvatore Bonaccorso
-- Maximiliano Curia <maxy@debian.org> Wed, 10 Dec 2014 20:23:02 +0100
kde-runtime (4:4.14.2-1) unstable; urgency=medium
* Add Suggests of libcanberra-pulse and sound-theme-freedesktop, used
in the Audio Hardware Setup to test the speakers. (Closes: #737779)
* New upstream release (4.14.2).
* Remove upstream applied patch:
kshorturifilter_qgetenv_calling_error.diff
-- Maximiliano Curia <maxy@debian.org> Tue, 21 Oct 2014 19:12:39 +0200
kde-runtime (4:4.14.2-0ubuntu2) vivid; 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> Mon, 17 Nov 2014 17:52:25 +0100
kde-runtime (4:4.14.2-0ubuntu1) vivid; urgency=medium
* New upstream release
* Remove kshorturifilter_qgetenv_calling_error.diff applied upstream.
-- Scarlett Clark <sgclark@kubuntu.org> Fri, 10 Oct 2014 04:20:34 -0700
kde-runtime (4:4.14.1-1) unstable; urgency=medium
* New upstream release (4.14.1).
* kde-runtime-data: Update install file.
* Remove patch: use_always_present_path_to_test.patch, no longer
needed.
-- Maximiliano Curia <maxy@debian.org> Fri, 19 Sep 2014 15:24:08 +0200
kde-runtime (4:4.14.1-0ubuntu1) utopic; urgency=medium
* New upstream release
* Add missing qwant searchproviders files to install file.
* wrap-and-sort
-- Scarlett Clark <scarlett@scarlettgatelyclark.com> Mon, 22 Sep 2014 17:06:28 +0200
kde-runtime (4:4.14.0-2) unstable; urgency=medium
* Add libssh-gcrypt build-dep. (Closes: #759254, #739494)
-- Maximiliano Curia <maxy@debian.org> Sat, 06 Sep 2014 20:44:36 +0200
kde-runtime (4:4.14.0-1) unstable; urgency=medium
* Disable libssh build-dep, due to openssl license incompatibility.
(Closes: #750867)
* Update install files.
* New upstream release.
-- Maximiliano Curia <maxy@debian.org> Sun, 24 Aug 2014 23:26:40 +0200
kde-runtime (4:4.14.0-0ubuntu1) utopic; urgency=medium
* New upstream release
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 20 Aug 2014 12:49:02 +0200
kde-runtime (4:4.13.97-0ubuntu4) utopic; urgency=medium
* Bump kde-runtime-data breaks/replaces kde-runtime version for the SRU
updates
-- Philip Muškovac <yofel@kubuntu.org> Tue, 12 Aug 2014 22:08:00 +0200
kde-runtime (4:4.13.97-0ubuntu3) utopic; urgency=medium
* Bump khelpcenter4 replaces/breaks kde-runtime-data version for
updates
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 12 Aug 2014 20:03:22 +0200
kde-runtime (4:4.13.97-0ubuntu2) utopic; urgency=medium
* Add breaks/replaces on old kde-runtime-data for overlapping
othercontrolmodules.desktop
-- Jonathan Riddell <jriddell@ubuntu.com> Mon, 11 Aug 2014 17:25:20 +0200
kde-runtime (4:4.13.97-0ubuntu1) utopic; urgency=medium
* New upstream beta release RC
-- Scarlett Clark <scarlett@scarlettgatelyclark.com> Fri, 01 Aug 2014 16:36:31 +0200
kde-runtime (4:4.13.95-0ubuntu1) utopic; urgency=medium
[ Scarlett Clark ]
* New upstream beta release
[ Harald Sitter ]
* Version khelpcenter4->khelpcenter breaks/conflicts to only affect << 4:4.0
-- Scarlett Clark <scarlett@scarlettgatelyclark.com> Wed, 30 Jul 2014 18:06:07 +0200
kde-runtime (4:4.13.90-0ubuntu1) utopic; urgency=medium
* New upstream beta release
* Removed version from libkactivities-dev depend as it has not been updated.
-- Scarlett Clark <scarlett@scarlettgatelyclark.com> Thu, 17 Jul 2014 13:01:17 -0700
kde-runtime (4:4.13.3-1) unstable; urgency=medium
[ Adrien Grellier ]
* build with libwebp (Closes: #736574)
[ Maximiliano Curia ]
* New upstream release.
* Version khelpcenter4->khelpcenter breaks/conflicts to only affect <<
4:4.0
-- Maximiliano Curia <maxy@debian.org> Thu, 31 Jul 2014 21:53:33 +0200
kde-runtime (4:4.13.2-0ubuntu5) utopic; urgency=medium
* kde-runtime-data Breaks/Replaces kde-runtime (LP: #1331840)
-- Rohan Garg <rohangarg@kubuntu.org> Thu, 19 Jun 2014 19:22:44 +0200
kde-runtime (4:4.13.2-0ubuntu4) utopic; urgency=medium
* khelpcenter4 breaks/replaces kde-runtime-data << 4:4.13.2-0ubuntu3~
-- Philip Muškovac <yofel@kubuntu.org> Thu, 19 Jun 2014 10:28:47 +0200
kde-runtime (4:4.13.2-0ubuntu3) utopic; urgency=medium
* Remove khelpcentre files in kde-runtime-data
-- Jonathan Riddell <jriddell@ubuntu.com> Thu, 19 Jun 2014 09:00:26 +0100
kde-runtime (4:4.13.2-0ubuntu2) utopic; urgency=medium
* Update kde-runtime-data.install
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 18 Jun 2014 14:58:28 +0100
kde-runtime (4:4.13.2-0ubuntu1) utopic; urgency=medium
[ Rohan Garg ]
* Merge with Debian, remaining changes:
- Add patches
+ kubuntu_langpack_install.diff
+ kubuntu_nodisplay_knetattach.diff
+ kubuntu_shutup_shutup_shutup.diff
- debian/control:
+ Depend on boost 1.55
+ Add build-dep on libkubuntu-dev
+ kde-runtime depends on language-selector-common, libqapt2-runtime
+ add udisks, upower, kubuntu-debug-installer, icoutils,
libcanberra-pulse | libcanberra-gstreamer to kde-runtime recommends
+ helpcenter4 no recommend on htdig
- 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
+ install plasma active QML components and remove from not-installed
- 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
- add 30-nepomuk-inotify-limit.conf
[ Jonathan Riddell ]
* New upstream release
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 18 Jun 2014 12:41:03 +0100
kde-runtime (4:4.13.1-1) unstable; urgency=medium
* New upstream release.
* Update build-dependencies.
* Update kde-runtime dependencies.
* Update install files.
* New patch: disable_kwalletd_autotests
-- Maximiliano Curia <maxy@debian.org> Mon, 26 May 2014 14:19:23 +0200
kde-runtime (4:4.13.0-1) unstable; urgency=medium
* New upstream release.
* Update build-dependencies.
* Update kde-runtime dependencies.
* Update install files.
* New patch: disable_kwalletd_autotests
-- Maximiliano Curia <maxy@debian.org> Mon, 26 May 2014 14:19:23 +0200
kde-runtime (4:4.13.0-0ubuntu2) utopic; urgency=medium
* Build against boost1.55.
-- Dimitri John Ledkov <xnox@ubuntu.com> Sat, 03 May 2014 21:58:57 +0100
kde-runtime (4:4.13.0-0ubuntu1) trusty; urgency=medium
* New upstream KDE Software Compilation release
-- Jonathan Riddell <jriddell@ubuntu.com> Thu, 10 Apr 2014 21:57:18 +0100
kde-runtime (4:4.12.97-0ubuntu3) trusty; urgency=medium
* Flat diff import upstream git commits since 4.12.97 from KDE/4.13 branch in
patches/upstream_git.patch (using flat diff because of intermediate merges)
* Bring back kubuntu_disable-gpg-backend.diff dropped in 4:4.12.97-0ubuntu2
in a revised, more complete version. In addition to changes brought in by
upstream_git.patch this should make the disabling work as intended.
-- Harald Sitter <apachelogger@kubuntu.org> Tue, 08 Apr 2014 12:38:48 +0200
kde-runtime (4:4.12.97-0ubuntu2) trusty; urgency=medium
* Drop kubuntu_disable-gpg-backend.diff, causes crashes for
various users (LP: #1298951)
-- Rohan Garg <rohangarg@kubuntu.org> Wed, 02 Apr 2014 14:48:01 +0200
kde-runtime (4:4.12.97-0ubuntu1) trusty; urgency=medium
* New upstream release candidate
-- Philip Muškovac <yofel@kubuntu.org> Wed, 02 Apr 2014 11:21:51 +0200
kde-runtime (4:4.12.95-0ubuntu2) trusty; urgency=medium
* Disable the GPG backend since it does not work
-- Rohan Garg <rohangarg@kubuntu.org> Thu, 27 Mar 2014 13:41:03 +0100
kde-runtime (4:4.12.95-0ubuntu1) trusty; urgency=medium
* New upstream beta release
-- Rohan Garg <rohangarg@kubuntu.org> Sun, 23 Mar 2014 12:23:16 +0100
kde-runtime (4:4.12.90-0ubuntu2) trusty; urgency=medium
* Remove KDERUNTIME_BUILD_NEPOMUK=TRUE so nepomuk isn't build anymore
and remove the nepomuk related files from the install files
* Rename 30-nepomuk-inotify-limit.conf to 30-baloo-inotify-limit.conf
* Don't depend on nepomuk-core-runtime anymore, but still recommend it
for nepomukbaloomigrator
-- Philip Muškovac <yofel@kubuntu.org> Wed, 19 Mar 2014 17:04:26 +0100
kde-runtime (4:4.12.90-0ubuntu1) trusty; urgency=medium
[ Rohan Garg ]
* Update install files
* Pass KDERUNTIME_BUILD_NEPOMUK=TRUE to cmake to build nepomuk
[ Jonathan Riddell ]
* New upstream beta release
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 19 Mar 2014 10:51:27 +0000
kde-runtime (4:4.12.4-1) unstable; urgency=medium
* New upstream release.
* New patch: disable_flacky_tests
-- Maximiliano Curia <maxy@debian.org> Mon, 28 Apr 2014 12:24:17 +0200
kde-runtime (4:4.12.3-1) experimental; urgency=medium
* New upstream release.
-- Maximiliano Curia <maxy@debian.org> Tue, 04 Mar 2014 00:05:51 +0100
kde-runtime (4:4.12.3-0ubuntu1) trusty; urgency=medium
[ Rohan Garg ]
* Drop kubuntu_kde-runtime-4.9.98-kde#310486.patch, KDE Workspace
will only have bug fix releases, hence this patch is not required
[ Harald Sitter ]
* Dep3 for kubuntu_drkonqi_whoopsie_integration.patch
[ Rohan Garg ]
* New upstream bugfix release
-- Rohan Garg <rohangarg@kubuntu.org> Tue, 04 Mar 2014 20:43:29 +0100
kde-runtime (4:4.12.2-1) experimental; urgency=medium
* New upstream release.
* Update build dependencies.
* Update install files.
* Bump kde-sc-dev-latest build dependency.
-- Maximiliano Curia <maxy@debian.org> Mon, 10 Feb 2014 11:32:18 +0100
kde-runtime (4:4.12.2-0ubuntu2) trusty; urgency=medium
* Update kubuntu_langpack_install.diff for 4.12.2 from
git@git.kde.org:clones/kde-runtime/sitter/kubuntu
+ Also port to libkubuntu, cutting the patch in half.
+ This is part of the ongoing movement towards upstreaming this patch.
* Drop libqapt-dev as build dependency
* Add libkubuntu-dev as build dependency
-- Harald Sitter <apachelogger@kubuntu.org> Mon, 10 Feb 2014 12:41:19 +0100
kde-runtime (4:4.12.2-0ubuntu1) trusty; urgency=medium
* New upstream bugfix release
-- Rohan Garg <rohangarg@kubuntu.org> Tue, 04 Feb 2014 23:53:39 +0000
kde-runtime (4:4.12.1-0ubuntu2) trusty; urgency=medium
* No-change rebuild for libwebp transition
-- Iain Lane <iain.lane@canonical.com> Mon, 20 Jan 2014 12:18:16 +0000
kde-runtime (4:4.12.1-0ubuntu1) trusty; urgency=low
* New upstream bugfix release
-- Rohan Garg <rohangarg@kubuntu.org> Thu, 16 Jan 2014 08:11:50 +0000
kde-runtime (4:4.12.0-0ubuntu1) trusty; urgency=low
* New upstream release
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 18 Dec 2013 16:52:30 +0000
kde-runtime (4:4.11.97-0ubuntu2) trusty; urgency=low
* Add kubuntu_drkonqi_whoopsie_integration.patch (whoopsie-integration-set).
This patch adds a checkbox to drkonqi which allows automatic submission
of crash reports via whoopsie to errors.ubuntu.com.
The checkbox is only shown when whoopsie reporting is enabled.
When the checkbox is checked on exit a special stamp file is written to
/var/crash/$app.$uid.drkonqi-accept indicating that KCrash (kdelibs) needs
to re-raise the signal to the native handlers such that apport gets
invoked to create an apport report *and* that the resulting report
may be uploaded by kubuntu-notification-helper (watching /var/crash/)
without going through apport-kde to ask for permission.
-- Harald Sitter <apachelogger@kubuntu.org> Thu, 12 Dec 2013 12:39:34 +0100
kde-runtime (4:4.11.97-0ubuntu1) trusty; urgency=low
[ Jonathan Riddell ]
* New upstream RC release
[ Rohan Garg ]
* Drop kubuntu_oxygenify_knetattach_icon.diff, oxygen-icons now install
a knetattach icon making this patch useless
* Drop kubuntu_silence_kwallet_on_first_start.patch , Alex is going to write
another patch for KDE 4.12 which makes PAM authentication possible.
-- Jonathan Riddell <jriddell@ubuntu.com> Fri, 29 Nov 2013 12:50:21 +0000
kde-runtime (4:4.11.95-0ubuntu1) trusty; urgency=low
* New upstream beta release
* Add rebased kubuntu_silence_kwallet_on_first_start.patch
-- Rohan Garg <rohangarg@kubuntu.org> Mon, 25 Nov 2013 17:59:00 +0100
kde-runtime (4:4.11.80-0ubuntu1) trusty; urgency=low
[ Rohan Garg ]
* New upstream beta release
- Drop kubuntu_silence_kwallet_on_first_start.patch, applied upstream
* Update install files
* Add dependency on boost 1.54
[ Jonathan Riddell ]
* Add build-dep on libwebp-dev for random kimgio plugin for webp (it
gives no notice with cmake config) and install new files
-- Rohan Garg <rohangarg@kubuntu.org> Sat, 23 Nov 2013 17:37:46 +0100
kde-runtime (4:4.11.5-1) unstable; urgency=low
[ Pino Toscano ]
* Add the pkg-config build dependency.
[ Lisandro Damián Nicanor Pérez Meyer ]
* New upstream release.
* Update Standards-Version to 3.9.5, no changes required.
* Add basic support for autopkgtest.
* Add use_the_correct_locale.patch to use C.UTF-8 as locale on testtrash.cpp.
* Patch testtrash.cpp to use a more commonly available directory for the
test (use_always_present_path_to_test.patch).
* Add XS-Testsuite: autopkgtest, this package can be now tested.
[ Maximiliano Curia ]
* New patch: kshorturifilter_qgetenv_calling_error.diff
-- Maximiliano Curia <maxy@debian.org> Wed, 22 Jan 2014 14:43:04 -0300
kde-runtime (4:4.11.3-1) unstable; urgency=low
* New upstream release.
* Update symbols files.
-- Maximiliano Curia <maxy@debian.org> Fri, 08 Nov 2013 17:15:41 +0100
kde-runtime (4:4.11.2-2) experimental; urgency=low
* Update build-dependencies.
-- Maximiliano Curia <maxy@debian.org> Mon, 07 Oct 2013 11:53:08 +0200
kde-runtime (4:4.11.2-1) experimental; urgency=low
* New upstream release.
* Update install files.
-- Maximiliano Curia <maxy@debian.org> Sat, 05 Oct 2013 13:20:25 +0200
kde-runtime (4:4.11.2-0ubuntu1) saucy; urgency=low
* New upstream bugfix release
-- Jonathan Riddell <jriddell@ubuntu.com> Mon, 30 Sep 2013 14:04:51 +0100
kde-runtime (4:4.11.1-0ubuntu2) saucy; urgency=low
* Import be1a5d484c70f4f6a383150810afbfbb367db2ac
from upstream to fix regressions related to
ignored events in the event handler.
-- Howard Chan <smartboyhw@gmail.com> Sat, 07 Sep 2013 18:28:38 +0800
kde-runtime (4:4.11.1-0ubuntu1) saucy; urgency=low
* New upstream bugfix release.
-- Howard Chan <smartboyhw@gmail.com> Fri, 06 Sep 2013 22:10:16 +0100
kde-runtime (4:4.11.0-0ubuntu2) saucy; urgency=low
* Recommend udisks2 instead of udisks now that kdelibs builds the udisks2
backend
-- Philip Muškovac <yofel@kubuntu.org> Fri, 16 Aug 2013 02:33:50 +0200
kde-runtime (4:4.11.0-0ubuntu1) saucy; urgency=low
[ Howard Chan ]
* New upstream release
[ Jonathan Riddell ]
* New upstream release
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 14 Aug 2013 00:05:23 +0100
kde-runtime (4:4.10.97-0ubuntu1) saucy; urgency=low
* New upstream RC 2 release
* New upstream RC 2 release
-- Jonathan Riddell <jriddell@ubuntu.com> Fri, 26 Jul 2013 19:13:17 +0100
kde-runtime (4:4.10.95-0ubuntu1) saucy; urgency=low
* New upstream RC release
- Drop kubuntu_phonon_forget_option.diff as that's now fixed upstream
- Drop kubuntu_silence_kwallet_per_app.patch, applied upstream
- Add documentation files to kde-runtime-data
-- Philip Muškovac <yofel@kubuntu.org> Tue, 16 Jul 2013 19:14:15 +0200
kde-runtime (4:4.10.90-0ubuntu2) saucy; urgency=low
* Update kubuntu_langpack_install.diff now by default select the
system language if installed and no other language is explicitly selected.
-- Harald Sitter <apachelogger@kubuntu.org> Wed, 17 Jul 2013 16:13:40 +0200
kde-runtime (4:4.10.90-0ubuntu1) saucy; urgency=low
* New upstream bet release
-- Michał Zając <quintasan@kubuntu.org> Fri, 28 Jun 2013 18:04:21 +0100
kde-runtime (4:4.10.80-0ubuntu1) saucy; urgency=low
[ Rohan Garg ]
* New upstream release
- Adjust install files
- Re work kubuntu_oxygenify_knetattach_icon.diff,
kubuntu_oxygenify_knetattach_icon.diff so that they apply
- Drop kubuntu_hide_nepomukcontroller.diff
- Breaks/Replaces plasma-active ( << 3.0-0ubuntu2) since
libdirmodelplugin.so was moved to kde-runtime
[ Philip Muškovac ]
* Bump Breaks/Replaces for the 4.10.3 debian merge to << 4:4.10.80 to catch
upgrades.
[ Jonathan Riddell ]
* New upstream release
-- Jonathan Riddell <jriddell@ubuntu.com> Fri, 21 Jun 2013 00:55:53 +0100
kde-runtime (4:4.10.5-1) unstable; urgency=low
* New upstream release.
-- Maximiliano Curia <maxy@debian.org> Fri, 12 Jul 2013 12:02:00 +0200
kde-runtime (4:4.10.4-1) experimental; urgency=low
* New upstream release.
* Add myself to the Uploaders list.
* Bump debhelper build-dep and compat to 9.
* Bump Standards-Version to 3.9.4.
* Update vcs fields.
-- Maximiliano Curia <maxy@debian.org> Fri, 14 Jun 2013 12:21:26 +0200
kde-runtime (4:4.10.4-0ubuntu1) saucy-proposed; urgency=low
[ Jonathan Riddell ]
* drop icoutils from suggests, it's recommended
[ Rohan Garg ]
* New upstream bugfix release
-- Rohan Garg <rohangarg@kubuntu.org> Thu, 06 Jun 2013 23:41:24 +0100
kde-runtime (4:4.10.3-0ubuntu3) saucy; urgency=low
* Remove conflicting libplasmacomponentsplugin.so from
kde-runtime-data.install, it's shipped in kde-runtime, and add
breaks/replaces
-- Philip Muškovac <yofel@kubuntu.org> Sat, 25 May 2013 14:51:51 +0200
kde-runtime (4:4.10.3-0ubuntu2) saucy; urgency=low
* khelpcenter4 breaks/replaces kde-runtime-data << 4:4.10.3-0ubuntu2~
* Remove plasmapkg manpage from kde-runtime.manpages, it's shipped in
kde-runtime-data and add breaks/replaces
(LP: #1184127)
-- Philip Muškovac <yofel@kubuntu.org> Sat, 25 May 2013 14:27:08 +0200
kde-runtime (4:4.10.3-0ubuntu1) saucy; urgency=low
* New upstream release
* Merge from Debian, remaining changes:
- Add patches
- kubuntu_hide_nepomukcontroller.diff
- kubuntu_kde-runtime-4.9.98-kde#310486.patch
- kubuntu_langpack_install.diff
- kubuntu_nodisplay_knetattach.diff
- kubuntu_oxygenify_knetattach_icon.diff
- kubuntu_phonon_forget_option.diff
- kubuntu_shutup_shutup_shutup.diff
- add kde-runtime.[postinst,prerm] for update-alternatives kdesu
- debian/control:
+ Add build-dep on libqapt-dev
+ kde-runtime depends on language-selector-common, libqapt2-runtime
+ add udisks, upower, kubuntu-debug-installer, icoutils,
libcanberra-pulse | libcanberra-gstreamer to kde-runtime recommends
+ helpcenter4 no recommend on htdig
+ keep Break/Replaces
- debian/patches:
+ remove kde4_information_menu.diff
+ add:
- kubuntu_nodisplay_knetattach.diff
- kubuntu_oxygenify_knetattach_icon.diff
- kubuntu_phonon_forget_option.diff
- kubuntu_strigi_ram_detection.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
+ install plasma active QML components and remove from not-installed
- 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
- add 30-nepomuk-inotify-limit.conf
- update not-installed for Kubuntu
* Add upstream patches to restore old Kubuntu kwallet behaviour
kubuntu_silence_kwallet_on_first_start.patch (Add a config
option to silently create the initial wallet) and
kubuntu_silence_kwallet_per_app.patch from upstream (Make the
prompt-on-open config option apply to all accesses)
-- Jonathan Riddell <jriddell@ubuntu.com> Thu, 23 May 2013 11:04:35 +0000
kde-runtime (4:4.10.2-2) experimental; urgency=low
[ Pino Toscano ]
* Make kde-runtime-data breaks/replaces kde-workspace-bin < 4:4.10, since
plasmapkg.1.gz was moved.
[ Sune Vuorela ]
* Fiddle with build-deps in order to work around a bug in aptitude resolver.
-- Sune Vuorela <sune@debian.org> Thu, 11 Apr 2013 20:03:24 +0000
kde-runtime (4:4.10.2-1) experimental; urgency=low
* New upstream release.
[ Lisandro Damián Nicanor Pérez meyer ]
* Remove obsolete patches:
- upstream_Remove-image-x-wmf-and-image-x-xfig-from-image-thumb.patch
- upstream_Remove-a-FIXME-debug-message.patch
[ Daniele E. Domenichelli ]
* Update installed files.
* Remove no longer used lintian overrides.
[ José Manuel SantamarÃa Lema ]
* Add in kde-runtime a depend against nempomuk-core-runtime using
dh_sameversiondep.
[ Josep Febrer ]
* Update build dependencies:
+ Bump kde-sc-dev-latest to >= 4:4.10.0.
+ Bump kdelibs5-dev to >= 4:4.10.
+ Bump nepomuk-core-dev >= 4:4.10.
+ Bump kdepimlibs5-dev >= 4:4.10.
+ Bump libkactivities-dev >= 4:4.10.
* Update installed files.
* Update not-installed file.
-- Sune Vuorela <sune@debian.org> Tue, 02 Apr 2013 22:39:25 +0000
kde-runtime (4:4.10.2-0ubuntu3) raring; urgency=low
* Make kubuntu_langpack_install.diff also set LANG and LANGUAGE.
This is done via a kde environment script (sourced by startkde).
kdesudo invoked applications as well as polkit actions and non-KDE
applications require properly set LANG/LANGUAGE, otherwise they'll use
the system default which is not intended. On that note, setting the
language system-wide remains unsupported.
-- Harald Sitter <apachelogger@kubuntu.org> Wed, 17 Apr 2013 12:42:43 +0200
kde-runtime (4:4.10.2-0ubuntu2) raring; urgency=low
* Add kubuntu_hide_nepomukcontroller.diff to hide nepomuk controller from
the menu. We have the controller on autostart so this is redundant.
For upstream 4.11 it is being entirely replaced by a plasma widget.
-- Harald Sitter <apachelogger@kubuntu.org> Fri, 12 Apr 2013 00:22:01 +0200
kde-runtime (4:4.10.2-0ubuntu1) raring; urgency=low
[ Harald Sitter ]
* In kubuntu_langpack_install.diff:
Mark kcmlocale busyoverlay form title as not for translation.
[ Philip Muškovac ]
* New upstream bugfix release
-- Philip Muškovac <yofel@kubuntu.org> Sun, 31 Mar 2013 14:40:34 +0200
kde-runtime (4:4.10.1-0ubuntu1) raring-proposed; urgency=low
* New upstream bugfix release
* Set priority of kdebase-runtime to extra
-- Philip Muškovac <yofel@kubuntu.org> Tue, 05 Mar 2013 15:24:34 +0000
kde-runtime (4:4.10.0-0ubuntu1) raring-proposed; urgency=low
* New upstream release
-- Rohan Garg <rohangarg@kubuntu.org> Wed, 06 Feb 2013 11:35:44 +0000
kde-runtime (4:4.9.98-0ubuntu2) raring; urgency=low
* Import kde-runtime-4.9.98-kde#310486.patch from fedora as
kubuntu_kde-runtime-4.9.98-kde#310486.patch which reverts parts from
upstream commit deee161a42efda74965ca4aab7d79fb7fb375352 to work around
kde bug #310486.
-- Philip Muškovac <yofel@kubuntu.org> Mon, 28 Jan 2013 14:15:34 +0100
kde-runtime (4:4.9.98-0ubuntu1) raring-proposed; urgency=low
* Remove kde-runtime alternate recommend on libcanberra-gstreamer,
libcanberra-gstreamer uses gstreamer1.0 which much of kde still uses
gstreamer0.10
* New upstream release candidate
-- Jonathan Riddell <jriddell@ubuntu.com> Fri, 18 Jan 2013 15:03:56 +0000
kde-runtime (4:4.9.97-0ubuntu1) raring; urgency=low
* New upstream release candidate
- drop kubuntu_fix_default_wallpaper.diff, applied upstream
-- Philip Muškovac <yofel@kubuntu.org> Thu, 03 Jan 2013 21:17:09 +0100
kde-runtime (4:4.9.95-0ubuntu3) raring; urgency=low
* Add kubuntu_fix_default_wallpaper.diff to fix screenlocker and
lightdm background
-- Rohan Garg <rohangarg@kubuntu.org> Mon, 24 Dec 2012 17:02:46 +0530
kde-runtime (4:4.9.95-0ubuntu2) raring; urgency=low
* kde-runtime breaks replaces kde-workspace-bin << 4:4.9.95
(overwrites plasmapkg)
-- Philip Muškovac <yofel@kubuntu.org> Sun, 23 Dec 2012 15:07:01 +0100
kde-runtime (4:4.9.95-0ubuntu1) raring; urgency=low
* New upstream RC release
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 18 Dec 2012 23:20:56 +0000
kde-runtime (4:4.9.90-0ubuntu1) raring-proposed; urgency=low
* New upstream beta release
* Update .install files
-- Jonathan Riddell <jriddell@ubuntu.com> Fri, 07 Dec 2012 17:43:09 +0000
kde-runtime (4:4.9.80-0ubuntu1) raring; urgency=low
[ Harald Sitter ]
* Fix kubuntu_langpack_install.diff
- Ensure xapian index is opened and created before searching (LP: #1074371)
Also display a busy indicator overlay while working on the cache.
- Map kde-l10n-* codes to kde's to language-pack-kde-* to make sure
kdelibs can present a localized proper string for all languages and
our install logic also installs packages where the ubuntu code is
different (e.g. zhcn in kde-l10n is zh-hans in langpack)
- Don't list installable languages which are already installed/selected
- Disable the language selection UI while installing packages.
- Use QLatin1String and QCharwhere appropriate
- List languages based on kde-l10n-* rather than language-pack-kde-* as
the logic with former is simpler and we know that the language has a
reasonable quality from a KDE POV, while language-packs may be lingering
around from when we used launchpad etc.
- Add some kDebug to enable easier debugging when something goes wrong
- Only issue qapt transactions (install) when we have something to install,
otherwise leave qapt out of it entirely
- Track qapt transaction errors and finishes as well as which language belongs
to which transaction
+ Languages with a failed transaction are auto-deselected (e.g. the user
did not authorize the transaction)
+ Only once all transactions are finished the selection UI is enabled again
+ Remaining packages marked for installation will be discareded once
all transactions finished (if there are some left for whatever reason)
- Prevent random crashes by only issuing language changes etc. once QAPT
is done with all transactions
[ Jonathan Riddell ]
* New upstream beta release
* Update .install files
-- Jonathan Riddell <jriddell@ubuntu.com> Mon, 19 Nov 2012 15:47:26 +0000
kde-runtime (4:4.9.3-0ubuntu1) raring; urgency=low
[ Jonathan Thomas ]
* Technically, consumers of libqapt need to declare a dependency on
libqapt2-runtime if they use functionality that requires the QApt Worker.
The kubuntu langpack patch makes use of the runtime components of LibQApt
and needs such a dependency.
[ Philip Muškovac ]
* New upstream release (LP: #1074747)
-- Philip Muškovac <yofel@kubuntu.org> Tue, 06 Nov 2012 22:25:35 +0100
kde-runtime (4:4.9.2-0ubuntu3) raring-proposed; urgency=low
* My kubuntu_langpack_install.diff changes from the last upload didn't
seem to make it into bzr/the upload... Here they are, for real this time.
-- Jonathan Thomas <echidnaman@kubuntu.org> Tue, 30 Oct 2012 15:18:52 -0400
kde-runtime (4:4.9.2-0ubuntu2) raring-proposed; urgency=low
* Add kubuntu_shutup_shutup_shutup.diff to stop Attica-KDE from being so
damn noisy, debug-wise.
* Update kubuntu_langpack_install.diff:
- Port to QApt2. (New transaction API for installs)
- Use the KDE proxy for downloading langpacks
- Optimize QString usage, by using const QString functions to avoid
deep copies.
- Clean up pkg_depends parsing code a bit to make it readable. (Less
nested brackets)
* Make libqapt-dev build-depend (>= 1.9.60) for the above.
-- Jonathan Thomas <echidnaman@kubuntu.org> Tue, 30 Oct 2012 14:24:01 -0400
kde-runtime (4:4.9.2-0ubuntu1) quantal-proposed; urgency=low
* New upstream bugfix release
* Use 4.9.* on library versions
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 02 Oct 2012 15:13:55 +0100
kde-runtime (4:4.9.1-0ubuntu2) quantal; urgency=low
* Rebuild against libattica0.4
-- Jonathan Riddell <jriddell@ubuntu.com> Thu, 13 Sep 2012 12:57:44 +0100
kde-runtime (4:4.9.1-0ubuntu1) quantal; urgency=low
* New upstream release
-- Harald Sitter <apachelogger@ubuntu.com> Mon, 10 Sep 2012 18:27:22 +0530
kde-runtime (4:4.9.0-0ubuntu3) quantal; urgency=low
* Update kubuntu_langpack_install.diff to use pkg_depends data from
language-selector to select complete list of needed languages
* kde-runtime depends on language-selector-common
-- Jonathan Riddell <jriddell@ubuntu.com> Fri, 17 Aug 2012 17:17:23 +0100
kde-runtime (4:4.9.0-0ubuntu2) quantal; urgency=low
* Build-dep on kdelibs 4.9.0a, adjust .install files to new library
version no
-- Jonathan Riddell <jriddell@ubuntu.com> Thu, 02 Aug 2012 11:57:51 +0100
kde-runtime (4:4.9.0-0ubuntu1) quantal; urgency=low
* Use direct build-depends versions rather than kde-sc-dev-latest
* Build-dep on nepomuk-core-dev (>= 4.9.0a)
* Remove kubuntu_kactivities_cmake.diff now upstream
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 31 Jul 2012 10:30:17 +0100
kde-runtime (4:4.8.90-0ubuntu2) quantal; urgency=low
* Add kubuntu_langpack_install.diff to install language packs from kcontrol
* Build-dep on libqapt-dev
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 20 Jun 2012 14:15:49 +0100
kde-runtime (4:4.8.90-0ubuntu1) quantal; urgency=low
[ Felix Geyer ]
* New upstream beta release.
[ Jonathan Riddell ]
* Add kubuntu_kactivities_cmake.diff from upstream, fix detection of kactivities
-- Felix Geyer <debfx@ubuntu.com> Mon, 11 Jun 2012 22:08:34 +0200
kde-runtime (4:4.8.80-0ubuntu1) quantal; urgency=low
* Merge with debian git, remaining changes:
- add kde-runtime.[postinst,prerm] for update-alternatives kdesu
- debian/control:
+ Remove libqzeitgeist-dev build-dep, not in main
+ add udisks, upower, kubuntu-debug-installer, icoutils,
libcanberra-pulse | libcanberra-gstreamer to kde-runtime recommends
+ keep Break/Replaces
+ add packages:
- kde-runtime-dev
- libnepomukdatamanagement4
- libnepomuksync4
+ helpcenter4 no recommend on htdig
- debian/patches:
+ remove kde4_information_menu.diff
+ add:
- kubuntu_nodisplay_knetattach.diff
- kubuntu_oxygenify_knetattach_icon.diff
- kubuntu_phonon_forget_option.diff
- kubuntu_strigi_ram_detection.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
+ add D-Bus Interface XMLs for Playground Nepomuk
+ install plasma active QML components
- 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
- drop libnepomukdatamanagement.so override from
kde-runtime.lintian-overrides
- add 30-nepomuk-inotify-limit.conf
* New upstream beta release
- drop libnepomuksync4 package, moved to nepomuk-core
- drop obsolete libnepomukdatamanagement4 package
- drop now empty kde-runtime-dev package, all files moved to
nepomuk-core-dev
- remove nepomuk files that were moved to nepomuk-core
- make kde-runtime depend on nepomuk-core
- drop now obsolete kubuntu_strigi_ram_detection.diff, moved to
nepomuk-core
- add nepomuk-core-dev, libkactivities-dev and kdepimlibs5-dev to
build-depends
- update kde-runtime.install and kde-runtime-data.install
-- Philip Muškovac <yofel@kubuntu.org> Sun, 03 Jun 2012 21:50:00 +0200
kde-runtime (4:4.8.4-2) unstable; urgency=low
* The package rebuild will use xz compression (Closes: #688758).
[ Pino Toscano ]
* Backport upstream commit 9145b51c1cc4e9ecd273e8eb41de1bbcdd607e35 to not
claim thumbnail support for the image/x-wmf and image/x-xfig mimetypes;
patch upstream_Remove-image-x-wmf-and-image-x-xfig-from-image-thumb.patch.
* Backport upstream commit d9234cca36319cb6895d4a7d36030a95923d1373 (from
the nepomuk-core repository) to remove a spammy "FIXME" debug message;
patch upstream_Remove-a-FIXME-debug-message.patch. (Closes: #677625)
[ Lisandro Damián Nicanor Pérez meyer ]
* Add myself to Uploaders.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Wed, 24 Oct 2012 17:33:47 -0300
kde-runtime (4:4.8.4-1) unstable; urgency=low
* New upstream release.
* Team upload.
[ Modestas Vainius ]
* Switch transitional kdebase-runtime to Priority: extra.
[ Eshat Cakar ]
* Add watch file.
* Bump kde-sc-dev-latest build dependency to version 4:4.8.4.
* Update installed files.
-- Modestas Vainius <modax@debian.org> Sat, 09 Jun 2012 15:23:03 +0300
kde-runtime (4:4.8.3-1) experimental; urgency=low
* New upstream release.
* Team upload.
[ Eshat Cakar ]
* Add libqca2-dev to build dependecies.
* Update not-installed files.
* Update installed files.
* Bump kdelibs5-dev build dependency to version 4:4.8.
* Bump kde-sc-dev-latest build dependency to version 4:4.8.3.
* Bump Standards-Version to 3.9.3, no changes needed.
-- Modestas Vainius <modax@debian.org> Sat, 26 May 2012 19:53:12 +0300
kde-runtime (4:4.8.3-0ubuntu1) quantal; urgency=low
* New upstream release
- New upstream symbols for libnepomukdatamanagement4
-- Rohan Garg <rohangarg@kubuntu.org> Wed, 02 May 2012 17:33:19 +0530
kde-runtime (4:4.8.3-0r1) raring; urgency=low
* New upstream release.
[ Eshat Cakar ]
* Add libqca2-dev to build dependecies.
* Update not-installed files.
* Update installed files.
* Bump kdelibs5-dev build dependency to version 4:4.8.
* Bump kde-sc-dev-latest build dependency to version 4:4.8.3.
* Bump Standards-Version to 3.9.3, no changes needed.
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Thu, 08 Mar 2012 20:54:47 +0100
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.4-2) unstable; urgency=low
* Team upload. Upload to unstable.
* Update uploaders, remove Armin.
[ Felix Geyer ]
* Drop /usr/bin/trash4 symlink since it's not needed anymore and was broken
anyway. (Closes: #573441)
* Don't build the phonon xine kcm since the xine backend has been removed.
-- Ana Beatriz Guerrero Lopez <ana@debian.org> Tue, 06 Mar 2012 17:34:57 +0100
kde-runtime (4:4.7.4-1) experimental; urgency=low
* New upstream release.
[ Eshat Cakar ]
* Bump build dependency on kde-sc-dev-latest to 4:4.7.4.
* Add myself to uploaders.
[ José Manuel SantamarÃa Lema ]
* Bump shared-desktop-ontologies kde-runtime dependency to 0.8.
* kdebase-runtime and kdebase-runtime-dbg dummy packages are now in section
"oldlibs."
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Sun, 18 Dec 2011 01:40:20 +0100
kde-runtime (4:4.7.3-0ubuntu3) raring; 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-1) experimental; 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.
* Upstream re-included nepomukcontroller, we can close the ITP
(Closes: #611309).
[ 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> Sat, 03 Dec 2011 10:46:18 -0300
kde-runtime (4:4.7.2-0r3) raring; 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) raring; 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) raring; 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) raring; 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) raring; 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
|