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
|
gnome-session (3.30.1-2) unstable; urgency=medium
[ Laurent Bigonville ]
* debian/rules: Don't enable journald support on non-linux architectures
[ Jeremy Bicha ]
* Restore -Wl,-O1 to our LDFLAGS
* Drop obsolete Build-Depends on intltool and gnome-common (Closes: #830006)
* Bump Standards-Version to 4.3.0
-- Jeremy Bicha <jbicha@debian.org> Tue, 25 Dec 2018 09:52:38 -0500
gnome-session (3.30.1-1) unstable; urgency=medium
* Team upload
* New upstream release
* Bump Standards-Version to 4.2.1
* d/rules: Remove gnome-get-source.mk (please use uscan instead)
* Set Rules-Requires-Root to no
-- Simon McVittie <smcv@debian.org> Fri, 02 Nov 2018 09:44:06 +0000
gnome-session (3.30.0-2) unstable; urgency=medium
* Team upload
* Release to unstable
- d/gbp.conf, d/control: Set branch back to debian/master
- d/watch: Only watch for upstream stable (even-numbered) releases
-- Simon McVittie <smcv@debian.org> Thu, 20 Sep 2018 12:38:06 +0100
gnome-session (3.30.0-1) experimental; urgency=medium
* Team upload
[ Iain Lane ]
* debian/gbp.conf: Don't use patch numbers
* d/p/debian/Revert-main-Remove-GNOME_DESKTOP_SESSION_ID-envvar.patch: Mark
as not-needed upstream
[ Raphaël Hertzog ]
* Update gnome-mimeapps.list for evince's renamed desktop file
(Closes: #908177)
[ Simon McVittie ]
* d/gbp.conf: Add standard post-import hook
* New upstream release
* d/copyright: Update
-- Simon McVittie <smcv@debian.org> Wed, 19 Sep 2018 14:04:21 +0100
gnome-session (3.29.90-1) experimental; urgency=medium
* New upstream revision
* debian/*: Update for experimental (3.29/3.30 series)
* debian/patches/debian/Revert-main-Remove-GNOME_DESKTOP_SESSION_ID-envvar.patch:
- revert removal of GNOME_DESKTOP_SESSION_ID not to break apps using it
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Thu, 16 Aug 2018 10:45:17 +0200
gnome-session (3.28.1-1) unstable; urgency=medium
* New upstream release
* Drop patch included in new release
-- Tim Lunn <tim@feathertop.org> Sat, 14 Apr 2018 12:57:24 +1000
gnome-session (3.28.0-2) unstable; urgency=medium
* Team upload
* d/p/xsmp-don-t-check-for-HAVE_XTRANS.patch:
Add patch from upstream making xtrans support work again, so that
gnome-session doesn't fall back to TCP sockets for session management
(Closes: #894351)
-- Simon McVittie <smcv@debian.org> Thu, 29 Mar 2018 14:55:15 +0100
gnome-session (3.28.0-1) unstable; urgency=medium
* New upstream release
* debian/rules: Switch to dh_missing --fail-missing
instead of dh_install --list-missing
-- Tim Lunn <tim@feathertop.org> Sun, 18 Mar 2018 18:06:26 +1100
gnome-session (3.27.92-1) unstable; urgency=medium
* New upstream release candidate
* Release to unstable
-- Jeremy Bicha <jbicha@debian.org> Sat, 10 Mar 2018 21:11:30 -0500
gnome-session (3.27.90.1-1) experimental; urgency=medium
* New upstream development release
* Build with meson
* Update Vcs fields for migration to https://salsa.debian.org/
-- Jeremy Bicha <jbicha@debian.org> Sat, 17 Feb 2018 15:50:51 -0500
gnome-session (3.26.1-2) unstable; urgency=medium
* Drop unnecessary Suggests: gnome-user-guide (LP: #1691867)
* Update Vcs fields for conversion to git
* Add debian/gbp.conf
* Bump Standards-Version to 4.1.2
-- Jeremy Bicha <jbicha@debian.org> Fri, 15 Dec 2017 14:34:08 -0500
gnome-session (3.26.1-1) unstable; urgency=medium
* Team upload
* New upstream release
-- Simon McVittie <smcv@debian.org> Fri, 06 Oct 2017 10:52:04 +0100
gnome-session (3.26.0-1) unstable; urgency=medium
* New upstream release
-- Jeremy Bicha <jbicha@debian.org> Thu, 14 Sep 2017 19:11:33 -0400
gnome-session (3.25.90-1) unstable; urgency=medium
* New upstream release
* Bump Standards-Version to 4.1.0
* Drop all patches: Applied (or improved) in new release
-- Jeremy Bicha <jbicha@debian.org> Wed, 06 Sep 2017 22:21:26 -0400
gnome-session (3.24.1-2) unstable; urgency=medium
* Upload to unstable (Closes: #869947)
-- Jeremy Bicha <jbicha@ubuntu.com> Sun, 06 Aug 2017 17:37:05 -0400
gnome-session (3.24.1-1) experimental; urgency=medium
* New upstream release.
- Drop debian/patches/git_wayland_login_shell.patch, applied upstream
- Bump gnome-settings-daemon dependency to 3.24
- debian/gnome-session.install: Also install gnome-dummy session file
* debian/control.in: Bump Standards-Version to 4.0.0 (no further changes)
* debian/rules: Switch default "gnome" session to wayland
* d/p/0001-manager-add-bus-daemon-dbus-api-xml-file.patch,
d/p/0002-system-add-api-for-detecting-if-this-is-the-last-ses.patch,
d/p/0003-manager-kill-off-bus-clients-at-log-out.patch: kill off bus
clients at log out, backported from upstream 3.25
* d/p/0004-fail-whale-handle-X-server-dying-before-startup.patch: handle X
server dying before startup, cherry-picked from 3.24 branch
-- Laurent Bigonville <bigon@debian.org> Thu, 06 Jul 2017 00:25:20 +0200
gnome-session (3.22.3-1) unstable; urgency=medium
* New upstream release.
-- Michael Biebl <biebl@debian.org> Thu, 09 Mar 2017 06:47:00 +0100
gnome-session (3.22.2-2) unstable; urgency=medium
* Team upload
[ Jeremy Bicha ]
* Add git_wayland_login_shell.patch:
- Backport 3.23 commit that made Wayland sessions run login scripts
like ~/.profile since that's what people expect (LP: #1631713)
-- Simon McVittie <smcv@debian.org> Fri, 20 Jan 2017 10:14:17 +0000
gnome-session (3.22.2-1) unstable; urgency=medium
* New upstream release.
-- Michael Biebl <biebl@debian.org> Tue, 08 Nov 2016 15:49:26 +0100
gnome-session (3.22.1-1) unstable; urgency=medium
* New upstream release.
-- Michael Biebl <biebl@debian.org> Wed, 12 Oct 2016 18:10:49 +0200
gnome-session (3.22.0-1) unstable; urgency=medium
* New upstream release.
* Drop debian/patches/git_fix-bashism.patch, merged upstream.
* Bump debhelper compat level to 10.
* Don't fail to restore the old desktop session files if we only build
architecture specific binary packages (gnome-session is arch:all).
-- Michael Biebl <biebl@debian.org> Tue, 20 Sep 2016 01:25:00 +0200
gnome-session (3.21.90-4) unstable; urgency=medium
* Instead of patching the build system to get the old deskop session files
back, remove the new ones and ship a local copy of gnome-wayland.desktop
which was generated from the gnome-3-20 branch. This is much simpler and
we don't lose all the translations this way.
* Show uninstalled files via dh_install --list-missing.
-- Michael Biebl <biebl@debian.org> Thu, 08 Sep 2016 18:40:30 +0200
gnome-session (3.21.90-3) unstable; urgency=medium
* Switch back to Xorg by default.
We divert from upstream here and switch the default GNOME session back to
Xorg for Stretch. This way, users who explicitly chose the GNOME session
in the display manager won't be automatically switched over to Wayland.
It's still possible to run Wayland via the "GNOME on Wayland" session.
-- Michael Biebl <biebl@debian.org> Wed, 07 Sep 2016 23:07:21 +0200
gnome-session (3.21.90-2) experimental; urgency=medium
* Add debian/patches/git_fix-bashism.patch (Closes: #835289)
-- Andreas Henriksson <andreas@fatal.se> Sat, 03 Sep 2016 22:11:37 +0200
gnome-session (3.21.90-1) experimental; urgency=medium
* New upstream beta release.
* Update build-dependencies according to configure.ac changes:
- Add libgles2-mesa-dev
* debian/gnome-session-{bin,common}.install:
- stop installing *.ui and icons since gnome-session-properties tool
has now been removed.
-- Andreas Henriksson <andreas@fatal.se> Tue, 23 Aug 2016 12:19:33 +0200
gnome-session (3.20.2-1) unstable; urgency=medium
* New upstream release.
* Drop all translations, not used anymore.
* Drop debian/patches/update-activation-environment-at-startup.patch, merged
upstream.
* Bump debhelper compatibility level to 9.
* Convert from cdbs to dh.
* Bump Standards-Version to 3.9.8.
-- Michael Biebl <biebl@debian.org> Wed, 13 Jul 2016 15:12:48 +0200
gnome-session (3.20.1-4) unstable; urgency=medium
* debian/gnome-mimeapps.list: Replace iceweasel.desktop by
firefox-esr.desktop and firefox.desktop
* debian/gnome-mimeapps.list: Add default application for
application/x-cd-image, application/x-raw-disk-image and
application/x-raw-disk-image-xz-compressed
-- Laurent Bigonville <bigon@debian.org> Sat, 04 Jun 2016 23:06:54 +0200
gnome-session (3.20.1-3) unstable; urgency=medium
* Add debian/patches/update-activation-environment-at-startup.patch: update
activation environment at startup, this way we are sure that all the
environment variables are also available for the user activated services
-- Laurent Bigonville <bigon@debian.org> Tue, 24 May 2016 13:21:04 +0200
gnome-session (3.20.1-2) unstable; urgency=medium
* Drop /usr/share/gnome/applications/defaults.list symlink and install
/etc/gnome/defaults.list to /usr/share/applications/gnome-mimeapps.list
instead, as the xdg spec is allowing desktop specific default applications.
If /etc/gnome/defaults.list was modified by the system administrator, the
file is moved to /etc/xdg/gnome-mimeapps.list during the upgrade.
This seems to fix default apps when running gnome-shell as a wayland
compositor, as the 55gnome-session_gnomerc is not sourced in that case.
-- Laurent Bigonville <bigon@debian.org> Tue, 17 May 2016 02:02:11 +0200
gnome-session (3.20.1-1) unstable; urgency=medium
* New upstream release.
* Postpone the switch to Wayland by default. We don't want to entangle the
GNOME 3.20 transition with the Wayland switch.
* Upload to unstable.
-- Michael Biebl <biebl@debian.org> Tue, 19 Apr 2016 23:50:01 +0200
gnome-session (3.20.0-2) experimental; urgency=medium
* Add debian/patches/Revert-switch-to-Xorg-by-default.patch
- revert upstreams switch (back) to Xorg by default, as we need
wayland testing during our development cycle up to Stretch.
Upstream plans to ship GNOME 3.22 with wayland as default,
which is the GNOME release we're targeting for Stretch.
* debian/gnome-session.install:
- accept any *.desktop name for wayland-sessions.
- install all *.desktop files for xsessions.
* Add debian/patches/0001-main-fix-starting-gnome-session-via-startx.patch
- fixes starting "System Default" session
-- Andreas Henriksson <andreas@fatal.se> Wed, 30 Mar 2016 19:16:31 +0200
gnome-session (3.20.0-1) experimental; urgency=medium
* Bump gnome-shell dependency to >= 3.19
- gnome.session now uses new org.gnome.Shell desktop file name.
* New upstream release.
-- Andreas Henriksson <andreas@fatal.se> Fri, 25 Mar 2016 10:05:25 +0100
gnome-session (3.19.92-1) experimental; urgency=medium
* New upstream release.
* Stop installing gnome-wayland.session
- no longer shipped, now merged with gnome.session
* Bump Standards-Version to 3.9.7.
-- Andreas Henriksson <andreas@fatal.se> Tue, 15 Mar 2016 21:05:23 +0100
gnome-session (3.18.1.2-1) unstable; urgency=medium
* New upstream release.
* Update Build-Depends as per configure.ac:
- Bump libglib2.0-dev to (>= 2.46.0). (Closes: #801736)
- Bump libgtk-3-dev to (>= 3.18.0).
- Bump libgnome-desktop-3-dev to (>= 3.18.0).
-- Michael Biebl <biebl@debian.org> Wed, 21 Oct 2015 16:23:10 +0200
gnome-session (3.18.0-1) unstable; urgency=medium
* New upstream release (identical to 3.17.92).
* Upload to unstable.
* Drop obsolete Breaks, Conflicts and Replaces from pre-wheezy.
* Drop obsolete Provides: gnome3-session since there are no more reverse
dependencies.
* Update README.Debian, the package for the metacity/gnome-panel based
fallback session is called "gnome-session-flashback".
-- Michael Biebl <biebl@debian.org> Sun, 11 Oct 2015 19:04:24 +0200
gnome-session (3.17.92-1) experimental; urgency=medium
* New upstream release candidate.
-- Andreas Henriksson <andreas@fatal.se> Thu, 17 Sep 2015 16:30:30 +0200
gnome-session (3.16.0-1) unstable; urgency=medium
* New upstream release.
- Adds new --disable-acceleration-check option (closes: #771513).
* Drop 0001-configure.ac-Add-support-for-new-versions-of-systemd.patch,
applied upstream.
* Upstream has disabled support for consolekit even on non-systemd
systems with this release. We follow upstream and do not enable it
forcefully. Please file a bug if you think this change is wrong.
- Drop libdbus-glib-1-dev build-dependency, it is now only used by
consolekit support code.
- Drop consolekit recommends from gnome-session-bin.
* Bump Standards-Version to 3.9.6, no changes needed.
-- Dmitry Shachnev <mitya57@debian.org> Tue, 26 May 2015 17:34:09 +0300
gnome-session (3.14.0-3) unstable; urgency=medium
* Cherry-pick upstream patch which allows to build against libsystemd and
update Build-Depends accordingly. (Closes: #779752)
-- Michael Biebl <biebl@debian.org> Tue, 28 Apr 2015 19:58:00 +0200
gnome-session (3.14.0-2) unstable; urgency=medium
* Update debian/defaults.list to catch up with times:
- Drop swfdec-player which is long gone.
- Update File-Roller to new .desktop file name.
- Update GEdit to new .desktop file name.
- Update Font Viewer to new .desktop file name.
- Update Nautilus to new .desktop file name.
- Update Totem to new .desktop file name.
(Closes: #763595)
Note: This breaks the defaults for those who install the new
gnome-session-common and keep their << 3.14 application
packages (partial upgrades).
-- Andreas Henriksson <andreas@fatal.se> Wed, 01 Oct 2014 16:11:51 +0200
gnome-session (3.14.0-1) unstable; urgency=medium
* New upstream release.
* Upload to unstable.
-- Andreas Henriksson <andreas@fatal.se> Mon, 22 Sep 2014 20:42:37 +0200
gnome-session (3.13.3-1) experimental; urgency=medium
[ Andreas Henriksson ]
* New upstream development release.
[ Josselin Mouette ]
* Fix typos in defaults.list. Closes: #759429.
-- Andreas Henriksson <andreas@fatal.se> Fri, 05 Sep 2014 15:09:51 -0700
gnome-session (3.12.1-4) experimental; urgency=medium
* gnome-session: Install wayland session files.
* gnome-session-bin: add xwayland dependency on linux-any.
-- Andreas Henriksson <andreas@fatal.se> Sat, 02 Aug 2014 17:22:46 +0200
gnome-session (3.12.1-3) unstable; urgency=medium
[ Laurent Bigonville ]
* debian/control.in: Recommends libpam-systemd instead of systemd on linux
architectures and add recommends against consolekit on non linux arch.
Also move the Recommends to the arch any package.
[ Andreas Henriksson ]
* Drop build-dependency on libupower-glib-dev (<< 0.99.0) [!linux-any]
- This can no longer be fulfilled anyway.
* Upload to unstable.
-- Andreas Henriksson <andreas@fatal.se> Mon, 14 Jul 2014 23:57:59 +0200
gnome-session (3.12.1-2) experimental; urgency=medium
* Enable systemd support on linux architectures only
-- Laurent Bigonville <bigon@debian.org> Sun, 04 May 2014 15:02:14 +0200
gnome-session (3.12.1-1) experimental; urgency=medium
* New upstream release
-- Sjoerd Simons <sjoerd@debian.org> Sun, 27 Apr 2014 18:03:58 +0200
gnome-session (3.12.0-1) experimental; urgency=medium
* New upstream release.
* Require upower build-dependency to be lower then 0.99.x and
only on non-linux.
- The new upower 0.99.x does not implement the used interfaces.
- Functionality is available via logind.
* Drop installing /usr/share/applications
- new upstream no longer ships gnome-session-properties
* Bump build-dependency on libglib2.0-dev to >= 2.39.90
- using g_subprocess requires a recent glib.
* Bump Standards-Version to 3.9.5
-- Andreas Henriksson <andreas@fatal.se> Wed, 26 Mar 2014 22:51:00 +0100
gnome-session (3.10.1-1) experimental; urgency=low
* New upstream release
* debian/patches/13_display_session_properties.patch
+ Dropped. gnome-session-properties has been dropped upstream
* debian/rules, debian/control.in: Explicitely enabled systemd support and
recommend systemd for logind. Recommends is enough as gnome-session should
fall back to consolekit
* debian/control.in: Update build-depends
-- Sjoerd Simons <sjoerd@debian.org> Fri, 01 Nov 2013 23:04:59 +0100
gnome-session (3.8.4-3) unstable; urgency=medium
* debian/control.in:
+Break gdm3 < 3.8. Closes: #726498.
-- Emilio Pozuelo Monfort <pochu@debian.org> Sat, 26 Oct 2013 16:12:19 +0200
gnome-session (3.8.4-2) unstable; urgency=low
* Upload to unstable.
-- Emilio Pozuelo Monfort <pochu@debian.org> Sun, 13 Oct 2013 17:27:19 +0200
gnome-session (3.8.4-1) experimental; urgency=low
[ Jeremy Bicha ]
* New upstream release
* debian/control.in:
- Don't recommend gnome-power-manager
* Completely drop gnome-session-fallback (moved to gnome-panel source)
[ Michael Biebl ]
* Drop Build-Depends on libnotify-dev. No longer necessary after
debian/patches/04_fallback_warning_notify.patch has been removed.
* Bump Standards-Version to 3.9.4. No further changes.
-- Michael Biebl <biebl@debian.org> Fri, 11 Oct 2013 17:07:46 +0200
gnome-session (3.8.2.1-1) experimental; urgency=low
* New upstream release.
-- Andreas Henriksson <andreas@fatal.se> Sat, 25 May 2013 17:03:53 +0200
gnome-session (3.7.92-1) experimental; urgency=low
* New upstream release (3.7.92)
* debian/patches/14_hide_session_properties_help.patch:
+ Removed, fixed upstream
* debian/patches/01_gnome-wm.patch
debian/patches/02_fallback_desktop.patch
debian/patches/03_fallback_desktop_makefile.patch
debian/patches/04_fallback_warning_notify.patch
debian/patches/12_no_gdm_fallback.patch:
+ Temporarily disabled, waiting for the return of fallback mode
* debian/control: Temporarily disable gnome-session-fallback
-- Sjoerd Simons <sjoerd@debian.org> Sun, 24 Mar 2013 18:55:46 +0100
gnome-session (3.6.0-1) experimental; urgency=low
* New upstream release (3.6.0)
* Sync with Ubuntu:
+ debian/55gnome-session_gnomerc: Use shell builtins instead of external
commands for extra speed
+ debian/patches/12_no_gdm_fallback.patch: Refresh
-- Sjoerd Simons <sjoerd@debian.org> Sun, 14 Oct 2012 21:05:30 +0200
gnome-session (3.4.2.1-3) unstable; urgency=low
* defaults.list:
+ epiphany.desktop → epiphany-browser.desktop.
+ Anyway replace epiphany with iceweasel.
+ Update default handlers for LibreOffice.
* 04_fallback_warning_notify.patch: use libnotify to show the fallback
warning instead of a dialog.
* Build-depend on libnotify.
-- Josselin Mouette <joss@debian.org> Sat, 29 Sep 2012 10:19:13 +0200
gnome-session (3.4.2.1-2) unstable; urgency=low
* debian/patches/13_display_session_properties.patch: Display
session-properties as the Startup Applications capplet was removed from
gnome-control-center, which makes it hard to discover the
gnome-session-properties tool. (Closes: #683814)
* debian/patches/14_hide_session_properties_help.patch: The help button in
gnome-session-properties points to the old GNOME 2 user guide and
therefore doesn't work in GNOME 3, so hide it.
-- Michael Biebl <biebl@debian.org> Wed, 05 Sep 2012 00:53:57 +0200
gnome-session (3.4.2.1-1) unstable; urgency=low
* New upstream release.
* Remove obsolete section from README.Debian. The splash screen has been
dropped upstream for a while now.
-- Michael Biebl <biebl@debian.org> Thu, 31 May 2012 01:30:42 +0200
gnome-session (3.4.2-1) unstable; urgency=low
* New upstream release.
-- Michael Biebl <biebl@debian.org> Mon, 14 May 2012 23:31:42 +0200
gnome-session (3.4.1-1) unstable; urgency=low
* New upstream release.
* Refresh patches.
* Install blacklist/whitelist for gnome-session-check-accelerated-helper.
* Disable systemd support, continue to use ConsoleKit for session tracking.
* Bump Standards-Version to 3.9.3.
* Update defaults.list, use libreoffice instead of openoffice.org.
-- Michael Biebl <biebl@debian.org> Wed, 25 Apr 2012 03:03:59 +0200
gnome-session (3.2.1-1) unstable; urgency=low
* New upstream release.
* Refresh debian/patches/12_no_gdm_fallback.patch.
* Remove debian/patches/13_format_security.patch, applied upstream.
* debian/control.in:
- Bump Build-Depends on intltool to (>= 0.40.6).
- Drop Build-Depends on librsvg2-dev.
- Add Build-Depends on libjson-glib-dev (>= 0.10).
-- Michael Biebl <biebl@debian.org> Sun, 27 Nov 2011 02:20:11 +0100
gnome-session (3.0.2-4) unstable; urgency=low
[ Michael Biebl ]
* debian/control.in:
- We really need notification-daemon for gnome-session-fallback, not a
virtual provides. So make the depencency versioned.
Closes: #649737.
[ Josselin Mouette ]
* defaults.list:
- Add scheme handlers for yelp.
* 02_fallback_desktop.patch:
- Rename the fallback session to “GNOME Classic”.
- Split makefile parts into 03_fallback_desktop_makefile.patch.
* po-up/POTFILES.in: add 02_fallback_desktop.patch to translations.
* Update fr.po.
[ Jordi Mallach ]
* Update ca.po.
[ Josselin Mouette ]
* th.po: Thai translation from Theppitak Karoonboonyanan.
* zh_CN.po: Chinese translation from Aron Xu.
[ Christian Perrier ]
* ru.po: Russian translation from Alexei Lobanov.
[ Josselin Mouette ]
* sk.po: Slovak translation from Slavko.
* de.po: German translation from Chris Leick.
* nl.po: Dutch translation from Jeroen Schot.
* da.po: Danish translation from Joe Dalton. Closes: #649269.
* Add an alternative, at lower priority, for gnome-session-fallback.
Closes: #649596.
-- Michael Biebl <biebl@debian.org> Sat, 26 Nov 2011 23:06:59 +0100
gnome-session (3.0.2-3) unstable; urgency=low
* Upload to unstable.
* debian/watch:
- Switch to .xz tarballs.
* Bump debhelper compatibility level to 8.
- Update Build-Depends on debhelper.
- Strip debian/tmp/ from .install files.
* debian/control.in:
- Set pkg-gnome-maintainers@lists.alioth.debian.org as Maintainer.
- Add Vcs-* fields.
* debian/patches/13_format_security.patch:
- Fix format string vulnerability. Patch cherry-picked from upstream Git.
-- Michael Biebl <biebl@debian.org> Fri, 14 Oct 2011 12:36:01 +0200
gnome-session (3.0.2-2) experimental; urgency=low
[ Josselin Mouette ]
* defaults.list:
+ Make epiphany-newtab the default http handler.
+ Add a few more text MIME types to gedit, otherwise they can be
handled by emacs.
+ Point directories to nautilus.desktop. Closes: #618376. Thanks
Jérémy Bicha.
[ Michael Biebl ]
* Remove Depends on policykit-1-gnome from gnome-session as gnome-shell
provides its own integrated PolicyKit authentication agent.
* Remove notification-daemon from gnome-session Recommends as gnome-shell
has an integrated notification system.
* Make notification-daemon a Depends of the gnome-session-fallback and
remove debian/patches/13_no_fallback_notification.patch so the session
manager starts notification-daemon in the fallback case.
* Bump Standards-Version to 3.9.2. No further changes.
* debian/watch: Track .bz2 tarballs.
-- Michael Biebl <biebl@debian.org> Fri, 19 Aug 2011 23:02:02 +0200
gnome-session (3.0.2-1) experimental; urgency=low
* defaults.list:
+ Add evolution.
+ Add x-scheme-handler types.
* New upstream translation release.
-- Josselin Mouette <joss@debian.org> Wed, 01 Jun 2011 00:13:03 +0200
gnome-session (3.0.0-2) experimental; urgency=low
* Update build-dependencies to correspond to what’s in configure.ac.
-- Josselin Mouette <joss@debian.org> Thu, 21 Apr 2011 23:15:29 +0200
gnome-session (3.0.0-1) experimental; urgency=low
* debian/rules: remove the libexecdir setting, let the cdbs default be
used instead.
* New usptream release.
* Remove disabled patches.
* 10_session_save.patch:
+ Updated for the new version.
+ Disabled for now, the saved session is either discarded or
overwritten at logout time depending on the save-session setting.
* 11_saved_session_name.patch: dropped, we won’t be needing it with
the way session saving is handled in 3.0.
* Pull back gnome-wm and gnome-wm.desktop, it’s the easiest way to
configure the window manager for the fallback session.
* 01_gnome-wm.patch: new patch. Make gnome-wm the default instead of
metacity.
* 02_fallback_desktop.patch: new patch. Build a gnome-fallback.desktop
for /usr/share/xsessions.
* 13_no_fallback_notification.patch: refreshed accordingly.
* Move gsettings-desktop-schemas dependency to gnome-session-bin.
* gnome-session.postinst: drop removal of obsolete alternative, it’s
in stable now.
* Split gnome-session again. Put common files in gnome-session-common,
the standard session in gnome-session and the fallback session in
gnome-session-fallback.
* Sort out the resulting Conflicts/Replaces/Provides nightmare.
* Move back the defaults.list to gnome-session-common.
* Massive updates for short/long descriptions.
* Document how sessions are launched in README.Debian.
* debian/55gnome-session_gnomerc: handle gnome-session-fallback.
-- Josselin Mouette <joss@debian.org> Wed, 20 Apr 2011 23:08:49 +0200
gnome-session (2.91.93-1) experimental; urgency=low
[ Frederic Peters ]
* New upstream release.
* debian/patches/01_gnome-wm.patch: removed, gnome-wm has been killed
upstream.
* debian/patches/03_upower.patch: removed, was stolen from git.
* debian/patches/10_session_save.patch: updated.
* debian/patches/11_saved_session_name.patch: updated.
* debian/patches/13_no_fallback_notification.patch: start fallback session
even if there is no notification-daemon.
* debian/patches/90_relibtoolize.patch: remove, using dh-autoreconf.
* debian/control.in:
+ updated build-deps for new version.
+ removed gnome3-session package, gnome-session will start gnome3, and
switch to fallback mode if necessary.
+ removed gnome-session-common package, as it was there to satisfy the
presence of both gnome-session and gnome3-session
* debian/rules:
+ use autoreconf
+ remove rules for creating gnome3-session.desktop
[ Josselin Mouette ]
* defaults.list: add audio/flac.
-- Frederic Peters <fpeters@debian.org> Thu, 24 Mar 2011 20:47:28 +0100
gnome-session (2.30.2-4) experimental; urgency=low
[ Josselin Mouette ]
* Conflict with gnome-splashscreen-manager. Closes: #605111.
[ Emilio Pozuelo Monfort ]
* Re-enable gnome3-session.
-- Emilio Pozuelo Monfort <pochu@debian.org> Mon, 06 Dec 2010 01:17:48 +0100
gnome-session (2.30.2-3+sid2) unstable; urgency=low
* Start notification-daemon in Initialization phase. Closes: #640355
* Add autostart file for PolicyKit Authentication Agent.
-- Michael Biebl <biebl@debian.org> Mon, 26 Sep 2011 15:36:29 +0200
gnome-session (2.30.2-3+sid1) unstable; urgency=low
[ Josselin Mouette ]
* Conflict with gnome-splashscreen-manager. Closes: #605111.
[ Michael Biebl ]
* Remove gnome3-session bits, superseded by gnome-session and
gnome-session-fallback.
* Add dependency on notification daemon.
* Install autostart file for notification-daemon to activate the
notification system on session startup. Closes: #636435
* Bump Standards-Version to 3.9.2. No further changes.
-- Michael Biebl <biebl@debian.org> Fri, 19 Aug 2011 22:41:15 +0200
gnome-session (2.30.2-3) unstable; urgency=low
* defaults.list: open WebM and MPEG2/TS with totem.
-- Josselin Mouette <joss@debian.org> Sat, 06 Nov 2010 13:32:48 +0100
gnome-session (2.30.2-2) unstable; urgency=low
* Temporarily disable gnome3-session in preparation of the squeeze
release. This way gnome-shell can be removed from squeeze too.
* 03_devicekit_optional.patch: dropped, upower builds everywhere.
* 03_upower.patch: stolen upstream. Closes: #595088.
* Update build-dependencies accordingly.
* 90_relibtoolize.patch: regenerated accordingly.
-- Josselin Mouette <joss@debian.org> Sat, 18 Sep 2010 00:18:01 +0200
gnome-session (2.30.2-1) unstable; urgency=low
[ Michael Biebl ]
* New upstream stable release.
- Link against libXext and libXau to not fail with stricter linkers like
binutils-gold. Closes: #554661
* Refresh patches for new upstream release.
* 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.
* Bump Standards-Version to 3.9.0. Use Breaks instead of Conflicts as
recommended by the new policy.
* Drop Build-Depends on sharutils. We no longer need uuencode.
[ Josselin Mouette ]
* Drop build-dependency on type-handling.
-- Michael Biebl <biebl@debian.org> Thu, 22 Jul 2010 17:48:48 +0200
gnome-session (2.30.0-1) unstable; urgency=low
* New upstream release.
* Refresh patches.
* 13_capplet_always_save.patch, 14_crash_on_exit.patch: dropped,
merged upstream.
* Pass --libexecdir=/usr/lib, since it will add /gnome-session
already.
-- Josselin Mouette <joss@debian.org> Tue, 13 Apr 2010 22:53:59 +0200
gnome-session (2.28.0-7) unstable; urgency=low
* 12_no_gdm_fallback.patch: new patch. Don’t fall back on GDM if
ConsoleKit failed to reboot. CK will not even be attempted if it is
not available, anyway. Closes: #572085.
* Require upower/libdevkit-power unconditionnally, now that it works
on kfreebsd.
* 13_capplet_always_save.patch: stolen upstream. Ensure that the
capplet saves all changes when it exits. Closes: #574862.
* 14_crash_on_exit.patch: stolen upstream. Fix crash upon exit.
Closes: #548120.
-- Josselin Mouette <joss@debian.org> Thu, 25 Mar 2010 20:00:57 +0100
gnome-session (2.28.0-6) unstable; urgency=low
* debian/control.in
- Depend on upower instead of devicekit-power.
- Bump Standards-Version to 3.8.4. No further changes.
-- Michael Biebl <biebl@debian.org> Tue, 23 Feb 2010 22:56:04 +0100
gnome-session (2.28.0-5) unstable; urgency=low
* defaults.list: add text/x-patch. Some packages set brain-dead MIME
handlers for this.
* Remove obsolete gnome-session.dirs.
* 55gnome-session_gnomerc: add gnome3-session.
* README.Debian: fix documentation of window manager startup according
to the previous upload.
* Add a gnome3-session binary and a corresponding package, that starts
gnome-shell instead of gnome-panel + metacity.
* 11_saved_session_name.patch: new patch. Allow to change the
directory where the session is saved with the command line. The
corresponding option is used by gnome3-session.
* Split translations, icons and startup scripts in a new
gnome-session-common package.
* Straighten dependencies accordingly.
-- Josselin Mouette <joss@debian.org> Sat, 30 Jan 2010 12:52:45 +0100
gnome-session (2.28.0-4) unstable; urgency=low
* 01_gnome-wm.patch: OK, you win. Kill all the 3D crap, always use
metacity by default. Closes: #553417.
* Drop mesa-utils dependency accordingly.
-- Josselin Mouette <joss@debian.org> Mon, 16 Nov 2009 15:21:05 +0100
gnome-session (2.28.0-3) unstable; urgency=low
* 03_devicekit_optional.patch: new patch. Make DeviceKit-Power support
optional, so that gnome-session builds on non-Linux architectures.
* 90_relibtoolize.patch: regenerated accordingly, add an autoheader
invocation.
-- Josselin Mouette <joss@debian.org> Fri, 06 Nov 2009 13:51:37 +0100
gnome-session (2.28.0-2) unstable; urgency=low
* Don’t require devicekit-power on non-linux architectures.
* Only recommend gnome-power-manager, so that gnome-session remains
installable on kfreebsd. Instead, break versions < 2.28.
* Fix README.Debian to stop mentioning compiz. Closes: #552400.
* Remove policykit-gnome dependency.
* gnome-session-bin depends on devicekit-power on Linux architectures.
-- Josselin Mouette <joss@debian.org> Mon, 26 Oct 2009 13:33:47 +0100
gnome-session (2.28.0-1) unstable; urgency=low
* Depend on gnome-power-manager. Closes: #547887.
+ Make it 2.28 since the interface changed.
* Include back the file manager in the required components.
* Add nautilus to the dependencies, accordingly.
* New upstream release.
* Update build-dependencies.
* Require policykit-1-gnome.
* at-spi-registryd-wrapper has gone away.
* Set gnome-wm as the default WM using the configure flag.
* The splash is disabled by default now.
+ Remove it from the package.
+ Clean up the alternative.
* With all of that, all our GConf overrides disappear.
+ Run update-gconf-defaults once after the upgrade.
* Update README.Debian accordingly.
* 01_gnome-wm.patch:
+ Stop making compiz the default. Closes: #547899.
+ Better check for compositing available.
+ Use mutter when it is available.
+ No need to patch the makefiles anymore.
* Depend on mesa-utils for glxinfo.
* 10_session_save.patch: port to GtkBuilder.
* 11_dbus_exit.patch: dropped, merged upstream.
* 90_relibtoolize.patch: updated for the new version.
* defaults.list: update for 2.28 versions.
-- Josselin Mouette <joss@debian.org> Sat, 24 Oct 2009 10:48:08 +0200
gnome-session (2.26.2-1) unstable; urgency=low
* defaults.list: use brasero-nautilus instead of nautilus-cd-burner.
* 55gnome-session_gnomerc: make it clear that /usr/share/gnome is not
a symlink to /etc, since users are stupid enough to think this
should be the case.
* New upstream release.
* 01_gnome-wm.patch, 10_session_save.patch: updated accordingly.
* 11_dbus_exit.patch: replaced by the much improved version provided
by upstream.
* 12_desktop_crash.patch: dropped, merged upstream.
-- Josselin Mouette <joss@debian.org> Tue, 07 Jul 2009 22:43:05 +0200
gnome-session (2.26.1-7) unstable; urgency=low
* 12_desktop_crash.patch: new patch from Petr Gajdůšek. Use
g_ptr_array_free to free a GPtrArray, not g_strfreev.
Closes: #532702.
-- Josselin Mouette <joss@debian.org> Mon, 15 Jun 2009 12:00:24 +0200
gnome-session (2.26.1-6) unstable; urgency=low
* 01_gnome-wm.patch:
+ Don’t set LIBGL_ALWAYS_INDIRECT, compiz does it by itself if
needed and it slows things down if it’s not needed.
+ Don’t enable the glib compiz plugin, only the gconf one; the glib
plugin makes it lock up on startup. Closes: #531388.
-- Josselin Mouette <joss@debian.org> Tue, 02 Jun 2009 14:41:45 +0200
gnome-session (2.26.1-5) unstable; urgency=low
* 01_gnome-wm.patch:
+ Actually install gnome-wm.desktop, it’s pretty useless otherwise.
+ Don’t read the GConf key, it’s obviously set to gnome-wm if we’re
starting gnome-wm.
+ Make compiz the default if compiz-gtk is installed.
+ Remove a few unneeded things from the script to make it start
faster.
* gconf-defaults: make gnome-wm the default window manager.
* README.Debian: document how programs are started and how to
configure the different kinds of startups.
* 90_relibtoolize.patch: updated.
* Split the package between gnome-session-bin, which contains the
minimal runtime needed to actually run the gnome-session binary, and
gnome-session, which contains all the startup scripts and has much
larger dependencies, including the components which are required by
default. This prepares us for GDM 2.26.
* Update the list of copyright holders.
-- Josselin Mouette <joss@debian.org> Sun, 31 May 2009 18:18:06 +0200
gnome-session (2.26.1-4) unstable; urgency=low
* gconf-defaults: remove the file manager from the required components
list. Now that nautilus has an autostart file, this is no longer
necessary. It avoids restarting it endlessly when this is not
required. Closes: #525718.
* Break nautilus << 2.26.2-4 to ensure the autostart file is here.
-- Josselin Mouette <joss@debian.org> Sun, 31 May 2009 14:04:06 +0200
gnome-session (2.26.1-3) unstable; urgency=low
* Stop mentioning GNOME 2.
* defaults.list: add nautilus folder handlers and x-content handlers.
Closes: #530567, #530691.
-- Josselin Mouette <joss@debian.org> Fri, 29 May 2009 10:34:21 +0200
gnome-session (2.26.1-2) experimental; urgency=low
* prerm: only unregister the alternative when deinstalling the
package. Closes: #524900.
* Break xserver-xorg << 1:7.4. See GNOME#568989 for why.
* Drop build-dependencies on gnome-keyring and libgnomeui.
Closes: #526960.
* copyright:
+ Update list of main authors. Closes: #526963.
+ Point to versioned GPL.
* 11_dbus_exit.patch: new patch. Don’t exit when the system bus is
disconnected. Thanks Sjoerd Simmons for the hint.
-- Josselin Mouette <joss@debian.org> Thu, 21 May 2009 10:55:25 +0200
gnome-session (2.26.1-1) experimental; urgency=low
* 10_session_save.patch: fix bug that leads to saving the session
every time a SaveYourselfComplete request is received.
* New upstream release.
+ Refresh or regenerate patches.
-- Josselin Mouette <joss@debian.org> Tue, 14 Apr 2009 19:24:09 +0200
gnome-session (2.26.0.90-1) experimental; urgency=low
* New upstream release.
* Require gnome-settings-daemon 2.26 for the startup mechanism change.
* Don’t require gnome-control-center, everything needed should be in
g-s-d now.
* 01_ignore-gdm-lang.patch: dropped, merged upstream.
* 02_gsd-spawn.patch: removed; fixed upstream in a different way.
* 03_powermanagement.patch: dropped, upstream finally standardized the
logout dialog.
* 04_at-spi_startup.patch, 09_splash_hide.patch,
10_update_notifier.patch: dropped, obsolete.
* Rename 90_autoconf-autoheader.patch to 90_relibtoolize.patch and
regenerate it for the new version.
* Remove files corresponding to obsolete components.
* Remove gnome-wm from the default session, it has a startup file now.
* Remove debian/gnome-wm and patch the upstream version with
01_gnome-wm.patch instead.
* Document how to change the Window Manager in README.Debian.
* Massive update to build-dependencies.
* Make dbus-x11 and policykit-gnome dependencies.
* Remove manpage hack, not necessary anymore.
* Install all autostart stuff in /usr/share, not in /etc.
* 10_session_save.patch: new patch, based on the patch by Ghee Teo.
Enable session saving from the capplet again, and make it work on
the manager side.
* Use patch-translations.mk, require gnome-pkg-tools 0.13.
* Add translations based on the strings in gnome-session 2.22.
* Break gnome-panel < 2.26, since previous versions (2.22 and our
patched 2.24) are not able to talk to this version.
-- Josselin Mouette <joss@debian.org> Sat, 11 Apr 2009 15:30:31 +0200
gnome-session (2.22.3-3) unstable; urgency=low
* 55gnome-session_gnomerc: change XDG_DATA_DIRS to include
/usr/share/gnome when gnome-session is being launched.
* defaults.list: move the defaults from gnome-vfs.
+ Add some subtypes of text/plain to gedit defaults.
* gnome-session.install: install it in /etc/gnome.
* gnome-session.links: link it from /usr/share/gnome/applications.
* Standards version is 3.8.1.
* Conflict and replace with the older libgnomevfs2-common versions.
-- Josselin Mouette <joss@debian.org> Thu, 19 Mar 2009 22:25:42 +0100
gnome-session (2.22.3-2) unstable; urgency=low
* Recommend dbus-x11 instead of dbus for the availability of
dbus-launch.
* 04_at-spi_startup.patch: new patch. Do not try to start at-spi if it
is not installed. Closes: #501407.
* Remove build-dependency on esound.
-- Josselin Mouette <joss@debian.org> Fri, 24 Oct 2008 21:07:03 +0200
gnome-session (2.22.3-1) unstable; urgency=low
* New upstream bugfix release:
+ debian/patches/90_autoconf-autoheader.patch:
- Updated for the new version.
* debian/control.in:
+ Update Standards-Version to 3.8.0, no additional changes needed.
-- Sebastian Dröge <slomo@debian.org> Mon, 30 Jun 2008 12:28:28 +0200
gnome-session (2.22.2-1) unstable; urgency=low
[ Josselin Mouette ]
* Drop dependency on gnome-power-manager. Closes: #472202.
[ Sam Morris ]
* Refresh 01_ignore-gdm-lang.patch, 02_gsd-spawn.patch, 09_splash_hide.patch
and 90_autoconf-autoheader.patch.
[ Josselin Mouette ]
* New upstream release, includes migration of the trash to the new
location.
-- Josselin Mouette <joss@debian.org> Wed, 28 May 2008 02:10:26 +0200
gnome-session (2.22.0-2) unstable; urgency=low
* Upload to unstable.
-- Sebastian Dröge <slomo@debian.org> Wed, 19 Mar 2008 02:34:13 +0100
gnome-session (2.22.0-1) experimental; urgency=low
[ Josselin Mouette ]
* default.session: remove gnome-cups-icon from the default session.
[ Loic Minier ]
* Update 02_gsd-spawn's header to give a bottom line explanation on the
rationale for the change as I keep forgetting why we need tihs.
[ Josselin Mouette ]
* 02_gsd-spawn.patch: fix cosmetic issues asked by upstream.
[ Sebastian Dröge ]
* New upstream stable release:
+ Upload to experimental first because of intrusive changes.
+ debian/control.in:
- Update build dependencies and dependencies.
+ debian/patches/02_gsd-spawn.patch:
- Updated to apply cleanly again.
+ debian/patches/90_from_bugzilla_fix_session_sounds.patch:
- Dropped, merged upstream.
+ debian/patches/90_autoconf-autoheader.patch:
- Regenerated for the new version.
-- Sebastian Dröge <slomo@debian.org> Sun, 16 Mar 2008 19:58:07 +0100
gnome-session (2.20.3-2) unstable; urgency=low
[ Loic Minier ]
* Include CDBS' utils.
[ Josselin Mouette ]
* 02_gsd-spawn.patch: updated to spawn gsd through g_spawn while
still waiting for it to answer to dbus before proceeding. This
avoids a race condition leading to applications being started
before g-s-d is ready. Closes: #454149, #465483.
-- Josselin Mouette <joss@debian.org> Sat, 16 Feb 2008 14:44:50 +0100
gnome-session (2.20.3-1) unstable; urgency=low
[ Josselin Mouette ]
* 90_from_bugzilla_fix_session_sounds.patch: fork the shell that
encapsulates esd in the root directory, so that the home directory
can be safely umounted upon logout.
[ Sebastian Dröge ]
* New upstream release with translation updates.
* Update Standards-Version to 3.7.3, no additional changes needed.
* 90_autoconf-autoheader.patch: regenerated.
* Build depend on gnome-keyring as configure checks for the
gnome-keyring-daemon binary.
-- Sebastian Dröge <slomo@debian.org> Sat, 12 Jan 2008 07:16:22 +0100
gnome-session (2.20.2-1) unstable; urgency=low
[ Josselin Mouette ]
* gnome-wm:
+ Fix indentation.
+ Support for compiz. Closes: #448560, thanks Andreas Klöckner.
+ Also use compiz if metacity is unavailable.
* 02_gsd-spawn.patch: spawn gnome-settings-daemon using g_spawn
instead of DBus. Closes: #339785.
* Require libgnome-settings-daemon-dev 1:2.20.1-2 to obtain the g-s-d
path from pkgconfig.
* Switch to quilt for patch handling.
+ Refresh 01_ignore-gdm-lang.patch.
* 90_autoconf.patch: re-run autoconf and autoheader in the sources.
* Add some references in the patch headers.
[ Loic Minier ]
* Only suggest desktop-base; the desktop meta packages should pull branding,
not gnome-session and gnome-session has a default branding anyway.
* New patch, 02_no_warning_crash, doesn't make critical warnings fatal when
the version number has 3 dots as in dev releases as this makes the desktop
too unstable.
* New upstream stable release; translation updates.
- Update patch 90_autoconf.
* Don't force an upper bound in gnome-control-center versions as this makes
updates too hard; some configuration might be missing in the interim, but
the session should still start properly.
* Rename README.debian to README.Debian.
* Disable the splash screen by default to speed up login and document how to
enable it in README.Debian.
* New patch, 10_update_notifier, adds update-notifier to the list of known
applications.
* New patch, 09_splash_hide, hides splash screen unconditionally when all
apps have been launched as to avoid it staying visible with broken apps.
* New patch, 03_powermanagement, shows hibernate option in logout dialog if
gdm supports it; will probably disappear with either the gnome-session or
the gdm rewrite.
* New patch, 90_from_bugzilla_fix_session_sounds, fixes playback of session
sounds; GNOME #466458.
* Refresh patches 03_powermanagement, 09_splash_hide, and 10_update_notifier
to apply cleanly.
* Rename patch 90_autoconf to 90_autoconf-autoheader to clarify that both
autoconf and autoheader need to be run.
-- Josselin Mouette <joss@debian.org> Wed, 28 Nov 2007 16:01:56 +0100
gnome-session (2.20.1-1) unstable; urgency=low
* New upstream bugfix release.
-- Sebastian Dröge <slomo@debian.org> Fri, 26 Oct 2007 12:21:23 +0200
gnome-session (2.20.0-2) unstable; urgency=low
* Conflict with bug-buddy << 2.20 for breakpad support.
Closes: #443638.
* 01_ignore-gdm-lang.patch: ignore GDM_LANG. This only serves the
purpose to break anything that modifies locale settings.
Closes: #445646.
-- Josselin Mouette <joss@debian.org> Thu, 11 Oct 2007 22:35:32 +0200
gnome-session (2.20.0-1) unstable; urgency=low
[ Josselin Mouette ]
* default.session: don't run vino-session as gnome-session has
included this feature for 3 years, d'uh.
[ Sebastian Dröge ]
* New upstream release, no API changes:
+ Clarifies session saving text (Closes: #259718).
* Upload to unstable, drop check-dist include.
* debian/control.in:
+ Build depend on libgtk2.0-dev (>= 2.11.1) because gdk_window_set_opacity
was added in that version but configure checks for >= 2.3.1.
-- Sebastian Dröge <slomo@debian.org> Thu, 20 Sep 2007 12:38:07 +0200
gnome-session (2.19.5-1) experimental; urgency=low
* New upstream development releases.
- Target at experimental; include check-dist.
- Add a libglib2.0-dev (>= 2.13.0) build-dep.
- Drop patch 01_splash-memory-corruption, merged upstream.
- New patch, 60_dates-no-padding, fixes build on the 8th and 9th of the
month and in August and September; GNOME #454797.
* Drop obsolete patch to display a warning when switching from GNOME 1 to
GNOME 2, 02_conversion.
* Uuencode debian/gnome-debian-splash.png instead of shipping it as a SNG;
this makes the file smaller; build-depend on sharutils (priority standard)
instead of sng (priority optional).
* New upstream development release; bug fixes and translations.
- Drop patch 60_dates-no-padding; fixed differently upstream.
-- Loic Minier <lool@dooz.org> Tue, 10 Jul 2007 18:44:14 +0200
gnome-session (2.18.3-1) unstable; urgency=low
* New upstream stable release; translation.
-- Loic Minier <lool@dooz.org> Fri, 06 Jul 2007 23:08:26 +0200
gnome-session (2.18.2-2) unstable; urgency=low
* default.session: remove gnome-volume-manager, it is now run through
the autostart facility.
* gnome-wm: add support for openbox (closes: #429729).
* 01_splash-memory-corruption.diff: patch from upstream r4382,
backported by Michel Dänzer. Fixes memory corruption with some
icons (closes: #430630, #425742).
-- Josselin Mouette <joss@debian.org> Wed, 27 Jun 2007 21:28:43 +0200
gnome-session (2.18.2-1) unstable; urgency=low
* New upstream stable release.
- Drop patch 01_clever_save; merged upstream.
-- Loic Minier <lool@dooz.org> Mon, 28 May 2007 16:18:59 +0200
gnome-session (2.18.0-2) unstable; urgency=low
[ Sven Arvidsson ]
* Add the only missing manpage (Closes: #252006)
[ Josselin Mouette ]
* 01_clever_save.diff: stolen from upstream's SVN. Be more clever when
saving the session, so that e.g. multiple xterms are not forgotten.
Closes: #364463.
-- Josselin Mouette <joss@debian.org> Tue, 15 May 2007 20:45:31 +0200
gnome-session (2.18.0-1) unstable; urgency=low
* New upstream major stable release; fixes and translations.
- Pass --with-at-spi-registryd-directory=/usr/lib/at-spi to configure.
- Drop patches 05_session_save, 07_kill_esd, merged upstream.
* Upload to unstable; drop check-dist include.
* Wrap build-deps and deps.
* Bump up Debhelper compatibility level to 5.
* Fix URL in copyright.
* Set LDFLAGS directly instead of via DEB_CONFIGURE_SCRIPT_ENV; build-dep on
cdbs >= 0.4.41.
* Prepend -z defs to LDFLAGS for additional safety.
* Rewrite rules generating the PNG splash; misc cleanups.
* Fix copyright to really document licensing and copyright holders.
-- Loic Minier <lool@dooz.org> Sun, 22 Apr 2007 15:23:12 +0200
gnome-session (2.16.3-2) experimental; urgency=low
* Merge SVN 2.14.3-1 up-to 2.14.3-6; r7581:8951.
- Drop patch 06_ro_po, merged upstream.
-- Loic Minier <lool@dooz.org> Sat, 17 Mar 2007 12:24:06 +0100
gnome-session (2.16.3-1) experimental; urgency=medium
[ Josselin Mouette ]
* Quote the readlink call to handle the case where the
x-session-manager alternative is broken (closes: #403931).
* Medium urgency because it has the potential to cause all X sessions
to fail starting.
[ Loic Minier ]
* Add a get-orig-source target to retrieve the upstream tarball.
* Include the new check-dist Makefile to prevent accidental uploads to
unstable; bump build-dep on gnome-pkg-tools to >= 0.10.
* New upstream stable release; bug fixes and translations.
-- Loic Minier <lool@dooz.org> Sat, 17 Mar 2007 12:04:03 +0100
gnome-session (2.16.2-1) experimental; urgency=low
[ Josselin Mouette ]
* New upstream release.
* gnome-debian-splash.sng: updated.
* Update build-dependencies.
* Build-depend on libdbus-glib-1-dev and libgnome-keyring-dev.
* 03_implicit_conversion.diff: removed, integrated upstream.
* 05_session_save.diff: patch the session properties capplet.
+ Add a "save current session" button.
+ Remove the "ask on exit" checkbox, as it isn't used anymore.
+ Add 36 translations based on the existing ones (minus the "- ").
+ Remove the annoying "session saved" dialog from the session
manager.
[ Loic Minier ]
* Fix watch file to track stable releases and use HTTP.
[ Josselin Mouette ]
* Build-depend on libgnome-settings-daemon-dev.
* Tighten dependencies on gnome-control-center with ${gnome:Version}.
* Require gnome-pkg-tools 0.6.
* Call gnome-version.mk.
* 04_manpages.diff: removed, integrated upstream.
* 05_session_save.diff: update patch for new version.
-- Josselin Mouette <joss@debian.org> Mon, 27 Nov 2006 20:43:07 +0100
gnome-session (2.14.3-6) unstable; urgency=low
* Add a get-orig-source target to retrieve the upstream tarball.
-- Loic Minier <lool@dooz.org> Sat, 13 Jan 2007 23:30:57 +0100
gnome-session (2.14.3-5) unstable; urgency=medium
* Quote the readlink call to handle the case where the
x-session-manager alternative is broken (closes: #403931).
* Medium urgency because it has the potential to cause all X sessions
to fail starting.
-- Josselin Mouette <joss@debian.org> Wed, 20 Dec 2006 21:37:44 +0100
gnome-session (2.14.3-4) unstable; urgency=low
* 06_ro_po.diff: new Romanian translation from Eddy Petrișor
(closes: #403595).
-- Josselin Mouette <joss@debian.org> Tue, 19 Dec 2006 21:25:14 +0100
gnome-session (2.14.3-3) unstable; urgency=low
* gnome-debian-splash.sng: grab new version, without the "2.14"
string.
* 05_session_save.diff: pack the "save session" button correctly.
-- Josselin Mouette <joss@debian.org> Tue, 10 Oct 2006 19:14:02 +0200
gnome-session (2.14.3-2) unstable; urgency=low
* 05_session_save.diff: patch the session properties capplet.
+ Allow editing of sessions (bugzilla #336820).
+ Add a "save current session" button.
+ Remove the "ask on exit" checkbox, as it isn't used anymore.
+ Add 36 translations based on the existing ones (minus the "- ").
+ Remove the annoying "session saved" dialog from the session
manager.
-- Josselin Mouette <joss@debian.org> Wed, 4 Oct 2006 22:26:30 +0200
gnome-session (2.14.3-1) unstable; urgency=low
* New upstream release.
- Drop 01_create_autostart patch, merged upstream.
* Suggest gnome-user-guide | gnome2-user-guide. (Closes: #371106, #371107,
#371108, #371109, #371110, #371111, #371112, #371113, #371114, #371115,
#371116, #371117, #371118, #371119, #371120, #371121, #371122, #371123,
#371124, #371125, #371126, #371127, #371128, #371129, #371130, #371131,
#371132, #371133)
-- Loic Minier <lool@dooz.org> Tue, 8 Aug 2006 11:15:38 +0200
gnome-session (2.14.2-1) unstable; urgency=low
* New upstream release.
-- Loic Minier <lool@dooz.org> Wed, 31 May 2006 18:36:45 +0200
gnome-session (2.14.1-2) unstable; urgency=low
* 03_implicit_conversion.diff: Fix for implicit conversion
(closes: #368062).
-- Josselin Mouette <joss@debian.org> Thu, 25 May 2006 00:49:18 +0200
gnome-session (2.14.1-1) unstable; urgency=low
* New upstream release.
* Standards-version is 3.7.2.
* 07_kill_esd.diff: updated.
* Build-depend on libwrap0-dev.
-- Josselin Mouette <joss@debian.org> Thu, 18 May 2006 07:51:21 +0200
gnome-session (2.14.0-2) unstable; urgency=low
* Update watch file.
* 01_create_autostart.diff: create the autostart directory when it
doesn't exist (closes: #360590, #360431).
-- Josselin Mouette <joss@debian.org> Fri, 7 Apr 2006 09:59:27 +0200
gnome-session (2.14.0-1) unstable; urgency=low
[ Loic Minier ]
* Launch esd with a cwd of "/" to avoid blocking pam_mount / pam_umount,
thanks Daniel Kahn Gillmor. (Closes: #335944)
[debian/patches/07_kill_esd.diff]
[ Josselin Mouette ]
* New upstream release.
* Build-depend on libnotify-dev.
* Enable IPv6.
* gnome-debian-splash.sng: update for GNOME 2.14.
* 02_conversion.diff: updated for the new version.
* Build-depend on libgnome-desktop-dev.
-- Josselin Mouette <joss@debian.org> Sat, 1 Apr 2006 16:58:40 +0200
gnome-session (2.12.0-4) unstable; urgency=low
* Only depend on dbus, dbus-1-utils isn't necessary.
* rules: don't remove empty directories (really closes: #340765).
-- Josselin Mouette <joss@debian.org> Sun, 22 Jan 2006 15:35:55 +0100
gnome-session (2.12.0-3) unstable; urgency=low
* 03_splash.diff: removed.
* gconf-defaults: ship the defaults here.
* control.in: require debhelper 5.0.13.
-- Josselin Mouette <joss@debian.org> Sun, 8 Jan 2006 12:02:30 +0100
gnome-session (2.12.0-2) unstable; urgency=low
* dirs: create /usr/share/images/desktop-base (closes: #340765).
* Upload to unstable.
-- Josselin Mouette <joss@debian.org> Sun, 8 Jan 2006 01:27:42 +0100
gnome-session (2.12.0-1) experimental; urgency=low
* New upstream release.
* Edit upstream logo to add the debian swirl:
+ Add it, using the sng format.
+ Build-depend on sng.
+ Call sng in the build target.
+ Install it in /usr/share/pixmaps/splash/.
+ 03_splash.diff: use it by default.
+ Add it to the desktop-base alternative.
+ Only recommend desktop-base.
* 02_conversion.diff: update to apply cleanly.
* Update watch file.
-- Josselin Mouette <joss@debian.org> Sun, 9 Oct 2005 03:19:58 +0200
gnome-session (2.10.0-8) unstable; urgency=low
* rules: set --as-needed again.
* Rebuild against the latest gconf2 (closes: #330476, #330913).
* Build-depend on gconf2 2.10.1-6.
-- Josselin Mouette <joss@debian.org> Mon, 3 Oct 2005 20:57:52 +0200
gnome-session (2.10.0-7) unstable; urgency=medium
* The "now all dependencies in GNOME are back to the old times
madness, why not do the same here?" release.
* rules: remove --as-needed (closes: #325639).
* default.session:
+ Remove gnome-smproxy. It slows down the startup process and
sometimes hangs.
+ Remove magicdev, which is deprecated.
-- Josselin Mouette <joss@debian.org> Sun, 4 Sep 2005 11:13:41 +0200
gnome-session (2.10.0-6) unstable; urgency=high
Matt Kraai <kraai@ftbfs.org>:
* Added a build-dependency on libxau-dev to fix FTBFS. (Closes: #323327)
Loic Minier <lool@dooz.org>:
* Recommend the dbus-1-utils package as it is xorg starts a dbus session by
default now (use-session-dbus in /etc/X11/Xsession.options).
(Closes: #320015)
-- J.H.M. Dassen (Ray) <jdassen@debian.org> Sun, 28 Aug 2005 14:52:19 +0200
gnome-session (2.10.0-5) unstable; urgency=medium
* Depend on gnome-control-center instead of capplets.
* Remove unuseful conflicts field.
* Fix a typo in the description (closes: #299992).
* Standards-version is 3.6.2.
-- Josselin Mouette <joss@debian.org> Sat, 25 Jun 2005 19:11:59 +0200
gnome-session (2.10.0-4) unstable; urgency=low
* Undo previous changes, we are renaming the menus.
-- Sebastien Bacher <seb128@debian.org> Thu, 9 Jun 2005 11:53:39 +0200
gnome-session (2.10.0-3) unstable; urgency=low
* 70gnome-session_menus: set the XDG_CONFIG_DIRS environment variable, so
that the menus use GNOME's implementation.
* gnome-session.install: install the file in /etc/X11/Xsession.d.
-- Josselin Mouette <joss@debian.org> Wed, 8 Jun 2005 23:09:56 +0200
gnome-session (2.10.0-2) unstable; urgency=low
* Upload to unstable.
* Update debian/watch.
* rules: avoid the LDFLAGS hack overwriting all environment.
-- Josselin Mouette <joss@debian.org> Tue, 7 Jun 2005 21:47:24 +0200
gnome-session (2.10.0-1) experimental; urgency=low
* New upstream release.
* Update build-dependencies.
* 06_shutdown.diff: removed, similar functionality is integrated upstream.
* 20_ca_po.diff: removed, integrated upstream.
-- Josselin Mouette <joss@debian.org> Wed, 13 Apr 2005 20:15:32 +0200
gnome-session (2.8.1-6) unstable; urgency=medium
* Use --as-needed option in LDFLAGS to reduce the dependencies.
+ Incidentally removes the dependency upon libhowl0 (closes: #298849).
* gnome-wm: add support for fvwm (closes: #289969).
-- Josselin Mouette <joss@debian.org> Thu, 10 Mar 2005 21:44:15 +0100
gnome-session (2.8.1-5) unstable; urgency=medium
* 20_ca_po.diff: fixes to the Catalan translation.
-- Jordi Mallach <jordi@debian.org> Fri, 7 Jan 2005 17:54:47 +0100
gnome-session (2.8.1-4) unstable; urgency=medium
* 09_splash_hide.diff: disabled, this patch only manages to make things
worse (closes: #284090).
* postinst,prerm: install alternative for the splash image
(closes: #282653).
-- Josselin Mouette <joss@debian.org> Sun, 5 Dec 2004 19:54:49 +0100
gnome-session (2.8.1-3) unstable; urgency=low
* 09_splash_hide.diff: stop displaying splash when all applications are
launched, it avoids waiting when some of them are broken. Thanks seb128.
* 07_kill_esd.diff: kill esd upon logout (closes: #187730).
-- Josselin Mouette <joss@debian.org> Tue, 23 Nov 2004 15:08:47 +0100
gnome-session (2.8.1-2) unstable; urgency=low
* Forward-port changes from 2.6 branch:
+ 55gnome-session_gnomerc: support arguments to gnome-session.
+ control.in:
- Depend on capplets.
- Recommend nautilus, gnome-panel and a window manager.
+ patches/05_debian_gnome_upgrade_check.diff, patches/00_Makefile.am.diff,
patches/01_autoreconf.diff, gnome-1-to-2, gnome-launchers-1-to-2,
gnome-panel-1-to-2, gnome-stuff-1-to-2, nautilus-666666.desktop:
removed.
+ gnome-session.install: don't install those.
+ rules: don't have to fix the permissions.
+ 02_conversion.diff: only print a warning, don't launch the broken
upgrade script
+ gnome-volume-daemon: removed, obsolete.
* Upload to unstable.
* control.in:
+ Bump build-dependencies to 2.8 versions.
+ Build-depend on libgconf2-dev, not gconf2.
-- Josselin Mouette <joss@debian.org> Fri, 19 Nov 2004 14:40:42 +0100
gnome-session (2.8.1-1) experimental; urgency=low
* New upstream release.
* debian/patches/03_splash.diff: (change from trunk)
- use the desktop-splash alternative as the default splash
* debian/control{,.in}: (change from trunk)
- the change above required desktop-base 0.3.15, so updated
Depends
* debian/patches/00_acinclude.m4.diff:
- removed, not needed anymore
* debian/patches/01_autoreconf.patch:
- updated, result of "libtoolize --force --copy;
aclocal-1.7; autoheader; automake-1.7 -acf; autoconf; rm -rf
autom4te.cache" with the 00_ patch applied.
-- Gustavo Noronha Silva <kov@debian.org> Sun, 24 Oct 2004 12:47:32 -0300
gnome-session (2.8.0-1) experimental; urgency=low
* New upstream release.
* debian/patches/01_autoreconf.patch:
- updated.
-- Sebastien Bacher <seb128@debian.org> Wed, 29 Sep 2004 21:43:42 +0200
gnome-session (2.6.2-5) unstable; urgency=low
* 06_shutdown.diff: test for /var/run/gdm.pid (closes: #261969).
-- Josselin Mouette <joss@debian.org> Sat, 31 Jul 2004 12:23:23 +0200
gnome-session (2.6.2-4) unstable; urgency=low
* 06_shutdown.diff: new, provide reboot or halt using gdmflexiserver if
available.
* rules: remove halt/reboot configure switches.
-- Josselin Mouette <joss@debian.org> Mon, 26 Jul 2004 23:22:29 +0200
gnome-session (2.6.2-3) unstable; urgency=low
* Rebuild with working dh_gconf (closes: #258139, #258144).
-- Josselin Mouette <joss@debian.org> Thu, 8 Jul 2004 16:44:01 +0200
gnome-session (2.6.2-2) unstable; urgency=low
* gnome-volume-daemon:
+ removed, it didn't register correctly with the SM (closes: #253729).
+ gnome-session.install: don't install it.
* default.session:
+ start both magicdev and g-v-m, they now conflict with each other.
-- Josselin Mouette <joss@debian.org> Tue, 6 Jul 2004 22:30:07 +0200
gnome-session (2.6.2-1) unstable; urgency=low
* New upstream release.
* 01_autoreconf.patch: updated, result of "libtoolize --force --copy;
aclocal-1.7; autoheader; automake-1.7 -acf; autoconf; rm -rf
autom4te.cache" with 00_ patches applied.
* gnome-volume-daemon:
+ new script, runs gnome-volume-manager if available, or falls back
to magicdev.
+ gnome-session.install: install it.
+ rules: chmod it.
+ default.session: use it instead of gnome-volume-manager.
* gnome-wm: store the window manager in the "current" gconf key, not the
"default" one.
-- Josselin Mouette <joss@debian.org> Tue, 29 Jun 2004 23:25:01 +0200
gnome-session (2.6.1-6) unstable; urgency=low
* Gustavo Noronha Silva <kov@debian.org>
- debian/README.Debian:
+ did some small cleanups
+ wrote a small explanation of why the splash screen is
different from GNOME's upstream and how to get it back
and set it up
* Josselin Mouette <joss@debian.org>
- debian/default.session:
+ add gnome-volume-manager, gnome-cups-icon and vino-session to the
default session.
- debian/postinst:
+ make gnome-session's priority 50, to be greater than KDE. Thus the
default DM is gdm and the default session is gnome-session.
-- Josselin Mouette <joss@debian.org> Thu, 24 Jun 2004 14:02:52 +0200
gnome-session (2.6.1-5) unstable; urgency=low
* Grrrr, configure doesn't check for libXmu while it is needed. Add
libxmu-dev to build-depends.
-- Josselin Mouette <joss@debian.org> Fri, 28 May 2004 15:05:42 +0200
gnome-session (2.6.1-4) unstable; urgency=low
* Add explicit build dependencies on X libraries (closes: #251367).
-- Josselin Mouette <joss@debian.org> Fri, 28 May 2004 12:13:39 +0200
gnome-session (2.6.1-3) unstable; urgency=low
* Upload to unstable.
* Tighten dependencies on liborbit2-dev.
-- Josselin Mouette <joss@debian.org> Wed, 26 May 2004 16:11:18 +0200
gnome-session (2.6.1-2) experimental; urgency=low
* 55gnome-session_gnomerc: handle the case where we are running
x-session-manager, symlinked to gnome-session.
-- Josselin Mouette <joss@debian.org> Thu, 22 Apr 2004 11:37:15 +0200
gnome-session (2.6.1-1) experimental; urgency=low
* New upstream release.
* Source .gnomerc at startup (closes: #242065):
- gnome-session.install: install 55gnome-session_gnomerc in Xsession
directory.
- 55gnome-session_gnomerc: source .gnomerc if we are running
gnome-session.
* gnome-wm: get the default window manager from gconf. It now uses the
/desktop/gnome/applications/window_manager/default key
(closes: #241361, #244694). The x-window-manager alternative is now only
used when nothing else is found.
* patches/01_autoreconf.diff: updated, result of
libtoolize --force --copy; aclocal-1.7; autoheader; automake-1.7 -acf;
autoconf; rm -rf autom4te.cache.
-- Josselin Mouette <joss@debian.org> Wed, 21 Apr 2004 17:12:10 +0200
gnome-session (2.6.0-3) experimental; urgency=low
* rules: force poweroff and reboot paths (closes: #242091)
* gnome-wm: don't set the gconf key, it is unused.
-- Josselin Mouette <joss@debian.org> Wed, 7 Apr 2004 12:31:16 +0200
gnome-session (2.6.0-2) experimental; urgency=low
* Move gnome-sesssion.install to gnome-session.install.
* Forward-port changes from 2.4.2-4:
+ Use metacity by default:
- gnome-wm: use metacity or sawfish when it is available
- default.session: let gnome-wm discover the window manager
+ docs: removed, cdbs takes care of these.
+ postinst,prerm: remove gconf stuff, dh_gconf does it for us.
+ control.in: require debhelper 4.1.84
+ Provide a session for the display managers:
- add gnome-session.desktop
- gnome-session.install: install it
+ patches/:
- 01_configure.diff, 03_Makefile.in.diff: removed
- 00_Makefile.am.diff patches gnome-session/Makefile.am
+ Use the splash screen from desktop-base by default.
- patches/03_splash.diff: for the code and gconf stuff
- control.in: depend on desktop-base.
+ control.in: don't depend on debianutils, woody provides a sufficient
version.
+ fix permissions:
- compat: use debhelper v4
- rules: chmod 755 the debian scripts
* control.in: require 2.6 versions of packages.
* patches/:
+ updated 00_acinclude.m4.diff includes a copy of
gnome2-macros/compiler-flags.m4 as aclocal 1.7 seems unable to
find it.
+ updated 01_autoreconf.diff is the result of running
libtoolize --force --copy; aclocal; autoheader; automake -acf;
autoconf.
+ update patches/03_splash.diff for the new version.
-- Josselin Mouette <joss@debian.org> Thu, 1 Apr 2004 15:33:35 +0200
gnome-session (2.6.0-1) experimental; urgency=low
* New upstream release
* GNOME Team Upload
* Gustavo Noronha Silva <kov@debian.org>:
+ debian/control.in:
- set maintainer to Josselin Mouette <joss@debian.org>
- Build-Depends on cdbs and gnome-pkg-tools
+ debian/patches/*:
- converted all from dpatch to cdbs' simple-patch, some
of them were regenerated for various reasons, including
failure on apply and not including diff for Makefile.am
+ debian/rules:
- use cdbs
+ gnome-session.install:
- install some debian specific files that were installed
manually through debian/rules before
-- Gustavo Noronha Silva <kov@debian.org> Sun, 28 Mar 2004 13:23:41 -0300
gnome-session (2.4.2-2) unstable; urgency=low
* Orphaned package.
-- Christian Marillat <marillat@debian.org> Fri, 19 Mar 2004 15:50:59 +0100
gnome-session (2.4.2-1) unstable; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Wed, 14 Jan 2004 20:47:13 +0100
gnome-session (2.4.1-3) unstable; urgency=low
* debian/prerm Unregister schemas file from the database.
-- Christian Marillat <marillat@debian.org> Fri, 9 Jan 2004 15:42:34 +0100
gnome-session (2.4.1-2) unstable; urgency=low
* Build with --with-window-manager=metacity (CLoses: #216769)
* Update desktop migration from .gnome-desktop to Desktop
* Update Build-dependencies to GNOME 2.4 packages
-- Christian Marillat <marillat@debian.org> Sat, 1 Nov 2003 16:45:42 +0100
gnome-session (2.4.1-1) unstable; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Sat, 18 Oct 2003 17:27:21 +0200
gnome-session (2.2.2-4) unstable; urgency=low
* Fix broken manpage (thanks to Marcin Owsiany) (Closes: #204604)
-- Christian Marillat <marillat@debian.org> Sun, 10 Aug 2003 20:10:08 +0200
gnome-session (2.2.2-3) unstable; urgency=low
* Fix typo in gnome-session.1 (Closes: #192575)
-- Christian Marillat <marillat@debian.org> Mon, 14 Jul 2003 15:25:48 +0200
gnome-session (2.2.2-2) unstable; urgency=low
* Add changes from Greg Hudson for conversion scripts. Thanks.
-- Christian Marillat <marillat@debian.org> Wed, 28 May 2003 21:55:00 +0200
gnome-session (2.2.2-1) unstable; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Fri, 16 May 2003 17:22:21 +0200
gnome-session (2.2.1-1) unstable; urgency=low
* New upstream release.
* Cleanup debian/prerm (Closes: #180928)
-- Christian Marillat <marillat@debian.org> Tue, 11 Mar 2003 14:16:20 +0100
gnome-session (2.2.0.2-1) unstable; urgency=low
* New upstream release.
* Add a note about GNOME 2 compliant window manager (Closes: #174021)
-- Christian Marillat <marillat@debian.org> Tue, 4 Feb 2003 15:26:22 +0100
gnome-session (2.2.0.1-1) unstable; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Wed, 22 Jan 2003 13:20:07 +0100
gnome-session (2.1.90-1) unstable; urgency=low
* New upstream releae.
-- Christian Marillat <marillat@debian.org> Sun, 19 Jan 2003 15:27:47 +0100
gnome-session (2.0.9-3) unstable; urgency=low
* FIx manpage for gnome-session-save (Closes: #171661)
-- Christian Marillat <marillat@debian.org> Wed, 4 Dec 2002 12:47:04 +0100
gnome-session (2.0.9-2) unstable; urgency=low
* New pacthe against gnome-session/Makefile.in to really add the binaries
conversion.
-- Christian Marillat <marillat@debian.org> Wed, 27 Nov 2002 13:11:27 +0100
gnome-session (2.0.9-1) unstable; urgency=low
* New upstream release.
* Fix lintian warnings with manpages.
-- Christian Marillat <marillat@debian.org> Fri, 15 Nov 2002 14:26:18 +0100
gnome-session (2.0.8-8) unstable; urgency=low
* Handle fully-qualified panel path in conversion script.
-- Christian Marillat <marillat@debian.org> Wed, 6 Nov 2002 17:14:54 +0100
gnome-session (2.0.8-7) unstable; urgency=low
* Fix wrong indentation (Closes: #167454)
-- Christian Marillat <marillat@debian.org> Sat, 2 Nov 2002 19:27:57 +0100
gnome-session (2.0.8-6) unstable; urgency=low
* Colin's fix :
* Correctly transitions the background
* Handles the multiload applet
* Handles aligned panels
* Tries to convert menu items
* Doesn't crash on invalid UTF-8
* Doesn't crash on an empty launchers dir
* Me :
* Don't try to overwrite gconf gnome-terminal configuration
-- Christian Marillat <marillat@debian.org> Fri, 1 Nov 2002 18:05:20 +0100
gnome-session (2.0.8-5) unstable; urgency=low
* Add a note in the confirmation dialog box for how to report bugs.
-- Christian Marillat <marillat@debian.org> Mon, 28 Oct 2002 21:01:02 +0100
gnome-session (2.0.8-4) unstable; urgency=low
* Oops, forget to apply yesterday changes in conversion code.
-- Christian Marillat <marillat@debian.org> Mon, 28 Oct 2002 17:32:53 +0100
gnome-session (2.0.8-3) unstable; urgency=low
* Fix gnome-wm. Gnome don't like symlink.
* This package contains conversion scripts for GNOME 1 to GNOME 2 (Closes: #153682)
* Upload to unstable
-- Christian Marillat <marillat@debian.org> Mon, 28 Oct 2002 11:34:22 +0100
gnome-session (2.0.8-2) experimental; urgency=low
* Uploaded officially to experimental
-- Christian Marillat <marillat@debian.org> Tue, 22 Oct 2002 18:00:11 +0200
gnome-session (2.0.8-1.1upgradetest) experimental; urgency=low
* EXPERIMENTAL TESTING RELEASE
* Add upgrade scripts.
-- Colin Walters <walters@debian.org> Sat, 19 Oct 2002 22:54:05 -0400
gnome-session (2.0.8-1) experimental; urgency=low
* New upstream release.
* Add metacity in gnome-wm
-- Christian Marillat <marillat@debian.org> Mon, 14 Oct 2002 16:09:35 +0200
gnome-session (2.0.7-4) experimental; urgency=low
* Change the default window manager in the default sesion file by
x-window-manager (was gnome-wm)
-- Christian Marillat <marillat@debian.org> Wed, 9 Oct 2002 23:43:32 +0200
gnome-session (2.0.7-3) experimental; urgency=low
* Upload with original tarball.
-- Christian Marillat <marillat@debian.org> Sun, 29 Sep 2002 17:40:55 +0200
gnome-session2 (2.0.7-2) experimental; urgency=low
* Update to standards version 3.5.7
* Upload without the 2 suffix
* Update libgnomeui-dev build-dependency to 2.0.5-3
-- Christian Marillat <marillat@debian.org> Sat, 28 Sep 2002 17:59:43 +0200
gnome-session2 (2.0.7-1) experimental; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Thu, 5 Sep 2002 18:56:12 +0200
gnome-session2 (2.0.6-1) experimental; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Tue, 27 Aug 2002 10:38:48 +0200
gnome-session2 (2.0.5-3) experimental; urgency=low
* Build against the latest gconf2 1.2.1-2.1 (Closes: #157727)
-- Christian Marillat <marillat@debian.org> Thu, 22 Aug 2002 19:04:39 +0200
gnome-session2 (2.0.5-2) experimental; urgency=low
* Add esound in build-depends
* Build against the latest libgnomevfs2-dev 2.0.2-4
-- Christian Marillat <marillat@debian.org> Fri, 16 Aug 2002 17:31:02 +0200
gnome-session2 (2.0.5-1) experimental; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Thu, 8 Aug 2002 16:28:59 +0200
gnome-session2 (2.0.4-1) experimental; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Mon, 5 Aug 2002 19:40:25 +0200
gnome-session2 (2.0.3-1) experimental; urgency=low
* New upstream release.
* Use gconftool-2 to store window-manager preference
-- Christian Marillat <marillat@debian.org> Tue, 30 Jul 2002 18:16:53 +0200
gnome-session2 (2.0.2-1) experimental; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Mon, 15 Jul 2002 15:20:51 +0200
gnome-session2 (2.0.1-1) experimental; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Mon, 17 Jun 2002 15:46:23 +0200
gnome-session2 (2.0.0-1) experimental; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Mon, 10 Jun 2002 16:03:08 +0200
gnome-session2 (1.5.21-1) experimental; urgency=low
* new upstream release.
-- Christian Marillat <marillat@debian.org> Tue, 4 Jun 2002 16:34:27 +0200
gnome-session2 (1.5.20-1) experimental; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Tue, 28 May 2002 15:22:12 +0200
gnome-session2 (1.5.19-3) experimental; urgency=low
* debian/rules Add GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 in install target.
* debian/postinst check if schemas files are present before calling
gconftool-2
-- Christian Marillat <marillat@debian.org> Mon, 27 May 2002 16:03:24 +0200
gnome-session2 (1.5.19-2) experimental; urgency=low
* Fix a typo in postinst (Closes: #147600)
-- Christian Marillat <marillat@debian.org> Tue, 21 May 2002 11:15:32 +0200
gnome-session2 (1.5.19-1) experimental; urgency=low
* New upstream release
* Add support for DEB_HOST_GNU_TYPE DEB_BUILD_GNU_TYPE and
DEB_BUILD_OPTIONS
-- Christian Marillat <marillat@debian.org> Wed, 15 May 2002 20:04:03 +0200
gnome-session2 (1.5.18-1) experimental; urgency=low
* new upstream release.
-- Christian Marillat <marillat@debian.org> Mon, 29 Apr 2002 20:45:49 +0200
gnome-session2 (1.5.17-1) experimental; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Mon, 22 Apr 2002 16:34:38 +0200
gnome-session2 (1.5.16-1) experimental; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Wed, 17 Apr 2002 15:41:33 +0200
gnome-session2 (1.5.15-1) experimental; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Mon, 1 Apr 2002 22:33:26 +0200
gnome-session2 (1.5.13-1) experimental; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Fri, 29 Mar 2002 16:38:29 +0100
gnome-session2 (1.5.11-1) experimental; urgency=low
* new upstream release.
-- Christian Marillat <marillat@debian.org> Tue, 26 Feb 2002 15:10:17 +0100
gnome-session2 (1.5.10-3) experimental; urgency=low
* Fix broken postinst. Thanks to Mark Nelson.
-- Christian Marillat <marillat@debian.org> Mon, 25 Feb 2002 17:44:33 +0100
gnome-session2 (1.5.10-2) experimental; urgency=low
* Should build-depends on intltool
-- Christian Marillat <marillat@debian.org> Mon, 25 Feb 2002 15:37:19 +0100
gnome-session2 (1.5.10-1) experimental; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Mon, 18 Feb 2002 22:31:35 +0100
gnome-session2 (1.5.9-1) unstable; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Fri, 15 Feb 2002 00:40:12 +0100
gnome-core2 (1.5.7-1) experimental; urgency=low
* New upstrema release.
-- Christian Marillat <marillat@debian.org> Tue, 5 Feb 2002 14:41:01 +0100
gnome-core2 (1.5.4-1) experimental; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Sun, 20 Jan 2002 16:21:40 +0100
gnome-core (1.4.0.4-16) unstable; urgency=low
* Fix typo in gnome-terminal.wrapper (Closes: #127768)
* Remove gnome-hint patche (Closes: #121390, #129184)
* debian/control Replace libpng-dev by libpng2-dev in Build-Depends
(Closes: #128377)
-- Christian Marillat <marillat@debian.org> Mon, 14 Jan 2002 15:04:52 +0100
gnome-core (1.4.0.4-15) unstable; urgency=low
* Build against the latest gnome-libs to update the libzvt2 dependency
(Closes: #127309, #127271)
* debian/control Replace libpng2-dev by libpng-dev in Build-Depends.
* debian/control Build-depends on libzvt-dev (>= 1.4.1.2-9)
-- Christian Marillat <marillat@debian.org> Tue, 1 Jan 2002 15:27:43 +0100
gnome-core (1.4.0.4-14) unstable; urgency=low
* Fix typo in gnome-terminal.1 (Closes: #123073)
* Fix base page for doc-base in libpanel-applet-dev package.
* Fix typo in gnome-help documentation (Closes: #126566)
* Apply patch to allows meta functionnality in gnome-terminal (Closes: #50427)
-- Christian Marillat <marillat@debian.org> Thu, 27 Dec 2001 14:47:36 +0100
gnome-core (1.4.0.4-13) unstable; urgency=low
* Default font for gnome-terminal is "fixed" only (Closes: #117126)
* Patch against gnome-hint.c Don't use gettext for font descriptor
(Closes: #116606)
* Patch against gnome-about/Makefile.am to use new gdk_pixbuf include path
(Closes: #120312)
* Revert my change on logout.c Only root can shutdown/reboot from the
panel (Closes: #119316, #120127)
-- Christian Marillat <marillat@debian.org> Tue, 20 Nov 2001 11:36:05 +0100
gnome-core (1.4.0.4-12) unstable; urgency=low
* gnome-wm honour --default-wm (Closes: #115668)
* Build against the latest gnome-libs
-- Christian Marillat <marillat@debian.org> Sun, 21 Oct 2001 14:11:19 +0200
gnome-core (1.4.0.4-11) unstable; urgency=low
* debian/control lynx comeback in Recommends (Closes: #114142)
* debian/control replaces xml-i18n-tools by intltool (Closes: #115024)
* Fix automake 1.5 errors. Thanks to Denis Barbier (Closes: #114369)
* Build against the latest orbit (Closes: #115309)
-- Christian Marillat <marillat@debian.org> Fri, 12 Oct 2001 10:46:49 +0200
gnome-core (1.4.0.4-10) unstable; urgency=low
* Fix typo in panel/panel.hints (Closes: #113590)
* Replace lynx by w3m (Closes: #113613)
* Move gnome-terminal.desktop in gnome-terminal package (Closes: #113736)
* Move gnome-help.desktop in gnome-help package
* debian:control Add Replaces: gnome-panel-data (<= 1.4.0.4-9) for above
* Patch against gsm/logout.c Now you can reboot/halt your machine from the
panel. This only work for root, because shutdown doesn't understand the
-a option. Read README.debian in gnome-panel package.
* debian/rules Remove less files in clean target (Closes: #114020)
-- Christian Marillat <marillat@debian.org> Mon, 1 Oct 2001 11:34:06 +0200
gnome-core (1.4.0.4-9) unstable; urgency=low
* Add Debian menu for panel and gmenu (Closes: #112176)
* Remove /var/lib/gnome on purge (Closes: #113005)
* Remove /etc/gnome/config on purge (Closes: #112994)
* Remove /etc/gnome on purge (Closes: #112995)
* debian/control replace cygnus-stylesheets by docbook-utils
-- Christian Marillat <marillat@debian.org> Mon, 24 Sep 2001 18:39:19 +0200
gnome-core (1.4.0.4-8) unstable; urgency=high
* High urgency, because the current release in testing has a missing
dependency on libpanel-applet0 and the panel package doesn't work if
libpanel-applet0 isn't installed (Closes: #111517)
* debian/control for gnome-help, move lynx from depends to recommends
(Closes: #109652)
* debian/control gnome-panel suggests fortune-mod (Closes: #110865)
* debian/control gnome-help suggests gnome-users-guide not
gnome-users-guide-en (Closes: #111200)
* Don't change cursor color (Closes: #97697)
* Change default font for gnome-terminal (Closes: #111319)
-- Christian Marillat <marillat@debian.org> Fri, 7 Sep 2001 15:06:07 +0200
gnome-core (1.4.0.4-7) unstable; urgency=low
* Fix path in gnome-session.1 (Closes: #107724)
* debian/*.sgml Use docbook 4.1
* debian/control gnome-help-data Replaces gnome-terminal (<= 1.0.55-2)
(CLoses: #107948)
-- Christian Marillat <marillat@debian.org> Wed, 8 Aug 2001 08:07:56 +0200
gnome-core (1.4.0.4-6) unstable; urgency=low
* debian/rules for dh_makeshlibs replace libcapplet0 by libpanel-applet0
(Closes: #105772)
-- Christian Marillat <marillat@debian.org> Wed, 18 Jul 2001 19:02:59 +0200
gnome-core (1.4.0.4-5) unstable; urgency=low
* Patch against gnome-edit to use EDITOR if the default gnome editor is
unavailable.
* Remove gnome-wm patch, and move the patched file in debian/
* debian/gnome-wm Try to exec $WINDOW_MANAGER before x-window-manager
(Closes: #103430
* New patch from Michael Urman to hide task names in tasklist_applet
(Closes: #104587)
-- Christian Marillat <marillat@debian.org> Sat, 14 Jul 2001 16:58:12 +0200
gnome-core (1.4.0.4-4) unstable; urgency=low
* Gnome-help Provides: man-browser, www-browser, info-browser
* Switch to debhelper V3
* Change libraries versionning to (>= 1.4.0.2-3) instead of the latest
package number.
* Build-depends on groff-base instead of groff
-- Christian Marillat <marillat@debian.org> Fri, 22 Jun 2001 17:02:37 +0200
gnome-core (1.4.0.4-3) unstable; urgency=low
* New patch: Allows to save/load the keyboard secure state (Closes: #83028)
* New patch: Remove a warning in configure
* gnome-help replace gnome-panel-data (Closes: #99499)
* Build-depends on xml-i18n-tools (>= 0.8.4.cvs.20010530-1) (Close: #98784)
-- Christian Marillat <marillat@debian.org> Sat, 2 Jun 2001 14:41:45 +0200
gnome-core (1.4.0.4-2) unstable; urgency=low
* New patch: Replace Distribution by Debian in configuration dialog box.
* New patch: Upstream patch to allow Debian menu in default configuration.
* New patch: Fix some wrong path.
* Move gnome-feedback doc from gnome-help-data to gnome-core.
-- Christian Marillat <marillat@debian.org> Tue, 15 May 2001 15:36:51 +0200
gnome-core (1.4.0.4-1) unstable; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Wed, 9 May 2001 23:56:27 +0200
gnome-core (1.4.0.3-2) unstable; urgency=low
* Remove debugging code (/tmp/languages file)
-- Christian Marillat <marillat@debian.org> Mon, 7 May 2001 16:48:18 +0200
gnome-core (1.4.0.3-1) unstable; urgency=low
* New upstream release.
* New: tooltips for long task names in tasklist_applet (Closes: #63898)
-- Christian Marillat <marillat@debian.org> Thu, 3 May 2001 15:51:58 +0200
gnome-core (1.4.0.2-3) unstable; urgency=low
* Fix wrong dif.gz file (Closes: #94499)
* Build against the latest lignome-dev (Closes: #95301, #95691)
* gnome-terminal should depends on gnome-bin (Closes: #95498)
* Doesn't build against gtkhtml this break fonts displaying (Closes: #92187)
-- Christian Marillat <marillat@debian.org> Tue, 1 May 2001 11:03:14 +0200
gnome-core (1.4.0.2-2) unstable; urgency=low
* New/old patch against manpages, never applied by upstream.
* gnome-help depends on lynx.
* Use x-terminal-emulator in gnome-download instead of xterm.
* Move gnome-convert and gnome-download from gnome-core to gnome-help.
* Move gnome-login-check from gnome-core to gnome-session.
* Move gnome-panel-add-launcher from gnome-core to gnome-panel.
* Move sesion-properties* from gnome-core to gnome-session.
* debian/control Add Replaces for the changes above.
* Write manpages (Closes: #87085)
-- Christian Marillat <marillat@debian.org> Tue, 17 Apr 2001 18:54:15 +0200
gnome-core (1.4.0.2-1) unstable; urgency=low
* New upstream release.
* Build-depends on latest gettext (Closes: #93198)
* Icon box in menu editor is back (Closes: #91938)
* Build-depends on latest xml-i18n-tools and libgnome-dev
-- Christian Marillat <marillat@debian.org> Wed, 11 Apr 2001 15:16:20 +0200
gnome-core (1.4.0.1-2) unstable; urgency=low
* Build depends on versionned gettext 0.10.35-17 (Closes: #93198)
* Write manpage for gnome-session and add docbook-to-man in build-depnds
* Write manpages for gnome-help (Closes: #87089)
-- Christian Marillat <marillat@debian.org> Sat, 7 Apr 2001 15:52:40 +0200
gnome-core (1.4.0.1-1) unstable; urgency=low
* New upstream release.
* debian/gnome-terminal.wrapper change -T by -t (Closes: #90847)
* debian/gnome-session.README.debian remove references to .xsession. This
is now obsolete by the new x-session-manager scheme.
-- Christian Marillat <marillat@debian.org> Sun, 1 Apr 2001 15:01:51 +0200
gnome-core (1.4.0-2) unstable; urgency=low
* Build depends on libglade-gnome0-dev (>= 0.16-1) (Closes: #90416)
* debian/control Add Build-Conflicts: libgtkhtml-dev (>= 0.7-1) (Closes: #90700)
-- Christian Marillat <marillat@debian.org> Thu, 22 Mar 2001 16:44:12 +0100
gnome-core (1.4.0-1) unstable; urgency=low
* New upstream release.
* Gnome-core replaces gnome-control-center 1.2.3-1 (Closes: #90124)
* Remove manpages patche included by upstream.
* gnome-session don't always saves session on logout (Closes: #89630)
* Can add a launcher in the panel (Closes: #90018)
* Deskguide don't crashes on Fill with mini-images (Closes: #86952)
* Deskguide don't fail to run (Closes: #89769)
* Pager applet don't fail to run (Closes: #89025)
-- Christian Marillat <marillat@debian.org> Mon, 19 Mar 2001 13:01:26 +0100
gnome-core (1.3.1-2) unstable; urgency=low
* Remove taslisk-applet manpage (Closes: #88994)
* New patch against gnome-terminal.1 (Closes: #89005)
* Move /usr/lib/libtasklist_applet.so in libpanel-applet0
(Closes: #89053, #89008, #89012, #89091, #89003)
* Gnome-terminal replace gnome-help-data (<= 1.0.55-2) (Closes: #87910)
-- Christian Marillat <marillat@debian.org> Sat, 10 Mar 2001 10:45:14 +0100
gnome-core (1.3.1-1) unstable; urgency=low
* New upstream release.
* Removed default.session patch
* debian/control Add Replaces: gnome-control-center (<= 1.2.2-10), because
the session-properties-capplet is now in this package.
* debian/{postinst,prerm} Call scrollkeeper
* debian/control Add scrollkeeper, xml-i18n-tools and libglade-gnome0-dev in
build-depends and scrollkeeper in depends for gnome-core
* Menu and laucnh keys works now (Closes: #86955)
* Dead keys work in gnome-terminal (Closes: #63102)
* Gnome-terminal isn't broken (Closes: #86752)
* New patch htmlurl.h (This file was broken by upstream author)
* XFMail doesn't crash the tasklist applet in this release (Closes: #88515)
* debian/gnome-core.menu New file for the session properties capplet
-- Christian Marillat <marillat@debian.org> Mon, 5 Mar 2001 11:40:15 +0100
gnome-core (1.2.4-11) unstable; urgency=low
* Update (again) the Build-depends field (Closes: #87419)
* Add a debian directory for the gnome-help-browser and add suggest doc-base
for gnome-help. Now we can watch debian documentation registered with doc-base.
* Add a lintian override file for libpanel-applet0
-- Christian Marillat <marillat@debian.org> Sun, 25 Feb 2001 16:14:09 +0100
gnome-core (1.2.4-10) unstable; urgency=low
* Update the Build-depends field (Closes: #86441, #87419)
* Call update-alternatives only in remove (gnome-terminal, gnome-session) (Closes: #87327, #87328)
-- Christian Marillat <marillat@debian.org> Sat, 24 Feb 2001 18:03:20 +0100
gnome-core (1.2.4-9) unstable; urgency=low
* Remove abandonned /etc/CORBA/servers/bad-applet.goad (Closes: #84950)
* Build against the latest gnome-libs (1.2.11) (Close: #85932)
-- Christian Marillat <marillat@debian.org> Wed, 14 Feb 2001 13:49:26 +0100
gnome-core (1.2.4-8) unstable; urgency=low
* debian/control Add Replaces: gnome-help-data (<< 1.0.55-2) for
gnome-help (Closes: #80974)
* debian/gnome-help.mime Rewrote (Closes: #82891)
* debian/control gnome-core depends on gnome-bin (Closes: #82951)
* Wrote gnome-panel.README.Debian (Closes: #82954)
-- Christian Marillat <marillat@debian.org> Mon, 22 Jan 2001 16:04:58 +0100
gnome-core (1.2.4-7) unstable; urgency=low
* Added gnome-bin (>= 1.2.0) in gnome-session Depends field (Closes: #80589, #80595, #80733)
-- Christian Marillat <marillat@debian.org> Wed, 27 Dec 2000 19:24:08 +0100
gnome-core (1.2.4-6) unstable; urgency=low
* Apply patch to gnome-run to call x-terminal-emulator (Closes: #80219)
* debian/gnome-terminal.wrapper This is -t not -T close (Closes: #80405)
-- Christian Marillat <marillat@debian.org> Sun, 24 Dec 2000 03:27:12 +0100
gnome-core (1.2.4-5) unstable; urgency=low
* Install gnome-terminal.wrapper as x-terminal-emulator and remove
debian/patches/gnome-terminal.dpatch (Closes: 64326)
Thanks to Eric Gillespie, Jr. <epg@progenylinux.com>
* Add Recommends: gnome-applets on gnome-panel (Closes: #72208)
* gnome-sesion provides x-session-manager and install alternative (Closes: #60667)
* Added hints=Gnome for all menu files.
-- Christian Marillat <marillat@debian.org> Wed, 20 Dec 2000 23:19:55 +0100
gnome-core (1.2.4-4) unstable; urgency=low
* Call x-terminal-emulator in gnome-wm and add depends on the latest debianutils
for gnome-session. Thanks to Joseph Carter <knghtbrd@progeny.com> for the file
(Closes: #79776)
* Rewrote default.session patch
* Add patch form Doug Larrick <doug@ties.org> for gwmthumbnail.c (Closes: #78550)
-- Christian Marillat <marillat@debian.org> Sun, 17 Dec 2000 12:04:54 +0100
gnome-core (1.2.4-3) unstable; urgency=low
* Change gnome-help.mime to call the right file (Closes: #77986)
Thanks Malcolm Parsons <malcolm@ivywell.screaming.net> for the patch.
* Patch gsm/default.in (two entries with same id) (Closes: #78276)
Thanks to Normal User <gohmandj@mrs.umn.edu> (Nice name)
* Move gnome-control-center from Depends to Suggests.
* Remove libgtkhtml-dev from Build-Depends (Closes: #79527)
-- Christian Marillat <marillat@debian.org> Wed, 13 Dec 2000 18:01:34 +0100
gnome-core (1.2.4-2) unstable; urgency=low
* Remove README and NEWS files (Closes: #77250)
* Disable thumbnails by default in deskguide_applet (Closes: #77205)
* debian/rules --with-window-manager is now sawfish (was x-window-manager)
and rewrote debian/patches/gnome-wm.dpatch to remove x-window-manager (Closes: #77401)
* Should close this old bug (Closes: #51198)
* Patch gnome-edit to use x-terminal-emulator instead of xterm.
-- Christian Marillat <marillat@debian.org> Mon, 20 Nov 2000 11:35:55 +0100
gnome-core (1.2.4-1) unstable; urgency=low
* New upstream release.
-- Christian Marillat <marillat@debian.org> Thu, 16 Nov 2000 00:43:15 +0100
gnome-core (1.2.3.1-1) unstable; urgency=low
* New upstream release.
* Add gnome-help example and manpage in gnome-help package (Closes: #49977)
* This release should close these old bugs (Closes: #60561, #60768, #45053)
* Gnome-panel don't use all CPU time (Closes: #75251, #60209)
* Remove gmenu patch included by upstream.
-- Christian Marillat <marillat@debian.org> Wed, 8 Nov 2000 17:09:42 +0100
gnome-core (1.2.3-1) unstable; urgency=low
* New upstream release.
* Debian menus aren't empty (Closes: #70470)
* Launcher can find icon (Closes: #62502)
-- Christian Marillat <marillat@debian.org> Tue, 24 Oct 2000 15:51:11 +0200
gnome-core (1.2.2.1-3) unstable; urgency=low
* Add gnome-terminal.prerm for update-alternatives --remove (Closes: #74451)
* Patch gnome-terminal to accept -T option (Closes: #74450)
* Move README.debian in gnome-session package (Closes: #60440)
* mesg work in gnome-terminal (Closes: #71728)
* Upstream fix these old bugs in Gnome-terminal
Problem with menubar (Closes: #57516)
Problem with console-apt Closes: #60079)
Problem with screen (Closes: #50156)
* Binaries don't should go in /usr/X11R6/bin (Closes: #24031)
Quoting Debian policy :
"Packages using the X Window System should abide by the FHS standard"
"whenever possible; they should install binaries, libraries, manual"
"pages, and other files in FHS-mandated locations wherever possible."
"This means that files must not be installed into /usr/X11R6/bin/'"
* hostname isn't harcoded (Closes: #72536)
* Error messages mention Lynx (Closes: #62216)
* Display correctly deskuse.html (Closes: #49974)
* Add patch from malcolm <malcolm@ivywell.screaming.net> (Closes: #64820)
-- Christian Marillat <marillat@debian.org> Sat, 14 Oct 2000 23:39:49 +0200
gnome-core (1.2.2.1-2) unstable; urgency=low
* Typo in debian/gnome-terminal.postinst
* Add gnome-terminal manpage (Closes: #69188)
* Closes: #63103 already closed in 1.2.1-0.2 (typo in debian/changelog)
* Gnome-terminal write to /var/run/utmp (Closes: #59053)
* delete/backspace keys works (Closes: #57198)
* Install GnomeHelp file in /etc/gnome/config (Closes: #73012)
* Convert png icons in xpm for Debian menu.
* Rearange documentation for dhelp (Closes: #56672)
-- Christian Marillat <marillat@debian.org> Thu, 5 Oct 2000 00:59:44 +0200
gnome-core (1.2.2.1-1) unstable; urgency=low
* New upstream release.
* Patch all manpages (Closes: #70009)
* gnome-panel 1.0.55-2.0.1 (sparc) is now installable (Closes: #69075, #71570)
* gmenu don't jam up all translations (Closes: #46446)
* panel remember its configuration between session
(Closes: #47734, #54190)
* Icons are now centered (Closes: #63868)
* Bugs closed by previous NMU in gnome-panel (Closes: #40036, #52584, #54755,
#58278, #61083, #69428))
* libgen_util_applet.so installed in 1.2.1-0.2 (Closes: #69463)
* debian/control remove Conflicts: asclock (Closes: #52077)
* gnome-help 1.0.55-2.0.1 (sparc) is now installable (Closes: #69356)
* Bugs closed by previous NMU in gnome-help (Closes: #49734, #56081, #58679, #58973)
* debian/control move gmc from Recommends to Suggests (Closes: #59415)
* The first search in gnome-wm search is x-window-manager
(Closes: #50940, #65969, #62143)
* Bug closed in 1.2.2-1 (README.debian in gnome-session package) (Closes: #66219)
* Bugs closed by previous NMU in gnome-terminal
(Closes: #64579, #63592, #63332, #56584, #55477, #54428)
* gnome-terminal provide x-terminal-emulator (Closes: #61805, #53994, #56225)
-- Christian Marillat <marillat@debian.org> Wed, 27 Sep 2000 16:02:16 +0200
gnome-core (1.2.2-1) unstable; urgency=low
* New maintainer, thanks James.
* New upstream release.
* Switch to debhelper V2
* Move README.debian in gnome-session package (Closes: #65235) and
update this file (Closes: #71339)
* Bug closed in 1.2.1-0.2 (Install missing libraries) (Closes: #69590, #70483)
* Bugs closed in 1.2.1-0.1 (typo close instead closes) (Closes: #53764, #54050)
* Remove gtkhtml patch.
* The desk guide show thumbnail (Closes: #72359)
* Missing package under sparc (Closes: #71438)
* debian/control add Conflicts: libgnome32 (<< 1.2.0-1) for gnome-panel (Closes: #72039)
* Added icons in Debian menu.
* Eject in drivemount check if '-u' is available (Closes: #63954)
* Patch gmenu to find Debian menu.
-- Christian Marillat <marillat@debian.org> Tue, 26 Sep 2000 17:34:23 +0200
gnome-core (1.2.1-0.2) unstable; urgency=low
* NMU.
* Install these libraries libfish_applet.so libgen_util_applet.so
libpanel_status.so (Closes: #69428, #69590)
* Copy latest gnome aclocal in macros/ and run macros/autogen.sh
This is needed to build gnome-help-browser against libgtkhtml4.
* In debian/control
gnome-session depends on gnome-panel (>= ${Source-Version}).
gnome-help depends on gnome-core (>= 1.2.0-0.1) no Source-Version.
gnome-terminal don't depends on gnome-core.
* URL's are clickable in gnome-terminal (Closes: 63103).
* debian/gnome-panel.undocumented removed printer_applet.1
* Cut and paste work in gnome-terminal (Closes: #63592).
-- Christian Marillat <marillat@debian.org> Wed, 23 Aug 2000 21:23:36 +0200
gnome-core (1.2.1-0.1) unstable; urgency=low
* New upstream release (Closes: #58806, #66467)
* NMU.
* Standards-Version to 3.1.1.1 Added Build-depends field.
* Removed patches: dialer, drivemount-floppy, modemlights, term,
help-browser, debian-menu, url-match.
* Added patches: gtkhtml.
* Build against libgtkhtml3. Closes: #58679, #36806, #49734
* Default manpath and infopath are wrong. Closes: #56081
* gmenu segfaults. Close: #53764, #54050
* gnome-panel: panel no longer works. Closes: #58278
* gnome-panel: gnomepager-applet should put braces around. Closes: #52584
* Backspace and delete work correctly. Closes: #54428
* TERM never select xterm-debian. Closes: #56584, #55477, #64579
* Disable arrows option is now saved. Closes: #54755
* No more files in /usr/share. Closes: #61083
* Show debian menus. Closes #66214
* New help documentation for panel. Closes: #40036
* Gnome-terminal write to /var/run/utmp. Closes #59053
* gnome-terminal provide x-terminal-emulator. Closes #61805, #56225
* README.Debian is here. Closes: #65235
-- Christian Marillat <marillat@debian.org> Tue, 25 Jul 2000 19:09:21 +0200
gnome-core (1.0.55-2) frozen unstable; urgency=low
* Make x-window-manager run first by gnome-wm script to conform to
debian policy (Closes: #61617) (This is an important bug)
-- James LewisMoss <dres@debian.org> Sun, 21 May 2000 19:31:19 -0400
gnome-core (1.0.55-1) unstable; urgency=low
* New upstream.
-- James LewisMoss <dres@debian.org> Sun, 2 Jan 2000 07:32:36 -0500
gnome-core (1.0.54-2) unstable; urgency=low
* Fix the gnome-pager forgets size settings bug (was saved to wrong
section). Closes: #49839, #46845.
-- James LewisMoss <dres@debian.org> Fri, 12 Nov 1999 07:54:46 -0500
gnome-core (1.0.54-1) unstable; urgency=low
* New upstream.
-- James LewisMoss <dres@debian.org> Thu, 4 Nov 1999 23:20:14 -0500
gnome-core (1.0.53-4) unstable; urgency=low
* New maintainer.
-- James LewisMoss <dres@debian.org> Mon, 25 Oct 1999 23:17:31 -0400
gnome-core (1.0.53-3) unstable; urgency=low
* Ok, I made a mistake by setgiding gnome-terminal to
utmp. Reverted the change. Closes: #47960
-- Raphael Hertzog <hertzog@debian.org> Mon, 18 Oct 1999 19:17:27 +0200
gnome-core (1.0.53-2) unstable; urgency=low
* gnome-session does launch a default window-manager. It does launch
gnome-wm if no other information has been found. gnome-wm now
reads the list of window managers from /etc/X11/window-managers
once it has tried gnome compliant wm. Closes: #38347, #47370
* Patched gnome-terminal. TERM=xterm-debian again ... actually this
closes: #47552, #44960, #41065
* gnome-terminal is now setgid utmp and can thus register itself
in the UTMP database. Closes: #40507
* The URL match does now accept % characters. Closes: #47281
* libpanel-applet0.postinst check for the changelog.gz mysteriously
staying around. Closes: #45871
* Unreproducable bugs without answer from the submitter.
Closes: #41195, #42865
-- Raphael Hertzog <hertzog@debian.org> Sat, 16 Oct 1999 19:52:38 +0200
gnome-core (1.0.53-1) unstable; urgency=low
* New upstream version.
* gnome-session does now depend on gnome-panel and recommends
gmc (both are needed for a full Gnome desktop).
* gnome-terminal does not have a border. Closes: #38972
-- Raphael Hertzog <hertzog@debian.org> Tue, 12 Oct 1999 21:17:58 +0200
gnome-core (1.0.52-1) unstable; urgency=low
* New maintainer. Steve said that he wanted to give away some of
his packages. I've asked to take gnome-core, he never replied, so
I'm taking it but I will give it back to him if he wanted to
keep it. In the meantime I can better manage bugs with my name
in the Maintainer field.
* New upstream version.
-- Raphael Hertzog <hertzog@debian.org> Mon, 4 Oct 1999 21:28:18 +0200
gnome-core (1.0.50-0.1) unstable; urgency=low
* New upstream version.
* NMU again.
-- Raphael Hertzog <hertzog@debian.org> Thu, 30 Sep 1999 22:10:03 +0200
gnome-core (1.0.41-0.1) unstable; urgency=low
* New upstream version.
* NMU again.
-- Raphael Hertzog <hertzog@debian.org> Mon, 27 Sep 1999 13:10:31 +0200
gnome-core (1.0.9-0.1) unstable; urgency=low
* New upstream version. Closes: #43253, #44098
* Apply patches before configuring (and relaunch automake && autoconf
because one of the patches is applied on Makefile.am).
* NMU. Thanks to Christian Marillat <marillat@alpes-net.fr> for his work.
* Imlib bug corrected: closes: #39085
* X11 binaries don't have to go /usr/X11R6/bin. Closes: #24031
* The panel does start correctly wihout complaining about a
missing name service. Closes: #39380, #39634, #40478
* The panel doesn't consume all CPU resources. Closes: #30654
* The panel launches apps from where it has been launched itself.
Closes: #32319
* The panel keeps the settings. Closes: #37052, #40579, #43496
* Old core dump corrected upstream. Closes: #39400, #40328, #42167
Closes: #44344, #44724, #44732, #44759, #44773
* Bug in menu-method, not in gnome-panel. Already reported against
menu. Closes: #40089
* cdplayer_applet works again. Closes: #42192
* gnome pager works well: Closes: #42499, #42610
* modem_lights draws itself correctly. Closes: #43861, #45055
* The dialer applets doesn't exit when stopping while
not yet connected. Closes: #45287
* No more Debian menu in the panel. Closes: #41040
* GnomeICU works with this panel. Closes: #39626, #39515
* gnome-panel-data conflicts with asclock.
Closes: #40712, #40715, #40808, #41430
A better solution will be needed. Maybe put asclock in his own
package or create a asclock-data package that will be shared.
* Updated the modemlights patch. Closes: #43512
* Added a patch for gnome-wm. Closes: #38366
* Move lib{gkb,fish}_applet.so files to libgnome-applet0 (those are
not libraries to be linked with, just simple modules). Closes: #38596
* Asclock works well without xearth (the code still mentions xearth
however). Closes: #40530
* New patch (help-browser) for changing the default MANPATH and INFOPATH in
gnome-help-browser.c Closes: #41452
* Moved help-browser to the new "Help" menu section.
* Added gnome-help.mime. Closes: #42205
* Gnome-session does launch gnome-panel ! (I suppose that it failed
to launch since panel was broken). Closes: #42937
* gnome-sesion doesn't core dump. Closes: #36640
* The terminal does remember the TERM var. Closes: #43067
* The terminal keeps its size when dragging the manu bar in and out.
Closes: #44762
* The menu section of gnome-terminal corrected. Closes: #37635
-- Raphael Hertzog <hertzog@debian.org> Wed, 22 Sep 1999 13:24:34 +0200
gnome-core (1.0.7-1) unstable; urgency=low
* New upstream version.
* Removed "term" patch
-- Steve Haslam <araqnid@debian.org> Mon, 28 Jun 1999 01:36:31 +0100
gnome-core (1.0.6-2) unstable; urgency=low
* debian-menu.dpatch: created to fix guessing Debian menus
(/etc/menu-methods/gnome-panel now) and to make Debian menus the default
instead of GNOME system menus.
* gnome-help now suggests gnome-users-guide-en (closes: #35724)
* /etc/menu-methods/gnome-panel now creates .directory files and searches
/usr/X11R6/include/X11/pixmaps for menu icons
-- Steve Haslam <araqnid@debian.org> Sun, 13 Jun 1999 15:28:52 +0100
gnome-core (1.0.6-1) unstable; urgency=low
* New upstream version.
-- Steve Haslam <araqnid@debian.org> Sat, 5 Jun 1999 12:57:08 +0100
gnome-core (1.0.5-3) unstable; urgency=low
* debian/gnome-terminal.menu: managed to lose change mentioned in last
revision. Replaced.
* debian/gnome-core.undocumented: removed gnome-wm.1 (it was in
gnome-session.undocumented too).
-- Steve Haslam <araqnid@debian.org> Mon, 31 May 1999 19:15:54 +0100
gnome-core (1.0.5-2) unstable; urgency=low
* debian/gnome-terminal.menu: changed section to XShells (Bug#37635)
* debian/rules: added gnome-wm and gnome-edit to dh_undocumented call
(Bug#37632)
* debian/gnome.menu-method: added patch to honour needs=text (Bug#36928)
from Decklin Foster
* Call dh_strip when making libpanel-applet-dev (Closes Bug#31244)
* Removed /usr/share/gnome/apps/Debian symlink, (closes #38100)
* Sanified build system a la gnome-libs
* debian/control: made gnome-help, gnome-help-data and gnome-panel-data
packages.
-- Steve Haslam <araqnid@debian.org> Sun, 23 May 1999 14:35:44 +0100
gnome-core (1.0.5-1) unstable; urgency=low
* New maintainer.
-- Steve Haslam <araqnid@debian.org> Tue, 11 May 1999 01:01:12 +0100
gnome-core (1.0.5-0.2) unstable; urgency=low
* gnome-panel.files.in: added asclock themes, libgkb_applet.a
* gnome-core.files.in: added gnome-wm, gnome-edit
* term.dpatch: gnome-terminal TERM to xterm-debian rather than xterm
* gsm/Makefile.am: put default.session, default.wm in /etc/gnome
* debian/gnome-session.conffiles.in: added above two files
* debian/gnome-session.files.in: updated this too
-- Steve Haslam <araqnid@debian.org> Sun, 18 Apr 1999 16:47:23 +0100
gnome-core (1.0.5-0.1) unstable; urgency=low
* Non-maintainer upload
* New upstream version
-- Steve Haslam <araqnid@debian.org> Thu, 15 Apr 1999 23:22:23 +0100
gnome-core (1.0.1-0.3) unstable; urgency=low
* Weehay! More broken dependencies. This one libghttp -1.1,
a bogus package that only ever existed on my machine.
-- Jules Bean <jules@debian.org> Mon, 8 Mar 1999 08:24:00 +0000
gnome-core (1.0.1-0.2) unstable; urgency=low
* Another NMU, this time to fix bogus dependencies on libgtop0
and libglib1.1
-- Jules Bean <jules@debian.org> Sun, 7 Mar 1999 14:21:12 +0000
gnome-core (1.0.1-0.1) unstable; urgency=low
* NMU for GNOME-1.0
* Hacked to patch SIGPIPE bug
* Don't delete GIFs in rules
-- Jules Bean <jules@debian.org> Fri, 5 Mar 1999 18:36:29 +0100
gnome-core (0.99.99pre1.0.0-1) unstable; urgency=low
* New upstream release.
-- Jim Pick <jim@jimpick.com> Fri, 26 Feb 1999 23:18:10 -0800
gnome-core (0.99.3.2-4) unstable; urgency=low
* Recompiled yet again - dual dependency on libglib.
Fixes: BUG#32510
-- Jim Pick <jim@jimpick.com> Thu, 28 Jan 1999 00:00:22 -0800
gnome-core (0.99.3.2-3) unstable; urgency=low
* Recompiled again to due to dependencies.
-- Jim Pick <jim@jimpick.com> Sun, 24 Jan 1999 01:10:07 -0800
gnome-core (0.99.3.2-2) unstable; urgency=low
* Recompiled with libgnome 0.99.4.
-- Jim Pick <jim@jimpick.com> Fri, 22 Jan 1999 16:44:45 -0800
gnome-core (0.99.3.2-1) unstable; urgency=low
* New upstream release.
-- Jim Pick <jim@jimpick.com> Wed, 20 Jan 1999 11:42:46 -0800
gnome-core (0.30-2) frozen unstable; urgency=low
* Recompiled with new libs.
* Fixed reference to /usr/X11R6 in README.Debian.
* Added warnings (Gnome is ALPHA).
* Patched dialer_applet to use pon/poff.
* Patched drivemount_applet to default to /floppy.
-- Jim Pick <jim@jimpick.com> Tue, 24 Nov 1998 10:56:08 -0800
gnome-core (0.30-1) unstable; urgency=low
* New upstream release.
-- Jim Pick <jim@jimpick.com> Thu, 24 Sep 1998 21:28:02 -0700
gnome-core (0.28.1-1) unstable; urgency=low
* New upstream release.
* Hopefully fixes panel applet bug.
-- Jim Pick <jim@jimpick.com> Wed, 19 Aug 1998 20:12:25 -0700
gnome-core (0.28-1) unstable; urgency=low
* New upstream release.
-- Jim Pick <jim@jimpick.com> Mon, 17 Aug 1998 12:59:26 -0700
gnome-core (0.27-1) unstable; urgency=low
* New upstream release.
* Added /usr/doc/gnome
-- Jim Pick <jim@jimpick.com> Sat, 15 Aug 1998 14:21:06 -0700
gnome-core (0.25-1) unstable; urgency=low
* New upstream release.
-- Jim Pick <jim@jimpick.com> Thu, 6 Aug 1998 22:51:22 -0700
gnome-core (0.20-2) unstable; urgency=low
* Added Debian menu-method for gnome-panel. Fixed Bug #24025
(Thanks to Ray Dassen for reporting the bug, and Riku Voipio
who wrote the menu method for Gnome 0.12)
-- Jim Pick <jim@jimpick.com> Wed, 22 Jul 1998 20:22:00 -0700
gnome-core (0.20-1) unstable; urgency=low
* New upstream release.
-- Jim Pick <jim@jimpick.com> Mon, 8 Jun 1998 12:00:08 -0700
gnome-core (0.13-1) unstable; urgency=low
* Initial Release.
-- Jim Pick <jim@jimpick.com> Mon, 16 Mar 1998 15:27:43 -0800
|