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
|
dbus (1.12.28-0+deb11u1) bullseye; urgency=medium
* New upstream stable release 1.12.26
- Fixes a denial of service issue that is not relevant for the way
we compile dbus in Debian
* New upstream stable release 1.12.28
- Fixes a denial of service issue if the root or messagebus user is
monitoring messages on the system bus with the Monitoring interface
(dbus-monitor, busctl monitor, gdbus monitor or similar)
(Closes: #1037151)
-- Simon McVittie <smcv@debian.org> Tue, 06 Jun 2023 15:07:35 +0100
dbus (1.12.24-0+deb11u1) bullseye-security; urgency=medium
* New upstream stable release 1.12.22
- No longer logs warnings about /proc/self/oom_score_adj with
systemd >= 250 (Closes: #1004543)
- Improve reproducibility of documentation
- Fix a race condition in test/integration/transient-services.sh
which affects the autopkgtest (Closes: #1005889)
- Fixes for some non-Debian platforms
* New upstream stable release 1.12.24
- Fix several denial of service issues where an authenticated attacker
can crash the system bus by sending crafted messages
(CVE-2022-42010, CVE-2022-42011, CVE-2022-42012)
- Use a path-based Unix socket for the session bus, avoiding sandbox
escape for Flatpak apps with network access (dbus#416)
- Don't crash if asked to watch more than 128 directories for changes
- Fix error reporting for a rare out-of-memory condition
- Fixes for non-Debian mingw-w64 builds
* d/gbp.conf, d/control: Switch branch for bullseye
-- Simon McVittie <smcv@debian.org> Wed, 05 Oct 2022 12:04:31 +0100
dbus (1.12.20-2) unstable; urgency=medium
* Add Provides for the split binary packages added in experimental.
Actually splitting up dbus seems too risky for this stage in the
release process, but if we add them as virtual packages in Debian 11,
then switching dependencies during the Debian 12 cycle won't require
alternative dependencies or a flag-day transition.
* dbus-tests: Silence Lintian warnings for breakout-link
* Remove unnecessary Readme.txt from sha1 test data.
This causes Lintian warnings because it isn't UTF-8, and it isn't
actually useful.
* Standards-Version: 4.5.1 (no changes required)
-- Simon McVittie <smcv@debian.org> Sun, 21 Feb 2021 14:02:17 +0000
dbus (1.12.20-1) unstable; urgency=medium
[ Mark Hindley ]
* Fix system-bus autopkgtest detection of systemd as PID1.
The test attempts to detect whether systemd is available by testing for
/run/systemd. However, this path can exist on non-systemd systems.
Look for /run/systemd/system instead. (Closes: #962466)
[ Simon McVittie ]
* New upstream stable release
- Prevent use-after-free if two usernames share a uid
-- Simon McVittie <smcv@debian.org> Thu, 02 Jul 2020 14:19:21 +0100
dbus (1.12.18-1) unstable; urgency=medium
[ Simon McVittie ]
* New upstream stable release
- CVE-2020-12049: Prevent a denial of service attack in which a local
user can make the system dbus-daemon run out of file descriptors
- d/p/dbus-daemon-test-Don-t-test-fd-limits-if-in-an-unprivileg.patch:
Drop patch, applied upstream.
* Switch to debhelper-compat 12
- Don't restart systemd units on upgrade.
Previously, this was handled by the dh_installinit override.
- Add ${misc:Pre-Depends} to all binary packages.
This is required for dbus for dh_installsystemd under dh compat
level 12, and is harmless for the others.
* dbus: Remove an unused Lintian override.
Lintian used to warn twice for the statically-enabled dbus.service unit,
but now only warns once.
* dbus-tests: Silence package-contains-documentation-outside-usr-share-doc
Lintian tag.
The tests contain some READMEs that describe what is in their directory.
* d/tests: Remove compatibility with deprecated ADTTMP.
autopkgtest has supported AUTOPKGTEST_TMP long enough to use it
unconditionally.
* Introduce noinsttest build profile.
This disables dbus-tests, and when combined with nocheck it disables
the circular GLib dependency.
* Remove non-standard pkg.dbus.minimal build profile.
It was not a "safe" build profile (it altered the contents of binary
packages, notably dropping LSM and systemd support, which could result
in dependent packages being broken), and the combination of nocheck,
nodoc and noinsttest achieves most of the same build-dependency
reductions.
* Explicitly build-depend on pkg-config.
Previously, this was pulled in by libglib2.0-dev. (Closes: #945201)
* d/upstream/metadata: Distinguish between Bug-Submit and Bug-Database
* Change system bus socket to /run/dbus/system_bus_socket.
The interoperable cross-distro path is /var/run/dbus/system_bus_socket,
so this remains the upstream default for the benefit of distributions
where /var/run and /run are (problematically) not guaranteed to be
equivalent. However, Debian Policy since at least v4.1.5 guarantees
that /var/run is a symlink to /run, and this has been implemented
for several stable releases (since at least initscripts 2.88dsf-29
in 2012, in the sysvinit case), so it is harmless to prefer the
path in /run, which has advantages in a few corner cases (ability
to unmount /var is the main one) and avoids warnings from systemd.
(Closes: #783321, #857678, #932105, #958289)
* Standards-Version: 4.5.0
- Note that the user for `dbus-daemon --system` is still named
'messagebus' for historical reasons. If it was added today,
we'd call it _dbus as per Policy §9.2.1, but this is not the right
package to be experimenting with renaming system users.
* d/dbus-udeb.postinst: Remove #DEBHELPER# token.
debhelper doesn't actually substitute this in udebs, making it just
an ordinary comment.
[ Debian Janitor ]
* Remove trailing whitespace in d/changelog.
* Use secure URI in Homepage field.
* Re-export upstream signing key without extra signatures.
* Set upstream metadata fields: Bug-Submit (from ./configure),
Repository, Repository-Browse.
-- Simon McVittie <smcv@debian.org> Tue, 02 Jun 2020 19:48:04 +0100
dbus (1.12.16-2) unstable; urgency=medium
* Add bug number to previous changelog entry
* Standards-Version: 4.4.1 (no changes required)
- Note that dbus-user-session still has its previous dependencies,
and has deliberately not been switched to the new default-logind
virtual package. dbus-user-session relies on systemd --user: it
is not enough to have systemd-logind or a compatible replacement
like elogind.
* d/dbus.init: Work around #940971 in libnss-systemd.
If we are booting with a non-systemd init but libnss-systemd is still
installed, tell libnss-systemd not to try to connect to dbus-daemon,
which is never going to work well from inside dbus-daemon.
* dbus.postinst: Append dbus to /run/reboot-required.pkgs on upgrade
(Closes: #867263)
-- Simon McVittie <smcv@debian.org> Mon, 30 Sep 2019 08:47:02 +0100
dbus (1.12.16-1) unstable; urgency=medium
* New upstream stable release
- CVE-2019-12749: Do not attempt to carry out DBUS_COOKIE_SHA1
authentication for identities that differ from the user running the
DBusServer. Previously, a local attacker could manipulate symbolic
links in their own home directory to bypass authentication and
connect to a DBusServer with elevated privileges. The standard
system and session dbus-daemons in their default configuration were
immune to this attack because they did not allow DBUS_COOKIE_SHA1,
but third-party users of DBusServer such as Upstart could be
vulnerable. (Closes: #930375)
-- Simon McVittie <smcv@debian.org> Sun, 09 Jun 2019 21:34:34 +0100
dbus (1.12.14-1) unstable; urgency=medium
* New upstream release
- Improve fd limit handling so that system services launched by
traditional activation get the intended limit (Closes: #928877)
* d/rules, d/tests: Run automated tests with DBUS_TEST_MALLOC_FAILURES=0.
Testing the code paths for memory allocation failures is too slow
to do routinely as a downstream.
* d/tests/system-bus: Add a smoke-test for traditional activation,
and a smoke-test for systemd activation on systems booted with systemd.
-- Simon McVittie <smcv@debian.org> Sat, 18 May 2019 17:37:08 +0100
dbus (1.12.12-1) unstable; urgency=medium
[ Ritesh Raj Sarraf ]
* Explicitly set session and test socket directory to /tmp, instead
of using a (possibly non-standard) TMPDIR
[ Simon McVittie ]
* New upstream stable release
* d/tests/build: Mark as superficial (see #904979)
* d/tests/build: Comment why we don't test or support static linking
here (it's because libsystemd doesn't)
* Standards-Version: 4.2.1 (no changes required)
* d/p/dbus-daemon-test-Don-t-test-fd-limits-if-in-an-unprivileg.patch:
Add proposed patch to skip fd limit tests if we are uid 0 but do not
have CAP_SYS_RESOURCE (Closes: #908092)
* dbus: Drop dependency on lsb-base. It is only needed when booting
with sysvinit and initscripts, but initscripts already Depends on
lsb-base (see #864999).
* dbus: Add Provides: dbus-system-bus and Provides: dbus-bin.
This provides a way to split the package in a later Debian version
or in derivatives. dbus-system-bus represents the well-known system
bus facility (/lib/systemd/system/dbus.service and /etc/init.d/dbus),
while dbus-bin represents the availability of executables like
dbus-daemon and dbus-send.
* d/tests/system-bus: Add a smoke-test for the system bus
-- Simon McVittie <smcv@debian.org> Tue, 04 Dec 2018 15:58:18 +0000
dbus (1.12.10-1) unstable; urgency=medium
* New upstream release
- Drop patches that were applied upstream
* Standards-Version: 4.1.5 (no changes required)
* Don't run the build-time tests for the debug build in parallel.
Some of the tests added by the debug build start many processes,
and the debug build's tests have intermittently been timing out on
reproducible-builds infrastructure, possibly because these machines
run with a high "make -j" value and more than one multi-processing
test gets run at the same time.
-- Simon McVittie <smcv@debian.org> Thu, 02 Aug 2018 20:13:24 +0100
dbus (1.12.8-3) unstable; urgency=medium
* d/rules: If tests fail, continue to run all tests before reporting
failure
* d/rules: On success or failure, output all test logs for comparison
(in particular this lets us see how close we are to arbitrary
timeouts on slower architectures)
* d/p/debian/tests-Multiply-timeouts-by-20-on-riscv64.patch:
Compensate for the riscv64 port being bootstrapped on
qemu-system-riscv64 by multiplying arbitrary timeouts by 20
(Closes: #897607)
* d/rules: Use nss_wrapper to ensure that 127.0.0.1 and localhost
can be resolved successfully, fixing build-time tests in pbuilder
with the network namespace unshared (see #897662)
* d/rules: Make sure the X11 DISPLAY (if any) doesn't leak into the
test environment, fixing build-time tests if /tmp is unshared
* d/p/sysdeps-unix-Handle-errors-from-getaddrinfo-correctly.patch:
Add patch from upstream dbus-1.12 branch to fix getaddrinfo error
reporting for tcp: and nonce-tcp: transports
* d/p/server-oom-test-Parse-the-address-instead-of-going-direct.patch,
d/p/test-Test-the-same-things-with-unix-that-we-do-with-tcp.patch,
d/p/server-oom-test-Don-t-assume-localhost-is-resolvable.patch,
test-Skip-TCP-tests-if-getaddrinfo-doesn-t-work.patch:
Add patches from upstream dbus-1.12 branch to improve test robustness
and coverage when getaddrinfo doesn't work
-- Simon McVittie <smcv@debian.org> Sun, 10 Jun 2018 14:23:44 +0100
dbus (1.12.8-2) unstable; urgency=medium
* Remove debian/dbus-tests.shlibs.local. It was useful before 1.11.10-2
to make dbus-tests depend on the debug build in dbus-1-dbg, but now
that the debug build is itself in dbus-tests, making dbus-tests
depend on itself is not useful. It also suppressed the generated
dependency on libdbus-1-3 (= ${binary:Version}), causing autopkgtest
failures when only dbus-tests was upgraded.
-- Simon McVittie <smcv@debian.org> Thu, 03 May 2018 10:07:17 +0100
dbus (1.12.8-1) unstable; urgency=medium
* New upstream stable release
* Standards-Version: 4.1.4 (no changes required)
* tests: Use AUTOPKGTEST_TMP in preference to deprecated ADTTMP
* tests: Make sure $HOME is set to somewhere we can write (workaround for
#897170)
* Build ducktype documentation, unless building with nodoc
- Build-depend on ducktype and yelp-tools
-- Simon McVittie <smcv@debian.org> Mon, 30 Apr 2018 17:23:12 +0100
dbus (1.12.6-2) unstable; urgency=medium
* New upstream stable release 1.12.6
* d/tests/root: Re-run test-dbus-daemon as root, since it now contains
tests that are skipped as non-root
* There was no 1.12.6-1 due to a mistake with `git tag`
-- Simon McVittie <smcv@debian.org> Fri, 02 Mar 2018 01:36:20 +0000
dbus (1.12.4-1) unstable; urgency=medium
* New upstream stable release 1.12.4
- d/copyright: Update
* Standards-Version: 4.1.3 (no changes required)
* Use debhelper compat level 11
- Build-depend on debhelper 11.1~ for #885998 to be fixed
* Rely on dh_installman's compat level 11 behaviour instead of
installing man pages by hand. This reduces the amount of dh-exec
use needed.
* Adapt Vcs-* for migration to salsa.debian.org Gitlab
-- Simon McVittie <smcv@debian.org> Thu, 08 Feb 2018 15:05:57 +0000
dbus (1.12.2-1) unstable; urgency=low
* New upstream release 1.12.2
* Remove unused Lintian override now that #736360 has been fixed
* d/p/debian/Don-t-abort-on-fatal-warnings-by-default.patch:
Remove patch. This was committed not long after the addition of the
fatal-by-default _dbus_warn_check_failed() checks for programming
errors, with the changelog message "This will be set to upstream
default again at some point so if you have an application that
prints a DBus warning get it fixed".
The patch made Debian and its derivatives a little more robust
against implementation errors in projects that use libdbus, but at
the cost that upstream developers of those projects don't notice
implementation errors (that would be crashes on most OSs) if they
happen to be developing on Debian or Ubuntu. 11 years later, let's
consider "some point" to have arrived.
* Set migration urgency to low in case that breaks things.
-- Simon McVittie <smcv@debian.org> Mon, 13 Nov 2017 15:36:08 +0000
dbus (1.12.0-1) unstable; urgency=medium
* New upstream stable release 1.12.0
- d/watch: Only watch for stable releases again
- d/gbp.conf: Use upstream/1.12.x branch
* Set Rules-Requires-Root to no. This package does not require
fakeroot or root privileges to build with a sufficiently recent
debhelper and dpkg-dev.
* Replace deprecated dh_install --fail-missing with
dh_missing --fail-missing
* Replace deprecated dh_installinit --no-restart-on-upgrade with
--no-stop-on-upgrade
-- Simon McVittie <smcv@debian.org> Mon, 30 Oct 2017 13:37:25 +0000
dbus (1.11.22-1) unstable; urgency=medium
* New upstream release 1.11.22 (1.12.0rc1)
* Standards-Version: 4.1.1
- Set messagebus's home directory to /nonexistent for new installs
- Move tests and udebs from priority extra to optional
* Make dbus-x11 provide default-dbus-session-bus on non-Linux ports
(Closes: #878878)
* Change dbus-user-session from Architecture: all to linux-any so it
doesn't appear to provide default-dbus-session-bus on non-Linux ports
(where it is uninstallable)
-- Simon McVittie <smcv@debian.org> Mon, 23 Oct 2017 13:21:29 +0100
dbus (1.11.20-1) unstable; urgency=medium
* New upstream release
- Tolerate slower buildds, and provide better diagnostics on timeout
(hopefully Closes: #873820)
* Merge development branch of dbus from experimental to unstable
- Debian derivatives should not merge this version unless they can
commit to updating all the way to the 1.12.x stable releases
(expected later this year). If you get on the development-branch
train, please ride it all the way to the next station.
-- Simon McVittie <smcv@debian.org> Tue, 03 Oct 2017 08:30:21 +0100
dbus (1.11.18-1) experimental; urgency=medium
* New upstream release
- Stop using horrible version numbers
- Drop patches that came from upstream
* Fix contents of .install files for the rename of stage1 to
pkg.dbus.minimal (Closes: #870756)
* Ignore build-time test failures on !linux for now
* Mark dbus-1-doc as Multi-Arch: foreign
-- Simon McVittie <smcv@debian.org> Mon, 25 Sep 2017 22:25:52 +0100
dbus (1.11.16+really1.11.16-2) experimental; urgency=medium
* Add patches from upstream to respect $HOME when doing
DBUS_COOKIE_SHA1 authentication. This is hopefully enough for
the build-time tests to pass on the buildds, where the sbuild user
has a nonexistent home directory.
* Try running build-time tests again (Closes: #630152)
-- Simon McVittie <smcv@debian.org> Sun, 30 Jul 2017 09:05:37 +0100
dbus (1.11.16+really1.11.16-1) experimental; urgency=medium
* Re-version to recover from accidental upload of 1.11.16 to unstable
* Don't run build-time tests (reopens: #630152).
They don't work for users with a nonexistent home directory.
* Re-version symbols file so newer symbols produce a dependency on
this version
* Really upload to experimental this time
-- Simon McVittie <smcv@debian.org> Thu, 27 Jul 2017 22:52:12 +0100
dbus (1.11.16+really1.10.24-1) unstable; urgency=medium
* New upstream stable release
- Increases listen() backlog of AF_UNIX sockets (Closes: #872144)
- Refresh patches
* Add a patch to respect $HOME when determining the home directory
of the uid of the current process
* Run build-time tests (Closes: #630152)
* Fix contents of .install files for the rename of stage1 to
pkg.dbus.minimal (Closes: #870756)
* Ignore build-time test failures on !linux for now
* Mark dbus-1-doc as Multi-Arch: foreign
* d/watch: Ignore "1.11.16+really" prefix for uscan
* Reinstate patch to load /etc/dbus-1/*.conf.dpkg-bak instead of
/etc/dbus-1/*.conf. This ensures that we don't get circular
inclusion via the compat symlinks used to upgrade from jessie to
stretch, before this dbus version's postinst cleans up those symlinks
(Closes: #876442)
-- Simon McVittie <smcv@debian.org> Mon, 25 Sep 2017 22:18:58 +0100
dbus (1.11.16+really1.10.22-1) unstable; urgency=medium
* Re-version to recover from accidental upload of 1.11.16 to unstable
* Don't run build-time tests (reopens: #630152).
They don't work for users with a nonexistent home directory.
-- Simon McVittie <smcv@debian.org> Thu, 27 Jul 2017 23:01:37 +0100
dbus (1.10.22-1) unstable; urgency=medium
* New upstream stable release
* Run build-time tests (Closes: #630152)
- Skip build-time tests when only building Architecture: all.
Once per architecture is enough.
* Build-depend on python3{,-dbus,-gi} if we will run build-time tests.
This is a circular dependency, but is flagged as
<!nocheck !pkg.dbus.minimal> so it can be omitted when
cross-compiling or bootstrapping.
* Enable valgrind integration in the debug build on mips64
* Replace stage1 build profile with pkg.dbus.minimal
* Drop explicit dependency on autotools-dev, implied by debhelper 10
* debian/upstream/signing-key.asc: Update subkeys and uids
-- Simon McVittie <smcv@debian.org> Thu, 27 Jul 2017 17:40:18 +0100
dbus (1.11.16-1) unstable; urgency=medium
* New upstream development release
- Drop merged patches
- Update symbols file for new ABI
* Run build-time tests (Closes: #630152)
- Skip build-time tests when only building Architecture: all.
Once per architecture is enough.
* Build-depend on python3{,-dbus,-gi} if we will run build-time tests.
This is a circular dependency, but is flagged as
<!nocheck !pkg.dbus.minimal> so it can be omitted when
cross-compiling or bootstrapping.
* Enable valgrind integration in the debug build on mips64
* Replace stage1 build profile with pkg.dbus.minimal
* Drop explicit dependency on autotools-dev, implied by debhelper 10
* debian/upstream/signing-key.asc: Update subkeys and uids
-- Simon McVittie <smcv@debian.org> Thu, 27 Jul 2017 17:40:58 +0100
dbus (1.10.20-1) unstable; urgency=medium
* New upstream stable release
- Drop Doxygen reproducibility patch, applied upstream
* Merge packaging from experimental:
- Don't capture build directory in the debug build, using a patch
backported from upstream git master
- Move doxygen and xsltproc to Build-Depends-Indep, and don't
build documentation when not building dbus-1-doc. This speeds
up architecture-specific builds.
- Remove support for DEB_BUILD_OPTIONS="nodoc noudeb". Use build
profiles instead; support nocheck, nodoc, noudeb and stage1 profiles
(Closes: #728820)
- Simplify the layout of the debug build.
- Drop the dbus-1-dbg binary package. Move the debug build to
dbus-tests, and the debug symbols to automatically generated
-dbgsym packages.
- Don't run the installed-tests two different ways, just use
gnome-desktop-testing.
- Configure the debug build with --enable-embedded-tests rather than
--enable-tests. The latter requires python, python-dbus and python-gi,
but only for build-time tests that we do not actually run (#630152).
+ Drop build-dependencies on python, python-dbus and python-gi
+ This should make dbus much easier to cross-compile (Closes: #560834)
- gnome-desktop-testing: Require xauth and xvfb-run for better test
coverage
- Clean up upgrade/compatibility code that is no longer needed:
+ Stop creating the symlinks required to keep dbus-daemon 1.8
from Debian 8 'jessie' able to reload configuration after
an upgrade to dbus 1.10 in Debian 9 'stretch'. Upgrades that
skip a stable release are not supported.
+ On upgrade, remove compatibility symlinks created by that
upgrade, if they exist.
+ Stop cleaning those symlinks up during package removal.
- Stop patching system.conf, session.conf to load
/etc/dbus-1/*.conf.dpkg-bak.
- debian/copyright: Use https for Format and Source
- debian/dbus.triggers: Add a trigger on /usr/share/dbus-1/system.d
to reload the dbus-daemon
- Unversion (build)-dependencies that are satisfied in oldstable
- Declare Policy 4.0.0 compliance
- Use the debug-build binaries to run the debug-build tests
-- Simon McVittie <smcv@debian.org> Thu, 29 Jun 2017 22:16:11 +0100
dbus (1.11.14-1) experimental; urgency=medium
* New upstream release
- Drop Doxygen reproducibility patch, applied upstream
- Stop providing a Debian-specific tmpfiles.d snippet,
and install the upstream version instead
- Add symbols file entry for new ABI
* Clean up upgrade/compatibility code no longer needed:
- Stop creating the symlinks required to keep dbus-daemon 1.8
from Debian 8 'jessie' able to reload configuration after
an upgrade to dbus 1.10 in Debian 9 'stretch'. Upgrades that
skip a stable release are not supported.
- On upgrade, remove compatibility symlinks created by that
upgrade, if they exist.
- Stop cleaning those symlinks up during package removal.
* Stop patching system.conf, session.conf to load
/etc/dbus-1/*.conf.dpkg-bak.
* debian/copyright: Use https for Format and Source
* debian/dbus.triggers: Add a trigger on /usr/share/dbus-1/system.d
to reload the dbus-daemon
* Unversion (build)-dependencies that are satisfied in oldstable
* Declare Policy 4.0.0 compliance
* Use the debug-build binaries to run the debug-build tests
-- Simon McVittie <smcv@debian.org> Thu, 29 Jun 2017 21:44:15 +0100
dbus (1.11.12-1) experimental; urgency=medium
* New upstream development release
- Install new CMake metadata
-- Simon McVittie <smcv@debian.org> Fri, 07 Apr 2017 17:55:32 +0100
dbus (1.10.18-1) unstable; urgency=medium
* New upstream stable release
- On SELinux systems, make sure the thread that reads AVC
notifications retains the ability to write the audit log
(Closes: #857660)
- Fix a read overflow and some memory leaks in a unit test
(no effect on production systems)
-- Simon McVittie <smcv@debian.org> Wed, 05 Apr 2017 20:07:19 +0100
dbus (1.11.10-2) experimental; urgency=medium
* Do not attempt to install the sysusers.d snippet on non-Linux;
it isn't built there. This fixes FTBFS on kFreeBSD and Hurd.
* Move doxygen and xsltproc to Build-Depends-Indep, and don't
build documentation when not building dbus-1-doc. This speeds
up architecture-specific builds.
* Remove support for DEB_BUILD_OPTIONS="nodoc noudeb". Use build
profiles instead; support nocheck, nodoc, noudeb and stage1 profiles
(Closes: #728820)
* Stop removing /lib/systemd/system/dbus.target.wants, which was
removed upstream.
* Simplify the layout of the debug build.
* Drop the dbus-1-dbg binary package. Move the debug build to
dbus-tests, and the debug symbols to automatically generated
-dbgsym packages.
* Don't run the installed-tests two different ways, just use
gnome-desktop-testing.
* Configure the debug build with --enable-embedded-tests rather than
--enable-tests. The latter requires python, python-dbus and python-gi,
but only for build-time tests that we do not actually run (#630152).
- Drop build-dependencies on python, python-dbus and python-gi
- This should make dbus much easier to cross-compile (Closes: #560834)
* gnome-desktop-testing: Require xauth and xvfb-run for better test
coverage
* autopkgtests: Split apparmor test into a separate autopkgtest
-- Simon McVittie <smcv@debian.org> Fri, 03 Mar 2017 10:25:35 +0000
dbus (1.11.10-1) experimental; urgency=medium
* New upstream release
- Decrease libapparmor dependency to 2.8.95
- Install sysusers.d snippet
- Believed to solve the root cause of the timeout issue that was
worked around in 1.10.14, 1.11.8 (LP: #1591411)
-- Simon McVittie <smcv@debian.org> Thu, 16 Feb 2017 18:02:00 +0000
dbus (1.10.16-1) unstable; urgency=medium
* New upstream release
- Contains a security fix for a potential symlink attack in the
nonce-tcp transport. That transport is not normally used (or
recommended) on Unix.
-- Simon McVittie <smcv@debian.org> Thu, 16 Feb 2017 14:21:41 +0000
dbus (1.10.14-1) unstable; urgency=medium
* New upstream release
-- Simon McVittie <smcv@debian.org> Mon, 28 Nov 2016 21:58:04 +0000
dbus (1.11.8-1) experimental; urgency=medium
* New upstream development release
- Bump libapparmor build-dependency to 2.10
- Run the new test-apparmor-activation.sh as root
(but do not test-depend on apparmor - we'll skip this test if on
a system where AppArmor is not normally enabled)
- Stop mentioning tools/lcov.am in d/copyright: no longer included
- debian/copyright: Update
-- Simon McVittie <smcv@debian.org> Mon, 28 Nov 2016 23:22:39 +0000
dbus (1.11.6-1) experimental; urgency=medium
* Merge packaging from unstable
* New upstream development release
- refresh patches
- include newly-installed XML DTDs in libdbus-1-dev
-- Simon McVittie <smcv@debian.org> Mon, 10 Oct 2016 11:15:04 +0100
dbus (1.10.12-1) unstable; urgency=medium
* New upstream release
* d/p/backports/Replace-DBUS_USE_TEST_BINARY-with-DBUS_TEST_DBUS_LAUNCH.patch:
backport a change from 1.11.2 to make the debug build of libdbus
reproducible under varying build paths
* Move Debian-specific patches to debian/patches/debian (corresponding
to "Gbp-pq: Topic debian" on the patch queue branch)
* debian/*.lintian-overrides:
- override systemd-service-file-missing-install-key for dbus.service,
which is intentionally statically enabled
- override embedded-javascript-library for Doxygen's jquery.js,
which is not actually libjs-jquery (see #736360)
* Move to debhelper compat level 10
- drop options and overrides that are now the default
-- Simon McVittie <smcv@debian.org> Mon, 10 Oct 2016 10:49:51 +0100
dbus (1.11.4-1) experimental; urgency=medium
* Merge packaging from unstable
* New upstream development release
- Build-depend on autoconf-archive so we can run autoreconf
* debian/*.lintian-overrides:
- override systemd-service-file-missing-install-key for dbus.service,
which is intentionally statically enabled
- override embedded-javascript-library for Doxygen's jquery.js,
which is not actually libjs-jquery (see #736360)
-- Simon McVittie <smcv@debian.org> Mon, 15 Aug 2016 23:50:49 +0100
dbus (1.10.10-1) unstable; urgency=medium
* New upstream stable release 1.10.10
* Provide new virtual packages for other packages to depend on:
- dbus-session-bus: any implementation of the D-Bus well-known session bus
(provided by: dbus-user-session, dbus-x11)
- default-dbus-session-bus: the recommended implementation of
dbus-session-bus (currently provided by: dbus-user-session)
* Add arm64, mips64el, ppc64el to the list of architectures that
have valgrind
* debian/gbp.conf: use DEP-14 branch names
* Standards-Version: 3.9.8 (no changes needed)
* debian/rules: fail the build if "make install" installs anything we
don't package or delete. Only do this for final releases (suite
in debian/changelog is not UNRELEASED) to facilitate future
autobuilding of new upstream releases.
* debian/rules: do not require symbols file to be complete if the
suite in debian/changelog is UNRELEASED, again to facilitate
autobuilding new upstream releases.
* debian/source/options: don't fail dpkg-source on changes to
build-aux/{compile,depcomp,missing}. We regenerate that directory anyway,
and during a snapshot build they might become symlinks.
* debian/rules: do the build in debian/build-* so it's easier to .gitignore
* debian/.gitignore: update
* Use the correct systemctl for Debian even if not installed on the build
system. (Regression in 1.10.2)
-- Simon McVittie <smcv@debian.org> Mon, 15 Aug 2016 22:05:45 +0100
dbus (1.11.2-1) experimental; urgency=medium
* Merge packaging from unstable
* Change the experimental watch file to track development releases
* New upstream release
* debian/control: change Vcs-Git to point to the experimental branch
-- Simon McVittie <smcv@debian.org> Mon, 07 Mar 2016 20:10:23 +0000
dbus (1.10.8-1) unstable; urgency=medium
* New upstream release
* dbus.prerm: ensure that dbus.socket is stopped before removal,
so that a new connection to the bus won't cause dbus.service to be
restarted (Closes: #813970)
* debian/75dbus_dbus-launch: when not using systemd --user or the
dbus-user-session package is not installed, start dbus-daemon early,
then upload the full environment from Xsession.d later on
(in 95dbus_update-activation-env). This more closely matches the
behaviour with dbus-user-session. (Closes: #815503; thanks to Samuel
Thibault)
* Switch Vcs-Git to https (see #810378)
* debian/upstream/signing-key.asc: add upstream signing keys
(just my keys for now, in practice I do almost all dbus releases)
* debian/watch: use https and describe how to download signatures
* Standards-Version: 3.9.7 (no changes needed)
* Sort .install files and remove unnecessary debian/tmp prefix
* Normalize lists of packages and uploaders via wrap-and-sort -ast
* Normalize order of packages via wrap-and-sort -b
-- Simon McVittie <smcv@debian.org> Mon, 07 Mar 2016 19:15:47 +0000
dbus (1.11.0-1) experimental; urgency=medium
* New upstream development release
-- Simon McVittie <smcv@debian.org> Wed, 02 Dec 2015 22:03:27 +0000
dbus (1.10.22-1) unstable; urgency=medium
* New upstream stable release
* Run build-time tests (Closes: #630152)
- Skip build-time tests when only building Architecture: all.
Once per architecture is enough.
* Build-depend on python3{,-dbus,-gi} if we will run build-time tests.
This is a circular dependency, but is flagged as
<!nocheck !pkg.dbus.minimal> so it can be omitted when
cross-compiling or bootstrapping.
* Enable valgrind integration in the debug build on mips64
* Replace stage1 build profile with pkg.dbus.minimal
* Drop explicit dependency on autotools-dev, implied by debhelper 10
* debian/upstream/signing-key.asc: Update subkeys and uids
-- Simon McVittie <smcv@debian.org> Thu, 27 Jul 2017 17:40:18 +0100
dbus (1.10.6-1) unstable; urgency=medium
* New upstream stable release 1.10.6
- fixes regression tests when run as root (Closes: #806305)
* When removing dbus.target.wants (for #757913), do not fail if it does
not exist. This should fix FTBFS on non-Linux kernels, and in stage1
Linux builds (Closes: #805513)
* debian/libdbus-1-3.symbols.in: use a regex for private symbols, so
that this packaging can be used for snapshots of dbus where
DEB_VERSION_UPSTREAM does not necessarily match Autoconf's VERSION
-- Simon McVittie <smcv@debian.org> Tue, 01 Dec 2015 19:15:47 +0000
dbus (1.10.4-1) unstable; urgency=medium
* New upstream stable release 1.10.4
* prerm: clean up /etc/dbus-1/s*.conf compat symlinks on remove.
We only remove them if they match what the package sets up, so
we do not need to distinguish between remove and purge.
* prerm: also clean up /etc/dbus-1/s*.conf symlinks before downgrading
to a version << 1.10.2-1, so that the dbus-daemon will not fail to reload
or start after the downgrade. Please note that downgrading packages remains
an unsupported action. (Closes: #804183)
* postrm: clean up /etc/dbus-1/s*.conf on purge, even if their targets
do not match what is expected (Closes: #803441)
* dbus.install: use dh-exec to mark systemd-related files for [linux-any],
instead of constructing dbus.install programmatically
* dbus-1-dbg.links: use dh-exec instead of sh
* Stop installing dbus.target.wants/dbus.socket, since dbus.target no
longer exists in systemd. sockets.target covers that, and is part
of the DefaultDependencies anyway (Closes: #757913)
* Simplify dh_install override, and remove dh_link override altogether,
by using dh-exec
-- Simon McVittie <smcv@debian.org> Tue, 17 Nov 2015 21:58:01 +0000
dbus (1.10.2-1) unstable; urgency=medium
* New upstream stable release 1.10.2
* Touch /var/run/reboot-required on upgrade, even if neither
reboot-notifier nor update-notifier-common is installed.
Various other tools look for this file. (Closes: #799396)
* Allow dbus-daemon (<< 1.9.18) to reload bus setup and configuration
again (follow-up for #793519). This means that if an upgrade
from jessie to stretch pulls in a new system service, dbus-daemon
will load the configuration that allows that system service to work,
even before the system has been rebooted to use the new dbus-daemon.
- if /etc/dbus-1/s*.conf have been modified, move them to
/etc/dbus-1/s*.conf.dpkg-bak; if not, delete them
- patch /usr/share/dbus-1/s*.conf to include
/etc/dbus-1/s*.conf.dpkg-bak instead of /etc/dbus-1/s*.conf
- add new symlinks /etc/dbus-1/s*.conf -> /usr/share/dbus-1/s*.conf
so that the old dbus-daemon will load the new bus setup
* Remove Breaks and upgrade code for versions older than oldstable
-- Simon McVittie <smcv@debian.org> Mon, 26 Oct 2015 13:37:05 +0000
dbus (1.10.0-3) unstable; urgency=medium
* Put the entire debug build in an arch-specific directory, so
dbus-1-dbg can continue to be Multi-Arch: same (Closes: #798748)
* Record that Iain's change in 1.10.0-1 closed #796165
-- Simon McVittie <smcv@debian.org> Tue, 15 Sep 2015 10:56:19 +0100
dbus (1.10.0-2) unstable; urgency=medium
* dbus-user-session Breaks versions of dbus-x11 that would incorrectly
try to start a second bus (Closes: #797678)
* dbus-user-session Breaks versions of policykit-1 and udisks2 that
work poorly with user sessions
* Upload to unstable
-- Simon McVittie <smcv@debian.org> Fri, 11 Sep 2015 11:39:54 +0100
dbus (1.10.0-1) experimental; urgency=medium
[ Iain Lane ]
* debian/dbus.postinst: Check if /run/dbus exists before writing to a file
there. If it doesn't then the system bus isn't running so we don't have
anything to restart anyway. (Closes: #796165)
[ Simon McVittie ]
* New upstream stable release.
* Continue to upload to experimental for now, to avoid the shlibs bump
making the libstdc++ transition any worse than it already is.
-- Simon McVittie <smcv@debian.org> Tue, 25 Aug 2015 17:12:46 +0100
dbus (1.9.20-1) experimental; urgency=medium
* New upstream release (release candidate for 1.10)
* Add a tmpfiles.d snippet so that on systemd machines,
/var/lib/dbus/machine-id is a symlink to /etc/machine-id if not
otherwise created. This might help third-party software
that relies on that path, in cloud/live images where
/var/lib/dbus/machine-id is deleted during image preparation,
while avoiding having to run dbus-uuidgen on boot (as done in
non-systemd init systems and dbus/1.8.12-1ubuntu4).
* dbus.postinst: don't try to reload bus setup/configuration if we
are running an older version that will not understand the new
arrangement (Closes: #793519)
-- Simon McVittie <smcv@debian.org> Thu, 06 Aug 2015 20:37:35 +0100
dbus (1.9.18-1) experimental; urgency=medium
* New upstream development release
* debian/.gitignore: add
* Adapt for bus setup in ${datadir}
- deb: install both /etc/dbus-1/s*.conf and /usr/share/dbus-1/s*.conf
- udeb: install /usr/share/dbus-1/session.conf only
- configure the debug build to share /usr/share with the production build
-- Simon McVittie <smcv@debian.org> Tue, 21 Jul 2015 20:22:25 +0100
dbus (1.8.20-1) unstable; urgency=medium
* New upstream bugfix release
- fix a memory leak when GetConnectionCredentials is called
- stop dbus-monitor replying to org.freedesktop.DBus.Peer
messages, including those that another process should have
replied to
-- Simon McVittie <smcv@debian.org> Tue, 21 Jul 2015 17:59:42 +0100
dbus (1.9.16-2) experimental; urgency=medium
* libdbus-1-3 Breaks dbus versions that did not have a lockstep dependency
on it, to allow dropping internal ABIs (Closes: #785378)
* Drop now-unnecessary XS-Testsuite field from d/control
-- Simon McVittie <smcv@debian.org> Fri, 15 May 2015 15:58:31 +0100
dbus (1.9.16-1) experimental; urgency=medium
* New upstream development release
* Update symbols file
- new ABI: dbus_message_iter_get_element_count()
- ignore removal of dbus_internal_do_not_use_create_uuid(),
it is just as internal as its name would suggest
- make dbus_internal_do_not_use_get_uuid() generate a lockstep
dependency on libdbus (it's used by dbus-uuidgen)
-- Simon McVittie <smcv@debian.org> Thu, 14 May 2015 15:57:32 +0100
dbus (1.8.18-1) unstable; urgency=medium
* New upstream bugfix release
- Hardening: lock down the session bus to only allow EXTERNAL auth by
default, the same as the system bus. This avoids allowing
DBUS_COOKIE_SHA1, which can end up using a predictable random source
on systems where /dev/urandom is unavailable or dbus-daemon runs out
of memory. See the upstream NEWS for more details.
-- Simon McVittie <smcv@debian.org> Thu, 14 May 2015 13:59:55 +0100
dbus (1.9.14-2) experimental; urgency=medium
* Remove dbus-glib build-dependency, no longer used
* Merge from unstable
- security hardening: PIE, bindnow
- transcode debian/rules from Latin-1 to UTF-8
- reproducible build
-- Simon McVittie <smcv@debian.org> Tue, 12 May 2015 09:33:51 +0100
dbus (1.8.16-2) unstable; urgency=medium
* Merge packaging changes (but not the new upstream branch) from
experimental:
- Move Vcs-Git to cgit; go via https, because we can
- Standards-Version: 3.9.6 (no changes needed)
- Remove debian/source/local-options, no longer necessary (dpkg-source
now unapplies patches after the build if they were unapplied before)
- Configure gbp-pq to export patches without patch numbers, and
re-export our long-standing Debian patch in that format
- dbus-x11: use dbus-x11.install for the Xsession hook
- If DEB_BUILD_OPTIONS=noudeb, don't do the udeb build, for a 30% speedup
- Change the check for requiring a reboot to be init-system-agnostic
so Ubuntu can stop patching it (partially addresses #712167)
* Security hardening: build position-independent executables
for better ASLR
* Security hardening: build with bindnow, so relro (which is
already on by default) can make the entire PLT read-only
* Transcode debian/rules from Latin-1 to UTF-8
* Reproducible build: remove dates from man pages using sed
* Reproducible build: patch Doxyfile.in to not include timestamps
in HTML documentation
-- Simon McVittie <smcv@debian.org> Tue, 12 May 2015 09:28:19 +0100
dbus (1.9.14-1) experimental; urgency=medium
* New upstream release
- drop all patches, except for warnings being non-fatal by default:
all merged upstream
- removes redundant <apparmor> directive that matches the new default
behaviour anyway, allowing the old system bus to continue to reload
its configuration until the system is rebooted (Closes: #779463)
- update symbols file for new versioned-symbol support
- generate strict (= ${binary:Version}) dependencies for
anything using private symbols
* Use the library in dbus-1-dbg to satisfy its binaries' dependencies
-- Simon McVittie <smcv@debian.org> Mon, 02 Mar 2015 17:15:50 +0000
dbus (1.9.12-1) experimental; urgency=medium
* New upstream release adds AppArmor mediation support
- enable AppArmor in the normal build, disable it in the udeb
- disable build of ducktype docs for now, it isn't in Debian
- remove upstreamed patches
- update patch series
* Update patch series for fd.o #61301 to latest version
* Change the check for requiring a reboot to be init-system-agnostic
so Ubuntu can stop patching it (partially addresses #712167)
* dbus Suggests: dbus-user-session | dbus-x11, not just dbus-x11
* dbus-user-session Depends: libpam-systemd since it really needs logind
-- Simon McVittie <smcv@debian.org> Thu, 19 Feb 2015 14:03:21 +0000
dbus (1.9.10-3) experimental; urgency=medium
* Update proposed fd.o #61301 patch set:
- dbus-launch --autolaunch now returns the XDG_RUNTIME_DIR/bus if
available
-- Simon McVittie <smcv@debian.org> Tue, 17 Feb 2015 18:18:18 +0000
dbus (1.9.10-2) experimental; urgency=low
* Remove debian/source/local-options, no longer necessary (dpkg-source now
unapplies patches after the build if they were unapplied before)
* Configure gbp-pq to export patches without patch numbers, and
re-export our long-standing Debian patch in that format
* Add patch from upstream to reduce the number of fds the fdpass test
demands, fixing autopkgtest in a more limited environment
* Add patch from upstream to add a man page for dbus-test-tool
* Move installed-tests for the production build (but not the debug build)
to a new dbus-tests package, and add dbus-test-tool to that package
* dbus-x11: use dbus-x11.install for the Xsession hook
* If DEB_BUILD_OPTIONS=noudeb, don't do the udeb build, for a 30% speedup
* Add patch proposed upstream adding unix:runtime=yes as a listenable
address (fd.o #61303)
* Add user-bus patch set as proposed upstream (fd.o #61301):
- connect to XDG_RUNTIME_DIR/bus by default, if it is a socket
- add systemd --user units to run dbus-daemon, in the new
dbus-user-session package (Closes: #682375, #774626 for
users of systemd and dbus-user-session)
- even if dbus-x11 is installed, do not override an existing
DBUS_SESSION_BUS_ADDRESS (Closes: #681241)
- if dbus-x11 is installed, propagate all Xsession environment
variables except XDG_SEAT, XDG_SESSION_ID, XDG_VTNR into
D-Bus and systemd services for backwards compatibility
(remove dbus-x11 to get a "legacy-free" mode of operation)
-- Simon McVittie <smcv@debian.org> Fri, 13 Feb 2015 11:40:27 +0000
dbus (1.9.10-1) experimental; urgency=high
* New upstream release fixes a local denial of service
when using systemd activation (CVE-2015-0245)
* Move Vcs-Git to cgit; go via https, because we can
* Standards-Version: 3.9.6 (no changes needed)
-- Simon McVittie <smcv@debian.org> Fri, 06 Feb 2015 15:39:09 +0000
dbus (1.8.16-1) unstable; urgency=high
* New upstream release fixes a local denial of service
when using systemd activation (CVE-2015-0245)
-- Simon McVittie <smcv@debian.org> Wed, 04 Feb 2015 20:14:46 +0000
dbus (1.9.8-1) experimental; urgency=medium
* Merge from unstable
- relax the triggers from interest to interest-noawait (Closes: #771989;
mitigates: #776063; partially reopens: #740139), see below
* New upstream release with GNOME-style installed tests
- run the tests through gnome-desktop-testing-runner
- also continue to run the tests the old way to make sure there are
no regressions
- also run one test as root to verify behaviour with multiple uids
- dbus-1-dbg is temporarily not Multi-Arch: same (until we split out
dbus-1-tests, which will require a trip through the NEW queue)
-- Simon McVittie <smcv@debian.org> Tue, 03 Feb 2015 21:34:57 +0000
dbus (1.8.14-2) unstable; urgency=high
* Relax the triggers from interest to interest-noawait (Closes: #771989;
mitigates: #776063; partially reopens: #740139).
This is not strictly correct, because the purpose of the triggers
is to set up the .conf, .service files for system services before those
services satisfy dependencies. However, it mitigates #776063
(apt getting into a stuck state during upgrades), and should in
principle be redundant anyway, because dbus-daemon is meant to use
inotify to keep up with configuration changes. See #771989, #776063
for details.
-- Simon McVittie <smcv@debian.org> Tue, 03 Feb 2015 17:28:12 +0000
dbus (1.8.14-1) unstable; urgency=medium
* New upstream release to harden dbus-daemon against packages that install
unsafe security policy configurations.
-- Simon McVittie <smcv@debian.org> Thu, 01 Jan 2015 13:07:23 +0000
dbus (1.9.6-1) experimental; urgency=medium
* New upstream release to harden dbus-daemon against packages that install
unsafe security policy configurations.
* Merge from unstable:
- preinst: partially revert change from 1.9.4-2. It seems that the
preinst is too late to add a useful dpkg-statoverride entry: dpkg has
already loaded the statoverride database by this point, and if we add
the entry in the preinst, dpkg-statoverride won't run and have
its --update side-effect in the postinst. (Closes: #773107, #773838)
- postinst: don't run dpkg-statoverride with 2>/dev/null: in the unlikely
event that it fails for a reason other than "not overridden" (which
results in silently exiting 1), we'll want to know about it.
-- Simon McVittie <smcv@debian.org> Fri, 02 Jan 2015 11:12:21 +0000
dbus (1.8.12-3) unstable; urgency=medium
* preinst: partially revert change from 1.8.12-2. It seems that the
preinst is too late to add a useful dpkg-statoverride entry: dpkg has
already loaded the statoverride database by this point, and if we add
the entry in the preinst, dpkg-statoverride won't run and have
its --update side-effect in the postinst. (Closes: #773107, #773838)
* postinst: don't run dpkg-statoverride with 2>/dev/null: in the unlikely
event that it fails for a reason other than "not overridden" (which
results in silently exiting 1), we'll want to know about it.
-- Simon McVittie <smcv@debian.org> Tue, 23 Dec 2014 21:21:20 +0000
dbus (1.8.12-2) unstable; urgency=medium
* postinst: use dpkg-statoverride to set the permissions for
dbus-daemon-launch-helper (expected to be 04754 root:messagebus)
as suggested in Policy §10.9. This avoids a temporarily broken state
when an upgraded dbus is unpacked but not yet configured (Closes: #773107)
* preinst: opportunistically set up the same dpkg-statoverride entry
if the group already exists, to avoid the same broken state during
upgrades from older versions without needing Pre-Depends: adduser
* postrm: delete the dpkg-statoverride entry on purge
-- Simon McVittie <smcv@debian.org> Sun, 21 Dec 2014 15:02:22 +0000
dbus (1.8.12-1) unstable; urgency=medium
* New upstream release 1.8.12
- increase auth_timeout from 5 seconds back to 30 seconds since it
appears to cause slow or failed boot on some systems, reverting a
change in 1.8.8 (Closes: #769069)
- add a README.Debian to the dbus package documenting how
sysadmins with hostile local users can get the lower timeout back,
if their systems are fast enough to boot correctly like that
-- Simon McVittie <smcv@debian.org> Mon, 24 Nov 2014 13:46:01 +0000
dbus (1.9.4-2) experimental; urgency=medium
* postinst: use dpkg-statoverride to set the permissions for
dbus-daemon-launch-helper (expected to be 04754 root:messagebus)
as suggested in Policy §10.9. This avoids a temporarily broken state
when an upgraded dbus is unpacked but not yet configured (Closes: #773107)
* preinst: opportunistically set up the same dpkg-statoverride entry
if the group already exists, to avoid the same broken state during
upgrades from older versions without needing Pre-Depends: adduser
* postrm: delete the dpkg-statoverride entry on purge
-- Simon McVittie <smcv@debian.org> Mon, 15 Dec 2014 08:18:15 +0000
dbus (1.9.4-1) experimental; urgency=medium
* New upstream release 1.9.4
- increase auth_timeout from 5 seconds back to 30 seconds since it
appears to cause slow or failed boot on some systems, reverting a
change in 1.8.8 (Closes: #769069)
- add a README.Debian to the dbus package documenting how
sysadmins with hostile local users can get the lower timeout back,
if their systems are fast enough to boot correctly like that
-- Simon McVittie <smcv@debian.org> Mon, 24 Nov 2014 13:57:00 +0000
dbus (1.9.2-1) experimental; urgency=medium
* Merge from unstable
- Remove Build-Profiles control field until the syntax settles down
(Closes: #764222)
- Start 'dbus-daemon --system' as root under sysvinit (it already
starts as root under systemd), so it can increase its file
descriptor limit
* New upstream release 1.9.2
- raise dbus-daemon's file descriptor limit to 65536 to avoid an
opportunity for denial of service
(CVE-2014-7824, an incomplete fix for CVE-2014-3636)
- don't package dbus-test-tool for now, to avoid the NEW queue
-- Simon McVittie <smcv@debian.org> Thu, 06 Nov 2014 21:08:06 +0000
dbus (1.9.0-1) experimental; urgency=medium
[ Michael Biebl ]
* Build against libsystemd-dev. In systemd v209 the various libraries were
merged into a single libsystemd library.
[ Simon McVittie ]
* debian/dbus.bug-control: when people report bugs against dbus,
also report the status of systemd and systemd-sysv (because
those alter how system service activation works), and dbus-x11
(because that's responsible for normal session bus setup)
* New upstream development release
- Debug.Stats interface is now enabled (for root only) by default;
explicitly disable it for the udeb
- embedded code copy of sd-daemon.[ch] has gone away, remove it from the
coypright file
* Use --with-valgrind=auto (supported since 1.7.6) for the debug build
* Use -Wl,--gc-sections to avoid recent toolchain putting the
entire libdbus-internal.la into dbus-daemon-launch-helper
-- Simon McVittie <smcv@debian.org> Wed, 01 Oct 2014 21:44:11 +0100
dbus (1.8.8-1) unstable; urgency=medium
[ Michael Biebl ]
* Don't attempt config reload if dbus system bus is not running.
[ Simon McVittie ]
* Bump dbus up to Priority: standard because without it, systemd-logind
does not run a getty on tty2..tty6 (matching ftp-master action in
#759293)
* New upstream release fixes several security issues
- CVE-2014-3635: do not accept an extra fd in cmsg padding,
avoiding a buffer overrun in dbus-daemon or system services
- CVE-2014-3636: reduce maximum number of file descriptors
per message from 1024 to 16, to avoid two separate denial-of-service
attacks that could cause system services to be dropped from the bus
- CVE-2014-3637: time out connections that have a
partially-sent message containing a file descriptor, so that
malicious processes cannot use self-referential file descriptors
to make a connection that will never close
- CVE-2014-3638: reduce maximum number of pending replies
per connection to avoid algorithmic complexity DoS
- CVE-2014-3639: reduce timeout for authentication and
do not accept() new connections when all unauthenticated connection
slots are in use, so that malicious processes cannot prevent new
connections to the system bus
* debian/copyright: fix glob syntax, .[ch] is not supported
-- Simon McVittie <smcv@debian.org> Mon, 15 Sep 2014 12:58:25 +0100
dbus (1.8.6-2) unstable; urgency=medium
* debian/dbus.posinst: When triggered only poke the dbus-daemon, don't run
update-rc.d/invoke-rc.d as added by dh_installinit. This prevent some
odd-corner when being triggered during init system upgrade
(Closes: #754404)
-- Sjoerd Simons <sjoerd@debian.org> Wed, 13 Aug 2014 22:30:38 +0200
dbus (1.8.6-1) unstable; urgency=high
* New upstream release
- fix two local DoS vulnerabilities (CVE-2014-3532, CVE-2014-3533)
-- Simon McVittie <smcv@debian.org> Mon, 30 Jun 2014 15:15:58 +0100
dbus (1.8.4-1) unstable; urgency=high
* New upstream release, fixing a DoS vulnerability (CVE-2014-3477)
-- Simon McVittie <smcv@debian.org> Thu, 05 Jun 2014 15:12:02 +0100
dbus (1.8.2-1) unstable; urgency=medium
* New upstream release
-- Simon McVittie <smcv@debian.org> Wed, 30 Apr 2014 20:17:46 +0100
dbus (1.8.0-3) unstable; urgency=medium
* Improve autopkgtest support
- use a shell wildcard instead of dpkg-architecture, to avoid stderr spam
failing the test if gcc is missing
- wrap each test-case in an arbitrary (5 minute) timeout so that one
test-case failing won't halt the whole build
-- Simon McVittie <smcv@debian.org> Wed, 26 Mar 2014 09:17:20 +0000
dbus (1.8.0-2) unstable; urgency=low
* debian/rules: look for DEB_BUILD_PROFILES, the new name for
DEB_BUILD_PROFILE
* Don't try to install systemd units in a stage1 build (they are
no longer installed unless libsystemd*-dev are found) (Closes: #738317)
* Mark dbus-1-doc with Build-Profiles: !stage1
* Register a dpkg trigger on /usr/share/dbus-1/system-services and
/etc/dbus-1/system.d that calls ReloadConfig on the system dbus-daemon,
in case our inotify monitoring isn't completely reliable (see #740139)
* Clean debian/tmp-udeb in `debian/rules clean`
* Hook up the installed tests to DEP-8 metadata
* Add a simple compile/link/run test
-- Simon McVittie <smcv@debian.org> Wed, 26 Feb 2014 13:15:14 +0000
dbus (1.8.0-1) unstable; urgency=low
* New upstream stable release
- add debian/copyright stanzas for some new BSD-licensed cmake macros
-- Simon McVittie <smcv@debian.org> Mon, 20 Jan 2014 15:05:53 +0000
dbus (1.7.10-2) unstable; urgency=low
* Conditionalize libaudit and libcap-ng build-dependencies to [linux-any]
* Explicitly enable libaudit, SELinux and systemd on Linux;
do not enable them elsewhere
-- Simon McVittie <smcv@debian.org> Tue, 07 Jan 2014 12:12:15 +0000
dbus (1.7.10-1) unstable; urgency=low
* Merge from experimental into unstable
* New upstream release 1.7.10 (1.8 rc1)
* Generate debian/dbus.install from a generic part and a Linux-specific
part, since systemd metadata doesn't get installed on non-Linux any more
-- Simon McVittie <smcv@debian.org> Mon, 06 Jan 2014 19:43:36 +0000
dbus (1.7.8-1) experimental; urgency=low
[ Laurent Bigonville ]
* debian/rules: Re-add udeb_configure_flags that were lost during merge
(Closes: #727774)
[ Simon McVittie ]
* Standards-Version: 3.9.5 (no changes needed)
* Enable libaudit support so messages that violate SELinux policy go to the
audit log (Closes: #727771)
* New upstream release
- add new dependency on libsystemd-journal-dev for linux-any
-- Simon McVittie <smcv@debian.org> Tue, 29 Oct 2013 13:07:02 +0000
dbus (1.7.6-2) experimental; urgency=low
* debian/rules: FTBFS if new symbols or libraries are added
without updating the symbols file
* debian/copyright: list copyright holders and minor licenses
(Closes: #726000)
* Merge packaging changes from unstable:
- Run `update-rc.d dbus defaults` instead of deprecated
`update-rc.d dbus start ...` (Closes: #725923)
- Add udeb packages, so the graphical installer can use AT-SPI
(Closes: #723952)
- Standards-Version: 3.9.4 (no changes needed)
-- Simon McVittie <smcv@debian.org> Sat, 12 Oct 2013 16:30:55 +0100
dbus (1.7.6-1) experimental; urgency=low
* Standards-Version: 3.9.4 (no changes needed)
* New upstream development release
- update symbols
-- Simon McVittie <smcv@debian.org> Wed, 09 Oct 2013 16:44:43 +0100
dbus (1.7.4-1) experimental; urgency=low
* New upstream development release
- CVE-2013-2168: avoid a user-triggerable crash (denial of services)
in system services that use libdbus
-- Simon McVittie <smcv@debian.org> Wed, 12 Jun 2013 19:53:00 +0100
dbus (1.7.2-1) experimental; urgency=low
* New upstream development release
* Do the debug build --with-valgrind on mipsel, too
-- Simon McVittie <smcv@debian.org> Thu, 25 Apr 2013 13:46:10 +0100
dbus (1.7.0-1) experimental; urgency=low
* Branch for experimental
* New upstream development release
* On architectures where it's currently supported, do the
debug build with --with-valgrind for better instrumentation
* debian/rules: factor out production and debug configure flags
* Add support for DEB_BUILD_OPTIONS=nodocs, which omits most documentation
(allowing doxygen and xmlto to be avoided) and the dbus-1-doc package
* Add support for DEB_BUILD_PROFILE=stage1, which does the same as nodocs
and additionally makes the debug build not insist on building all tests
* Make the development and debugging packages Multi-Arch: same,
since their arch-dependent files are all arch-segregated
(/usr/lib/TUPLE) or named according to a build-ID (/usr/lib/debug)
(Closes: #689071). This is not actually useful until pkg-config
becomes M-A: foreign (#631275).
-- Simon McVittie <smcv@debian.org> Fri, 22 Feb 2013 15:20:10 +0000
dbus (1.6.18-2) unstable; urgency=medium
* Disable valgrind integration in the debug build on armel,
since valgrind no longer supports armel (Closes: #729136)
-- Simon McVittie <smcv@debian.org> Mon, 02 Dec 2013 10:22:39 +0000
dbus (1.6.18-1) unstable; urgency=low
* Run `update-rc.d dbus defaults` instead of deprecated
`update-rc.d dbus start ...` (Closes: #725923)
* debian/rules: FTBFS if new symbols or libraries are added
without updating the symbols file
* debian/copyright: list copyright holders and minor licenses
(Closes: #726000)
* New upstream release 1.6.18
* Standards-Version: 3.9.5 (no changes needed)
-- Simon McVittie <smcv@debian.org> Fri, 01 Nov 2013 16:30:33 +0000
dbus (1.6.16-1) unstable; urgency=low
* New upstream stable release 1.6.16
* Backport the new dbus-run-session tool from D-Bus 1.7
* Add udeb packages, so the graphical installer can use AT-SPI
(Closes: #723952)
* Standards-Version: 3.9.4 (no changes needed)
-- Simon McVittie <smcv@debian.org> Tue, 08 Oct 2013 16:44:21 +0100
dbus (1.6.14-1) unstable; urgency=low
* New upstream stable release 1.6.14
- fixes an infinite busy-loop if waitpid() is interrupted by a signal
while spawning a subprocess (Closes: #721932)
-- Simon McVittie <smcv@debian.org> Thu, 05 Sep 2013 16:42:55 +0100
dbus (1.6.12-1) unstable; urgency=high
* New upstream stable release 1.6.12
- CVE-2013-2168: avoid a user-triggerable crash (denial of services)
in system services that use libdbus
-- Simon McVittie <smcv@debian.org> Wed, 12 Jun 2013 14:38:34 +0100
dbus (1.6.10-1) unstable; urgency=low
* New upstream stable release 1.6.10
* Merge everything except the upstream development release from experimental:
- On architectures where it's currently supported, do the
debug build with --with-valgrind for better instrumentation
- debian/rules: factor out production and debug configure flags
- Add support for DEB_BUILD_OPTIONS=nodocs, which omits most documentation
(allowing doxygen and xmlto to be avoided) and the dbus-1-doc package
- Add support for DEB_BUILD_PROFILE=stage1, which does the same as nodocs
and additionally makes the debug build not insist on building all tests
- Make the development and debugging packages Multi-Arch: same,
since their arch-dependent files are all arch-segregated
(/usr/lib/TUPLE) or named according to a build-ID (/usr/lib/debug)
(Closes: #689071). This is not actually useful until pkg-config
becomes M-A: foreign (#631275).
* Do the debug build --with-valgrind on mipsel, too
-- Simon McVittie <smcv@debian.org> Wed, 08 May 2013 10:52:51 +0100
dbus (1.6.8-1) unstable; urgency=low
* Merge from experimental
* New upstream stable release 1.6.6
- CVE-2012-3524: avoid arbitrary code execution in setuid or otherwise
privileged binaries that incorrectly use libdbus without first
sanitizing the environment variables inherited from their
less-privileged caller (Closes: #689070)
* New upstream stable release 1.6.8
- Revert part of 1.6.6 (do not check filesystem capabilities, only
setuid/setgid), fixing regressions in certain configurations of
gnome-keyring
-- Simon McVittie <smcv@debian.org> Sat, 29 Sep 2012 13:25:50 +0100
dbus (1.6.4-1) experimental; urgency=low
* gbp.conf: switch to experimental branch
* New upstream stable release
- remove incorrect assertion and have correct default for developer mode
(Closes: #680027, differently)
-- Simon McVittie <smcv@debian.org> Wed, 18 Jul 2012 18:42:52 +0100
dbus (1.6.2-2) unstable; urgency=low
* Disable "developer mode", which was intended to be off-by-default,
but was incorrectly on-by-default in 1.6.2, causing an incorrect
assertion to be hit when starting fcitx before dbus-launch.
(Closes: #680027)
-- Simon McVittie <smcv@debian.org> Tue, 03 Jul 2012 19:33:42 +0100
dbus (1.6.2-1) unstable; urgency=low
* New upstream stable release
- dbus-launch --exit-with-session no longer monitors its stdin if
run under X11 (Closes: #453755)
* Remove the workaround for #453755 from dbus-Xsession
-- Simon McVittie <smcv@debian.org> Wed, 27 Jun 2012 18:22:20 +0100
dbus (1.6.0-1) unstable; urgency=low
* Merge from "experimental" (1.5.12 was accidentally uploaded to unstable)
* New upstream stable release
* debian/watch: only match stable (0.even.x) releases
-- Simon McVittie <smcv@debian.org> Tue, 05 Jun 2012 14:23:46 +0100
dbus (1.5.12-1) unstable; urgency=low
* Merge from unstable
* New upstream release
- adds new API
* Standards-Version: 3.9.3 (no changes)
* Remove lintian override for #629648, hopefully the ftpmasters are using
lintian 2.5.1 by now
* Add lintian overrides for the empty directories we (intentionally) ship
* Don't run dh_makeshlibs on dbus-1-dbg, nothing should be linking to its
extra-debug-enabled build of the library
* Register D-Bus documentation in doc-base
-- Simon McVittie <smcv@debian.org> Tue, 27 Mar 2012 18:36:38 +0100
dbus (1.4.20-1) unstable; urgency=low
* New upstream release
- fixes FTBFS with GLib 2.32 (Closes: #665665)
-- Simon McVittie <smcv@debian.org> Tue, 27 Mar 2012 13:33:33 +0100
dbus (1.5.10-1) experimental; urgency=low
* New upstream release
* Merge from unstable
* Build with systemd console-user-checking support
* Use debhelper 9 (mainly for compressed, build-ID-based debug symbols),
and dpkg's default.mk instead of hardening-includes
-- Simon McVittie <smcv@debian.org> Tue, 21 Feb 2012 18:24:14 +0000
dbus (1.4.18-1) unstable; urgency=low
* New upstream release
* Change dbus and src:dbus from Section: devel to Section: admin
(Closes: #659357)
-- Simon McVittie <smcv@debian.org> Mon, 13 Feb 2012 17:17:43 +0000
dbus (1.5.8-1) experimental; urgency=low
* Merge from unstable
* New upstream release
-- Simon McVittie <smcv@debian.org> Wed, 21 Sep 2011 18:32:46 +0100
dbus (1.4.16-1) unstable; urgency=low
* New upstream release
* Do not symlink dcop-howto.txt.gz - no longer installed (this is D-Bus,
not DCOP)
* Set the build-dependencies to be enough to run all tests, but don't
run the tests yet
-- Simon McVittie <smcv@debian.org> Wed, 21 Sep 2011 15:32:10 +0100
dbus (1.5.6-1) experimental; urgency=low
* Merge from unstable
* New upstream release
-- Simon McVittie <smcv@debian.org> Fri, 29 Jul 2011 16:56:04 +0100
dbus (1.4.14-1) unstable; urgency=low
* New upstream release
- no longer needs workarounds to build or install the documentation
* Remove --disable-gc-sections, unnecessary since 1.4.12
-- Simon McVittie <smcv@debian.org> Fri, 29 Jul 2011 16:50:56 +0100
dbus (1.5.4-3) experimental; urgency=low
* Merge from unstable
-- Simon McVittie <smcv@debian.org> Fri, 15 Jul 2011 11:26:08 +0100
dbus (1.4.12-5) unstable; urgency=low
* Undo the changed invocation for dbus-launch, which seems to cause
more problems than it solves (LP: #807614, LP: #809900, probably also
Closes: #633652)
* Work around #453755 by just reopening stdin from /dev/null instead,
until fd.o #39197 gets fixed
-- Simon McVittie <smcv@debian.org> Fri, 15 Jul 2011 10:45:56 +0100
dbus (1.4.12-4) unstable; urgency=low
* Override missing-pre-dependency-on-multiarch-support for the -dev
package, ftp-master doesn't have lintian 2.5.1 yet
* Check all Description fields for correct use of dbus (package name)
vs. D-Bus (project name), and override lintian false-positives
-- Simon McVittie <smcv@debian.org> Fri, 01 Jul 2011 07:55:01 +0100
dbus (1.4.12-3) unstable; urgency=low
* Mention CVE-2011-2200 in the changelog for 1.4.12-1 now it has a CVE ID
* Merge some things from Ubuntu, via experimental:
- move libraries into multiarch locations (but don't move binaries
from /usr to /, which is not needed on Debian)
- run dbus-uuidgen --ensure in postinst
- call ReloadConfig with dbus-send in the postinst, since that'll work
regardless of whether dbus was started with sysvinit or Upstart; just
call it unconditionally, and ignore any failures we might see (in
chroots or if dbus-daemon wasn't running)
* and more things from experimental:
- improve comments in postinst explaining why it behaves as it does
* Run dbus-launch for X sessions in a way that doesn't consume characters
from startx's stdin, or the stdin of certain display managers' init scripts
(known to affect slim, but not xdm or gdm) (Closes: #453755)
* Remove the .la file for the debug build, not just the normal build
-- Simon McVittie <smcv@debian.org> Thu, 30 Jun 2011 17:21:03 +0100
dbus (1.5.4-2) experimental; urgency=low
* Merge from unstable
-- Simon McVittie <smcv@debian.org> Sat, 11 Jun 2011 19:33:40 +0100
dbus (1.4.12-2) unstable; urgency=medium
* Don't run tests during build (again), it appears they time out on most of
of the buildds
* Explicitly build-depend on automake 1.10, so buildds won't try and fail
with automake1.9 like kfreebsd-i386 did
-- Simon McVittie <smcv@debian.org> Sat, 11 Jun 2011 14:11:04 +0100
dbus (1.5.4-1) experimental; urgency=low
* Merge from unstable
* New(er) upstream version fixing local DoS (Closes: #629938)
* Revert some of the changes merged from Ubuntu, which look as though
they shouldn't be needed on either distribution:
- there's no need to create/chown messagebus' home directory, the sysvinit
script and the Upstart job both do that on-demand
* Revert changes which are useful in Ubuntu but not Debian:
- move everything except the library back into /usr; Debian doesn't have
any uses for dbus-daemon in early boot, and if we do later, we'd need to
get libexpat moved first
- this gets the locations back into sync with what it says in the
Xsession hook (Closes: #630011) and the init script (Closes: #629954)
* Improve comments in postinst explaining why it behaves as it does
-- Simon McVittie <smcv@debian.org> Fri, 10 Jun 2011 23:35:51 +0100
dbus (1.4.12-1) unstable; urgency=medium
* New upstream release fixes local DoS (Closes: #629938, CVE-2011-2200)
* Don't delete jquery.js, no longer installed by recent Doxygen
* Build-depend on libglib2.0-dev, libdbus-glib-1-dev for better regression
test coverage (dbus-glib is a circular dependency, but both of these
dependencies can be dropped if bootstrapping new architectures)
-- Simon McVittie <smcv@debian.org> Fri, 10 Jun 2011 22:39:14 +0100
dbus (1.5.2-2) experimental; urgency=low
* Merge from unstable
* Merge and adapt from Ubuntu:
- create, chown messagebus' home directory in postinst
- run dbus-uuidgen --ensure in postinst
- call ReloadConfig with dbus-send in the postinst, since that'll work
regardless of whether dbus was started with sysvinit or Upstart; just
call it unconditionally, and ignore any failures we might see (in
chroots or if dbus-daemon wasn't running)
- move dbus-daemon and its helpers from /usr to /
- move libraries into multiarch locations
* Don't delete jquery.js, no longer installed by recent Doxygen
* libdbus-1-dev: explicitly pre-depend on multiarch-support to work around
debhelper and lintian disagreeing whether it's necessary
-- Simon McVittie <smcv@debian.org> Thu, 09 Jun 2011 08:00:24 +0100
dbus (1.4.10-2) unstable; urgency=low
* Disable silent rules so we can have useful buildd logs
* Update Vcs-Git, Vcs-Browser to the form preferred by the Alioth admins
* Disable -Wl,--gc-sections and related flags: the size decrease is
negligible, and these options currently segfault ld on armel and mips*
(Closes: #628834)
* Disable the build-time tests for now, they need more upstream work before
they'll pass in a minimal build chroot
-- Simon McVittie <smcv@debian.org> Thu, 02 Jun 2011 17:08:25 +0100
dbus (1.5.2-1) experimental; urgency=low
* Merge from unstable
* New(er) upstream version
-- Simon McVittie <smcv@debian.org> Wed, 01 Jun 2011 16:32:25 +0100
dbus (1.4.10-1) unstable; urgency=low
* New upstream version
* Use a separate build directory
* Explicitly set compiler flags
* Don't complain about not installing libdbus-1.la
* Don't pass a version to dh_makeshlibs -V - the symbols file gives us
exact dependencies, so the legacy shlibs mechanism is just a guard against
old systems now, and everyone forgets to update it
* Do a second build with tests, verbosity etc. enabled, and install it
in /usr/lib/$DEB_HOST_MULTIARCH/dbus-1.0/debug-build in dbus-1-dbg
(Closes: #498185)
- increase dependencies of dbus-1-dbg to allow for this
- run the debug build's regression tests during build, but don't make
failures fatal yet
- build-depend on xvfb and run the tests under xvfb-run, since one
needs a $DISPLAY
* Run autoconf during build, and allow parallel building
* Don't install dcop-howto.txt - this isn't DCOP
-- Simon McVittie <smcv@debian.org> Wed, 01 Jun 2011 16:18:45 +0100
dbus (1.5.0-2) experimental; urgency=low
* Merge from unstable
-- Simon McVittie <smcv@debian.org> Wed, 27 Apr 2011 16:41:52 +0100
dbus (1.4.8-3) unstable; urgency=low
* libdbus-1-3 Breaks versions of kdebase-workspace-bin and kde-window-manager
that suffer from #623492, so partial upgrades don't make KDE unusable
(Closes: #624333)
* Policy 3.9.2 (no changes required)
* De-duplicate short descriptions
* Add DEP-3 metadata to 01_no-fatal-warnings.patch
-- Simon McVittie <smcv@debian.org> Wed, 27 Apr 2011 16:11:18 +0100
dbus (1.4.8-2) unstable; urgency=low
* Remove jquery.js at the right location
* Re-upload with non-broken .changes file
-- Simon McVittie <smcv@debian.org> Tue, 19 Apr 2011 09:15:04 +0100
dbus (1.5.0-1) experimental; urgency=low
* New upstream development version (targeting experimental)
* Remove jquery.js at the right location
-- Simon McVittie <smcv@debian.org> Mon, 11 Apr 2011 18:04:56 +0100
dbus (1.4.8-1) unstable; urgency=low
* New upstream version
- Use upstream-merged support for installing HTML docs
- Use upstream-supplied doxygen_to_devhelp.xsl (the Automake integration
is still a bit broken, so we build it ourselves)
* Mark dbus, dbus-x11 as Multi-Arch: foreign
* Remove the unused copy of jquery.js that doxygen now wants to install
* Move HTML and text documentation from /u/s/d/dbus-1-doc to /u/s/d/dbus
(see Policy bug #107073 for discussion), leaving behind symlinks to their
historical locations; this also results in shipping one copy of
dbus-specification.html rather than two
* Correctly credit Michael for his changes in the previous changelog entry
-- Simon McVittie <smcv@debian.org> Mon, 11 Apr 2011 16:22:48 +0100
dbus (1.4.6-1) unstable; urgency=low
[ Michael Biebl ]
* Switch from cdbs to dh.
* Bump debhelper compatibility level to 8.
* Remove doxygen call from debian/rules and cleaning up doc/api manually.
The upstream build system takes care of that already.
[ Simon McVittie ]
* New upstream version
- remove 00_dbus-quiesce-startup-errors.patch, no longer needed
* Ignore changes to generated Doxygen HTML instead of deleting it in clean,
for easier use of git-buildpackage
* Unapply patches after building from git
-- Simon McVittie <smcv@debian.org> Thu, 17 Feb 2011 20:12:59 +0000
dbus (1.4.1-2) unstable; urgency=low
[ Simon McVittie ]
* Move to git; add debian/gbp.conf for git-buildpackage
* Replace 00_dbus-quiesce-startup-errors.patch with the version that was
merged upstream
[ Michael Biebl ]
* Upload to unstable.
-- Michael Biebl <biebl@debian.org> Mon, 07 Feb 2011 01:52:08 +0100
dbus (1.4.1-1) experimental; urgency=low
* New upstream release.
* Remove pre-lenny upgrade code.
- Drop old Breaks/Replaces from debian/control.
- Drop debian/dbus.preinst and clean up debian/dbus.postinst.
-- Michael Biebl <biebl@debian.org> Tue, 21 Dec 2010 02:18:37 +0100
dbus (1.4.0-2) experimental; urgency=low
* Install systemd unit files.
-- Michael Biebl <biebl@debian.org> Tue, 16 Nov 2010 22:02:11 +0100
dbus (1.4.0-1) experimental; urgency=low
* New upstream release.
- Feature negotiation in the bus daemon.
- File descriptor passing on Unix socket transports.
- Various portability fixes, in particular to Windows platforms.
- Support forking bus services, for compatibility.
- New standardized PropertiesChanged signal in the properties interface.
- Use of GCC atomic intrinsics for better processor support.
- Ability for dbus-send to send to any bus (--address).
- systemd hookup.
- Fixes reentrancy issue with multi-threaded apps, which affects
especially Qt and KDE apps. (Closes: #584522)
* debian/control
- Bump Standards-Version to 3.9.1. No further changes.
* debian/rules
- Disable installation of systemd unit files.
-- Michael Biebl <biebl@debian.org> Tue, 14 Sep 2010 20:43:05 +0200
dbus (1.3.2~git20100715.821f99c-1) experimental; urgency=low
* New upstream Git snapshot (up to 821f99c).
* Refresh patches to apply cleanly.
* debian/libdbus-1-3.symbols
- Update for API additions (Unix FD passing).
* debian/rules
- Bump shlibs to 1.3.1.
-- Michael Biebl <biebl@debian.org> Sun, 18 Jul 2010 13:41:43 +0200
dbus (1.2.24-3) unstable; urgency=medium
* Add patch from upstream to fix segfaults when reloaded on kFreeBSD
(Closes: #589662)
* Work around FTBFS if dh-buildinfo is installed (Closes: #590594)
-- Simon McVittie <smcv@debian.org> Tue, 27 Jul 2010 19:56:43 +0100
dbus (1.2.24-2) unstable; urgency=low
[ Simon McVittie ]
* Merge from experimental
- add separate debugging symbols (dbus-1-dbg)
[ Michael Biebl ]
* Switch to source format 3.0 (quilt)
- Add debian/source/format.
- Drop Build-Depends on quilt.
- Remove /usr/share/cdbs/1/rules/patchsys-quilt.mk from debian/rules.
- Remove debian/README.source.
* debian/control
- Bump Standards-Version to 3.9.0.
- Use architecture wildcard linux-any for libselinux1-dev Build-Depends.
- Use Breaks instead of Conflicts as recommended by the new policy.
- Remove old Conflicts which is no longer relevant.
* debian/dbus.init
- Simplify check in start_it_up() by using the existing status action.
- Stop restarting dependent services. It was an ugly hack anyway and if
people want to restart dbus, they need take care of that themselves.
(Closes: #540693, #530395)
* debian/dbus.postinst
- Stop restarting dbus system bus on upgrades as it breaks too many
applications and is not supported by upstream in a sensible way.
Instead trigger a reboot-required message using update-notifier.
(Closes: #530000, #573386)
-- Michael Biebl <biebl@debian.org> Sat, 17 Jul 2010 14:54:54 +0200
dbus (1.2.24-1+exp1) experimental; urgency=low
* Add separate debugging symbols (Closes: #550517)
-- Simon McVittie <smcv@debian.org> Sun, 27 Jun 2010 17:19:24 +0100
dbus (1.2.24-1) unstable; urgency=low
* New upstream release.
- Correctly get pointer data from DBusString when creating a syslog
message. (Closes: #574697)
* debian/dbus-Xsession
- Use new "has_option" function from x11-common instead of grepping the
option file, to avoid calling an external program. (Closes: #570480)
Thanks to Martin Pitt for the patch.
* debian/control
- Add Breaks: x11-common (<< 1:7.5+4) to dbus-x11 to ensure we have a
recent enough version with "has_option" support.
* debian/dbus.init
- Update LSB header: Remove runlevel 1 from Default-Stop and let killprocs
do the job for us.
* debian/rules
- Update DEB_DH_INSTALLINIT_ARGS accordingly.
* debian/dbus.postinst
- Remove old stop symlinks from runlevel 1 on upgrades.
-- Michael Biebl <biebl@debian.org> Wed, 24 Mar 2010 02:04:20 +0100
dbus (1.2.22-1) unstable; urgency=low
* New upstream release.
* debian/patches/11_kfreebsd_kqueue_build_fix.patch
- Removed, merged upstream.
* debian/control
- Drop Provides: dbus-1-utils, there is no more package depending on it.
-- Michael Biebl <biebl@debian.org> Thu, 18 Mar 2010 01:06:13 +0100
dbus (1.2.20-2) unstable; urgency=low
* debian/patches/11_kfreebsd_kqueue_build_fix.patch
- Fix kqueue implementation on GNU/kFreeBSD. (Closes: #568338)
Thanks to Cyril Brulebois for the patch.
-- Michael Biebl <biebl@debian.org> Wed, 03 Feb 2010 23:08:12 +0100
dbus (1.2.20-1) unstable; urgency=low
* New upstream release.
* debian/control
- Drop Build-Depends on docbook-utils, apparently no longer necessary.
- Bump Standards-Version to 3.8.4.
* debian/rules
- Explicitly disable audit support so we don't accidentally pick up a
libaudit shlib dependency.
- Drop our workaround for the broken binutils and re-enable -pie on mips.
(Closes: #533460)
- Improve the way we create the symlink from /usr/lib/ → /lib by using
readlink.
* Remove patches:
- debian/patches/02_dbus_monitor_no_sigint_handler.patch (fixed upstream)
- debian/patches/20_kbsd_cmsgcred.patch (merged upstream)
- debian/patches/30_rt-as-needed.patch (merged upstream)
* debian/README.source
- Add reference to the quilt patch management system documentation.
-- Michael Biebl <biebl@debian.org> Wed, 03 Feb 2010 22:49:42 +0100
dbus (1.2.16-2) unstable; urgency=low
* Rebuild against debhelper (>= 7.2.23) that fixes a regression in
dh_install which did not correctly strip debian/tmp. (Closes: #537125)
* debian/patches/20_kbsd_cmsgcred.patch
- Fix incorrect usage of cmsgcred on kFreeBSD. Thanks to Aurelien Jarno
for the patch.
* debian/patches/30_rt-as-needed.patch
- Fix spurious build failures on alpha and ia64 when using -Wl,--as-needed
by changing the link order of libdbus-convenience.la and -lrt.
-- Michael Biebl <biebl@debian.org> Thu, 16 Jul 2009 02:03:18 +0200
dbus (1.2.16-1) unstable; urgency=low
* New upstream release.
* debian/libdbus-1-3.symbols
- Update for API additions.
* debian/rules
- Bump shlibs to 1.2.16.
* Install libdbus to /lib. Upstart requires libdbus before /usr is
mounted. Keep the development files libdbus-1*.{a,so} in /usr/lib.
* Bump Standards-Version to 3.8.2. No further changes.
-- Michael Biebl <biebl@debian.org> Wed, 15 Jul 2009 00:39:18 +0200
dbus (1.2.14-3) unstable; urgency=low
* debian/dbus.postinst
- Suppress output from adduser.
* debian/dbus.postrm
- Cleanup /var/lib/dbus on purge.
* debian/rules
- Compile dbus-daemon without -pie on mipsen. This is a workaround for a
toolchain bug on mipsen (#532821) which causes dbus-daemon to segfault.
(Closes: #528145)
-- Michael Biebl <biebl@debian.org> Wed, 17 Jun 2009 21:03:57 +0200
dbus (1.2.14-2) unstable; urgency=low
* debian/dbus.postrm
- Add missing whitespace before ']'.
-- Michael Biebl <biebl@debian.org> Fri, 08 May 2009 23:30:35 +0200
dbus (1.2.14-1) unstable; urgency=low
* New upstream release.
* Switch patch management system to quilt.
* Refresh and update patches.
* Remove debian/patches/20-dbus-alpha-unaligned.patch, fixed upstream.
* debian/control
- Drop dependency on debianutils as we no longer require run-parts.
- Demote dbus-x11 from Recommends to Suggests. (Closes: #479341)
* debian/libdbus-1-3.symbols
- Update for API additions.
* debian/rules
- Bump shlibs to 1.2.14.
- Add "-Wl,--as-needed" to LDFLAGS. This way we don't pick up any spurious
X11 dependencies. (Closes: #499650)
* debian/dbus.postinst
- Remove chown call for /var/run/dbus as the init script will take care of
setting the right permissions anyway. This also ensures that we don't
fail if /var/run is on tmpfs. (Closes: #508931)
* Bump Standards-Version to 3.8.1. No longer ship /var/run/dbus in the
package but let the init script create it.
* debian/dbus.install
- Remove /var/run/dbus directory.
* debian/dbus.postrm
- Remove /var/run/dbus on purge.
-- Michael Biebl <biebl@debian.org> Fri, 08 May 2009 14:31:33 +0200
dbus (1.2.12-1) unstable; urgency=low
[ Simon McVittie ]
* New upstream release
* Merge experimental into unstable
- Changes in packaging relative to experimental: add myself to
Uploaders, and suggest libdbus-1-dev instead of nonexistent dbus-1-dev
[ Michael Biebl ]
* Drop support for /etc/dbus-1/event.d. This interface has long been
deprecated and all affected Debian packages have been fixed for lenny.
If your (custom) service needs to be restarted on a dbus restart, add a
regular sysv init script and "Required-Start: dbus" to the LSB header.
* debian/control
- Drop ancient Conflicts/Replaces which are from pre-oldstable (sarge).
- Bump debhelper Build-Depends to (>= 7).
* debian/compat
- Bump to debhelper v7 compat mode.
* debian/copyright
- Update AFL license to version 2.1.
- Make it clear that dbus is released under version 2 of the GPL and refer
to the versioned GPL-2 file in /usr/share/common-licenses.
-- Michael Biebl <biebl@debian.org> Mon, 16 Feb 2009 15:07:46 +0100
dbus (1.2.8-1) experimental; urgency=low
[ Sjoerd Simons ]
* New upstream release
* Fixes CVE-2008-4311 (Closes: #503532, #508032)
[ Michael Biebl ]
* debian/libdbus-1-3.symbols
- Updated, new symbol has been added.
* debian/rules
- Bump shlibs to 1.2.4.
* debian/control
- Bump Standards-Version to 3.8.0. No further changes.
-- Sjoerd Simons <sjoerd@debian.org> Sun, 07 Dec 2008 13:30:19 +0000
dbus (1.2.4-1) experimental; urgency=low
* New upstream release
* Remove patches that were merged upstream
- debian/patches/15_dbus_group_parsing.patch
- debian/patches/CVE-2008-3834.patch
-- Sjoerd Simons <sjoerd@debian.org> Sat, 29 Nov 2008 19:16:05 +0100
dbus (1.2.1-5) unstable; urgency=high
[ Sjoerd Simons ]
* debian/patches/CVE-2008-4311.patch:
+ Added, Fixes CVE-2008-4311. A mistake in the default configuration for
the system bus (system.conf) which made the default policy for both sent
and received messages effectively *allow*, and not deny as intended. This
patch fixes the send side permissions (Closes: #503532, #508032)
* Urgency high for the security fix
[ Simon McVittie ]
* Rename CVE-*.patch to prefix them with a sequence number so it's clear
what order they should apply in
* Add 51-CVE-2008-4311-but-allow-signals.patch, cherry-picked from upstream
git commit d899734475: after fixing CVE-2008-4311, re-allow emitting
signals
* debian/patches/3[0-4]*.patch, cherry-picked from upstream git (see patches
for commit IDs): add logging when permission to send a message is denied
* debian/patches/35-syslog-h.patch: #include <syslog.h> to fix compilation
with the logging patches applied
* Add myself to Uploaders
-- Simon McVittie <smcv@debian.org> Sat, 10 Jan 2009 21:43:16 +0000
dbus (1.2.1-4) unstable; urgency=high
* debian/patches/CVE-2008-3834.patch
- The dbus_signature_validate function in the D-bus library allows
attackers to cause a denial of service (application abort) via a message
containing a malformed signature, which triggers a failed assertion
error. (Closes: #501443)
Fixes: CVE-2008-3834
- Urgency high for the security fix.
* debian/patches/20-dbus-alpha-unaligned.patch
- Fix misaligned memory access which causes "unaligned traps" on Alpha.
(Closes: #502408)
* debian/dbus.init
- Add "status" action to init script. (Closes: #470121)
* debian/control
- Bump Depends on lsb-base to >= 3.2-14, which provides status_of_proc().
-- Michael Biebl <biebl@debian.org> Sat, 25 Oct 2008 15:28:05 +0200
dbus (1.2.1-3) unstable; urgency=low
* debian/patches/15_dbus_group_parsing.patch
- Added. Fixes failure to parse /etc/group when it contains lines with
more then 512 chars (Closes: #489738) (From upstream git)
-- Sjoerd Simons <sjoerd@debian.org> Thu, 31 Jul 2008 00:04:21 +0100
dbus (1.2.1-2) unstable; urgency=low
[ Sjoerd Simons ]
* debian/rules: Disable the disabling of the userdb cache. No other
distribution disables it and it is somewhat buggy (Thanks to Scott James
Remnant for pointing out this issue)
-- Sjoerd Simons <sjoerd@debian.org> Sat, 26 Apr 2008 12:41:47 +0200
dbus (1.2.1-1) unstable; urgency=low
* New upstream release.
* debian/rules, debian/dbus.postinst
- Minimize downtime of the system message bus (and dependent D-Bus
services) by restarting dbus in postinst instead of stop in prerm and
start in postinst. (Closes: #428669)
* debian/libdbus-1-3.symbols
- Add symbols file for improved shared library dependencies.
* debian/shlibs.local
- This file has been neglected for quite some time and has been
obsoleted by the symbols file so better remove it.
-- Michael Biebl <biebl@debian.org> Fri, 11 Apr 2008 16:33:42 +0200
dbus (1.1.20-1) unstable; urgency=medium
[ Loic Minier ]
* Forcefully remove old init script symlinks on upgrades to this version to
properly reinstall the init script when using insserv or file-rc; thanks
Petter Reinholdtsen; closes: #466503.
[ Michael Biebl ]
* New upstream release:
+ SECURITY - CVE-2008-0595:
security policy of the type <allow send_interface="some.interface.With
Methods"/> work as an implicit allow for messages sent without an
interface bypassing the default deny rules and potentially allowing
restricted methods exported on the bus to be executed by unauthorized
users.
-- Michael Biebl <biebl@debian.org> Thu, 28 Feb 2008 09:01:00 +0100
dbus (1.1.4-1) unstable; urgency=low
[ Loic Minier ]
* Merge patch from Ubuntu to build a devhelp file; thanks Martin Pitt;
closes: #454142.
- Build-dep on xsltproc.
- New patch, dbus-1.0.1-generate-xml-docs, enables generation of XML docs
which serve as source for the devhelp generation.
- Add a XSLT file from the Fedora package, debian/doxygen_to_devhelp.xsl.
- Generate the devhelp file from the XML files thanks to the XSL file via
xsltproc in build/dbus-1-doc::.
- Install the devhelp index in dbus-1-doc and move the HTML documentation
around; add a symlink from the gtk-doc dir.
* Misc smallish whitespace cleanups.
* Start dbus at runlevel priority 12 and stop at priority 88. This
eliminates the race condition of starting the X session before hal is
running. Migrate rc?.d symlinks from 20 to 12/88 on upgrades. This need
to be kept until after lenny is released.
* Set LSB Default-Stop section to 1 and only install a shutdown script for
runlevel 1 to only stop dbus when going down to single user mode; dbus can
simply be killed like everything else on shutdown or reboot by sendsigs;
drop rc0 and rc6.d symlinks on upgrades.
* Bump up dbus-x11 conflicts/replaces to << 1.1.2 to match the transition
version in Ubuntu and reduce the delta.
* Cleanup trailing whitespace.
* Drop superfluous exit 0 at the end of dbus' init script which is set -e.
* Add ${shlibs:Depends} to libdbus-1-dev.
* Simplify dbus.postinst.
* Rename patch dbus-1.0.1-generate-xml-docs to
10_dbus-1.0.1-generate-xml-docs to reflect current patch stack order.
* Set shlibs via DEB_DH_MAKESHLIBS_ARGS_ALL instead of libdbus-1-3.shlibs
and extract libdbus-1-3 package name from control to avoid hardcoding the
SONAME and package name.
[ Michael Biebl ]
* New upstream release.
* Deprecate the ENABLED option and remove it from /etc/default/dbus. Print a
warning message in the init script if this option is still used.
* debian/patches/03_uuid_nul.patch
- Removed, merged upstream.
* debian/patches/04_dbus_launch.patch
- Removed, merged upstream.
* debian/control
- Bump Standards-Version to 3.7.3. No further changes required.
* debian/dbus.init
- Fix LSB init header. Use $remote_fs instead of $local_fs as the
daemon requires /usr to be mounted.
Remove S from Should-Stop. (Closes: #459473)
- Use mountpoint to check if /proc is mounted. (Closes: #458392)
- Decrease retry-time to 5 secs on stop. (Closes: #462182)
-- Michael Biebl <biebl@debian.org> Tue, 04 Dec 2007 21:31:12 +0100
dbus (1.1.2-1) unstable; urgency=low
[ Michael Biebl ]
* New upstream release.
* debian/control
- Use the new "Homepage:" field to specify the upstream URL.
- The Vcs-* fields are now officially supported, so remove the XS- prefix.
- Demote dbus-x11 dependency to a Recommends. (Closes: #427932)
* debian/dbus.install
- Install the dbus-daemon-launch-helper binary.
- Install the directory /usr/share/dbus-1/system-services.
* debian/dbus.postinst
- Install the dbus-daemon-launch-helper binary SUID root and make it
executable for the messagebus group.
- General cleanup. Remove superfluous addgroup and chgrp call.
[ Sjoerd Simons ]
* debian/dbus.init
- Warn if /proc isn't mounted and refuse to start (Closes: #431101, #447363)
* debian/patches/03_uuid_nul.patch
- Added. Don't accidentally overwrite the last byte of the uuid with nul
while autostarting. (From upstream GIT)
* debian/patches/04_dbus_launch.patch
- Added. Also save the session bus info in X11 on a normally launched bus.
This ensures apps that don't have a session bus address in their
environment can still properly connect to a DISPLAY's normal session bus.
Making hacks to determine which dbus address belongs to a DISPLAY as
used by some obsolete.
-- Sjoerd Simons <sjoerd@debian.org> Fri, 23 Nov 2007 11:33:00 +0100
dbus (1.1.1-3) unstable; urgency=low
* List arches where the build-dep on libselinux1-dev doesn't apply; thanks
Michael Banck; closes: #430821.
* Wrap build-deps and deps.
* Misc cleanups, including quoting in maintainer scripts.
* Add myself as uploader.
* Add ${misc:Depends}.
-- Loic Minier <lool@dooz.org> Wed, 27 Jun 2007 16:42:08 +0200
dbus (1.1.1-2) UNRELEASED; urgency=low
* debian/control
- Fix small typo in the dbus-x11 package description. (Closes: #430736)
-- Michael Biebl <biebl@debian.org> Wed, 27 Jun 2007 01:42:38 +0200
dbus (1.1.1-1) unstable; urgency=low
[ Michael Biebl ]
* debian/patches/02_dbus_monitor_no_sigint_handler.patch
+ Remove the sigint_handler in dbus-monitor so the application properly
terminates on STRG+C. (Closes: #414139)
[ Sjoerd Simons ]
* New upstream release
* debian/libdbus-1-3.shlibs: Bumped shlibs
-- Sjoerd Simons <sjoerd@debian.org> Tue, 19 Jun 2007 13:18:12 +0100
dbus (1.1.0-1) unstable; urgency=low
[ Sjoerd Simons ]
* New upstream release
[ Tim Dijkstra ]
* Disable userdb cache. If you need a cache, use nscd. (closes: #370569)
[ Michael Biebl ]
* debian/control
+ Fix small typo in the dbus-x11 package description. (Closes: #425132)
+ Replace Source-Version with binary:Version for libdbus-1-dev.
* debian/dbus.init
+ Suppress error messages about nonexistent or unreadable files.
(Closes: #426296)
+ Do not abort on grep errors. (Closes: #423380)
+ Do not abort if starting a dependent service fails.
* debian/control
+ Add build dependency on autotools-dev for up-to-date config.{guess,sub}
files.
-- Michael Biebl <biebl@debian.org> Wed, 06 Jun 2007 15:39:23 +0200
dbus (1.0.2-5) unstable; urgency=low
[ Michael Biebl ]
* debian/dbus.init
+ Add some safety checks and support for file-rc. (Closes: #419984)
* Drop dbus-1-utils package and move dbus-monitor into the dbus package.
(Closes: #404981)
* Create dbus-x11 package and move dbus-launch and the Xsession start script
from dbus into this package. This removes the X11 dependency from the dbus
package.
Add a dependency on dbus-x11 to the dbus package, to not break packages
which still depend on dbus but should be updated to depend on dbus-x11
instead if they require a D-Bus session bus.
[ Sjoerd Simons ]
* debian/control: Add libselinux1-dev to build depends
* debian/rules: Clean up some more generated files (From the ubuntu
packaging)
-- Sjoerd Simons <sjoerd@debian.org> Thu, 03 May 2007 13:28:19 +0200
dbus (1.0.2-4) unstable; urgency=low
* debian/dbus.init
+ Properly quote the runlevel variable $r. (Closes: #419818)
* debian/dbus.prerm
+ Removed empty maintainer script.
-- Michael Biebl <biebl@debian.org> Wed, 18 Apr 2007 19:16:13 +0200
dbus (1.0.2-3) unstable; urgency=low
* debian/dbus.post{inst,rm}
+ Restart dbus on upgrades again. Might break some applications, but they
should be fixed.
* debian/dbus.init
+ Don't return an error, if start is called when there is already a bus
running.
* debian/dbus.init
+ Handle errors from /sbin/runlevel. Fixes dbus installation in chroots.
(Closes: #419655)
-- Sjoerd Simons <sjoerd@debian.org> Tue, 17 Apr 2007 17:55:14 +0200
dbus (1.0.2-2) unstable; urgency=low
[ Sebastian Dröge ]
* debian/control:
+ Updated to use my debian.org mail address
[ Michael Biebl ]
* debian/control
+ Add XS-Vcs-* fields.
+ Add myself to Uploaders.
+ Update description.
* debian/watch
+ Added. Allows to track upstream releases.
* debian/dbus.init
+ Add functionality to start/stop dbus dependent services based on their
LSB header.
Instead of installing an init script into /etc/dbus-1/event.d, services
depending on dbus should from now on install a regular sysv init script
and add an LSB header with "Required-Start: dbus".
-- Michael Biebl <biebl@debian.org> Fri, 13 Apr 2007 00:56:54 +0200
dbus (1.0.2-1) unstable; urgency=high
* New upstream release:
+ Urgency set to high because it fixes a local denial of service
exploit involving removal of match rules from other apps.
This effects all versions of D-Bus. CVE-2006-6107
https://bugs.freedesktop.org/show_bug.cgi?id=9142
* debian/patches/02_fix_thread_initialisation.patch:
+ Dropped, merged upstream
-- Sebastian Dröge <slomo@ubuntu.com> Tue, 12 Dec 2006 23:36:37 +0100
dbus (1.0.1-2) unstable; urgency=medium
* There is no need anymore to install a custom session.conf. Also The custom
one doesn't include the new directive to look at various standard service
dirs.
-- Sjoerd Simons <sjoerd@debian.org> Sun, 19 Nov 2006 22:59:17 +0100
dbus (1.0.1-1) unstable; urgency=medium
* New bugfix release
* Fixes bug where calling dbus_threads_init_default would assert
* debian/patches/02_fix_thread_initialisation.patch
+ Fixes an assertion failure when using pthreads (From upstream CVS)
* Urgency medium, fixes two assertion failures.
-- Sjoerd Simons <sjoerd@debian.org> Sun, 19 Nov 2006 22:02:16 +0100
dbus (1.0.0-1) unstable; urgency=low
[ Sebastian Dröge ]
* New upstream release, 1.0.0 aka "Blue Bird"
* debian/patches/01_no-fatal-warnings.patch:
+ Don't abort on fatal warnings now by default. This behaviour can be
controlled by the DBUS_FATAL_WARNINGS enviroment variable.
This will be set to upstream default again at some point so if you have
an application that prints a DBus warning get it fixed.
[ Sjoerd Simons ]
* Target unstable. Since 0.94 only bugfixes and cleanups went in.
* Also generate the machine-id on reload if it doesn't exist and reload the
bus on upgrades. (Closes: #357247)
* patches/40_dbus_launch_get_uuid.patch
+ Dropped, fixed upstream
-- Sjoerd Simons <sjoerd@debian.org> Tue, 14 Nov 2006 15:35:00 +0100
dbus (0.95-1) experimental; urgency=low
* New upstream release (aka 1.0 RC3)
* debian/patches/10_dbus_uuid_in_var.patch,
debian/patches/20_dbus_uuid_world_readable.patch,
debian/patches/30_dbus_send_close_shared_connection.patch:
+ Dropped, merged upstream
* debian/patches/99_rerun_automake.patch:
+ Not needed anymore because of the above
-- Sebastian Dröge <slomo@ubuntu.com> Sun, 5 Nov 2006 23:22:01 +0100
dbus (0.94-2) unstable; urgency=medium
[ Sebastian Dröge ]
* debian/patches/30_dbus_send_close_shared_connection.patch:
+ Don't close shared connection in dbus-send. (Closes: 395358, 397303)
Patch from upstream CVS
[ Sjoerd Simons ]
* patches/40_dbus_launch_get_uuid.patch
+ Added. Check if get_machine_uuid() returns NULL before proceeding any
further: we can't init the X atoms or create a session file name if there
is no machine ID. Solves a dbus-launch crash if there is no machine id.
(Closes: 3395938) Patch from upstream CVS
* 2 important bugfixes, setting urgency to medium.
-- Sjoerd Simons <sjoerd@debian.org> Mon, 6 Nov 2006 22:02:19 +0100
dbus (0.94-1) unstable; urgency=low
[ Riccardo Setti ]
* Fixed dbus description. (closes: #388186)
* Improved dbus.init script. (closes: #384859)
- Patch from David Härdeman <david@2gen.com
[ Sjoerd Simons ]
* New upstream release (aka 1.0 RC2)
* debian/dbus.init: Create the machine-id on start
* debian/patches/10_dbus_uuid_in_var.patch
+ Added. Put the generated machine-id file in /var. Next upstream version
will also have it there
* debian/patches/99_rerun_automake.patch
+ Added. Re-automake because of the changes in the previous patch
* debian/rules: Use list-missing to list files missing from the package
* debin/dbus.dirs: Add /var/lib/dbus
* debian/dbus.install: Include dbus-uuidgen and it's manpage
* debian/libdbus-1-3.shlibs, debian/shlibs.local: Added. New symbols were
added in this release.
* debian/patches/20_dbus_uuid_world_readable.patch
+ Added. Make the generated machine-id file world readable (from upstream
CVS)
-- Sjoerd Simons <sjoerd@debian.org> Wed, 25 Oct 2006 11:26:32 +0200
dbus (0.93-1) unstable; urgency=low
* New upstream release
* debian/patches/00_expand_bindir.patch
- Removed. Fixed upstream
* debian/control: Build-depend on libx11-dev, so dbus-launch can monitor X
sessions.
-- Sjoerd Simons <sjoerd@debian.org> Sat, 16 Sep 2006 23:13:30 +0200
dbus (0.92-2) unstable; urgency=low
* Upload to unstable
* debian/patches/00_expand_bindir.patch
- Added. Ensure the expanded version of $bindir is used for the
DBUS_DAEMONDIR define. Fixes useless warning from dbus-launch (From
upstream CVS)
-- Sjoerd Simons <sjoerd@debian.org> Thu, 7 Sep 2006 20:30:05 +0200
dbus (0.92-1) experimental; urgency=low
* New upstream release
-- Sjoerd Simons <sjoerd@debian.org> Sat, 19 Aug 2006 22:13:25 +0200
dbus (0.91-1) experimental; urgency=low
* New upstream release
+ First packaged dbus modular release. Bindings are in seperate source
packages now.
* Bumped libdbus-1 soname
* debian/control: Remove all build-depends and definitions for the bindings.
* debian/control: Update to use the official D-Bus spelling
* debian/rules: Remove everything that was needed to build the bindings.
* Remove files not applicable to the D-Bus bus and core libraries:
+ debian/python-dbus.install
+ debian/monodoc-dbus-1-manual.postinst
+ debian/libdbus-qt-1-dev.install
+ debian/libdbus-qt4-1-1.install
+ libdbus-1-cil.install
+ libdbus-qt-1-1c2.install
+ libdbus-1-cil.installcligac
+ libdbus-glib-1-2.install
+ monodoc-dbus-1-manual.install
+ libdbus-qt4-1-dev.install
+ libdbus-glib-1-dev.install
* Remove all patches not applicable to the D-Bus bus and core libraries:
+ debian/patches/dbus-update-automake.patch
+ debian/patches/dbus-monoversion.patch
+ debian/patches/dbus-no-qt4-examples.patch
+ debian/patches/dbus-mono-pkgconfig-location.patch
+ debian/patches/dbus-new-monodoc.patch
-- Sjoerd Simons <sjoerd@debian.org> Mon, 31 Jul 2006 14:50:05 +0200
dbus (0.62-5) unstable; urgency=low
* Update python-dbus to the new Python Policy
* Bump Standards-Version to 3.7.2
-- Sebastian Dröge <slomo@ubuntu.com> Sat, 8 Jul 2006 01:25:40 +0200
dbus (0.62-4) unstable; urgency=low
[ Sebastian Dröge ]
* add ${shlibs:Depends} to Depends of libdbus-glib-1-dev, as it ships
dbus-binding-tool to /usr/bin/. This fixes a missing libexpat.so.1.0.0.
Thanks to Daniel Holbach for noticing this.
[ Michael Biebl ]
* debian/libdbus-qt4-1-dev.install: qt/dbus/qdbus.h is only a dummy header
file. Install the real one instead. (Closes: #375298)
-- Sjoerd Simons <sjoerd@debian.org> Wed, 28 Jun 2006 19:03:23 +0200
dbus (0.62-3) unstable; urgency=low
* Make the Qt4 bindings buid-depend on libqt4-dev (>= 4.1.3)
(Closes: #374802)
* Ensure /etc/dbus-1/system.d is included in the dbus package
(Closes: #374930)
-- Sjoerd Simons <sjoerd@debian.org> Thu, 22 Jun 2006 18:36:35 +0200
dbus (0.62-2) unstable; urgency=low
* debian/libdbus-qt-1-dev.install: Make the wildcard more strict so that it
doesn't accidentally pickup qt4 files
* debian/libdbus-qt4-1-dev.install: Also install the dbuscpp2xml and
dbusidl2cpp utilities
* debian/session.conf
+ Install a custom dbus session.conf. In the generated one some variables
aren't expanded, causing the session bus to fail (Closes: #374747)
* Move libdbus-1-2 to sections libs
* Let libdbus-1-2 recommend dbus. Almost all libdbus-1 using applications
really need the dbus to be present so the recommends is justified.
(Closes: #374726)
* debian/libdbus-qt-1-dev.install: Install all the needed header files.
Thanks to Michael Biebl for testing a KDE4 build against these bindings.
-- Sjoerd Simons <sjoerd@debian.org> Wed, 21 Jun 2006 10:47:00 +0200
dbus (0.62-1) unstable; urgency=low
* New upstream release
* Remove Daniel Stone from uploaders on his request.
* debian/dbus.init: Remove the sleep 1 when restarting. It's not needed as
the start-stop-daemon --retry option is used to shut dbus down
* Removed patched that aren't needed anymore:
+ debian/patches/dbus-reload-usercache.patch
+ debian/patches/dbus-qt-buildfix.patch
+ debian/patches/dbus-qt-endianness.patch
+ debian/patches/dbus-0.60-mono-return-null-fix.diff
+ debian/patches/dbus-tcp-econreff.patch
+ debian/patches/dbus-transport-tcp.patch
+ debian/patches/dbus-pendingcall-deadlock.patch
* debian/patches/dbus-update-automake.patch
+ Updated
* debian/patches/dbus-no-qt4-examples.patch
+ Added. Quick hack to disable the building of the qt4 example binaries.
-- Sjoerd Simons <sjoerd@debian.org> Tue, 20 Jun 2006 19:35:46 +0200
dbus (0.61-6) unstable; urgency=low
[ Sebastian Dröge ]
* debian/patches/dbus-new-monodoc.patch:
+ Call the new monodoc executables for doc generation to really get
docs (Closes: #361541)
* debian/patches/dbus-update-automake.patch:
+ updated for the above change
* Add the correct libdbus-glib-1-2 path to the dh_shlibdeps search path to
generate correct dependencies on dbus-1-utils.
* Update libdbus-1-cil to the new CLI policy and use dh_installcligac for
late GAC installation
* debian/patches/dbus-mono-pkgconfig-location.patch:
+ Adjust the location of the .dll in the pkg-config file for the new CLI
policy.
[ Sjoerd Simons ]
* debian/patches/dbus-transport-tcp.patch
+ Added. Fixes crash when using the tcp transport without an host option
(from dbus CVS) (Closes: #368894)
* debian/patches/dbus-tcp-econreff.patch
+ Added. Make the error which is given when the tcp transport gets a
connection refused more understandable (from dbus CVS)
-- Sjoerd Simons <sjoerd@debian.org> Wed, 31 May 2006 15:00:49 +0200
dbus (0.61-5) unstable; urgency=low
* debian/patches/dbus-0.60-mono-return-null-fix.diff:
+ Added again as this wasn't applied upstream. This makes dbus-sharp
useable again as you don't get null anymore when asking for the session
bus (see fd.o #5716)
-- Sebastian Dröge <slomo@ubuntu.com> Sat, 18 Mar 2006 14:40:48 +0100
dbus (0.61-4) unstable; urgency=low
* debian/patches/dbus-reload-usercache.patch
+ Added. Reload the user info cache when reloading the config.
* debian/patches/dbus-pendingcall-deadlock.patch
+ Added. Don't block in a poll if the data we're looking for was already
read by another connection. (From dbus CVS)
-- Sjoerd Simons <sjoerd@debian.org> Sun, 5 Mar 2006 21:27:16 +0100
dbus (0.61-3) unstable; urgency=low
* debian/patches/dbus-monoversion.patch
+ Added. Dbus mono assembly version is synced with release version, but
nothing actually changed. This patch changes the assembly version back to
0.60 to minimize breakage. New version will encode the assembly version
in the package name (e.g libdbus-1-cil-0.61).
-- Sjoerd Simons <sjoerd@debian.org> Wed, 1 Mar 2006 19:59:47 +0100
dbus (0.61-2) unstable; urgency=low
* debian/patches/dbus-qt-endianness.patch
+ Added. Fix FTBS on big-endian architectures
-- Sjoerd Simons <sjoerd@debian.org> Tue, 28 Feb 2006 00:58:05 +0100
dbus (0.61-1) unstable; urgency=medium
* New upstream release
* debian/patches/dbus-0.60-mono-arguments-fix.diff
- Removed. Fixed upstream
* debian/patches/dbus-0.60-mono-return-null-fix.diff
- Removed. Fixed upstream
* debian/patches/dbus-moc-selection.patch
- Removed. Fixed upstream
* debian/patches/dbus-qdbusmarshall-amd64.patch
- Removed. Fixed upstream
* Update cli-common depend to >= 0.2.0. Older versions have known bugs
* Let binary-predeb/libdbus-1-cil:: depend on
common-binary-post-install-arch, so dh_clideps can do it's work correctly.
* debian/patches/dbus-qt-buildfix.patch
+ Added. Fix compilation of the Qt bindings (from CVS)
* debian/patches/dbus-update-automake.patch
+ Added. Do a new autogen run, because the qt patch patches autotools
files
-- Sjoerd Simons <sjoerd@debian.org> Fri, 24 Feb 2006 22:09:17 +0100
dbus (0.60-6) unstable; urgency=low
* Sync relavant changes from ubuntu
+ dbus-0.60-mono-arguments-fix.diff
- Added. 64bit fixes ((fd.o bugzilla #4410)
+ dbus-0.60-mono-return-null-fix.diff
- Added. Don't return null for the session bus (fd.o bugzilla #5716)
+ Send the update-notifier reboot required notification if it's installed
+ Build mono bindings as arch indep.
-- Sjoerd Simons <sjoerd@debian.org> Thu, 16 Feb 2006 12:32:31 +0100
dbus (0.60-5) unstable; urgency=low
* Fix a bashim in the postinst script (Closes: #347453)
-- Sjoerd Simons <sjoerd@debian.org> Wed, 11 Jan 2006 20:15:02 +0100
dbus (0.60-4) unstable; urgency=low
* Upload to unstable
-- Sjoerd Simons <sjoerd@debian.org> Thu, 5 Jan 2006 21:55:49 +0100
dbus (0.60-3) experimental; urgency=low
* debian/patches/dbus-qdbusmarshall-amd64.patch
+ Fix build failure on amd64 (Closes: #343746)
* Ignore the exit code of run-parts in the init script.
-- Sjoerd Simons <sjoerd@debian.org> Thu, 5 Jan 2006 12:30:26 +0100
dbus (0.60-2) experimental; urgency=low
* Let python2.4-dbus depend on python2.4-libxml2 (Closes: #343715)
* Changed maintainer address to
pkg-utopia-maintainers@lists.alioth.debian.org
-- Sjoerd Simons <sjoerd@debian.org> Thu, 15 Dec 2005 20:01:11 +0100
dbus (0.60-1) experimental; urgency=low
* New upstream release
* Soname of libdbus-1 and libdbus-glib-1 were bumped to 2
* debian/patches/dbus-reloadconfig-reply.patch
+ Removed. Merged upstream
* debian/patches/dbus-monitor.patch
+ Removed. Merged upstream
* debian/patches/dbus-make-libtool-safe.patch
+ Removed. Fixed upstream
* debian/patches/dbus-moc-selection.patch
+ Added. Enable the Qt moc paths to be specified to configure
* Depend on lsb-base >= 3.0
* Let dbus conflicht with libdbus-1-1 and libdbus-1-2 with dbus << 0.60.
Some bus changes could result in strange bugs when mixing the old libs
with the new bus.
-- Sjoerd Simons <sjoerd@debian.org> Wed, 14 Dec 2005 19:53:07 +0100
dbus (0.50-3) experimental; urgency=low
* Also move dbus-launch and dbus-send manpages to the dbus package
* debian/dbus.init
+ Make force-reload an alias of reload instead of restart
-- Sjoerd Simons <sjoerd@debian.org> Mon, 21 Nov 2005 11:17:57 +0100
dbus (0.50-2) experimental; urgency=low
* maintainance is actually spelled "maintenance" (Closes: #332238)
* Disable --enable-verbose because of the big performance hit
* Move dbus-binding-tool from dbus-1-utils to libdbus-glib-1-dev
* Move dbus-launch and dbus-send into the dbus package (Closes: #337212)
* Move the /etc/X11/Xsession.d/ script from dbus-1-utils to dbus
* Add reload function to the init script
* Use log_daemon_msg instead of log_begin_msg in the init script where
applicable
* debian/patches/dbus-reloadconfig-reply.patch
+ Added. Send a reply message when org.freedesktop.DBus.ReloadConfig is
called
* Prefix the long description of monodoc-dubs-1-manual with one space
instead of two (Closes: #337032)
* Add LSB formatted dependency info in the init script (Closes: #337644)
-- Sjoerd Simons <sjoerd@debian.org> Wed, 9 Nov 2005 20:02:09 +0100
dbus (0.50-1) experimental; urgency=low
* New upstream release
-- Sjoerd Simons <sjoerd@debian.org> Thu, 8 Sep 2005 10:01:21 +0200
dbus (0.36.2-1) experimental; urgency=low
* New upstream release
* Fix descriptions to refer to dbus rather than dbus-1.
* Make dbus-1-utils depend on dbus
* debian/patches/dbus-sessionbus-checkuid.patch
+ Removed. Fixed upstream
-- Sjoerd Simons <sjoerd@debian.org> Tue, 6 Sep 2005 09:26:19 +0200
dbus (0.36.1-1) experimental; urgency=low
* New upstream release (Closes: #319593, #324016)
* debian/patches/dbus_cmsgcred.patch
+ Removed. Fixed upstream.
* debian/patches/dbus-gilstate.patch
+ Removed. Fixed upstream.
* Sync with the ubuntu package
+ Remove dbus_bindings.{a,la} from python2.4-dbus
+ debian/patches/dbus-make-libtool-safe.patch
- Added. Replace explicit libtool calls with $(LIBTOOL) in
glib/Makefile.*
+ Don't include the .la files in the dev packages.
+ Don't restart dbus on upgrade. Too many applications don't handle it
correctly.
+ Switched the init script to lsb-base
+ Ship dbus-binding-tool and dbus-viewer with dbus-1-utils
-- Sjoerd Simons <sjoerd@debian.org> Fri, 26 Aug 2005 21:58:42 +0200
dbus (0.34-4) experimental; urgency=low
* libdbus-1-cil improvements based on comments from Mirco Bauer
+ Call dh_clideps before dh_makeclilibs
+ libdbus-1-cil can be arch all
+ Use CLI instead of .NET in the package description
* Add debian/patches/dbus-sessionbus-checkuid.patch:
- bus/session.conf.in: Do not allow any user to connect to any session bus
by default.
- bus/policy.c: "allowed" now defaults to true if the connecting user id
matches the session bus user id.
- This stops other users from listening and sending to other user's
session dbus instances.
- References:
CAN-2005-0201
https://bugs.freedesktop.org/show_bug.cgi?id=2436
* debian/patches/dbus-gilstate: Fix segfaults in python bindings.
Patch by Anthony Baxter.
* Add D-BUS monodoc documentation package
* C++ transition
-- Sjoerd Simons <sjoerd@debian.org> Mon, 11 Jul 2005 10:22:44 +0200
dbus (0.34-3) experimental; urgency=low
* Build-depend on python-pyrex instead of python2.3-pyrex
* debian/dbus.postinst
+ Forgot to rename dbus-1 to dbus in the previous package.
* Rename libdbus-cil to libdbus-1-cil
-- Sjoerd Simons <sjoerd@debian.org> Wed, 22 Jun 2005 18:53:22 +0200
dbus (0.34-2) experimental; urgency=low
* debian/dbus.init
+ The even.d dir is in /etc/dbus-1 not in /etc/dbus
-- Sjoerd Simons <sjoerd@debian.org> Tue, 21 Jun 2005 16:16:43 +0200
dbus (0.34-1) experimental; urgency=low
* New upstream release
* Build libdbus-cil on amd64 too (Closes: #314247)
* Python bindings need python2.4, so build them against python2.4.
-- Sjoerd Simons <sjoerd@debian.org> Mon, 20 Jun 2005 13:07:04 +0200
dbus (0.33-1) experimental; urgency=low
* New upstream release (Closes: #299049)
* Redone the package names to be much more sane.
- Based on ubuntu's dbus 0.33 package by Daniel Stone.
- dbus deamon goes into the dbus package instead of dbus-1
- glib bindings in libdbus-glib-1-1 instead of dbus-glib-1
- qt bindings in libdbus-qt-1-1 instead of dbus-qt-1
- Library component from dbus-1 goed into libdbus-1-1
* debian/patches/dbus-fixverbose.patch
- Removed. Fixed upstream
* debian/patches/dbus-getpwname.patch
- Removed. Fixed upstream
* debian/patches/fix-policy-group.patch
- Removed. Not relevant anymore
-- Sjoerd Simons <sjoerd@debian.org> Mon, 20 Jun 2005 11:12:12 +0200
dbus (0.23.4-2) unstable; urgency=low
* Upload version with QT and Mono bindings to unstable. (Closes: #271895)
(Closes: #271896) (Closes: #260044) (Closes: #290622)
* debian/patches/dbus_cmsgcred.patch
- Added. Fix syntax error on systems where HAVE_CMSGCRED is defined
(Thanks to Michael Banck) (Closes: #311726)
-- Sjoerd Simons <sjoerd@debian.org> Mon, 6 Jun 2005 22:48:08 +0200
dbus (0.23.4-1bindings0) experimental; urgency=low
* Enable Mono and QT bindings.
-- Sjoerd Simons <sjoerd@debian.org> Tue, 5 Apr 2005 22:15:29 +0200
dbus (0.23.4-1) unstable; urgency=low
* New upstream release
* debian/patches/dbus-abi-api.patch
- Removed, fixed upstream
* debian/patches/dbus-python-fix.patch
- Removed, fixed upstream
* debian/patches/fix-policy-group.patch
- Stop segfaulting at "<policy group="..."> tags (Closes: #297495)
* debian/patches/dbus-fixverbose.patch
- Fix inaccurate messages in the debug output of the uid/gid lookup code
(Thanks to Tom Parker) (Closes: #297497)
* debian/patches/dbus-getpwname.patch
* Add .la files in the -dev packages (Closes: #297936)
-- Sjoerd Simons <sjoerd@debian.org> Wed, 30 Mar 2005 23:02:00 +0200
dbus (0.23.2-3) unstable; urgency=low
* debian/patches/dbus-abi-api.patch
- Fix dbus api and abi breakage between 0.23.1 and 0.23.2 (Closes: #297020)
-- Sjoerd Simons <sjoerd@debian.org> Mon, 28 Feb 2005 15:05:19 +0100
dbus (0.23.2-2) unstable; urgency=low
* debian/patches/dbus-python-fix.patch
- Fix python bindings (Based on dbus CVS fix)
-- Sjoerd Simons <sjoerd@debian.org> Thu, 24 Feb 2005 11:19:03 +0100
dbus (0.23.2-1bindings0) experimental; urgency=low
* debian/patches/dbus-monofixes.patch
+ Removed. Fixed in this release
-- Sjoerd Simons <sjoerd@debian.org> Thu, 17 Feb 2005 13:24:22 +0100
dbus (0.23.2-1) unstable; urgency=low
* New upstream release
-- Sjoerd Simons <sjoerd@debian.org> Wed, 23 Feb 2005 13:04:21 +0100
dbus (0.23.1-1bindings0) experimental; urgency=low
* New upstream release
* debian/patches/dbus-monofixes.patch
+ Added. Some mono fixes from dbus cvs
-- Sjoerd Simons <sjoerd@debian.org> Thu, 17 Feb 2005 13:24:22 +0100
dbus (0.23-1mono1) experimental; urgency=low
* Enable the qt bindings. Thanks to Kevin Ottens
(Closes: #271895) (Closes: #271896) (Closes: #290622)
-- Sjoerd Simons <sjoerd@debian.org> Sat, 22 Jan 2005 13:53:27 +0100
dbus (0.23-1mono0) experimental; urgency=low
* Enable the mono bindings
-- Sjoerd Simons <sjoerd@debian.org> Fri, 14 Jan 2005 17:54:26 +0100
dbus (0.23-1) unstable; urgency=low
* New upstream release
* Disable the mono bindings for the unstable packages untill mono goes into
testing.
-- Sjoerd Simons <sjoerd@debian.org> Fri, 14 Jan 2005 15:22:20 +0100
dbus (0.22+cvs.20050104-1) experimental; urgency=low
* CVS snapshot
* Package the dbus mono bindings for i386, powerpc and s390. Mostly based on
patches from Edd Dumbill. (Closes: #260044)
-- Sjoerd Simons <sjoerd@debian.org> Wed, 5 Jan 2005 18:20:47 +0100
dbus (0.22-4) unstable; urgency=low
* Let the initscript check if the pid in the pidfile actually corresponds
to a dbus daemon process (Closes: #285758)
-- Sjoerd Simons <sjoerd@debian.org> Wed, 5 Jan 2005 16:55:45 +0100
dbus (0.22-3) unstable; urgency=medium
* Actually ship the init script improvements mentioned in the previous
upload. (please pass the brown paper bag)
* Call run-parts --reverse on the event.d dir when stopping dbus
(Closes: #269283)
-- Sjoerd Simons <sjoerd@debian.org> Sat, 6 Nov 2004 16:17:40 +0100
dbus (0.22-2) unstable; urgency=medium
* debian/patches/dbus-monitor.patch
+ Updated. Unbreak dbus-monitor when arguments are given. (From the ubuntu
dbus package)
* Use run-parts --arg instead of -a, which works with woody's run-parts
(Closes: #269708) (Closes: #274702)
* Use start-stop-daemon --retry when stopping to ensure the system bus
stopped. Prevents race conditions with the dbus pidfile (Closes: #277148)
* Add myself to Uploaders
* Acknowledge my own NMU (Closes: #272862)
-- Sjoerd Simons <sjoerd@debian.org> Tue, 02 Nov 2004 12:19:47 +0100
dbus (0.22-1.1) unstable; urgency=high
* Non-maintainer upload with maintainers permission
* debian/patches/dbus-python-64bit.patch
+ Added. Taken from dbus cvs. Add support for int64 and uint64 to the
python bindings (Closes: #272862)
* Urgency high because the hal package depending on this fix fixes RC bugs.
-- Sjoerd Simons <sjoerd@debian.org> Sat, 25 Sep 2004 17:45:33 +0200
dbus (0.22-1) unstable; urgency=high
* New upstream release.
+ Urgency high so it slips into sarge before the freeze.
-- Daniel Stone <daniels@debian.org> Tue, 17 Aug 2004 00:42:56 +0100
dbus (0.21-7) unstable; urgency=low
* Created /etc/dbus-1/event.d/ and added support to dbus' init script
to run the files in it on stop/start/restart
-- Daniel Silverstone <dsilvers@debian.org> Thu, 22 Jul 2004 14:13:44 +0100
dbus (0.21-6) unstable; urgency=low
* Add a chown,chgrp to the init script to make sure the pid dir is owned
by the messagebus user.
* Modify the dbus-1 init script to remove some arguments from the invocation
of start-stop-daemon so that it will work when being asked to stop a
dbus instance which has a different executable to that installed.
-- Daniel Silverstone <dsilvers@debian.org> Mon, 12 Jul 2004 21:56:45 +0100
dbus (0.21-5) unstable; urgency=low
* Change debian/control to indicate that dbus is group maintained.
* Build-depend on the version of python2.3-pyrex which theoretically has
the fixed patch for coping with unsigned long int vs. long unsigned int
* Removed the seddery introduced in 0.21-2 because the above build-depend
change should ensure we're safe.
-- Daniel Silverstone <dsilvers@debian.org> Mon, 5 Jul 2004 17:44:06 +0100
dbus (0.21-4) unstable; urgency=low
* Updated debian/copyright to the AFL 2.0 closes: #239332
* Updated debian/dbus-1.init to create /var/run/dbus if it
doesn't already exist. closes: #242639
-- Daniel Silverstone <dsilvers@debian.org> Fri, 18 Jun 2004 00:20:27 +0100
dbus (0.21-3) unstable; urgency=low
* Add the sed call to Makefile.in too. Damn my forgetfulness.
-- Daniel Silverstone <dsilvers@debian.org> Wed, 16 Jun 2004 18:06:28 +0100
dbus (0.21-2) unstable; urgency=low
* Add a sed -e's/long unsigned/unsigned long/g' to the python bindings
preparation line. This *should* solve the FTBFS on alpha, s390 and ia64
* Also, fix an a-umlaut to 'ae' in the changelog to prevent nasty
debian-changelog-file-uses-obsolete-national-charset errors from lintian
-- Daniel Silverstone <dsilvers@debian.org> Tue, 15 Jun 2004 19:26:12 +0100
dbus (0.21-1) unstable; urgency=low
* New upstream version.
+ Fixes varargs crap - cleaner patch from David Zeuthen applied. (closes:
#229274)
* Added provides/replaces/conflicts on dbus-1-utils << 0.20-4, per -4's
moving of manpages.
-- Daniel Stone <daniels@debian.org> Sun, 21 Mar 2004 02:42:53 +1100
dbus (0.20-6) unstable; urgency=low
* Add a touch of usage information to the top of the dbus Xsession.d file.
Also since we've had confirmation that this file does enough, this version
closes: #230835
* Add an extra rm -f $PIDFILE to /etc/init.d/dbus-1 to help on restart.
closes: #229609
* Temporarily quiesce error reports in system.d/*.conf files when loading.
This breaks the standard that the daemon shouldn't start with malformed
configuration files, but at least for now it seems sensible to do.
closes: #230231
NOTE: this is likely to be removed in a future version of dbus after the
configuration file syntax stabilises. Please report bugs against packages
which have configs which fail to parse with the latest dbus package.
-- Daniel Silverstone <dsilvers@debian.org> Tue, 10 Feb 2004 00:46:52 +0000
dbus (0.20-5) unstable; urgency=low
* Add an /etc/X11/Xsession.d/ entry to launch a session bus.
You will need to add 'use-session-dbus' to your /etc/X11/Xsession.options
file to enable it.
-- Daniel Silverstone <dsilvers@debian.org> Tue, 3 Feb 2004 18:15:48 +0000
dbus (0.20-4) unstable; urgency=low
* Ensure the manpages are installed into the right package.
* Add /usr/lib/dbus-1.0/services to the dbus-1 package. (closes: #230413)
* dbus-glib-1-dev now depends on libglib2.0-dev which is kinda needed in order
to get glib-object.h
* Removed the dbus-qt-1 and dbus-qt-1-dev packages until upstream actually
do something with the binding (like putting some code into it)
-- Daniel Silverstone <dsilvers@debian.org> Sun, 1 Feb 2004 22:22:59 +0000
dbus (0.20-3) unstable; urgency=high
* Urgency high because the old package was virtually useless.
* debian/patches/fix-varargs-usage.diff:
+ Merged patch from Michel Daenzer (thanks Michel!) to fix varargs usage,
so we don't segfault on --system anymore. (closes: #229274, #229005,
#229609)
-- Daniel Stone <daniels@debian.org> Wed, 28 Jan 2004 06:51:07 +1100
dbus (0.20-2) unstable; urgency=low
* The "gotta keep the ftpmaster cab^Whappy release".
+ Hey, I need the overrides ...
* debian/python2.3-dbus.install:
+ Stop installing .a and .la files (thanks Daniel Silverstone).
* debian/dbus-qt-1-dev.install:
+ Install the .la file ... yep, Daniel Silverstone
* debian/patches/dbus-monitor.patch:
+ Patch from Daniel Silverstone to add suport for filters to dbus-monitor:
only watch for certain events.
* debian/rules:
+ Add --enable-verbose-mode to make debugging far more easier.
- Daniel Silverstone strikes again!
-- Daniel Stone <daniels@debian.org> Wed, 21 Jan 2004 11:07:37 +1100
dbus (0.20-1) unstable; urgency=low
* New upstream release (closes: #223400).
+ This version includes Qt and Python support.
- New packages: dbus-1-qt, python2.3-dbus.
* debian/dbus-1.postinst:
+ Call addgroup with --system so it doesn't get a userspace GID.
(closes: #222563)
* debian/control, debian/rules:
+ Start building Qt and Python bindings.
* debian/patches/dbus-python-signals-dze.patch:
+ Merged patch (already applied in HEAD) to enhance signal support in the
Python interface; available from
http://freedesktop.org/~david/dbus-python-signals-dze.patch.
-- Daniel Stone <daniels@debian.org> Sat, 6 Dec 2003 00:17:50 +1100
dbus (0.13-1) unstable; urgency=low
* New upstream release.
* debian/control:
+ Update Maintainer address to debian.org.
+ Add Recommends: dbus-glib-1 to dbus-1-utils, for the dbus-monitor
program. (closes: #213914)
-- Daniel Stone <daniels@debian.org> Wed, 22 Oct 2003 13:54:53 +1000
dbus (0.12-4) unstable; urgency=low
* debian/control:
+ Taking over from Colin as maintainer.
+ Bump debhelper Build-Dep to >=4.1.46, when dh_installlogcheck was first
introduced.
+ Bump Standards-Version to 3.6.1.
+ Add Replaces/Provides/Conflicts on earlier dbus-1 versions to
dbus-1-utils.
* debian/dbus-1.init:
+ Clean up after the daemon's pidfile mess, ensuring smooth upgrades.
(closes: #209143)
-- Daniel Stone <daniel@fooishbar.org> Mon, 22 Sep 2003 12:13:06 +1000
dbus (0.12-3) unstable; urgency=low
* debian/control:
- Break out utilities into separate dbus-1-utils package.
-- Colin Walters <walters@debian.org> Sat, 30 Aug 2003 20:07:28 -0400
dbus (0.12-2) unstable; urgency=low
* debian/control:
- [dbus-1] Add Depends on adduser (Closes: #204871)
-- Colin Walters <walters@debian.org> Sun, 10 Aug 2003 22:23:36 -0400
dbus (0.12-1) unstable; urgency=low
* New upstream release.
* debian/control:
- Bump Standards-Version to 3.6.0, no changes required.
-- Colin Walters <walters@debian.org> Wed, 6 Aug 2003 01:50:13 -0400
dbus (0.11+cvs200307017-1) unstable; urgency=low
* New upstream CVS snapshot.
- Creates services directory (Closes: #198433)
-- Colin Walters <walters@debian.org> Thu, 17 Jul 2003 19:05:37 -0400
dbus (0.11+cvs20030528-2) unstable; urgency=low
* debian/rules:
- Include utils.mk.
-- Colin Walters <walters@debian.org> Thu, 29 May 2003 02:14:29 -0400
dbus (0.11+cvs20030528-1) unstable; urgency=low
* New upstream CVS snapshot.
* debian/control:
- Build-Depend on latest cdbs to get some minor fixes.
-- Colin Walters <walters@debian.org> Wed, 28 May 2003 16:56:29 -0400
dbus (0.11-2) unstable; urgency=low
* debian/control:
- Add Build-Depends on cdbs, just because it's so freaking sweet.
* debian/rules:
- Convert to CDBS.
* debian/rocks:
- Removed.
-- Colin Walters <walters@debian.org> Mon, 19 May 2003 19:21:33 -0400
dbus (0.11-1) unstable; urgency=low
* The "Bill Gates Grants Self 18 Dexterity, 20 Charisma" release.
* New upstream release.
* debian/control:
- Bump Standards-Version to 3.5.10, no changes required.
* debian/rocks:
- No need to create system.d anymore, upstream does it now.
-- Colin Walters <walters@debian.org> Thu, 15 May 2003 22:01:23 -0400
dbus (0.10+cvs20030503-2) unstable; urgency=low
* The "I've Got To Stop Taking Lives So Seriously" release.
* debian/control:
- Add Build-Depends on docbook-utils.
-- Colin Walters <walters@debian.org> Sat, 3 May 2003 16:58:20 -0400
dbus (0.10+cvs20030503-1) unstable; urgency=low
* The "Chimp Study On Human-Evasion Response To Feces-Hurling Nearly
Complete" release.
* New upstream snapshot.
- Includes some of my patches; this will among other things make
the system bus go again.
* debian/rocks:
- Add --enable-docs to DEB_CONFIGURE_EXTRA_FLAGS.
* debian/dbus-1-dev.install:
- Update to handle new upstream .pc name.
* debian/rules:
- Update to latest version of Colin's Build System.
-- Colin Walters <walters@debian.org> Sat, 3 May 2003 03:58:53 -0400
dbus (0.10-1) unstable; urgency=low
* The "West-Wing Tech-Support' Crew Be A Buncha Wack Bitches" release.
* New upstream release.
* debian/dbus-1.install:
- Install all binaries.
* debian/dbus-1-dev.install:
- Install headers from /usr/lib/dbus-1.0 too.
* debian/rocks:
- Create etc/dbus-1/system.d.
-- Colin Walters <walters@debian.org> Mon, 28 Apr 2003 17:29:50 -0400
dbus (0.9-2) unstable; urgency=low
* The "New Fox Reality Show To Determine Ruler Of Iraq" release.
* debian/rocks:
- Generate API docs via doxygen (Closes: #185470)
* debian/control:
- Build-Depend on doxygen.
* debian/dbus-1-doc.install:
- Install docs in correct place.
- Install newly generated doxygen docs.
* debian/rules:
- Update to latest version of Colin's Build System.
- Eagerly await ftpmaster installing build-common.
-- Colin Walters <walters@debian.org> Wed, 23 Apr 2003 23:40:00 -0400
dbus (0.9-1) unstable; urgency=low
* The "Starbucks To Begin Sinister 'Phase Two' Of Operation" release.
* New upstream release.
* debian/control:
- Drop "lib*" prefix from all packages, and change suffix from "0" to "-1".
D-BUS isn't technically just a shared library; it also includes a
daemon. This could really go either way; I could just put the daemon
in the libdbus0 package and be done with it, but I think that's more
confusing in the end, since people have been very conditioned to
expect libfoo -> just shared library.
- Add Conflicts: and Replaces: on older lib* packages.
- Remove Provides and Conflicts on libdbus-dev in new dbus-1-dev
package, since they are actually parallel installable.
- Ditto for libdbus-glib0-dev.
- Touch up descriptions.
- Update to Standards-Version: 3.5.9; no changes required.
- Add libexpat-dev to Build-Depends.
* debian/dbus0.init:
- New file; runs the D-BUS daemon.
* debian/dbus0.default:
- New file.
* debian/dbus0.postinst:
- New file; creates the messagebus user and stuff.
* debian/dbus0.install:
- Install configuration files.
* debian/rocks:
- Add --with-xml=expat.
- Update to correspond with changes to debian/control.
- Make dbus-glib-1 package be built after dbus-1 package.
- Add debian/dbus-1/usr/lib to DEB_SHLIBDEPS_INCLUDE_dbus-glib-1 so we
pick up the right shlibs.
* debian/rules:
- Update to latest version of Colin's Build System.
-- Colin Walters <walters@debian.org> Sun, 13 Apr 2003 23:40:29 -0400
dbus (0.6-1) unstable; urgency=low
* New upstream release.
* debian/control:
- [libdbus0] Flesh out description somewhat.
-- Colin Walters <walters@debian.org> Tue, 18 Mar 2003 10:50:42 -0500
dbus (0.5-2) unstable; urgency=low
* debian/libdbus0-dev.install:
- Don't include dbus-glib-1.0.pc.
- Don't include dbus-glib-1.a or .so.
-- Colin Walters <walters@debian.org> Thu, 6 Mar 2003 23:17:53 -0500
dbus (0.5-1) unstable; urgency=low
* Initial version (Closes: #183739)
-- Colin Walters <walters@debian.org> Thu, 6 Mar 2003 17:58:06 -0500
|