1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558
|
boinc (8.0.4+dfsg-1) unstable; urgency=medium
* New upstream version 8.0.4+dfsg
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 08 Aug 2024 23:58:21 +0200
boinc (8.0.2+dfsg-2) unstable; urgency=medium
* Move service to /usr (Closes: #1073631)
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 08 Aug 2024 23:50:41 +0200
boinc (8.0.2+dfsg-1) unstable; urgency=medium
* fix watch file
* New upstream version 8.0.2+dfsg
* Refresh patches
* Add some new samples
* Bump copyright years
-- Gianfranco Costamagna <locutusofborg@debian.org> Mon, 27 May 2024 23:55:00 +0200
boinc (7.24.1+dfsg-4) unstable; urgency=medium
* Add patch to fix time64 misbuilds on armhf
-- Gianfranco Costamagna <locutusofborg@debian.org> Mon, 18 Mar 2024 09:18:19 +0100
boinc (7.24.1+dfsg-3) unstable; urgency=medium
* Upload to sid.
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 28 Feb 2024 12:04:05 +0100
boinc (7.24.1+dfsg-2exp2) experimental; urgency=medium
[ Steve Langasek ]
* Patch debian/control.in, which uses idiosyncratic format and therefore
failed to be automatically patched, then clobbered necessary changes in
debian/control regarding Breaks/Replaces/Provides. Closes: #1061984.
-- Gianfranco Costamagna <locutusofborg@debian.org> Sat, 24 Feb 2024 09:03:04 +0100
boinc (7.24.1+dfsg-2exp1) experimental; urgency=medium
[ Steve Langasek ]
* Patch debian/control.in, which uses idiosyncratic format and therefore
failed to be automatically patched, then clobbered necessary changes in
debian/control regarding Breaks/Replaces/Provides. Closes: #1061984.
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 20 Feb 2024 14:24:45 +0100
boinc (7.24.1+dfsg-2.1) unstable; urgency=medium
* Non-maintainer upload.
* Rename libraries for 64-bit time_t transition. Closes: #1061934
-- Steve Langasek <vorlon@debian.org> Wed, 28 Feb 2024 03:42:25 +0000
boinc (7.24.1+dfsg-2) unstable; urgency=medium
* Ack previous NMU, thanks!
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 20 Feb 2024 14:22:19 +0100
boinc (7.24.1+dfsg-1) unstable; urgency=medium
* New upstream version 7.24.1+dfsg
* Bump copyright years
* Refresh patches
* Drop switcher, removed upstream
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 20 Feb 2024 09:37:05 +0100
boinc (7.20.5+dfsg-1.1) unstable; urgency=medium
* Non-maintainer upload.
* Ship systemd unit under /lib/systemd/system so that it can get picked
up by dh_installsystemd (Closes: #1034216)
-- Cyril Brulebois <kibi@debian.org> Tue, 25 Apr 2023 16:59:54 +0000
boinc (7.20.5+dfsg-1) unstable; urgency=medium
* New upstream version 7.20.5+dfsg
-- Gianfranco Costamagna <locutusofborg@debian.org> Fri, 02 Dec 2022 16:00:35 +0100
boinc (7.20.4+dfsg-1) unstable; urgency=medium
* New upstream version 7.20.4+dfsg
* Drop patch MainDocumentWarnings, that code is now OSX only and changed
* Upload to sid
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 23 Nov 2022 10:46:38 +0100
boinc (7.20.2+dfsg-3) unstable; urgency=medium
* Switch from webview3.0 to webview3.2
-- Gianfranco Costamagna <locutusofborg@debian.org> Mon, 12 Sep 2022 23:48:53 +0200
boinc (7.20.2+dfsg-2) unstable; urgency=medium
* Add patch to fix a build failure (Closes: #1016225)
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 25 Aug 2022 13:34:18 +0200
boinc (7.20.2+dfsg-1) unstable; urgency=medium
* Add new skins in /usr/share/boinc-manager/skins/ while waiting for https://github.com/BOINC/boinc/pull/4811 to be merged
* install skins with upstream patch
* New upstream version 7.20.2+dfsg
* Drop files removed from upstream tarball
* Refresh patches
-- Gianfranco Costamagna <locutusofborg@debian.org> Mon, 18 Jul 2022 19:24:30 +0200
boinc (7.20.0+dfsg-1) unstable; urgency=medium
[ Steffen Moeller ]
* Reverse AVX instructions for better compatibility with older servers
[ Gianfranco Costamagna ]
* New upstream version 7.20.0+dfsg
* Refresh patches, drop patches now upstream: 4563 and new-autoconf-build-fix
* Bump copyright years
* Drop version constraints
* Fix metadata lintian warnings
* Drop old and unused override (wrong match)
* Drop binaries from include-binaries not available anymore from upstream tarball
* Update copyright file
* Drop asneeded flag, now default
-- Gianfranco Costamagna <locutusofborg@debian.org> Fri, 10 Jun 2022 14:51:40 +0200
boinc (7.18.1+dfsg-4) unstable; urgency=low
* Refresh openssl patch
-- Gianfranco Costamagna <locutusofborg@debian.org> Sun, 30 Jan 2022 09:29:47 +0100
boinc (7.18.1+dfsg-3) unstable; urgency=medium
* Don't fail on missing files
* Add dependency on opencl-c-headers
* Add patch to fix build with newer autoconf
-- Gianfranco Costamagna <locutusofborg@debian.org> Fri, 28 Jan 2022 21:03:28 +0100
boinc (7.18.1+dfsg-2) unstable; urgency=medium
* Fix build error due to missing || true in delete command
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 26 Jan 2022 17:27:51 +0100
boinc (7.18.1+dfsg-1) unstable; urgency=medium
[ Steffen Moeller ]
* New upstream version
* more reformats of debian/control that are partly adopted manually
for d/control.in
* eliminated two lintian warnings on installed vcs control files
* Standards-Version: 4.6.0 (routine-update)
[ Gianfranco Costamagna ]
* debian/patches/4563.patch:
- Add upstream patch to fix build with openssl 3.0 (Closes: #995637)
[routine-update]
* debhelper-compat 13
* reformat of debian/control - partly adopted manually for d/control.in
[ Pino Toscano ]
* Remove the old boincmgr.xpm icon, no more needed since the removal of the
Debian menu file in 7.6.15+dfsg-1.
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 26 Jan 2022 16:23:12 +0100
boinc (7.16.17+dfsg-2) unstable; urgency=medium
* Fix build with upstream patch on master branch
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 10 Jun 2021 11:49:24 +0200
boinc (7.16.17+dfsg-1) unstable; urgency=medium
* New upstream version 7.16.17+dfsg
* Simplify dpkg-parsechangelog syntax
* Drop old copyright exclusion of png files not included anymore in upstream tarball
* Refresh patches
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 10 Jun 2021 10:43:28 +0200
boinc (7.16.16+dfsg-1) unstable; urgency=medium
* New upstream version 7.16.16+dfsg
* Drop a bunch of upstreamed patches:
- allow_empty_passwords
- boinc-client-password
- cppcheck_realloc
- fix-macos-build
- gui_urls_xml_added_to_Makefile
- more_maxpathlen
- no-private-tmp
- python3install
* Refresh patches
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 03 Feb 2021 17:39:03 +0100
boinc (7.16.15+dfsg.is.7.16.14+dfsg-1) unstable; urgency=medium
* New upstream version.
* Bump std-version to 4.5.1, no changes required
* Extended copyright for drupal/sites/all/libraries/ckeditor
-- Steffen Moeller <moeller@debian.org> Sat, 05 Dec 2020 02:13:19 +0100
boinc (7.16.15+dfsg.is.7.16.11+dfsg-3exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Mon, 16 Nov 2020 11:15:49 +0100
boinc (7.16.15+dfsg.is.7.16.11+dfsg-3) unstable; urgency=medium
* Don't set PrivateTmp on service file to fix idle detection.
-- Gianfranco Costamagna <locutusofborg@debian.org> Mon, 16 Nov 2020 11:14:44 +0100
boinc (7.16.15+dfsg.is.7.16.11+dfsg-2exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 12 Nov 2020 15:35:58 +0100
boinc (7.16.15+dfsg.is.7.16.11+dfsg-2) unstable; urgency=medium
[ Steffen Möller ]
* Very reluctantly following upstream's request to install
/etc/boinc-client/config.properties
* Introduced dversionmangle=auto in d/watch
* Applied patch from upstream's pull request #4071 to also accept empty
passwords and distribute it as allow_empty_passwords.patch.
* Added d/u/metadata
* ch_stat of the configuration file
[ Gianfranco Costamagna ]
* Upload to sid (Closes: #971966)
* Drop double "git" mention that breaks build
* Update allow_empty_passwords with new upstream changes
* Add patch to explain end user how to add himself to boinc group if manager fails to connect
* Install boinc into usr/lib now that systemd is not creating /lib/systemd by default anymore
* Try to make it work with {/usr}/lib/systemd already provided in the system (mkdir from autotools is what should be probably done)
* Revert "Try to make it work with {/usr}/lib/systemd already provided in the system (mkdir from autotools is what should be probably done)"
* Add patch to force systemd installation into /usr/lib instead of /lib, we don't know how the build system is configured (and we don't care)
-- Steffen Moeller <moeller@debian.org> Mon, 09 Nov 2020 23:38:23 +0100
boinc (7.16.15+dfsg.is.7.16.11+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 01 Sep 2020 11:31:30 +0200
boinc (7.16.15+dfsg.is.7.16.11+dfsg-1) unstable; urgency=medium
* New upstream version 7.16.11+dfsg
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 01 Sep 2020 11:30:10 +0200
boinc (7.16.15+dfsg.is.7.16.10+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Sat, 29 Aug 2020 09:11:15 +0200
boinc (7.16.15+dfsg.is.7.16.10+dfsg-1) unstable; urgency=medium
* New upstream version 7.16.10+dfsg
-- Gianfranco Costamagna <locutusofborg@debian.org> Sat, 29 Aug 2020 09:08:15 +0200
boinc (7.16.15+dfsg.is.7.16.9+dfsg-2exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 27 Aug 2020 23:34:33 +0200
boinc (7.16.15+dfsg.is.7.16.9+dfsg-2) unstable; urgency=medium
* Add patch to fix build on non-macos systems
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 27 Aug 2020 23:30:57 +0200
boinc (7.16.15+dfsg.is.7.16.9+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 27 Aug 2020 23:30:28 +0200
boinc (7.16.15+dfsg.is.7.16.9+dfsg-1) unstable; urgency=medium
* New upstream version 7.16.9+dfsg
* Refresh patches
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 27 Aug 2020 13:14:09 +0200
boinc (7.16.15+dfsg.is.7.16.7+dfsg-2exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Mon, 20 Jul 2020 19:26:37 +0200
boinc (7.16.15+dfsg.is.7.16.7+dfsg-2) unstable; urgency=medium
* boinc misc fixes:
- don't depend on libcuda-versioned packages,
now we have a virtual libcuda1 everywhere
- change the dependency in a recommendation instead,
to avoid universe/multiverse archive mismatches in Ubuntu
- add virtualbox-6.1 as supported
- drop libopencl-1.1-1 dependency,
not used anymore since we have the virtual ocl-icd-libopencl1
-- Gianfranco Costamagna <locutusofborg@debian.org> Mon, 20 Jul 2020 19:24:23 +0200
boinc (7.16.15+dfsg.is.7.16.7+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 15 Jul 2020 16:34:33 +0200
boinc (7.16.15+dfsg.is.7.16.7+dfsg-1) unstable; urgency=medium
* New upstream version 7.16.15+dfsg.is.7.16.7+dfsg
- this is mostly the same release as 7.16.6+dfsg, the 7.16.15 tag was
wrongly pushed upstream
* Revert "Refresh patches"
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 15 Jul 2020 16:30:12 +0200
boinc (7.16.15+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 02 Jun 2020 19:55:34 +0200
boinc (7.16.15+dfsg-1) unstable; urgency=medium
[ Steffen Moeller ]
* Eliminate Lintian warning - renamed debian/TODO
[ Gianfranco Costamagna ]
* New upstream version 7.16.15+dfsg
* Refresh patches
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 02 Jun 2020 19:54:13 +0200
boinc (7.16.6+dfsg-1exp2) experimental; urgency=medium
* Also building static libraries - to help providing truly static scientific
apps across platforms.
* d/rules:
- clean is undoing uncommitted changes done to d/control
- changing #!python to python3
* boinc-server-maker: provide arch-dep links instead of examples' executables
in /usr/share/doc
-- Steffen Moeller <moeller@debian.org> Sat, 02 May 2020 14:21:51 +0200
boinc (7.16.6+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Sun, 19 Apr 2020 17:09:16 +0200
boinc (7.16.6+dfsg-1) unstable; urgency=medium
* New upstream version 7.16.6+dfsg
* Refresh patches
-- Gianfranco Costamagna <locutusofborg@debian.org> Sun, 19 Apr 2020 17:07:33 +0200
boinc (7.16.5+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 27 Feb 2020 15:33:53 +0100
boinc (7.16.5+dfsg-1) unstable; urgency=medium
* New upstream version 7.16.5+dfsg
* Upload to unstable
* Update copyright years
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 27 Feb 2020 15:32:39 +0100
boinc (7.16.4+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Sat, 25 Jan 2020 15:34:18 +0100
boinc (7.16.4+dfsg-1) unstable; urgency=medium
* New upstream version 7.16.4+dfsg
* Bump copyright years
* drop upstream patches:
- some_extra_clang_warnings.patch
- more_clang_warnings.patch
* Refresh patches
* Bump std-version to 4.5.0, no changes required
* Upload to unstable
-- Gianfranco Costamagna <locutusofborg@debian.org> Sat, 25 Jan 2020 15:28:00 +0100
boinc (7.16.3+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
(Closes: #936224, Closes: #903762)
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 01 Oct 2019 07:34:47 +0200
boinc (7.16.3+dfsg-1) unstable; urgency=medium
* New upstream version
* d/control: Introducing 'Rules-Requires-Root: no'
-- Steffen Moeller <moeller@debian.org> Mon, 30 Sep 2019 20:43:14 +0200
boinc (7.16.1+git20190825+dfsg-1exp1) UNRELEASED; urgency=medium
[ Steffen Moeller ]
* Addressing python3 install errors of boinc-server-maker package
(Closes: #936224, Closes: #903762)
-- Steffen Moeller <moeller@debian.org> Mon, 26 Aug 2019 16:53:16 +0200
boinc (7.16.1+dfsg-2exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Fri, 16 Aug 2019 13:15:40 +0200
boinc (7.16.1+dfsg-2) unstable; urgency=high
* Upload to unstable
* debian/patches/6897d96cdc5a6be3392168edf2066d74b763e2cd.patch:
- upstream cherry-pick for bad cc_config.xml being written in some corner
case
-- Gianfranco Costamagna <locutusofborg@debian.org> Fri, 16 Aug 2019 13:07:19 +0200
boinc (7.16.1+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 06 Aug 2019 13:09:06 +0200
boinc (7.16.1+dfsg-1) unstable; urgency=medium
* New upstream version 7.16.1+dfsg
* Upload to unstable
* Create slots directory during install (Closes: #929743)
* Bump std-version to 4.4.0, no changes required
* Also assign user to group "render" (Closes: #929409)
* Patch refresh
* Add fedora patches
* Update copyright years to 2019
* Bump compat level to 12
* Drop dh_dbgsym migration code
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 06 Aug 2019 11:51:29 +0200
boinc (7.14.2+dfsg-3exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Mon, 01 Apr 2019 13:31:06 +0200
boinc (7.14.2+dfsg-3) unstable; urgency=medium
* Upload to unstable
* Do not strongly depend on virtualbox for the boinc-virtualbox package.
- Virtualbox might be available under different virtual name, built
locally, upstream deb file might be used or whatever else.
-- Gianfranco Costamagna <locutusofborg@debian.org> Mon, 01 Apr 2019 13:29:33 +0200
boinc (7.14.2+dfsg-2exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 30 Jan 2019 19:36:44 +0100
boinc (7.14.2+dfsg-2) unstable; urgency=medium
* Upload to unstable.
* Drop boinc-virtualbox on i386, following vbox removal
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 30 Jan 2019 19:34:18 +0100
boinc (7.14.2+dfsg-1exp2) experimental; urgency=medium
* Drop awesome fonts, fix build
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 10 Jan 2019 21:53:09 +0100
boinc (7.14.2+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 10 Jan 2019 19:28:23 +0100
boinc (7.14.2+dfsg-1) unstable; urgency=medium
* New upstream release
* drop apache2 patch, upstream
* Patch refresh
* Std-version is now 4.3.0, no changes required
-- Gianfranco Costamagna <locutusofborg@debian.org> Mon, 07 Jan 2019 17:11:29 +0100
boinc (7.12.0+dfsg-1) unstable; urgency=medium
* Update again watch file
* New upstream version 7.12.0+dfsg
* Upload to unstable
* Update copyright file
* Refresh patches
* drop upstream patches:
- 0e16d026ce50fdadee8d3629bbdd95b5a5298416
- disable-pre-release-warning
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 04 Jul 2018 10:28:00 +0200
boinc (7.10.3+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 20 Jun 2018 14:45:13 +0200
boinc (7.10.3+dfsg-1) unstable; urgency=medium
* New upstream version 7.10.3+dfsg
* Fix watch file
* Upload to unstable
* Add patch to remove idle detection code
* Bump std-version to 4.1.4.1, no changes required
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 20 Jun 2018 14:41:51 +0200
boinc (7.10.2+dfsg-2exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 06 Jun 2018 00:04:50 +0200
boinc (7.10.2+dfsg-2) unstable; urgency=medium
* Upload to unstable
* Remove disable-webview useless flag
* Move repo to salsa.d.o
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 06 Jun 2018 00:03:33 +0200
boinc (7.10.2+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Fri, 04 May 2018 10:15:35 +0200
boinc (7.10.2+dfsg-1) unstable; urgency=medium
* New upstream release, upload to unstable
-- Gianfranco Costamagna <locutusofborg@debian.org> Fri, 04 May 2018 09:55:26 +0200
boinc (7.10.1+dfsg-2exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 01 May 2018 22:08:38 +0200
boinc (7.10.1+dfsg-2) unstable; urgency=high
* Upload to unstable
* Re-enable update-boinc-applinks, needed to install e.g. seti
* Update boinc directory (ln boinc-client to boinc) (Closes: #897130)
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 01 May 2018 09:58:22 +0200
boinc (7.10.1+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 26 Apr 2018 14:47:12 +0200
boinc (7.10.1+dfsg-1) unstable; urgency=medium
* Upload to unstable
* New upstream version 7.10.1+dfsg
* Bump std-version to 4.1.4, no changes required.
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 26 Apr 2018 13:21:55 +0200
boinc (7.9.3+dfsg-5exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Fri, 20 Apr 2018 12:09:14 +0200
boinc (7.9.3+dfsg-5) unstable; urgency=medium
* Upload to unstable
* Drop update-boinc-applinks, useless now?
- lets re-evaluate the situation in case somebody complains (LP: #1765576)
-- Gianfranco Costamagna <locutusofborg@debian.org> Fri, 20 Apr 2018 11:55:23 +0200
boinc (7.9.3+dfsg-4exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 11 Apr 2018 19:04:38 +0200
boinc (7.9.3+dfsg-4) unstable; urgency=medium
* Upload to unstable
* Revert "add boinc to input group, to help idle detection"
- thanks Juha Sointusalo for reminding me that a security bug in boinc
might end up in a keylogger on a user system, and we don't want this
possible attack vector in our systems.
Idle detection is broken (see #2463)
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 11 Apr 2018 19:01:33 +0200
boinc (7.9.3+dfsg-3exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 29 Mar 2018 18:28:18 +0200
boinc (7.9.3+dfsg-3) unstable; urgency=medium
* Upload to unstable
* Disable Pre-release message
* Disable update check
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 29 Mar 2018 18:26:35 +0200
boinc (7.9.3+dfsg-2exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 28 Mar 2018 18:59:32 +0200
boinc (7.9.3+dfsg-2) unstable; urgency=medium
[ Olly Betts, Scott Talbert ]
* Re-enable webview!!! (Closes: #894263),
Fully switch to gtk3
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 28 Mar 2018 08:47:57 +0200
boinc (7.9.3+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Sat, 10 Mar 2018 23:09:43 +0100
boinc (7.9.3+dfsg-1) unstable; urgency=medium
* Upload to unstable
* New upstream version 7.9.3+dfsg
* Bump copyright years to 2018
-- Gianfranco Costamagna <locutusofborg@debian.org> Sat, 10 Mar 2018 23:08:17 +0100
boinc (7.9.2+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Sat, 17 Feb 2018 14:27:31 +0100
boinc (7.9.2+dfsg-1) unstable; urgency=medium
* Upload to unstable
* New upstream release 7.9.2+dfsg
-- Gianfranco Costamagna <locutusofborg@debian.org> Sat, 17 Feb 2018 14:25:54 +0100
boinc (7.9.1+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 14 Feb 2018 14:57:32 +0100
boinc (7.9.1+dfsg-1) unstable; urgency=medium
* New upstream version 7.9.1+dfsg
* Drop useless mkdir, automatic
* Update watch file
* explicit disable webview
* Upload to unstable
* Drop patches upstream, patch refresh
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 14 Feb 2018 14:54:59 +0100
boinc (7.8.6+dfsg-3exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 07 Feb 2018 12:38:16 +0100
boinc (7.8.6+dfsg-3) unstable; urgency=medium
* Update 2260.patch with the version accepted from upstream.
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 07 Feb 2018 12:36:59 +0100
boinc (7.8.6+dfsg-2exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 31 Jan 2018 10:34:11 +0100
boinc (7.8.6+dfsg-2) unstable; urgency=medium
* Update the 2260.patch to hopefully remove
the +x bit on the service file (Closes: #888902)
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 31 Jan 2018 10:20:38 +0100
boinc (7.8.6+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Mon, 15 Jan 2018 16:47:52 +0100
boinc (7.8.6+dfsg-1) unstable; urgency=medium
* Upload to unstable
* New upstream version 7.8.6+dfsg
* Patch refresh
* Bump std-version to 4.1.3, no changes required.
-- Gianfranco Costamagna <locutusofborg@debian.org> Mon, 15 Jan 2018 16:46:19 +0100
boinc (7.8.4+dfsg-2exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 11 Jan 2018 14:24:08 +0100
boinc (7.8.4+dfsg-2) unstable; urgency=medium
* debian/patches/2260.patch:
- new service file
* Add boinc to input group, to help idle detection
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 06 Dec 2017 16:43:33 +0100
boinc (7.8.4+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 14 Nov 2017 09:36:02 +0100
boinc (7.8.4+dfsg-1) unstable; urgency=medium
* New upstream version 7.8.4+dfsg
* Upload to unstable
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 14 Nov 2017 09:34:57 +0100
boinc (7.8.3+dfsg-2exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Sat, 21 Oct 2017 14:31:21 +0200
boinc (7.8.3+dfsg-2) unstable; urgency=medium
* Upload to unstable.
* Add new boinc-virtualbox package, helping with virtualbox-based workunits.
- Thanks Laurence for the suggestions, and help in testing.
-- Gianfranco Costamagna <locutusofborg@debian.org> Sat, 21 Oct 2017 14:29:19 +0200
boinc (7.8.3+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 05 Oct 2017 11:22:44 +0200
boinc (7.8.3+dfsg-1) unstable; urgency=medium
* Upload to unstable.
* New upstream version 7.8.3+dfsg
* Upgrade std-version to 4.1.1
* patch refresh
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 05 Oct 2017 11:17:06 +0200
boinc (7.8.2+dfsg-4exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 28 Sep 2017 09:02:08 +0200
boinc (7.8.2+dfsg-4) unstable; urgency=medium
* Upload to unstable
* Ack NMU from Olly Betts, with a *great* thanks
* Fix build failure for hurd
[ Olly Betts ]
* Switch to use wxHtmlWindow instead of wxWebView (Closes: #876940).
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 28 Sep 2017 08:52:47 +0200
boinc (7.8.2+dfsg-3exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 07 Sep 2017 09:41:28 +0200
boinc (7.8.2+dfsg-3) unstable; urgency=medium
* Upload to unstable
* Upgrade std-version to 4.1.0, remove priority extra.
* Fix build with new glibc.
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 06 Sep 2017 08:26:32 +0200
boinc (7.8.2+dfsg-2exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Sun, 03 Sep 2017 07:54:42 +0200
boinc (7.8.2+dfsg-2) unstable; urgency=medium
* Upload to unstable.
* Tweak underlinking patch, to avoid having to pull mariadb library
(libsched is used only by server, and it does directly link mariadb
directly) Closes: #873092
-- Gianfranco Costamagna <locutusofborg@debian.org> Sat, 02 Sep 2017 23:20:11 +0200
boinc (7.8.2+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 31 Aug 2017 18:38:37 +0200
boinc (7.8.2+dfsg-1) unstable; urgency=medium
[ AgentB ]
* recursively chown of boinc directory on boinc postinst script,
to avoid issues when users change the directory path.
[ Gianfranco Costamagna ]
* New upstream release
* Upload to unstable
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 22 Aug 2017 15:54:37 +0200
boinc (7.8.1+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Mon, 14 Aug 2017 10:40:44 +0200
boinc (7.8.1+dfsg-1) unstable; urgency=low
* New upstream major release, patch refresh.
* Update copyright file
* Tweak server package to use system fonts
* Drop patches addressed upstream.
* Upload to unstable.
* Bump std-version to 4.0.0
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 20 Jun 2017 14:51:07 +0200
boinc (7.6.33+dfsg-12exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 30 May 2017 11:39:59 +0200
boinc (7.6.33+dfsg-12) unstable; urgency=medium
[ Steffen Moeller ]
* Added dependency on lsb-base (>= 3.0-6) of boinc-client for the init
script. Thanks to Lintian and the Package Tracker for spotting that.
[ Gianfranco Costamagna ]
* Update the previous boinc-issue-1177.patch with the upstream merged patch.
* Remove boinc-client-fglrx: dead, depends on removed fglrx libraries.
(Closes: #863699)
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 30 May 2017 11:39:31 +0200
boinc (7.6.33+dfsg-11exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 04 Apr 2017 08:10:03 +0200
boinc (7.6.33+dfsg-11) unstable; urgency=medium
* Upload to unstable
* Disable pie removal (Closes: #859352)
-- Gianfranco Costamagna <locutusofborg@debian.org> Sun, 02 Apr 2017 20:36:27 +0200
boinc (7.6.33+dfsg-10exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 15 Mar 2017 17:53:40 +0100
boinc (7.6.33+dfsg-10) unstable; urgency=medium
* New upload changing the working dir during execve
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 15 Mar 2017 17:53:03 +0100
boinc (7.6.33+dfsg-9exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 15 Mar 2017 17:26:14 +0100
boinc (7.6.33+dfsg-9) unstable; urgency=medium
* Really fix the spawn of new shell (LP: #1115607)
* Fix broken symlink for app-dev package (Closes: #857218)
thanks Andreas Beckmann once again
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 15 Mar 2017 16:34:16 +0100
boinc (7.6.33+dfsg-8exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 14 Mar 2017 16:16:34 +0100
boinc (7.6.33+dfsg-8) unstable; urgency=medium
* Upload to unstable
* Disable/Revert previous upload (reopens LP: #1115607)
this works, but has some unintended side effects.
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 14 Mar 2017 16:15:22 +0100
boinc (7.6.33+dfsg-7exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 14 Mar 2017 12:24:19 +0100
boinc (7.6.33+dfsg-7) unstable; urgency=medium
* Upload to unstable.
* Fix spawn of new window (d/p/fix-new-process-spawn.patch).
LP: #1115607
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 14 Mar 2017 12:20:02 +0100
boinc (7.6.33+dfsg-6exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 16 Feb 2017 22:48:11 +0100
boinc (7.6.33+dfsg-6) unstable; urgency=medium
* Upload to unstable.
* Remove explicit libstdc++*-dev dependencies, lets go
for build-essential (Closes: #855316)
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 16 Feb 2017 18:56:07 +0100
boinc (7.6.33+dfsg-5exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 08 Nov 2016 19:36:59 +0100
boinc (7.6.33+dfsg-5) unstable; urgency=medium
* Upload to unstable.
[ Tom Downes ]
* Fix OOM_ADJ handling with a backportable approach
(Closes: #843663)
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 08 Nov 2016 19:34:14 +0100
boinc (7.6.33+dfsg-4exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 25 Oct 2016 07:36:51 +0200
boinc (7.6.33+dfsg-4) unstable; urgency=medium
* New upload, don't use compat 10, parallel is broken.
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 25 Oct 2016 07:35:14 +0200
boinc (7.6.33+dfsg-3exp2) experimental; urgency=medium
* Bump compat level to 10.
* Drop some dependencies.
-- Gianfranco Costamagna <locutusofborg@debian.org> Mon, 24 Oct 2016 23:52:37 +0200
boinc (7.6.33+dfsg-3exp1) unstable; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Mon, 24 Oct 2016 23:33:57 +0200
boinc (7.6.33+dfsg-3) unstable; urgency=medium
* Upload to unstable.
* Switch to unversioned default-mysql again (needs changes
while backporting)
-- Gianfranco Costamagna <locutusofborg@debian.org> Mon, 24 Oct 2016 23:27:12 +0200
boinc (7.6.33+dfsg-2exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Sat, 22 Oct 2016 12:51:53 +0200
boinc (7.6.33+dfsg-2) unstable; urgency=high
[ Gianfranco Costamagna ]
* Upload to unstable
* Switch to unversioned php* packages.
[ Mike Brennan <debian@u4ear.com> ]
* Fix xhost syntax. (Closes: #841665)
-- Gianfranco Costamagna <locutusofborg@debian.org> Mon, 05 Sep 2016 08:24:58 +0200
boinc (7.6.33+dfsg-1exp2) experimental; urgency=medium
* upstream cherry-picks for new openssl 1.1 changes (Closes: #828250)
- debian/patches/e965ea2e32d467e6937f206c96270cabd381df6e.patch:
- debian/patches/1ec4be73d83d6041e4097b547a3fca297dd828db.patch:
- debian/patches/056f788ea3a9ba1b45e17bcacea91a38c1ed8d73.patch:
- debian/patches/7c2cb62aa3a119818e9ceab0d6358f4c910fb337.patch:
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 19 Jul 2016 11:31:07 +0200
boinc (7.6.33+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 08 Jun 2016 23:40:37 +0200
boinc (7.6.33+dfsg-1) unstable; urgency=medium
[ Gianfranco Costamagna ]
* New upstream release
* Upload to unstable
[ Russell Coker ]
* Restore SElinux context on installation for the boinc-client directory.
(Closes: #825465)
-- Gianfranco Costamagna <locutusofborg@debian.org> Fri, 27 May 2016 09:58:01 +0200
boinc (7.6.32+dfsg-2exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Sat, 14 May 2016 10:36:12 +0200
boinc (7.6.32+dfsg-2) unstable; urgency=medium
[ Steffen Moeller ]
* Reintroduced dh_strip override for --dbgsym-migration
[ Gianfranco Costamagna ]
* debian/patches/8416d8a1a423535fbc5d4e7416d6eac8ac5c050b.patch:
cherry-pick to fix crash on headless servers (LP: #1581029)
[ Santiago Vila ]
* Make boinc build faster with dpkg-buildpackage -A (Closes: #824106)
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 12 May 2016 12:01:32 +0200
boinc (7.6.32+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
[ Steffen Moeller ]
* Fix boinc-app-examples build.
* Add some lintian overrides against static apps.
-- Gianfranco Costamagna <locutusofborg@debian.org> Mon, 09 May 2016 10:11:32 +0200
boinc (7.6.32+dfsg-1) unstable; urgency=medium
[ Gianfranco Costamagna ]
* New upstream release.
* Drop debug packages.
* Simplify flags handling
[ Steffen Moeller ]
* Link time optimisation: corrected compiler flag management for
binaries and libraries which yielded a considerable drop in
disk space (85%-95%)
* Better consistency for compiler flags when building wrapper apps
and sample scientific applications.
* Example apps are now truly static.
* Compliance with Debian Policy 3.9.8.
* Added clean for past debian/boinc(-server)-dbg folders to help
the overall experience while upgrading our build folders.
-- Steffen Moeller <moeller@debian.org> Wed, 04 May 2016 13:02:44 +0200
boinc (7.6.31+dfsg-6exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 07 Apr 2016 12:38:17 +0200
boinc (7.6.31+dfsg-6) unstable; urgency=medium
* Upload to unstable
[ Lorenzo Mastrogiacomi ]
* Make cc_config.xml configurable from users
members of boinc group (Closes: #818789).
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 07 Apr 2016 12:36:30 +0200
boinc (7.6.31+dfsg-5exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 05 Apr 2016 10:46:14 +0200
boinc (7.6.31+dfsg-5) unstable; urgency=medium
* Upload to unstable.
[ Christian Beer ]
* debian/patches/dcd9eb3c2ec1f729b12983bf5ee6395565871a22.patch:
fix nvidia GPU detection (Closes: #819990)
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 05 Apr 2016 10:44:47 +0200
boinc (7.6.31+dfsg-4exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Fri, 01 Apr 2016 11:47:42 +0200
boinc (7.6.31+dfsg-4) unstable; urgency=medium
* Upload to unstable.
[ Graham Inggs ]
* do not build cuda package on ppc64el, libcuda1 is not
available there.
-- Gianfranco Costamagna <locutusofborg@debian.org> Fri, 01 Apr 2016 11:44:46 +0200
boinc (7.6.31+dfsg-3exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 31 Mar 2016 12:50:16 +0200
boinc (7.6.31+dfsg-3) unstable; urgency=medium
* Upload to unstable.
[ Graham Inggs ]
* Add ppc64el to nvidia-cuda packages, and refactor
nvidia libraries.
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 31 Mar 2016 12:49:16 +0200
boinc (7.6.31+dfsg-2exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 31 Mar 2016 11:06:22 +0200
boinc (7.6.31+dfsg-2) unstable; urgency=medium
* Upload to unstable.
[ Graham Inggs ]
* Drop nvidia-modprobe and cudart libraries, not used.
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 31 Mar 2016 11:04:10 +0200
boinc (7.6.31+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Fri, 04 Mar 2016 10:09:25 +0100
boinc (7.6.31+dfsg-1) unstable; urgency=medium
* Upload to unstable.
* New upstream release.
-- Gianfranco Costamagna <locutusofborg@debian.org> Fri, 04 Mar 2016 10:08:25 +0100
boinc (7.6.29+dfsg-2exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 03 Mar 2016 17:17:22 +0100
boinc (7.6.29+dfsg-2) unstable; urgency=high
* Upload to unstable.
* fix typo in control.in file, preventing the package
from being backported (libstdc++5-dev not available)
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 03 Mar 2016 17:14:23 +0100
boinc (7.6.29+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 02 Mar 2016 19:24:41 +0100
boinc (7.6.29+dfsg-1) unstable; urgency=medium
* Upload to unstable.
* New upstream release.
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 02 Mar 2016 19:23:55 +0100
boinc (7.6.28+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 23 Feb 2016 17:35:31 +0100
boinc (7.6.28+dfsg-1) unstable; urgency=medium
* Upload to unstable.
* New upstream release, patch refresh.
* Bump std-version to 3.9.7, and watch file to 4.
* Fix unsecure VCS-* fields.
[ Preston Maness ]
* Fix missing stdout/stderr logs with systemd service file.
Closes: #815214
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 23 Feb 2016 17:28:44 +0100
boinc (7.6.25+dfsg-2exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 17 Feb 2016 19:03:56 +0100
boinc (7.6.25+dfsg-2) unstable; urgency=medium
* Upload to unstable.
* Add support for cuda 7.5 (amd64 only). Closes: #814659
- thanks Andreas Beckmann for the useful bug report!
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 17 Feb 2016 19:01:48 +0100
boinc (7.6.25+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 11 Feb 2016 12:42:39 +0100
boinc (7.6.25+dfsg-1) unstable; urgency=medium
* New upstream release.
* Upload to unstable
* Remove sleep 1 in service file, useless because it doesn't
fix the missing GPU detect (LP: #1544300)
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 11 Feb 2016 12:38:59 +0100
boinc (7.6.23+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Mon, 08 Feb 2016 20:20:32 +0100
boinc (7.6.23+dfsg-1) unstable; urgency=medium
* Upload to unstable
* New upstream release (Closes: #811947)
* Drop all patches from Preston: upstream.
* Patch refresh.
-- Gianfranco Costamagna <locutusofborg@debian.org> Mon, 08 Feb 2016 20:00:48 +0100
boinc (7.6.22+dfsg-3exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Fri, 29 Jan 2016 18:37:05 +0100
boinc (7.6.22+dfsg-3) unstable; urgency=medium
[ Marcel Partap]
* Add IOSchedulingClass=idle to service file, avoiding ionice
(Closes: #813134)
-- Gianfranco Costamagna <locutusofborg@debian.org> Fri, 29 Jan 2016 18:35:35 +0100
boinc (7.6.22+dfsg-2exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 27 Jan 2016 09:42:00 +0100
boinc (7.6.22+dfsg-2) unstable; urgency=medium
* Upload to unstable
[ Preston Maness ]
* debian/patches/85c8d0d85c73bbd3508d4e348226dcbcfec1402e.patch:
fix resource leaks when opening display for idle detection.
Closes: #812835
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 27 Jan 2016 09:40:33 +0100
boinc (7.6.22+dfsg-1exp3) experimental; urgency=medium
* Drop 35x11-common_xhost-local, it is just an example
and prevents package installation
-- Gianfranco Costamagna <locutusofborg@debian.org> Mon, 04 Jan 2016 12:03:59 +0100
boinc (7.6.22+dfsg-1exp2) experimental; urgency=medium
[ Preston Maness ]
* Fix xhost problem in the right way(TM)
- d/p/69abe830e6069ec2139783392e8d3a73fb7e6baf.patch
- d/p/fc4446f6027cc0d0e75e634f572b50b88588b57d.patch
[ Gianfranco Costamagna ]
* Fix gbp warning.
* Update copyright, fix a double license on wrappture file.
-- Gianfranco Costamagna <locutusofborg@debian.org> Sun, 03 Jan 2016 16:00:45 +0100
boinc (7.6.22+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 23 Dec 2015 11:04:29 +0100
boinc (7.6.22+dfsg-1) unstable; urgency=medium
[ Gianfranco Costamagna ]
* Upload to unstable
* New upstream release.
[ Preston Maness ]
* debian/patches/882d0cdd43d39bec7328be79c9da73a04c597ec7.patch:
- fix idle detection in case X is not available.
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 23 Dec 2015 11:02:42 +0100
boinc (7.6.21+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 16 Dec 2015 19:08:57 +0100
boinc (7.6.21+dfsg-1) unstable; urgency=medium
[ Gianfranco Costamagna ]
* Upload to unstable
* New upstream release.
* Add libxss-dev to build dependencies again.
[ Preston Maness ]
* debian/patches/156b0be9f13b3427973f1d83a004947225b2d8b6.patch:
- restore idle detection code (Closes: #721298)
- upstream pr: https://github.com/BOINC/boinc/pull/1453
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 16 Dec 2015 19:06:54 +0100
boinc (7.6.20+dfsg-4exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 09 Dec 2015 14:27:53 +0100
boinc (7.6.20+dfsg-4) unstable; urgency=medium
* Upload to unstable
[ Thorsten Glaser ]
* Fix typo preventing correct link of crypt libraries
(Closes: #807472)
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 09 Dec 2015 13:12:49 +0100
boinc (7.6.20+dfsg-3exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 09 Dec 2015 10:35:58 +0100
boinc (7.6.20+dfsg-3) unstable; urgency=medium
* Upload to unstable
* Add libcuda1-352-updates | libcuda1-352 to ease ubuntu installation of
cuda related packages.
* Provide the cuda package also for armhf
* Update copyright, remove rboinc references.
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 09 Dec 2015 10:32:23 +0100
boinc (7.6.20+dfsg-2exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 08 Dec 2015 23:22:03 +0100
boinc (7.6.20+dfsg-2) unstable; urgency=medium
* Upload to unstable
[ Matthias Klose ]
* Build boinc-client-nvidia-cuda on amd64 only.
* boinc-client-nvidia-cuda: Add libcudart7.0 as an alternative dependency.
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 08 Dec 2015 23:19:58 +0100
boinc (7.6.20+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 08 Dec 2015 12:49:25 +0100
boinc (7.6.20+dfsg-1) unstable; urgency=medium
* Upload to unstable
* New upstream release.
- fixes for GPU OpenCl detection.
* Update copyright to use Files-Excluded features, thanks Dmitry for the hint!
(Closes: #806722)
-- Gianfranco Costamagna <locutusofborg@debian.org> Mon, 07 Dec 2015 15:24:19 +0100
boinc (7.6.19+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Mon, 07 Dec 2015 12:33:11 +0100
boinc (7.6.19+dfsg-1) unstable; urgency=medium
* Upload to unstable
* New upstream release, patch refresh.
* Strip more files from source tarball (Closes: #806721)
tanks Dmitry Smirnov for the useful and complete bug report!
-- Gianfranco Costamagna <locutusofborg@debian.org> Mon, 07 Dec 2015 12:29:58 +0100
boinc (7.6.17+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Sat, 21 Nov 2015 20:03:31 +0100
boinc (7.6.17+dfsg-1) unstable; urgency=medium
* Upload to unstable.
* New upstream release, patch refresh.
* Update copyright, remove stuff deleted from upstream.
-- Gianfranco Costamagna <locutusofborg@debian.org> Sat, 21 Nov 2015 19:42:01 +0100
boinc (7.6.15+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 11 Nov 2015 12:18:00 +0100
boinc (7.6.15+dfsg-1) unstable; urgency=medium
* New upstream release.
- drop fix-localization-path-and-missing.patch: upstream
* remove menu file.
* Upload to unstable.
-- Gianfranco Costamagna <locutusofborg@debian.org> Sat, 31 Oct 2015 14:02:43 +0100
boinc (7.6.12+dfsg-2exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Fri, 30 Oct 2015 16:39:36 +0100
boinc (7.6.12+dfsg-2) unstable; urgency=medium
[ Michal Hocko ]
* get rid of deprecated oom_adj when a new oom_score_adj is available
(Closes: #803484)
-- Gianfranco Costamagna <locutusofborg@debian.org> Fri, 30 Oct 2015 16:34:18 +0100
boinc (7.6.12+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 06 Oct 2015 19:35:22 +0200
boinc (7.6.12+dfsg-1) unstable; urgency=medium
* fix-localization-path-and-missing.patch (forwarded upstream)
- Install locales in LC_MESSAGES subdir (LP: #1315614)
- Add sv localization to install (LP: #1502568, Closes: #800838)
* Upload to unstable.
* New upstream release.
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 06 Oct 2015 06:32:18 +0200
boinc (7.6.11+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Sun, 27 Sep 2015 18:14:15 +0200
boinc (7.6.11+dfsg-1) unstable; urgency=medium
[ Manolo Díaz ]
* Fix typo in BOINC_OOM_AD, preventing a variable from
being correctly used. (Closes: #800086)
[ Gianfranco Costamagna ]
* New upstream release.
* Upload to unstable.
* Add a lintian override about source is missing for js file
(false positive)
-- Gianfranco Costamagna <locutusofborg@debian.org> Sat, 26 Sep 2015 18:22:34 +0200
boinc (7.6.9+dfsg-2exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Mon, 14 Sep 2015 10:43:07 +0200
boinc (7.6.9+dfsg-2) unstable; urgency=medium
* Upload to unstable.
* Add license for wrappture, thanks Andrew M. 'Leny' Lindley
and Maximilian Rüdiger for the report!
* Update my uid
* Update bash-completion installation path
* Fix libstdc++ dependencies to make lintian happy
* Override source-is-missing lintian error for currency.js file
- this file is a source file.
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 09 Sep 2015 07:41:50 +0200
boinc (7.6.9+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 08 Sep 2015 14:42:07 +0200
boinc (7.6.9+dfsg-1) unstable; urgency=medium
* New upstream release
* link with GLU, to fix another missing library
* Refactor packaging:
- debian/clean: clean files leftover during build.
- debian/rules: configure with --enable-dynamic-client-linkage
- debian/patches/Missing_libSched.patch: deleted
- debian/patches/boinc-server-dynamic-libs.patch: deleted
- debian/patches/006_correct_catalog_path.patch: delete useless part
- debian/patches/boinclib_shared.patch: link in the proper way
- debian/patches/file_upload_handler_in_sched_linking.patch: refresh
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 03 Sep 2015 21:04:16 +0200
boinc (7.6.6+dfsg-3exp1) experimental; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
* d/get-orig-tarball.sh, remove some more Windows autogenerated files.
* d/copyright: update to reflect removed files.
* update README.source file.
-- Gianfranco Costamagna <locutusofborg@debian.org> Mon, 03 Aug 2015 18:19:11 +0200
boinc (7.6.6+dfsg-3) unstable; urgency=medium
* d/p/fix-underlinking.patch (Closes: #794107).
Thanks Thorsten Glaser for the bug report!
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 30 Jul 2015 09:18:00 +0200
boinc (7.6.6+dfsg-2exp1) unstable; urgency=medium
* Upload to experimental again, with the boinc-server-* packages.
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 29 Jul 2015 20:07:29 +0200
boinc (7.6.6+dfsg-2) unstable; urgency=medium
* Upload to unstable.
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 29 Jul 2015 20:06:43 +0200
boinc (7.6.6+dfsg-1exp1) experimental; urgency=medium
[ Gianfranco Costamagna ]
* New upstream release, patch refresh.
* Update my uid
* Re-enable screensaver package.
* Add nvidia-modprobe as dependency (LP: #1400021)
* d/control.in according to gcc, virtual package libstdc++-dev
is enough to provide libstdc++.a.
* d/patches/coproc.patch, fix build failure.
* Make boinc Multi-Arch: same
* Drop patches now that 7.5 is a tag from master
- debian/patches/coproc.patch
- debian/patches/fix-typo.patch
- debian/patches/server_status_php.patch
[ Vincent Danjean ]
* fix gpu stuff (Closes: #763655)
[ Michael Tautschnig ]
* d/p/envargs.patch, fix inconsistencies spot with research compiler.
(Closes: #747964)
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 22 Jul 2015 14:25:20 +0200
boinc (7.4.23+dfsg-2exp1) experimental; urgency=medium
* Upload to experimental, with the boinc-server-* packages.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Wed, 10 Dec 2014 13:27:40 +0100
boinc (7.4.23+dfsg-2) unstable; urgency=low
* Upload to unstable.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Wed, 10 Dec 2014 13:26:02 +0100
boinc (7.4.23+dfsg-1exp3) experimental; urgency=medium
[ Nelson A. de Oliveira ]
* Fix wrong chown binary path (Closes: #768429).
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Fri, 07 Nov 2014 12:30:50 +0100
boinc (7.4.23+dfsg-1exp2) experimental; urgency=medium
* Fix other dependencies on dbg packages.
* Reorder debian patches, drop useless and old ones.
* Add pre-depends on shared multiarch packages.
* Add service file, tweaked from the fedora one.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Sat, 18 Oct 2014 14:34:41 +0200
boinc (7.4.23+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental, with the boinc-server-* packages.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Fri, 17 Oct 2014 17:15:26 +0200
boinc (7.4.23+dfsg-1) unstable; urgency=medium
* New upstream release candidate.
* Relaxing dependencies between packages, to allow binNMUs
(Closes: #765670).
* Remove useless -dbg packages dependencies.
* Make boinc multiarch compatible:
- switch dev packages to arch:any
- remove disabled multiarch tweaks in rules file.
- tweak .install files to point to the triplet lib directory
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Fri, 17 Oct 2014 14:49:21 +0200
boinc (7.4.22+dfsg-3exp1) experimental; urgency=medium
* Upload to experimental, with the boinc-server-* packages.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Sat, 11 Oct 2014 18:06:45 +0200
boinc (7.4.22+dfsg-3) unstable; urgency=medium
* Upload to unstable.
[ mdt]
* Add lbcudart-6.5 compatibility.
[ Gianfranco Costamagna ]
* Fix again some lintian copyright problems.
* Remove a pyshared empty directory (server-maker).
* Fix missing "Keywords" in desktop file.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Fri, 10 Oct 2014 19:59:25 +0200
boinc (7.4.22+dfsg-2exp1) experimental; urgency=medium
* Upload to experimental, with the boinc-server-* packages.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Wed, 01 Oct 2014 17:59:09 +0200
boinc (7.4.22+dfsg-2) unstable; urgency=medium
* Upload to unstable.
* Build with NDEBUG to disable massive debug output
in ~/.BOINC/stderrgui.txt file (Closes: #763113)
* Fix some entries in copyright file for lintian happyness.
* Don't require all facilities in boinc-client start,
making lintian happy again.
* Update copyright file.
* Bump std-version to 3.9.6, no changes required.
* Fix dh_install and dh_strip targets.
[ mdt ]
* Add dh-python as B-D.
* Add new libcuda{,rt} compatibility.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Wed, 01 Oct 2014 17:57:03 +0200
boinc (7.4.22+dfsg-1exp1) experimental; urgency=low
* Upload to experimental, with the boinc-server-* packages.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Wed, 24 Sep 2014 10:53:05 +0200
boinc (7.4.22+dfsg-1) unstable; urgency=low
* New upstream release.
* Remove termios_is_everywhere.patch, fixed upstream.
* Remove libx11-dev, libxcb-dpms0-dev, libxss-dev, libxext-dev
from build dependencies, upstream now uses /dev to
get devices information.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Wed, 03 Sep 2014 10:27:56 +0200
boinc (7.4.18+dfsg-1exp2) experimental; urgency=medium
* Re-enable termios_is_everywhere.patch, kfreebsd
still have the build failures.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Tue, 02 Sep 2014 09:59:08 +0200
boinc (7.4.18+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental, with the boinc-server-* packages.
* Disable no-add-needed LDFLAG.
* Attempt to disable termios_is_everywhere.patch and
upstream_sztaki_configureEval.patch
* Patch tweaks and refresh.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Mon, 01 Sep 2014 16:20:15 +0200
boinc (7.4.18+dfsg-1) unstable; urgency=medium
* Upload to unstable.
* New upstream release, drop mv-md5.patch and
libnotify-0.7.patch, accepted upstream.
* Patch refresh.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Mon, 01 Sep 2014 15:01:37 +0200
boinc (7.4.14+dfsg-2exp2) experimental; urgency=medium
* Correctly exporting LDFLAGS prior to add them.
* Move .gitignore to debian directory, to keep the delta from
upstream minimal.
* d/p/fix-dependencies.patch depending from a target rather than la
(to avoid race conditions between the "ln" and the use of the
static library)
* Remove double LDFLAG inclusion in add-ldflags.patch
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Sat, 30 Aug 2014 20:31:45 +0200
boinc (7.4.14+dfsg-2exp1) experimental; urgency=medium
* Upload to experimental, with the boinc-server-* packages.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Thu, 28 Aug 2014 19:00:36 +0200
boinc (7.4.14+dfsg-2) unstable; urgency=medium
* Update fix-typo.patch with another typo fixed.
* Move boinc-client from depends of boinc-manager.
* Export again hardening flags.
* Fix typo in rules file (override_dh_auto_install called
as rm argument).
* Enable parallel builds only for experimental (Closes: #758184).
* Fix lintian duplicate short description on boinc-dev.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Thu, 14 Aug 2014 10:38:10 +0200
boinc (7.4.14+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental, with the boinc-server packages.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Wed, 13 Aug 2014 20:36:56 +0200
boinc (7.4.14+dfsg-1) unstable; urgency=medium
* New upstream bugfix release.
* Remove X-interactive from init script, not used.
* Fix a typo in lib/Makefile.am (typo-fix.patch)
* Disable dynamic_libboinc.patch, it was not needed and moreover
it causes the dependency chain to be deleted
* Remove parallel-build.patch, not needed anymore.
* Simplify debian/rules, many workarounds are not needed.
* Use dh-autoreconf.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Tue, 12 Aug 2014 11:10:29 +0200
boinc (7.4.8+dfsg-3exp3) experimental; urgency=medium
* d/p/parallel-build.patch d/r
enabled parallel build for all builds, now the package
should build properly.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Tue, 05 Aug 2014 13:22:53 +0200
boinc (7.4.8+dfsg-3exp2) experimental; urgency=medium
* Build with --parallel for experimental builds
* Truly remove .o files from boinc-server-maker
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Mon, 21 Jul 2014 11:59:22 +0200
boinc (7.4.8+dfsg-3exp1) experimental; urgency=medium
* Upload to experimental, with server packages.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Fri, 18 Jul 2014 12:16:30 +0200
boinc (7.4.8+dfsg-3) unstable; urgency=medium
* Upload to unstable.
* Reverting some control.in changes to let the package
be NMUable.
* Remove a .o file from server-maker package
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Fri, 18 Jul 2014 10:54:49 +0200
boinc (7.4.8+dfsg-2exp1) experimental; urgency=medium
* Upload to experimental.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Wed, 16 Jul 2014 16:50:27 +0200
boinc (7.4.8+dfsg-2) unstable; urgency=medium
[ Steffen Moeller ]
* Move ati and nvidia libraries from depends to suggests,
avoiding the removals from testing at each xorg transition.
[ Gianfranco Costamagna ]
* Change libwxgtk2.8-dbg to libwxgtk3.0-0-dbg.
* Add some cuda suggestions, to help both ubuntu and debian users
Thanks Danilo for the patch.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Fri, 04 Jul 2014 14:22:31 +0200
boinc (7.4.8+dfsg-1exp1) experimental; urgency=medium
* Upload to experimental.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Sat, 28 Jun 2014 12:55:35 +0200
boinc (7.4.8+dfsg-1) unstable; urgency=medium
* New upstream release. (LP: #1332955)
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Sat, 28 Jun 2014 12:35:21 +0200
boinc (7.4.7+dfsg-1exp1) experimental; urgency=medium
* New upstream release.
[ Steffen Moeller ]
* Automatic download of Linux BOINC server apps.
[ Guo Yixuan (郭溢譞) ]
* Dropped ticket_1168_verifycerts.patch: the bug was already fixed.
* Dropped several debugging-only patches:
- investigate_boinc_api.patch
- opendir_errno.patch
- opendir_error_messages.patch
- slot_dir_source_trace.patch
- improve_opendir_warning.patch
* Dropped sched_driver_f_free.patch: the relevant part was already
merged in upstream.
[ Gianfranco Costamagna ]
* Dropped fix-747964.patch (Reopen: #747964)
Upstream says this is unreachable code, no need to fix.
* Update cc_config.xml link, thanks to Danilo for the report.
-- Guo Yixuan (郭溢譞) <culu.gyx@gmail.com> Mon, 23 Jun 2014 22:00:17 -0400
boinc (7.4.1+dfsg-1exp1) experimental; urgency=medium
* New upstream release, some api changes, patch refresh
* d/r: Removing some buildflags includes.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Wed, 11 Jun 2014 12:25:03 +0200
boinc (7.3.19+dfsg-3exp1) experimental; urgency=medium
* Upload to experimental
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Mon, 02 Jun 2014 22:53:22 +0200
boinc (7.3.19+dfsg-3) unstable; urgency=medium
* Upload to unstable, with disabled dependency tracking
again, and disabled parallel builds.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Mon, 02 Jun 2014 22:42:40 +0200
boinc (7.3.19+dfsg-2exp2) experimental; urgency=low
* Trying to fix FTBFS by disabling parallel builds.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Mon, 02 Jun 2014 08:10:31 +0200
boinc (7.3.19+dfsg-2exp1) experimental; urgency=medium
* Upload to experimental, with server packages.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Fri, 30 May 2014 15:35:34 +0200
boinc (7.3.19+dfsg-2) unstable; urgency=low
[ Guo Yixuan (郭溢譞) ]
* Use more debhelper features.
* Dropped some patches
- parse_issues.patch: since the relevant part has been applied by
the upstream already.
- nvidia_mem_display_simplification.patch: the relevant part was
already removed in a previous adjustment.
[ Gianfranco Costamagna ]
* Upload to unstable (Closes: #749843, #747964, #746830)
* Fix typo in debian/rules, we were unnecessarily building server stuff.
* Split the server dynamic linkage away from Missing_libSched.patch in a new
boinc-server-dynamic-libs.patch patch
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Fri, 30 May 2014 15:27:55 +0200
boinc (7.3.19+dfsg-1) experimental; urgency=low
* New upstream release, wx3.0 compatible.
- add libwxgtk-webview3.0-dev as B-D
* Removed patches addressed upstream:
- 0001-Client-Unix-attempt-to-fix-freebsd-build-error.patch
- correctly-set-OBJCXX.patch
- hurd-ftbfs.patch
- fixed-tools-permissions.patch
- fix-android-build.patch
- fix-file-perms.patch
- fix-italian-po.patch
- fix-lp-1274456.patch
* Removed fix-add-exclusive-app.patch, addressed in wx3.0 switch
* Tweak envargs patch, changing prototype.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Wed, 21 May 2014 16:49:07 +0200
boinc (7.2.47+dfsg-3) UNRELEASED; urgency=medium
* Add return values to envargs function (Closes: #747964)
Note: upstream didn't apply this patch because it seems to be
unreachable code.
* Fix gcc-4.9 build failure (Closes: #746830)
- debian/patches/Missing_libSched.patch
- patches/correctly-set-OBJCXX.patch
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Sun, 18 May 2014 20:58:51 +0200
boinc (7.2.47+dfsg-2exp1) experimental; urgency=medium
* Release to experimental
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Sun, 18 May 2014 20:53:31 +0200
boinc (7.2.47+dfsg-2) unstable; urgency=medium
* samples/zip/unzip only built with server.
* Revert Versioned dependency on libcurl4-openssl-dev (>= 7.36.0)
the build failure caused by old libcurl seems fixed.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Sat, 03 May 2014 15:15:32 +0200
boinc (7.2.47+dfsg-1) experimental; urgency=medium
* New upstream release.
* Versioned dependency on libcurl4-openssl-dev (>= 7.36.0) [moeller]
-- Guo Yixuan (郭溢譞) <culu.gyx@gmail.com> Sat, 05 Apr 2014 20:46:17 -0400
boinc (7.2.44+dfsg-1) UNRELEASED; urgency=medium
* New upstream release.
-- Guo Yixuan (郭溢譞) <culu.gyx@gmail.com> Sat, 05 Apr 2014 13:09:31 -0400
boinc (7.2.43+dfsg-1) UNRELEASED; urgency=medium
* New upstream release. (only bumped the version)
-- Guo Yixuan (郭溢譞) <culu.gyx@gmail.com> Sat, 05 Apr 2014 12:51:38 -0400
boinc (7.2.42+dfsg-1) unstable; urgency=medium
* New upstream hotfix release.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Sat, 01 Mar 2014 11:34:55 +0100
boinc (7.2.39+dfsg-2) unstable; urgency=low
[ Gianfranco Costamagna ]
* Probably fixed kfreebsd-* build failure with upstream patch
0001-Client-Unix-attempt-to-fix-freebsd-build-error
[ Guo Yixuan (郭溢譞) ]
* Updated my uid in debian/control.
* Corrected dependencies for boinc-dev split (Closes: #739663):
- libboinc7: added breaks + replaces boinc-dev << 7.0.28+dfsg-3.
* Brought boinc-amd-opencl back to sid.
-- Guo Yixuan (郭溢譞) <culu.gyx@gmail.com> Tue, 25 Feb 2014 01:21:44 -0500
boinc (7.2.39+dfsg-1) unstable; urgency=low
* New upstream stable release, patch refresh
* moved boinc-amd-opencl to experimental, to avoid "new" upload.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Tue, 18 Feb 2014 10:05:05 +0100
boinc (7.2.33+dfsg-2) UNRELEASED; urgency=low
[Gianfranco Costamagna]
* debian/rules
- server always built
* debian/control
- Moved from libcuda1-ia32 to libcuda1-i386 (Closes: #730841)
- Removed ia32-libs references (Closes: #736814)
- Removed libcuda-5.0-1, provided by libcuda1
- Re-enabled boinc-amd-opencl for unstable
- Dropped nvidia-current in favour of nvidia-304 | nvidia-310 | nvidia-319
(LP: #1268409)
- Added Jussi Lahtinen's patch for fixing LP: #1274456
[Steffen Moeller]
* Removed Daniel Hahler and Rene Mayorga from uploaders list
* More rigorous clean: target (.libs, config.status, libtool)
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Sat, 15 Feb 2014 14:33:45 +0100
boinc (7.2.33+dfsg-1) unstable; urgency=low
* New upstream public release.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Mon, 25 Nov 2013 18:02:52 +0100
boinc (7.2.28+dfsg-1exp2) UNRELEASED; urgency=low
* Enabling boinc-amd-opencl for experimental builds
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Thu, 21 Nov 2013 11:35:52 +0100
boinc (7.2.28+dfsg-1exp1) experimental; urgency=low
* Same as -1, with server packages.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Fri, 08 Nov 2013 21:21:30 +0100
boinc (7.2.28+dfsg-1) unstable; urgency=low
* New upstream public release.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Fri, 08 Nov 2013 20:48:06 +0100
boinc (7.2.27+dfsg-1exp1) experimental; urgency=low
* New upstream version, with server packages.
* Bumped policy to 3.9.5 - no changes required
-- Steffen Moeller <moeller@debian.org> Tue, 05 Nov 2013 21:03:04 +0100
boinc (7.2.22+dfsg-1exp1) experimental; urgency=low
* Same as -1, with server packages.
-- Guo Yixuan <culu.gyx@gmail.com> Sat, 19 Oct 2013 00:24:11 -0400
boinc (7.2.22+dfsg-1) unstable; urgency=low
[ Gianfranco Costamagna ]
* New upstream release
[ Guo Yixuan ]
* Removed boinc-amd-opencl, since fglrx-driver was removed from testing.
-- Guo Yixuan <culu.gyx@gmail.com> Sat, 19 Oct 2013 00:05:53 -0400
boinc (7.2.17+dfsg-1) UNRELEASED; urgency=low
* New upstream release.
-- Guo Yixuan <culu.gyx@gmail.com> Mon, 23 Sep 2013 13:29:53 -0400
boinc (7.2.14+dfsg-1exp2) UNRELEASED; urgency=low
[ Steffen Moeller ]
* Adapting for upstream's additional directories in html/
* boinc-server-maker
- works with Apache 2.4's extra security
- added recommends for coreutils because of 'arch' utility
[ Guo Yixuan ]
* Disabled silent rules for build log check.
(debian/patches/disable_silent_rules.patch)
-- Steffen Moeller <moeller@debian.org> Sat, 31 Aug 2013 20:08:38 +0200
boinc (7.2.14+dfsg-1exp1) experimental; urgency=low
* Building boinc-server-maker package
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Sat, 31 Aug 2013 01:05:41 +0200
boinc (7.2.14+dfsg-1) unstable; urgency=low
* New upstream release
* Now the server package is built or not depending on
the debian target series:
- target=unstable, server NOT built
- target=experimental, server built
* Fixed clean in debian/rules file
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Sat, 31 Aug 2013 00:57:40 +0200
boinc (7.2.11+dfsg-1exp4) UNRELEASED; urgency=low
[ Gianfranco Costamagna ]
* Addressed executable-not-elf-or-script lintian warning
- usr/lib/boinc-server-maker/tools/project.xml
- usr/share/doc/boinc-server-maker/examples/wrapper/build_android.sh
* Addressed other file permissions problems
* Fixed italian localization problem
[ Guo Yixuan ]
* Added ${python:Depends} and ${perl:Depends} to debian/control.in
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Sat, 24 Aug 2013 01:20:07 +0200
boinc (7.2.11+dfsg-1exp3) experimental; urgency=low
* Tweaked again hurd patches, now the missing
MAXPATHLEN should have been addressed
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Thu, 22 Aug 2013 23:14:34 +0200
boinc (7.2.11+dfsg-1exp2) experimental; urgency=low
* Trying to fix hurd ftbfs
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Thu, 22 Aug 2013 14:19:03 +0200
boinc (7.2.11+dfsg-1exp1) experimental; urgency=low
* Added boinc-server-maker package
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Wed, 21 Aug 2013 16:51:49 +0200
boinc (7.2.11+dfsg-1) unstable; urgency=low
* New upstream release
- Localizations updated
* Fixed some lintian warnings
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Wed, 21 Aug 2013 16:36:51 +0200
boinc (7.2.10+dfsg-1exp1) experimental; urgency=low
* New upstream release, enabled server building.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Mon, 12 Aug 2013 00:43:09 +0200
boinc (7.2.10+dfsg-1) unstable; urgency=low
* New upstream release, patch refresh.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Mon, 12 Aug 2013 00:39:28 +0200
boinc (7.2.7+dfsg-2) UNRELEASED; urgency=low
* boinc-nvidia-cuda depends on libcuda1 | nvidia-current | libcuda-5.0-1
(LP: #1129409).
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Fri, 09 Aug 2013 09:33:44 +0200
boinc (7.2.7+dfsg-1) unstable; urgency=low
* New upstream release, patch refresh.
* Linking libboinc_crypt.so against $(SSL_LIBS).
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Thu, 25 Jul 2013 10:56:43 +0200
boinc (7.2.4+dfsg-1exp1) experimental; urgency=low
[ Steffen Moeller ]
* New upstream version.
- reduced clang warnings patches
[ Guo Yixuan ]
* Removed a workaround (for seti segfault).
-- Guo Yixuan <culu.gyx@gmail.com> Wed, 24 Jul 2013 14:21:51 +0800
boinc (7.1.21+dfsg-1exp2) experimental; urgency=low
* php5-gd only recommended for boinc-server-maker
-- Steffen Moeller <moeller@debian.org> Thu, 27 Jun 2013 22:05:48 +0200
boinc (7.1.21+dfsg-1exp1) UNRELEASED; urgency=low
* Added boinc-server-maker package.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Thu, 27 Jun 2013 14:52:53 +0200
boinc (7.1.21+dfsg-1) unstable; urgency=low
* New upstream release.
* Added adding_lpthread_and_ljpeg.patch to fix a FTBFS
with ubuntu saucy.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Thu, 27 Jun 2013 14:49:00 +0200
boinc (7.1.20+dfsg-1) unstable; urgency=low
* New upstream release.
- Italian translation fixed.
- Really fixed (lp: #179849), for a configure error
dpms code wasn't built.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Tue, 25 Jun 2013 09:25:31 +0200
boinc (7.1.18+dfsg-1) UNRELEASED; urgency=low
* New upstream release.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Wed, 19 Jun 2013 19:09:48 +0200
boinc (7.1.10+dfsg-2) UNRELEASED; urgency=low
* Experimenting with memory-only shared-memory
This is highly incompatible with regular clients.
It is expected to work only with Debian's clients after a rebuild.
-- Steffen Moeller <moeller@debian.org> Wed, 19 Jun 2013 17:50:55 +0200
boinc (7.1.10+dfsg-1) unstable; urgency=low
* New upstream release.
* Readding sleep (10 seconds) to workaround GPU bug (lp: #1177433)
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Fri, 07 Jun 2013 08:34:03 +0200
boinc (7.1.7+dfsg-1) UNRELEASED; urgency=low
* New upstream release.
Many patches have been accepted upstream.
* Bumped debian/compat to 9.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Wed, 05 Jun 2013 11:47:49 +0200
boinc (7.1.1+dfsg-2) UNRELEASED; urgency=low
* compiled with clang
- removed patches no longer required
-- Steffen Moeller <moeller@debian.org> Thu, 16 May 2013 22:09:08 +0200
boinc (7.1.1+dfsg-1) UNRELEASED; urgency=low
[ Steffen Moeller ]
* Introduced series of fclose() to fight potential file pointer leak
* Addressed a few issues with .po files (de) as indicated on
http://i18n.debian.org/l10n-pkg-status/b/boinc.html
[ Gianfranco Costamagna ]
* New upstream release.
* Tweaked debian/watch.
* Removed some patches accepted upstream.
* Simplified debian/rules.
* Patch refresh.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Thu, 16 May 2013 22:09:08 +0200
boinc (7.0.65+dfsg-3) unstable; urgency=low
[ Gianfranco Costamagna ]
* Added lightdm to init script (lp: #1177433)
* Removed the 5 sec sleep in init script.
[ Guo Yixuan ]
* Removed unused lintian override for boinc-manager.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Wed, 15 May 2013 17:33:13 +0200
boinc (7.0.65+dfsg-2) unstable; urgency=low
[ Gianfranco Costamagna ]
* Disabled checkin_notes in override_install_changelogs,
not updated anymore by upstream.
* Fixed a lintian warning.
* Fixed boinc-amd-opencl depends on ubuntu (lp: #1176148).
* Added project_specific_defines.h to usr/include/boinc
(Closes: #707369, #707375)
[ Rodrigo Silva ]
* New debian/icons and refactor the icon size
directories (lp: #1173622).
* Improved manager launcher.
* Fix typos in package descriptions. Thanks Pierre Slamich for spotting
and Pascal De Vuyst for reporting! (Closes: #707989)
[ Guo Yixuan ]
* libboinc-app-dev dependency: use libstdc++6-4.7-dev as default
libstdc++-dev,
* boinc-server-maker dependency: use mysql-server-5.5 as default
virtual-mysql-server, both thanks to Danilo.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Sun, 05 May 2013 11:41:37 +0200
boinc (7.0.65+dfsg-1) unstable; urgency=low
[ Gianfranco Costamagna ]
* New upstream release.
* debian/control.in dropped version check
- pkg-config (>= 0.15) (version 0.25 in stable)
- autoconf (>= 2.59) (version 2.67 in stable)
- automake1.9 (>= 1.9.3) (version 1.9.6 in stable)
- libcurl4-openssl-dev (>= 7.17.1) (version 7.21.0 in stable)
- python (>= 2.3) (version 2.6.6 in stable)
- Breaks: udev (<< 136-1) (version 164 in stable)
- removed boinc-app-seti from boinc-client Suggests field
- Bumped debhelper required version to 8
debian/compat
- Bumped to version 8
[ Steffen Moeller ]
* Merged work on packaging of BOINC server code
* boinc-cgi-stripchart package now built together with server parts
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Tue, 30 Apr 2013 21:45:44 +0200
boinc (7.0.60+dfsg-1) UNRELEASED; urgency=low
* New upstream release.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Tue, 02 Apr 2013 18:38:43 +0200
boinc (7.0.59+dfsg-1) UNRELEASED; urgency=low
* New upstream release.
* New debian/watch file for upstream git switch.
* changing cc_client.xml permissions to boinc:boinc
from root:boinc (lp: #1162596)
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Thu, 28 Mar 2013 23:25:42 +0100
boinc (7.0.58+dfsg-1) UNRELEASED; urgency=low
* New upstream release.
* Fix arch detection in About dialog box.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Fri, 22 Mar 2013 17:47:31 +0100
boinc (7.0.56+dfsg-1) UNRELEASED; urgency=low
* New upstream release.
- Fix for man pages (lp: #1140560) (Thanks Christian Beer)
- Fix for xml parsing issues.
- Fix in work fetch.
- Fix issue in Milkyway@Home (fixed in .55 release)
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Wed, 13 Mar 2013 15:42:42 +0100
boinc (7.0.54+dfsg-1) UNRELEASED; urgency=low
* New upstream release.
* Dropped boincmgr_fix_long_pointers.patch accepted upstream.
* New Patch disable_new_version_check.patch (lp: #1140597)
* Dropped libssl0.9.8-dbg suggestion and added libssl1.0.0-dbg instead
(Closes: #702741)
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Thu, 07 Mar 2013 17:06:38 +0100
boinc (7.0.53+dfsg-1) UNRELEASED; urgency=low
[ Gianfranco Costamagna ]
* New upstream release.
* Added boincmgr_fix_long_pointers.patch to fix boincmgr crash
Thanks Alyssa Milburn (Closes: #679207)
* Added sleep to boinc-client init script to workaround GPU
detection issues (lp: #933354).
* Bumped policy to 3.9.4. No changes required
[ Guo Yixuan ]
* Reverted the workaround for #679207.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Sun, 24 Feb 2013 23:05:30 +0100
boinc (7.0.52+dfsg-2) experimental; urgency=low
* Try to fix ftbfs on hurd-i386.
* Rebuild against libc6 2.13 (in sid).
-- Guo Yixuan <culu.gyx@gmail.com> Wed, 20 Feb 2013 16:16:45 +0800
boinc (7.0.52+dfsg-1) experimental; urgency=low
* New upstream release, all platforms.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Thu, 14 Feb 2013 16:54:55 +0100
boinc (7.0.51+dfsg-1) UNRELEASED; urgency=low
* New upstream release.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Wed, 13 Feb 2013 22:15:44 +0100
boinc (7.0.50+dfsg-1) experimental; urgency=low
* New upstream release.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Sat, 09 Feb 2013 13:38:34 +0100
boinc (7.0.48+dfsg-1) UNRELEASED; urgency=low
* New upstream release.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Fri, 08 Feb 2013 15:42:50 +0100
boinc (7.0.47+dfsg-1) UNRELEASED; urgency=low
* New upstream release, l10n updated.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Thu, 31 Jan 2013 22:09:35 +0100
boinc (7.0.46+dfsg-1) UNRELEASED; urgency=low
* New upstream release
* Fixed a FTBFS when building without zip library. (Closes: #699789)
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Tue, 29 Jan 2013 23:46:33 +0100
boinc (7.0.45+dfsg-1) experimental; urgency=low
* New upstream release
* Removed boinc zip library from client builds.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Fri, 25 Jan 2013 00:01:24 +0100
boinc (7.0.44+dfsg-1) UNRELEASED; urgency=low
[ Gianfranco Costamagna ]
* New upstream release
* Added libxext-dev and libxcb-dpms0-dev in order to address a long time
bug. (lp: #179849)
[ Guo Yixuan ]
* Added libx11-dev to build-deps. (It's used directly in
client/hostinfo_unix.cpp.)
* link_with_gold.patch: patched configure.ac to add -lX11 for linking client
with ld.gold.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Wed, 09 Jan 2013 17:40:34 +0100
boinc (7.0.42+dfsg-1) UNRELEASED; urgency=low
* New upstream release
* Revised some patches.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Wed, 12 Dec 2012 01:53:09 +0100
boinc (7.0.40+dfsg-1) UNRELEASED; urgency=low
* New upstream release
* Dropped mac_addresses_cores_in_kfreebsd.patch (file to patch deleted upstream)
and ensure_there_is_no_newline_in_passwd.patch (applied upstream)
* Revised slot_dir_source_trace.patch
* Removed some old patches.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Sat, 08 Dec 2012 01:26:23 +0100
boinc (7.0.39+dfsg-1) UNRELEASED; urgency=low
* New upstram release
* Dropped add-missing-test-files.patch and add-missing-stripchart-samples.patch patch
already applied upstream
* Added link time optimisation.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Mon, 26 Nov 2012 00:11:23 +0100
boinc (7.0.38+dfsg-1) UNRELEASED; urgency=low
* New upstream release
* Revised some patches (some of them should will be removed in a future commit)
* Added add-missing-test-files.patch to fix a FTBFS
* Added add-missing-stripchart-samples.patch to fix another FTBFS.
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Mon, 05 Nov 2012 13:16:32 +0100
boinc (7.0.36+dfsg-3) UNRELEASED; urgency=low
[ Steffen Moeller ]
* Added Gianfranco to uploaders.
[ Gianfranco Costamagna ]
* Added missing_libs_wrapper.patch to fix a FTBFS on ubuntu 13.04
* added boinc-ftbfs-hurd.patch from upstream
[ Guo Yixuan ]
* Commented out debian/watch, as upstream switched to git.
-- Guo Yixuan <culu.gyx@gmail.com> Sat, 03 Nov 2012 00:27:32 +0800
boinc (7.0.36+dfsg-2) experimental; urgency=low
[ Guo Yixuan ]
* debian/control:
- Removed the deprecated DMUA field.
- Use Breaks plus Replaces for moving files from boinc-dev
to libboinc*.
* debian/patches:
- Removed some old patches (those not in series anymore).
- Refreshed cppcheck_avoid_redundant_check.patch.
[ Gianfranco Costamagna ]
* without boinclib_shared.patch boinc FTBFS, changed the order of patch
[ Steffen Moeller ]
* reactivated boinc-amd-opencl package
-- Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Fri, 12 Oct 2012 13:26:54 +0200
boinc (7.0.36+dfsg-1) unstable; urgency=low
* Team upload.
[ Gianfranco Costamagna ]
* New upstream version
[ Guo Yixuan ]
* Updated api_NULL_not_defined.patch.
[ Steffen Moeller ]
* Updated slot_dir_source_trace.patch.
* Updated opendir_error_messages.patch.
-- Debian BOINC Maintainers <pkg-boinc-devel@lists.alioth.debian.org> Sun, 16 Sep 2012 21:28:52 +0200
boinc (7.0.34+dfsg-6) UNRELEASED; urgency=low
[ Steffen Moeller ]
* Fixing upstream bug
https://boinc.berkeley.edu/trac/ticket/1168
on dir_scan usage.
[ Guo Yixuan ]
* Updated debian/copyright to new format, added a section about api/ttf/*.
* Clean up debian/rules.
-- Steffen Moeller <moeller@debian.org> Sun, 02 Sep 2012 11:04:19 +0200
boinc (7.0.34+dfsg-5) UNRELEASED; urgency=low
* Added better error messages for opendir() failures
-- Steffen Moeller <moeller@debian.org> Sat, 01 Sep 2012 15:13:26 +0200
boinc (7.0.34+dfsg-4) unstable; urgency=low
[ Guo Yixuan ]
* Fix of debian/patch on pathlength
[ Steffen Moeller ]
* Corrected handling of memory reallocation in client/stream.cpp
* Improved cpptest cleanliness
-- Steffen Moeller <moeller@debian.org> Sat, 01 Sep 2012 15:13:26 +0200
boinc (7.0.34+dfsg-3) UNRELEASED; urgency=low
[ Steffen Moeller ]
* Improving error message on directory that cannot be opened
* Fixing a file descriptor leak in read_ppm_file (api/gutil.cpp)
[ Guo Yixuan ]
* Removed dependency on dh-buildinfo, no longer used.
* Fixed a bug in our patches that truncated filename.
-- Steffen Moeller <moeller@debian.org> Sun, 26 Aug 2012 18:20:13 +0200
boinc (7.0.34+dfsg-2) unstable; urgency=low
[ Steffen Moeller ]
* Reacting to ftpmasters' comments
- libraries get package name adjusted to soname
- boinc-nvidia-cuda package loses dependency on libcuda1:i386
[ Guo Yixuan ]
* Change libboinc-app-dev's depends to be binnmuable, to resolve lintian
errors.
* Revert dpkg-dev's version in build-deps to >= 1.16.1.1.
* Add libboinc7 and libboinc-app7 to boinc-dbg's depends.
* Add lintian overrides for boinc-manager and libboinc-app7, because -O0 are
used in api/ and clientgui/, where fortify won't work.
-- Steffen Moeller <moeller@debian.org> Thu, 23 Aug 2012 23:58:26 +0200
boinc (7.0.34+dfsg-1) unstable; urgency=low
[ Steffen Moeller ]
* New upstream version
- many non-Linux fixes
- consistency with GPU types
- api loses supports for legacy image formats
- switch from *.txf fonts to TrueType fonts in graphics apps,
ensuring that all related files have no licensing issues.
* Helping boinc-nvidia-cuda package towards multi-arch
* Help cleaning remnants of packages (temporarily) not in
debian/control but in debian/control.in.
* Override boinc-nvidia-cuda: bad-provided-package-name libcuda1:i386
[ Guo Yixuan ]
* Remove broken links from libboinc-app-dev. (Closes: #659845)
* Bump build-depend on dpkg-dev >= 1.16.5 for arch-qualified depends.
-- Steffen Moeller <moeller@debian.org> Sat, 18 Aug 2012 14:41:47 +0200
boinc (7.0.33+dfsg-1) unstable; urgency=low
[ Steffen Moeller ]
* New upstream version
* Conditional builds of debian/control
[ Guo Yixuan ]
* debian/rules: partially disable some optimization and hardening flags,
- in api/, for SETI to work,
- in clientgui/, as a workaround for #679207.
-- Steffen Moeller <moeller@debian.org> Sat, 18 Aug 2012 10:44:10 +0200
boinc (7.0.32+dfsg-1) UNRELEASED; urgency=low
[ Steffen Moeller ]
* New upstream version.
-- Guo Yixuan <culu.gyx@gmail.com> Wed, 01 Aug 2012 21:02:49 +0200
boinc (7.0.31+dfsg-1) unstable; urgency=low
[ Steffen Moeller ]
* New upstream version.
[ Guo Yixuan ]
* debian/control:
- add missed dependency for libboinc.
- remove dependency on python-support.
- libboinc-app-dev: depend on libboinc.
* debian/watch: check for even minor version, and fix dpkg warnings.
* debian/rules:
- use dh_python2 instead of py_support.
- remove build-stamp, use override_dh_auto_build to build samples.
- simplify targets by using pattern rule.
- use override_dh_clean instead of a custom clean target.
-- Guo Yixuan <culu.gyx@gmail.com> Tue, 10 Jul 2012 23:21:13 +0800
boinc (7.0.30+dfsg-1) UNRELEASED; urgency=low
[ Steffen Moeller ]
* New upstream version.
[ Guo Yixuan ]
* debian/rules: use dpkg-buildflags to get default flags.
* debian/control: build-depend on dpkg-dev >= 1.16.1.1, because
buildflags.mk and DEB_BUILD_MAINT_OPTIONS are needed.
* debian/patches/add_hardening_flags.patch: pass CXXFLAGS, CPPFLAGS and
LDFLAGS to hand-written Makefiles in samples/.
* Add myself to uploaders. (Closes: #511243)
-- Steffen Moeller <moeller@debian.org> Sat, 30 Jun 2012 21:59:59 +0200
boinc (7.0.28+dfsg-3) UNRELEASED; urgency=low
[ Steffen Moeller ]
* Splitting -dev package into libboinc and libboinc-dev.
* Added shared library for libboinc.
* Added configure flag in debian/rules to allow dynamic clients
* Installing more from debian/tmp to avoid lintian wrappers
[ Guo Yixuan ]
* Add patch from Rom that fixes the project category crash.
(Closes: #641593)
-- Steffen Moeller <moeller@debian.org> Mon, 28 May 2012 13:21:35 +0200
boinc (7.0.28+dfsg-2) UNRELEASED; urgency=low
* Reactivating the screensaver (Steffen and Bernd)
- not ready, yet.
- not building for Wheezy
* Addressed FTBFS on hurd (Closes: #672725)
-- Steffen Moeller <moeller@debian.org> Tue, 22 May 2012 01:01:39 +0200
boinc (7.0.28+dfsg-1) UNRELEASED; urgency=low
* New upstream version.
* Adding hardening flags.
-- Steffen Moeller <moeller@debian.org> Sat, 19 May 2012 12:19:25 +0200
boinc (7.0.27+dfsg-5) unstable; urgency=low
* debian/rules: use dpkg-buildflags to get default flags.
* debian/control: build-depend on dpkg-dev >= 1.16.1.1, because
buildflags.mk and DEB_BUILD_MAINT_OPTIONS are needed.
* debian/patches/add_hardening_flags.patch: pass CXXFLAGS, CPPFLAGS and
LDFLAGS to hand-written Makefiles in samples/.
-- Guo Yixuan <culu.gyx@gmail.com> Mon, 25 Jun 2012 17:13:10 +0800
boinc (7.0.27+dfsg-4) unstable; urgency=low
[ Steffen Moeller ]
* Not building boinc-amd-opencl, for fglrx-driver is not in testing.
* Adding hardening flags.
* Addressed FTBFS on hurd (Closes: #672725)
* debian/boinc-client.init: increasing priority of boinc client, change nice
value from 19 to 10.
[ Guo Yixuan ]
* Add patch from Rom that fix the project category crash. (Closes: #641593)
* debian/rules: fix to set sched/transitioner_catchup.php in
boinc-server-maker executable.
* Cherry-picking above commits from master to sid branch.
* Add myself to uploaders.
-- Guo Yixuan <culu.gyx@gmail.com> Thu, 21 Jun 2012 22:54:52 +0800
boinc (7.0.27+dfsg-3) unstable; urgency=low
* Now truly reconstituting compatibility with SETI
(Closes: #672328, lp: #991179).
* builds with gcc 4.7 (Closes: #671999)
Thanks to Matthias Klose for his patch, had sadly only seen it after
I patched it myself :o/ The NMU of his should not kick in because
of the SETI incompatibility.
-- Steffen Moeller <moeller@debian.org> Thu, 10 May 2012 10:59:30 +0200
boinc (7.0.27+dfsg-2) unstable; urgency=low
* Removed a couple of patches to help preventing crash in some
scientific apps
-- Steffen Moeller <moeller@debian.org> Mon, 07 May 2012 23:39:30 +0200
boinc (7.0.27+dfsg-1) unstable; urgency=low
* New upstream release
- NVidia issue settled, presumably.
- Some patches adopted by upstream.
-- Steffen Moeller <moeller@debian.org> Thu, 03 May 2012 15:01:42 +0200
boinc (7.0.26+dfsg-1) unstable; urgency=low
* New upstream release
- Comes with NVidia patches
- Other incompatibilities with various projects fixed
-- Steffen Moeller <moeller@debian.org> Fri, 20 Apr 2012 11:43:15 +0200
boinc (7.0.25+dfsg-2) UNRELEASED; urgency=low
* Added patch by Bernd Machenschalk to improve the uniqueness
of clients when multiple instances are run.
* Helping man page of stripchart.
-- Steffen Moeller <moeller@debian.org> Thu, 12 Apr 2012 14:04:52 +0200
boinc (7.0.25+dfsg-1) UNRELEASED; urgency=low
[ Steffen ]
* New upstream version (not yet with NVidia API improvements).
[ Thorsten ]
* Helping warnings in init scripts (Closes: #651278,#651303).
* Fixing Python dir problem for boinc-server-maker (Closes: #657036)
* Fixed warning for man page to stripchart.
-- Steffen Moeller <moeller@debian.org> Fri, 06 Apr 2012 12:15:30 +0200
boinc (7.0.24+dfsg-4) UNRELEASED; urgency=low
* Improved support of NVidia cards - API incompatibility
-- Steffen Moeller <moeller@debian.org> Tue, 03 Apr 2012 19:52:07 +0200
boinc (7.0.24+dfsg-3) UNRELEASED; urgency=low
* Support of clang through DEB_BUILD_OPTIONS
-- Steffen Moeller <moeller@debian.org> Sat, 31 Mar 2012 23:24:24 +0200
boinc (7.0.24+dfsg-2) UNRELEASED; urgency=low
* More adjustments of patches.
-- Steffen Moeller <moeller@debian.org> Sat, 31 Mar 2012 19:56:31 +0200
boinc (7.0.24+dfsg-1) unstable; urgency=low
* New upstream version.
* Built without optimisation on amd64 for better debug information to help
investigation of apparent incompatibility with NVidia 295.33 modules.
* <glib.h> patch accepted by upstream (Closes: #665512).
* First sponsoring upload by Thorsten - many thanks!
-- Steffen Moeller <moeller@debian.org> Sat, 31 Mar 2012 13:41:50 +0200
boinc (7.0.23+dfsg-2) UNRELEASED; urgency=low
* More increased buffers whenever paths were <1024 chars of length
* Added invocations of init() functions to constructors
of RESULT and CLIENT_STATE classes to work towards valgrind
cleanliness
* Removed Christoph from uploaders
-- Steffen Moeller <moeller@debian.org> Fri, 30 Mar 2012 18:49:07 +0200
boinc (7.0.23+dfsg-1) UNRELEASED; urgency=low
* New upstream version.
* Moving towards inclusion of glib.h instead of glib/*.h.
-- Steffen Moeller <moeller@debian.org> Sat, 24 Mar 2012 16:05:42 +0100
boinc (7.0.21+dfsg-1) UNRELEASED; urgency=low
* New upstream version.
* Added icons in /usr/share/boinc to boinc-manager package
-- Steffen Moeller <moeller@debian.org> Sun, 18 Mar 2012 13:43:58 +0100
boinc (7.0.20+dfsg-1) UNRELEASED; urgency=low
* New upstream version.
* Removed dependency on schedtools again - and fixed bug in patch.
-- Steffen Moeller <moeller@debian.org> Fri, 09 Mar 2012 17:04:07 +0100
boinc (7.0.19+dfsg-1) UNRELEASED; urgency=low
* New upstream version.
* Added dependency on schedtools for boinc-client.
* Removing /var/lib/boinc-client upon purge (Closes: #656464).
-- Steffen Moeller <moeller@debian.org> Sat, 03 Mar 2012 01:19:45 +0100
boinc (7.0.15+dfsg-1) unstable; urgency=low
* New upstream version.
-- Steffen Moeller <moeller@debian.org> Wed, 15 Feb 2012 21:41:20 +0100
boinc (7.0.14+dfsg-2) UNRELEASED; urgency=low
* Added patch to include unistd.h
-- Steffen Moeller <moeller@debian.org> Sun, 05 Feb 2012 00:25:02 +0100
boinc (7.0.14+dfsg-1) unstable; urgency=low
* New upstream version (Closes: #658485).
-- Steffen Moeller <moeller@debian.org> Fri, 03 Feb 2012 21:28:27 +0100
boinc (7.0.11+dfsg-1) unstable; urgency=low
* Removing ","s from "should start" line in init script (Closes: #654693)
with tons of thanks to Bruno Muller.
* New upstream version.
* [debian/control] corrected for strong binding of [amd64] tag
-- Steffen Moeller <moeller@debian.org> Fri, 20 Jan 2012 13:21:56 +0100
boinc (7.0.8+dfsg-2) unstable; urgency=low
* Fixed patch for whitespace removal.
-- Steffen Moeller <moeller@debian.org> Mon, 16 Jan 2012 23:00:02 +0100
boinc (7.0.8+dfsg-1) unstable; urgency=low
* New upstream version.
* Added disk space check to get-orig-source.
-- Steffen Moeller <moeller@debian.org> Sat, 14 Jan 2012 13:04:18 +0100
boinc (7.0.7+dfsg-2) UNRELEASED; urgency=low
* boinc-server-maker: Fixing missing files for make_project.
-- Steffen Moeller <moeller@debian.org> Mon, 02 Jan 2012 01:56:18 +0100
boinc (7.0.7+dfsg-1) unstable; urgency=low
* New upstream version.
* Fixed get-orig-source omitted "fi"
-- Steffen Moeller <moeller@debian.org> Sun, 01 Jan 2012 16:54:26 +0100
boinc (7.0.3+dfsg-2) UNRELEASED; urgency=low
* Now libxss-dev truly added (Closes: #651953).
-- Steffen Moeller <moeller@debian.org> Thu, 15 Dec 2011 20:55:11 +0100
boinc (7.0.3+dfsg-1) unstable; urgency=low
* Also adding libxss-dev as build dependency (Closes: #651953).
Credits go to Dmitry Baryshev.
-- Steffen Moeller <moeller@debian.org> Thu, 15 Dec 2011 20:55:11 +0100
boinc (7.0.2+dfsg-2) UNRELEASED; urgency=low
[Contributed by Daniel Hahler]
* Adjusted CUDA dependencies for Ubuntu (lp: #410809).
* New window renders bug invalid (lp: #511654)
[Contributed by Oliver Bock]
* Client configuration fall (mostly) back to defaults.
* Typos in description.
-- Steffen Moeller <moeller@debian.org> Tue, 06 Dec 2011 22:32:48 +0100
boinc (7.0.2+dfsg-1) unstable; urgency=low
* New upstream version.
* Adding boinc user to group video (Closes: #557871)
* Testing on $DISPLAY set before executing xhost (Closes: #644388),
thanks to John Feuerstein for the idea and the patch.
* Fixed documentation issue with browser setting (Closes: #537695),
sorry for not having addressed that earlier.
-- Steffen Moeller <moeller@debian.org> Fri, 02 Dec 2011 03:10:11 +0100
boinc (6.13.12+dfsg-2) UNRELEASED; urgency=low
* Added explicit dependencies on x11-common and network-manager
for boot sequence, as indicated by
http://wiki.debian.org/LSBInitScripts (lp: #820246)
* Added boinc-nvidia-cuda and boinc-amd-opencl packages in contrib (lp: #410809).
-- Steffen Moeller <moeller@debian.org> Tue, 15 Nov 2011 22:06:19 +0100
boinc (6.13.12+dfsg-1) unstable; urgency=low
* New upstream version.
* Starting only at runlevel 4 and 5 (lp: #820246), possibly.
* Stopping also at runlevel 2 and 3
-- Steffen Moeller <moeller@debian.org> Sun, 13 Nov 2011 17:38:16 +0100
boinc (6.13.10+dfsg-1) unstable; urgency=low
* New upstream version.
-- Steffen Moeller <moeller@debian.org> Sun, 30 Oct 2011 00:32:49 +0200
boinc (6.13.6+dfsg-2) unstable; urgency=low
* Fixing FTBFS (Closes: #644796).
* substituted install target with override_dh_auto_install
-- Steffen Moeller <moeller@debian.org> Sun, 09 Oct 2011 15:50:33 +0200
boinc (6.13.6+dfsg-1) unstable; urgency=low
* New upstream version.
-- Steffen Moeller <moeller@debian.org> Sat, 08 Oct 2011 14:27:25 +0200
boinc (6.13.1+dfsg-3) UNRELEASED; urgency=low
* Fixed lintian warning for stripchart.
-- Steffen Moeller <moeller@debian.org> Mon, 08 Aug 2011 01:36:51 +0200
boinc (6.13.1+dfsg-2) unstable; urgency=low
* Bringing notify patch to unstable.
* Adjusted build dependency to libjpeg-dev (Closes: #641093)
* Further improvements on stripchart.
-- Steffen Moeller <moeller@debian.org> Mon, 08 Aug 2011 01:36:51 +0200
boinc (6.13.1+dfsg-1) experimental; urgency=low
* New upstream version
* Added boinc-cgi-stripchart package
* Michael's libnotify patch from 6.12.33+dfsg-1.1 not yet included
-- Steffen Moeller <moeller@debian.org> Sun, 24 Jul 2011 22:20:04 +0200
boinc (6.12.33+dfsg-1.1) unstable; urgency=low
* Non-maintainer upload.
* Port to libnotify 0.7. (Closes: #636296)
- Bump Build-Depends on libnotify to (>= 0.7.0).
- Add debian/patches/libnotify-0.7.patch.
- Update build system to properly set gtk+-2.0 cflags/ldflags for the
boincmgr GUI application.
- Update to the new libnotify 0.7 API.
-- Michael Biebl <biebl@debian.org> Sat, 06 Aug 2011 05:50:23 +0200
boinc (6.12.33+dfsg-1) unstable; urgency=low
[Steffen]
* New upstream version.
* The package boinc depends on -client or -manager
of the same version or later.
[Dhananjay]
* Adjustments of .install and .links files to truly
place files where they are expected.
-- Steffen Moeller <moeller@debian.org> Mon, 20 Jun 2011 20:47:37 +0200
boinc (6.12.32+dfsg-2) UNRELEASED; urgency=low
* The boinc package now depends on binaries
of the same version.
-- Steffen Moeller <moeller@debian.org> Sat, 11 Jun 2011 23:09:24 +0200
boinc (6.12.32+dfsg-1) unstable; urgency=low
* New upstream version.
- finally contains MAXPATHLEN fixes for building on HURD
- fewer warnings while compiling (some Debian patches
accepted)
* Initial preparations for merging with developments
for Debian and beyond at SZTAKI, Budapest.
* Recommending on amd64 to also install the ia32-lib package.
A "Depends" would not be acceptable for too many aiming
at a lean system (Closes: #562431) (lp: #560143).
-- Steffen Moeller <moeller@debian.org> Fri, 10 Jun 2011 13:56:34 +0200
boinc (6.12.28+dfsg-7) UNRELEASED; urgency=low
* Added download script for binary applications from
Debian.
* Added recommends in -manager for ia32-lib-gtk
for amd64 only to better guarantee functional graphics
* Added recommends in -client for ia32-lib
* Added recommends to -server-maker to uuid-runtime for genuuid
-- Steffen Moeller <moeller@debian.org> Sun, 05 Jun 2011 23:44:49 +0200
boinc (6.12.28+dfsg-6) unstable; urgency=low
* Change amd64 platform name to upstream's
x86_64-pc-linux-gnu from x86_64-linux-gnu.
-- Steffen Moeller <moeller@debian.org> Sun, 05 Jun 2011 23:05:14 +0200
boinc (6.12.28+dfsg-5) UNRELEASED; urgency=low
* Drop build-dep on obsolete libxcb-atom (closes: #626669). That code was
disabled by debian/patches/Makefile_subdirs.patch anyway.
-- Julien Cristau <jcristau@debian.org> Sun, 05 Jun 2011 00:02:33 +0200
boinc (6.12.28+dfsg-4) unstable; urgency=low
* Fixed target of sed instruction (and FTBFS with it)
* Explicitly setting CPPFLAGS to empty, which may help
kfreebsd.
-- Steffen Moeller <moeller@debian.org> Sat, 04 Jun 2011 21:51:53 +0200
boinc (6.12.28+dfsg-3) unstable; urgency=low
* Added explicit dependency on python-support for boinc-server-maker.
* Overriding csh and soname lintian warnings.
* Addressing the crypt_prog issue.
* Eliminating build path from python config
* Eperienting with elimination of leading and ending blanks from
Makefile lines.
-- Steffen Moeller <moeller@debian.org> Sat, 04 Jun 2011 20:33:45 +0200
boinc (6.12.28+dfsg-2) unstable; urgency=low
* Adjusting build dependencies for Debian unstable (Closes: #626669).
-- Steffen Moeller <moeller@debian.org> Sat, 28 May 2011 10:44:59 +0200
boinc (6.12.28+dfsg-1) unstable; urgency=low
* New upstream version.
Likely to now truly compile also on the HURD.
* Mentioned ia32-libs also in the README.Debian (Closes: #562431).
-- Steffen Moeller <moeller@debian.org> Fri, 27 May 2011 23:54:18 +0200
boinc (6.12.27+dfsg-1) unstable; urgency=low
* New upstream version.
-- Steffen Moeller <moeller@debian.org> Wed, 25 May 2011 17:17:58 +0200
boinc (6.12.26+dfsg-1) unstable; urgency=low
* New upstream version.
-- Steffen Moeller <moeller@debian.org> Wed, 27 Apr 2011 22:33:56 +0200
boinc (6.12.25+dfsg-1) unstable; urgency=low
* Changed init dependencies to $all which may help speeding up the
boot process and grants time initialising CUDA when kdm is also
installed.
* Also granting the boinc user access to the X display by invoking
xhost +local:boinc if xhost is installed. The package providing
the tool, i.e. x11-xserver-utils, is now suggested as a runtime
dependency.
This with some likelihood (Closes: #557871, #596656) (lp: #587426,
lp: #414244, lp: #525241). It remains yet untested because of a lack
of respective hardware. Many thanks go to Skip for keeping up the
spirit to address this.
* Upstream has fixed build failure on hurd.
-- Steffen Moeller <moeller@debian.org> Sat, 16 Apr 2011 20:24:12 +0200
boinc (6.12.22+dfsg-1) unstable; urgency=low
* First attempt to fix compilation on HURD.
* Added debconf it.po (Closes: #619436).
* Addressing lintian errors on python paths/versions.
* Removing *.la files (Closes: #621197).
-- Steffen Moeller <moeller@debian.org> Sat, 09 Apr 2011 17:32:20 +0200
boinc (6.12.18+dfsg-1) unstable; urgency=low
* New upstream version.
-- Steffen Moeller <moeller@debian.org> Thu, 17 Mar 2011 16:57:35 +0100
boinc (6.12.15+dfsg-2) UNRELEASED; urgency=low
* New pt_BR.po file contributed by Adriano Rafael Gomes
(Closes: #610407).
* Added explicit dependency on python.
-- Steffen Moeller <moeller@debian.org> Sat, 05 Mar 2011 21:17:23 +0100
boinc (6.12.15+dfsg-1) unstable; urgency=low
* New upstream release.
* 2nd attempt to correct XML error in config (Closes: #610638)
-- Steffen Moeller <moeller@debian.org> Sat, 19 Feb 2011 21:00:35 +0100
boinc (6.12.14+dfsg-1) unstable; urgency=low
* New upstream version.
* Migration from experimental to unstable.
-- Steffen Moeller <moeller@debian.org> Thu, 17 Feb 2011 19:37:10 +0100
boinc (6.12.8+dfsg-7) experimental; urgency=low
* Fixed cc_config.xml, reported by Nelson (Closes: #610638).
-- Steffen Moeller <moeller@debian.org> Sun, 23 Jan 2011 00:49:20 +0100
boinc (6.12.8+dfsg-6) experimental; urgency=low
* Explicitly giving binary-arch target (Closes: #609428).
* Helping init file to remain compatible with renice
that does not understand "-n" (as in sarge) (Closes: #600134).
-- Steffen Moeller <moeller@debian.org> Sun, 09 Jan 2011 15:00:14 +0100
boinc (6.12.8+dfsg-5) experimental; urgency=low
* Added python to build dependencies (Closes: #608895).
* Renamed package 'boinc-server' to 'boinc-server-maker'.
* Added Danish .po contributed by Joe Daldon (Closes: #597774).
-- Steffen Moeller <moeller@debian.org> Wed, 05 Jan 2011 10:21:29 +0100
boinc (6.12.8+dfsg-4) experimental; urgency=low
* Completely removing quilt from debian/* (Closes: #608639).
* Added libnotify-dev and libmysqlclient-dev as build dependency.
-- Steffen Moeller <moeller@debian.org> Sun, 02 Jan 2011 15:58:19 +0100
boinc (6.12.8+dfsg-3) experimental; urgency=low
* Reworked the boinc-server.links
* More towards lintian cleanliness
-- Steffen Moeller <moeller@debian.org> Sat, 01 Jan 2011 17:56:15 +0100
boinc (6.12.8+dfsg-2) experimental; urgency=low
* Developing the server package further.
* Added libtool as build dependency (Closes: #608509).
-- Steffen Moeller <moeller@debian.org> Sun, 26 Dec 2010 01:14:18 +0100
boinc (6.12.8+dfsg-1) experimental; urgency=low
* New upstream release.
* Simplified debian/rules.
* boinc package is now architecture-independent
-- Steffen Moeller <moeller@debian.org> Sat, 11 Dec 2010 19:38:53 +0100
boinc (6.10.58+dfsg-4) UNRELEASED; urgency=low
* Added boinc-server package, work mostly done
by Frank Thomas a few years back.
* Removing dependency on util-linux which is
an essential package (lintian error)
* Some changes (cleanups?) to debian/rules.
-- Steffen Moeller <moeller@debian.org> Sun, 05 Dec 2010 20:05:52 +0100
boinc (6.10.58+dfsg-3) unstable; urgency=low
[ Steffen Moeller ]
* Added -client dependency on util-linux,
many thanks to Sandro for this (Closes: #537695)
* Bumped policy to 3.9.1.0
* Added the first graphical libraries as suggested
dependencies of the boinc-manager package.
[ Daniel Hahler ]
* debian/boinc-client.init: wait until BOINC has ended for "stop"
action. This fixes the post-removal script to be run too early,
when the system user might be still logged in and cannot be
deleted (LP: #583434). It also fixes the "restart" action.
* debian/boinc-client.init: schedule: do not fail if chrt fails
(LP: #629649).
-- Daniel Hahler <ubuntu@thequod.de> Sun, 19 Sep 2010 00:18:08 +0200
boinc (6.10.58+dfsg-2) unstable; urgency=low
[ Daniel Hahler ]
* Use chrt instead of schedtool (LP: #527639)
- debian/control, debian/boinc-client.init
[ Steffen Moeller ]
* Removed from source tree for DFSG compliance
- samples/glut
* Adopted source format 3.0 (quilt)
-- Daniel Hahler <ubuntu@thequod.de> Sat, 17 Jul 2010 22:08:09 +0200
boinc (6.10.58+dfsg-1) unstable; urgency=low
[ Steffen Moeller ]
* Adopted Daniel's changes for Debian, added him to
uploaders.
* Allowed DM-Upload (for Daniel)
* Eye candy in debian/README* and debian/po*
* Updated my email address
* Update standards-version to 3.9.0 (No changes needed)
[ Daniel Hahler ]
* Refresh patches, especially 006_correct_catalog_path.patch
* New upstream release
* Check that files exist on which we tweak permissions
during post-installation
* Bump build-depend on debhelper to install udev rules into
/lib/udev/rules.d, add Breaks on udev to get correct version.
* Provide meta package "boinc", which depends on boinc-client and
boinc-manager.
* debian/control: libmysqlclient15-dev -> libmysqlclient-dev
[ Rene Mayorga ]
* Set the correct distribution (unstable).
* Trim some Ubuntu's specific changelog entries and merge all
last Daniel's changes on this changelog enty.
* Install coproc.h and cal.h as port of boinc-dev pacakage
-- Rene Mayorga <rmayorga@debian.org> Tue, 13 Jul 2010 18:58:58 -0600
boinc (6.10.17+dfsg-3) unstable; urgency=low
* Ignore errors when setting oom_adj for boinc client,
Thanks to Gábor Gombás <gombasg@sztaki.hu> for the bug report
and the hint for the solution. (Closes: #559053)
* Fix str_replace.h installation path on boinc-dev package
-- Rene Mayorga <rmayorga@debian.org> Fri, 15 Jan 2010 19:34:46 -0600
boinc (6.10.17+dfsg-2ubuntu2) lucid; urgency=low
* Install str_replace.h to /usr/include/boinc, not its subdirectory.
-- Ilya Barygin <barygin@gmail.com> Tue, 26 Jan 2010 14:05:12 +0300
boinc (6.10.17+dfsg-2) unstable; urgency=low
* debian/control: remove kboincspy from boinc-client Suggest
* include config.h on -dev package (Closes: #556816)
* clean-up broken links on boinc-dev
* install str_replace.h instead of std_fixes.h on -dev package.
-- Rene Mayorga <rmayorga@debian.org> Wed, 18 Nov 2009 19:04:45 -0600
boinc (6.10.17+dfsg-1) unstable; urgency=low
* New upstream release (Closes: #553998)
+ better support for dark themes (Closes: #512508)
+ The -s (system tray option) was removed on upstream (Closes: #464192)
+ Better handling for WU over deadline - upstream
changeset 17399 (Closes: #513884)
* debian/patches
+ 003_use_sensible-browser.patch updated
+ 006_correct_catalog_path.patch - refreshed
+ 005_using_hyphen_as_minus.patch removed - Applied upstream
+ 101_check_RSA_returned_values.patch - Removed - Applied upstream
+ 102_gcc4.4_safe.patch Removed - Applied upstream
+ 006_correct_catalog_path.patch - updated
+ 002_remove_hardcoded_optimization.patch Removed, not needed anymore
+ 004_exclude_sea.patch - Removed - not needed anymore
+ 001_dont_install_ca-bundle.crt.patch Removed not needed anymore
+ 200__don-t-assume_SCHED_BATCH_exist.patch - Added to Prevent FTBFS
on kfreebsd
* debian/copyright
+ zip/zip and zip/unzip references removed
* debian/rules
+ Adjust fix-perm for catalog files
* use omm_adj to prevent boinc use all the system resources (Closes: #534418)
* debian/control: Add libsqlite3-dev to B-D
-- Rene Mayorga <rmayorga@debian.org> Mon, 02 Nov 2009 14:44:14 -0600
boinc (6.4.5+dfsg-3) unstable; urgency=low
* Fix FTBFS on GNU/kFreeBSD, thanks to Cyril Brulebois and
Petr Salinger for the bug report and patch (Closes: #544070)
* Standards-Version set to 3.8.3 (No changes needed)
* Use dversionmangle on debian/watch
* debian/copyright: point to LGPL-2/GPL-2 instead of LGPL/GPL
-- Rene Mayorga <rmayorga@debian.org> Sat, 05 Sep 2009 18:24:45 -0600
boinc (6.4.5+dfsg-2ubuntu2) karmic; urgency=low
* Fix FTBFS, added 103_include_config_h.patch, use system functions
when available (LP: #447933)
-- Joao Pinto <joao.pinto@getdeb.net> Sat, 10 Oct 2009 11:42:30 +0100
boinc (6.4.5+dfsg-2) unstable; urgency=low
* Uploaded to unstable
* Include a patch picked from Upstream SVN
to avoid FTBFSs whith gcc 4.4 (Closes: #526666)
* remove CUDA dir that contais binary-only non DFSG software
* change section from boinc-dbg to debug
* set orig +dfsg since we remove non-dfsg software
when we pull the tag from upstream
+ Add Comments about this on README.Source
* Move schedtool to Recommends, (Closes: #532133)
* Add ru debconf templates translation, thanks
to Yuri Kozlov <yuray@komyakino.ru> (Closes: #531205)
-- Rene Mayorga <rmayorga@debian.org> Sat, 23 May 2009 13:29:17 -0600
boinc (6.4.5-1ubuntu1) karmic; urgency=low
* Merge from debian experimental (LP: #311107), remaining changes:
- Bump build-depend on debhelper to install udev rules into
/lib/udev/rules.d, add Breaks on udev to get correct version.
* Provide meta package "boinc", which depends on boinc-client and
boinc-manager (LP: #226612).
* Add debian/patches/102_wxPanel_instead_wxControl_r17501.patch,
picked from upstream trunk to fix FTBFS.
-- Daniel Hahler <ubuntu@thequod.de> Sat, 23 May 2009 20:05:16 +0200
boinc (6.4.5-1) experimental; urgency=low
* New upstream version
* debian/patches:
+ 001_dont_install_ca-bundle.crt.patch refreshed
+ 002_remove_hardcoded_optimization.patch refreshed
+ 003_use_sensible-browser.patch
+ 004_exclude_sea.patch removed
+ 006_correct_catalog_path.patch added
* debian/boinc-dev.install; upstream now calls `boinc' instead
of `BOINC' the include/ dir
* debian/boinc-dev.links; make BOINC point to boinc, this
will save those who still point to the wrong PATH
* debian/copyright:
+ Update upstream license from LGPL-2.1 to LGPL-3
+ update the file name on : api/textfont.[ch], client/stream.cpp,
clientgui/wizardex.cpp
+ update copyright years on html/inc/geoip.inc and correct license
+ add copyright and license info for samples/glut/Roman.stroke,
client/install-sh, samples/glut/win32_util.c,
samples/glut/win32_x11.[ch], samples/glut/stroke.h,
samples/glut/glut.h, samples/jpeglib/*
* debian/rules:
+ don't install .mo files manually
+ correct .mo files perms
+ copy sea/*png file to clientgui/res and remove they on clean target
+ download export-boinc from git instead svn,
use an ugly wget since git is not able to it by itself
+ delete empty locale dirs
* debian/boinc-manager.install: usr/share/locale/* files added
* debian/control, set standards-version to 3.8.1 ( no changes needed )
-- Rene Mayorga <rmayorga@debian.org> Sat, 23 May 2009 13:29:08 -0600
boinc (6.2.18-4) unstable; urgency=low
* remove unused var from init.d script
thanks for the report and patch goes to Paul Saunders.
(Closes: #520091)
* debian/control: use standards-version 3.8.1 ( no changes needed )
-- Rene Mayorga <rmayorga@debian.org> Sat, 21 Mar 2009 13:44:13 -0600
boinc (6.2.18-3) unstable; urgency=low
* Uploaded to unstable
-- Rene Mayorga <rmayorga@debian.org> Wed, 25 Feb 2009 10:04:23 -0600
boinc (6.2.18-2) experimental; urgency=low
[ Frank S. Thomas ]
* debian/rules: Transposed/renamed/removed targets and their prerequisites
so that building the package with make's parallel execution succeeds.
* debian/control: Removed myself from Uploaders.
[ Rene Mayorga ]
* debian/boinc-client.init: Detect and remove `--daemon' option
from etc/default/boinc-client Closes: #504467
* debian/control:
+ add myself to Uploaders, and wrap long lines
+ add ${misc:Depends} to boinc-client-dbg Depends
+ remove `Section' from boinc-client package
* debian/rules:
+ remove boinc/locale/client/ar/BOINC Manager.mo on clean target
this file is regenerated on build and FTBFS when the package
is built two times in a row
+ remove config.guess and config.sub on clean, this will
prevent that auto-generated changes goes to .diff.gz
+ remove client/scripts/Makefile, client/scripts/boinc-client
and sea/Makefile, to prevent that those files end on
.diff.gz file
* debian/po/ja.po added, thanks goes to Hideki Yamane, Closes: #510718
* debian/patches: add description, Author and some other info to all
patches.
* 005_hyphen_as_minus.patch added; Add <option> tag to some options
on doc/manpages/boinccmd.xml
* debian/manpages/update-boinc-applinks.xml, use <option> tag on --help
option referenced on OPTIONS section.
* 101_check_RSA_returned_values.patch from unstable, added
-- Rene Mayorga <rmayorga@debian.org> Sun, 11 Jan 2009 15:25:21 -0600
boinc (6.2.18-1) experimental; urgency=low
[ Frank S. Thomas ]
* New upstream release.
* debian/control:
- Updated Vcs-* fields since we are now using Git.
- wxWidgets 2.8 is now in unstable, so upgraded the build-dependency from
libwxgtk2.6-dev to libwxgtk2.8-dev. (closes: #461581) Also let boinc-dbg
suggest libwxgtk2.8-dbg instead of libwxgtk2.6-dbg.
* Removed compatibility symlinks for boinc_client and boinc_cmd.
* debian/rules:
- Switched to debhelper V7 (from V5) to minimize rules file. Updated
build-dependency and compatibility level accordingly.
- Regenerate the binary message catalogs for the BOINC Manager from the po
files in locale/client/.
* debian/boinc-client.init: Cosmetic changes of the status action output.
-- Frank S. Thomas <fst@debian.org> Thu, 21 Aug 2008 20:25:31 +0200
boinc (6.2.14-3) unstable; urgency=low
* Add debian/patches/101_check_RSA_returned_values.patch
Check the returned values for RSA_public_decrypt and
RSA_private_encrypt functions. Change ported by upstream changeset 16883
(http://boinc.berkeley.edu/trac/changeset/16883) Closes: #511521
* debian/patches
001_dont_install_ca-bundle.crt.patch and
002_remove_hardcoded_optimization.patch Refreshed
* debian/control - add myself to uploaders
-- Rene Mayorga <rmayorga@debian.org.sv> Tue, 13 Jan 2009 14:05:38 -0600
boinc (6.2.14-2) unstable; urgency=low
* Updated translations for the BOINC Manager from the 6.2.16 release:
locale/client/{es,fr,it,pl,zh_CN}/BOINC Manager.po
* Commented out "#define BOINC_PRERELEASE 1" in version.h.in because 6.2.14
was rereleased upstream as first 6.2 public release.
-- Frank S. Thomas <fst@debian.org> Tue, 12 Aug 2008 11:01:14 +0200
boinc (6.2.14-1) unstable; urgency=low
[ Frank S. Thomas ]
* New upstream release.
* debian/copyright: Changed one line to not exceed 80 characters and thus
making Lintian happy again.
-- Frank S. Thomas <fst@debian.org> Sun, 20 Jul 2008 09:00:33 +0200
boinc (6.2.12-1) unstable; urgency=low
[ Frank S. Thomas ]
* New upstream release.
* debian/extra/move-boinc-dir.sh: Adjusted code to boinc-client's postinst.
-- Frank S. Thomas <fst@debian.org> Tue, 08 Jul 2008 23:57:01 +0200
boinc (6.2.11-1) unstable; urgency=low
[ Frank S. Thomas ]
* New upstream release.
* debian/control: Bumped Standards-Version from 3.7.3 to 3.8.0. This
required to add a debian/README.source file to explain that we use quilt
and to move the paragraph about repackaged upstream source from
debian/copyright to this new file.
-- Frank S. Thomas <fst@debian.org> Sat, 05 Jul 2008 09:29:13 +0200
boinc (6.2.7-1) unstable; urgency=low
[ Frank S. Thomas ]
* New upstream release.
- BOINC Manager: Redraw disk usage charts immediately after connecting to
a (different) client. (closes: #463823)
* debian/copyright:
- Added the instructions from debian/README.Debian-source about how
repackaged BOINC tarballs can be reproduced because DevRef now
recommends to put this here instead of in the afore-mentioned file.
- Updated for the new release.
* Removed the obsolete debian/README.Debian-source.
* For consistency upstream renamed the core client and the command tool
("boinc_client" to "boinc" and "boinc_cmd" to "boinccmd"). Done the same
in all packages and created symlinks with the old names for the binaries
and man pages. Also added an entry in debian/boinc-client.NEWS explaining
this change.
* debian/rules: Do not list Makefile.ins in the clean target individually,
just remove all that can be found.
-- Frank S. Thomas <fst@debian.org> Sat, 31 May 2008 08:02:47 +0200
boinc (5.10.45-3) unstable; urgency=low
[ Daniel Hahler ]
* debian/boinc-client.init:
Do not fail, if ionice/ioprio_set is not allowed (LP: #218468)
-- Frank S. Thomas <fst@debian.org> Wed, 14 May 2008 12:12:06 +0200
boinc (6.1.15-1) experimental; urgency=low
[ Frank S. Thomas ]
* New experimental upstream release.
- Improved user idle checking on Linux. (closes: #448982)
* debian/rules:
- Don't clean lib/boinccmd, *.unmodified and other files by hand in the
clean-patched target, since they are now removed by upstream's
makefiles on "make clean".
* Removed the man pages for boinc_client, boinc_cmd, and boincmgr from the
Debian-diff because they are now included in the upstream source and also
handled by upstream's makefiles.
* Rewrote debian/copyright in the format which is described in this wiki
page: http://wiki.debian.org/Proposals/CopyrightFormat
* debian/control:
- BOINC now requires cURL >= 7.17.1 to build, therefore updated the
build-dependency on libcurl4-openssl-dev and removed the alternative
build-dependency on libcurl3-openssl-dev which cannot satisfy this
requirement.
- Spread the Build-Depends field over multiple physical lines to make
reading diffs easier.
-- Frank S. Thomas <fst@debian.org> Tue, 15 Apr 2008 13:42:40 +0200
boinc (5.10.45-2) unstable; urgency=low
[ Debconf translations ]
* Added Finnish (fi.po) by Esko Arajärvi <edu@iki.fi>. (closes: #472558)
[ Frank S. Thomas ]
* debian/control: Updated boinc-dev's dependency on the concrete
libstdc++-dev package now that GCC 4.3 is the default compiler.
* debian/boinc-manager.desktop: Included Czech translations for GenericName
and Comment from the .desktop file in the Fedora package.
-- Frank S. Thomas <fst@debian.org> Mon, 07 Apr 2008 16:32:01 +0200
boinc (5.10.45-1) unstable; urgency=low
[ Frank S. Thomas ]
* New upstream release.
* debian/rules: Do not declare the patch and unpatch targets as phony,
because the included /usr/share/quilt/quilt.make does this already.
-- Frank S. Thomas <fst@debian.org> Thu, 13 Mar 2008 01:04:38 +0100
boinc (5.10.44-1) unstable; urgency=low
[ Frank S. Thomas ]
* New upstream release.
- BOINC Manager: Clear all cached messages and resume auto-scrolling when
connected host has changed (cp. r14813, r14817). (closes: #468187)
-- Frank S. Thomas <fst@debian.org> Sat, 01 Mar 2008 15:07:05 +0100
boinc (5.10.43-1) unstable; urgency=low
[ Frank S. Thomas ]
* New upstream release.
- BOINC Manager: Do not crash when closing. (closes: #444339)
-- Frank S. Thomas <fst@debian.org> Tue, 26 Feb 2008 17:58:31 +0100
boinc (5.10.42-1) unstable; urgency=low
[ Frank S. Thomas ]
* New upstream release.
* debian/rules: Make the scripts /usr/share/bug/boinc-client/script and
/usr/share/doc/boinc-manager/examples/run-boincmgr executable because
they have a shebang. Thanks Lintian for noticing this.
* debian/patches/: Updated 101_fix_memory_detection_on_kfreebsd.patch for
the new release.
* debian/watch: Only check for versions with an even minor version number.
Versions with an odd minor version number are test releases which are not
intended for a wider audience.
* Reverted the debhelper compat level bump. It was just unnecessary (boinc
does not need V6) and it would have made backporting harder.
* Merged the workaround from Ubuntu's 5.10.30-5ubuntu3 for Linux's new CFS
with the following changes:
- Renamed debian/extra/udev-usr_share to debian/extra/udev-cpu_share
because this name seems to be more appropriate since this script changes
the boinc user's cpu_share.
- Install udev-cpu_share into /usr/share/boinc-client instead of
/usr/lib/boinc-client since it is an architecture-independent shell
script.
- Use lowercase variables in the init script because UID is set by bash
and it complains when trying to overwrite it.
Thanks to Daniel Hahler <daniel@thequod.de> for investigating this issue
and the patch. (closes: #461630)
-- Frank S. Thomas <fst@debian.org> Mon, 25 Feb 2008 00:53:20 +0100
boinc (5.10.30-5ubuntu3) hardy; urgency=low
* Install /usr/lib/boinc-client/udev-usr_share with correct perms
(executable), so that it gets called by udevd.
-- Daniel Hahler <ubuntu@thequod.de> Mon, 04 Feb 2008 00:40:08 +0100
boinc (5.10.30-5ubuntu2) hardy; urgency=low
* Revert changes from ubuntu1 and instead use the uevent udev
interface to assign the lowest possible cpu_share to the
boinc user. This is still considered to be a workaround.
- Add debian/boinc-client.udev
- debian/rules: call dh_installudev
- Add debian/extra/udev-usr_share, which gets run by udevd
- Drop debian/patches/ubuntu_temp_cfs_fix.patch
* debian/boinc-client.init: Display cpu_share info for "status"
action
-- Daniel Hahler <ubuntu@thequod.de> Sat, 02 Feb 2008 23:32:25 +0100
boinc (5.10.30-5ubuntu1) hardy; urgency=low
* debian/patches/ubuntu_temp_cfs_fix.patch:
Temporary workaround for the new CFS Linux scheduler,
by adjusting the "boinc" user's cpu_share to the minimum (2)
in the init script (LP: #177713)
* Modify Maintainer value to match the DebianMaintainerField
specification.
-- Daniel Hahler <ubuntu@thequod.de> Sat, 02 Feb 2008 02:48:01 +0100
boinc (5.10.30-5) unstable; urgency=low
[ Frank S. Thomas ]
* debian/manpages/update-boinc-applinks.xml: Updated from DocBook 4.2 to
4.4, which is the latest version in etch.
* Added debian/watch file, which uses Subversion's directory listing of the
tags directory to determine the upstream version. Therefore this is only
useful for version comparison (e.g. for DEHS and DDPO).
* Bumped debhelper compat level from V5 to V6 since this is the current
recommended level and raised the build dependency to "debhelper (>= 6)".
* Removed debian/patches/103_fix_terminal_activity_detection.patch in favor
of adding the --check_all_logins option to the default BOINC_OPTS in
boinc-client's init script.
[ Debconf translations ]
* Added Swedish (sv.po) by Christer Andersson <klamm@comhem.se>.
(closes: #461172)
-- Frank S. Thomas <fst@debian.org> Mon, 21 Jan 2008 21:20:52 +0100
boinc (5.10.30-4) unstable; urgency=low
[ Frank S. Thomas ]
* debian/manpages/update-boinc-applinks.xml: Fixed Lintian's informational
tag "I: hyphen-used-as-minus-sign" by enclosing options in <command>
elements with the <option> element.
* debian/rules:
- Official BOINC platforms for some Debian GNU/Linux ports (alpha, ia64,
powerpc, and sparc) were assigned upstream and therefore changed these
platforms accordingly:
- alpha-unknown-linux-gnu -> alpha-hp-linux-gnu
- ia64-unknown-linux-gnu -> ia64-linux-gnu
- powerpc-unknown-linux-gnu -> powerpc-linux-gnu
- sparc-unknown-linux-gnu -> sparc-sun-linux-gnu
- Removed the --target and --program-prefix options from TYPE_FLAGS,
because they are not required to set the BOINC platform anymore.
-- Frank S. Thomas <fst@debian.org> Fri, 11 Jan 2008 11:33:30 +0100
boinc (5.10.30-3) unstable; urgency=low
[ Frank S. Thomas ]
* debian/patches/:
- Renamed 201_missing_headers_for_gcc4.3.patch to 102_... because it has
been applied upstream in r14436.
- Added 103_fix_terminal_activity_detection.patch to fix the activity
detection in terminal applications. (closes: #448982)
* debian/rules: Pass "LDFLAGS=-Wl,--as-needed" to configure in order to
remove unnecessary library dependencies.
* debian/boinc-client.postinst: Changed the default permission of the
global_prefs_override.xml conffile from 0644 to 0664 so that local
preferences are saved when GUI RPCs are used to set them. (closes: #458007)
-- Frank S. Thomas <fst@debian.org> Mon, 31 Dec 2007 10:28:34 +0100
boinc (5.10.30-2) unstable; urgency=low
[ Frank S. Thomas ]
* debian/rules: Wrote get-orig-source target which fetches the latest tagged
BOINC version.
* debian/patches/:
- Added 201_missing_headers_for_gcc4.3.patch which adds missing C++
headers to several source files. This is required to fix a FTBFS with
recent GCC 4.3 snapshots. Thanks to Martin Michlmayr <tbm@cyrius.com>
for the bug report. (closes: #456041)
- Added 101_fix_memory_detection_on_kfreebsd.patch from upstream r14415
based on a patch by Andrew Deason <adeason2@uiuc.edu> which fixes memory
detection on Debian GNU/kFreeBSD. (closes: #456586)
-- Frank S. Thomas <fst@debian.org> Thu, 20 Dec 2007 06:23:54 +0100
boinc (5.10.30-1) unstable; urgency=low
[ Frank S. Thomas ]
* New upstream release.
* debian/boinc-client.default: Removed --return_results_immediately from the
example BOINC_OPTS variable, because this command line option is not
implemented and won't be available in BOINC >= 6.1, see upstream r14280.
* debian/control:
- Bumped Standards-Version from 3.7.2 to 3.7.3, no changes required.
- Changed my maintainer address to fst@debian.org.
[ Thibaut VARENE ]
* debian/boinc-client.{init,default}: Added option to enable advanced
scheduling of the client and its sub-processes by default.
(closes: #449015)
-- Frank S. Thomas <fst@debian.org> Wed, 05 Dec 2007 03:02:28 +0100
boinc (5.10.27-1) unstable; urgency=low
[ Frank S. Thomas ]
* New upstream release. (closes: #447929)
- Handles change in /proc/cpuinfo on powerpc introduced in Linux 2.6.23.
Thanks to Thibaut VARENE <varenet@debian.org> for the patch.
(closes: #437459)
- Allows to set arbitrary many alternate platforms in the client's config
file cc_config.xml with the <alt_platform> element which is a direct
child of the <options> element. (closes: #437326)
- BOINC Manager: At account creation check if wxGetUserName() returned an
empty string and if it did use the output of wxGetUserId() instead.
Thanks to Morita Sho <morita-pub-en-debian@inz.sakura.ne.jp> for the
excellent bug report. (closes: #447320)
* debian/control:
- Moved Homepage pseudo field in the long descriptions to the source stanza
because this is now a propper debian/control field supported by dpkg.
- Removed XS- prefix from Vcs fields since they are now officially
supported by dpkg.
* debian/boinc-client.init: Print the scheduling status of boinc_client's
children only if there are any present, otherwise schedtool would be
called without arguments and would print its usage text.
* debian/icons/: Use icons with transparent background.
* debian/boinc-manager.desktop:
- Addded Portuguese translations for GenericName and Comment, thanks to
Marco Rodrigues <gothicx@sapo.pt>.
- Monitor is a subcategory of the System main category, so use System
instead of Utility.
- Removed the Encoding key since it is deprecated in the Desktop Entry
Specification 1.0 and added the Version key.
-- Frank S. Thomas <frank@thomas-alfeld.de> Thu, 25 Oct 2007 20:54:09 +0200
boinc (5.10.8-2) unstable; urgency=low
[ Frank S. Thomas ]
* debian/boinc-manager.menu: Changed section for the new menu hierarchy from
"Apps/Tools" to "Applications/System/Monitoring".
* debian/icons/: Updated icons to the new BOINC logo.
* debian/boinc-client.init:
- Added patch to use advanced scheduling for the client and it's children
using the schedtool and ionice utilities. For now advanced scheduling is
disabled by default. Invoke the init script with the schedule option to
enable it. Thanks to Omen Wild <dbug4.flibble@mandarb.com> for the
patch. (closes: #423259)
- Specified default values for the variables of the /etc/default file and
changed script to exit quietly if the default $BOINC_CLIENT is used but
not present so that it does not fail if the boinc-client package was
removed but not purged. Both is required by the Debian Policy.
* debian/control:
- Added schedtool, which if installed can be used for advanced scheduling
in boinc-client's init script, to boinc-client's Suggest field.
- Made boinc-dbg dependent on "boinc-client (= ${binary:Version})" or
"boinc-manager (= ${binary:Version})" to ensure that the versions
between the debug and program packages do not differ.
- Since GCC 4.2 is now the default compiler, updated boinc-dev's
dependency on libstdc++-dev to the concrete package libstdc++6-4.2-dev.
* debian/rules:
- Added --with-boinc-platform=... to TYPE_FLAGS being another attempt to
get the right platform name on ppc64.
- Changed the BOINC platform on kfreebsd-i386 from i486-pc-kfreebsd-gnu to
i686-pc-kfreebsd-gnu to be consistent with the platform name for i386
and made i686-pc-kfreebsd-gnu an alternate platform for
x86_64-pc-kfreebsd-gnu.
- Set powerpc-unknown-linux-gnu as alternate platform for ppc64-linux-gnu.
* debian/boinc-client.postrm: Use the --system option for deluser/delgroup
to ensure that we are removing system accounts only and mask the
deluser/delgroup calls because adduser is not essential and we can't rely
on non-essential packages to be present during the purge phase. This would
be a Policy violation, see section 7.2.
[ Debconf translations ]
* Added Spanish (es.po) by Javier Fernández-Sanguino Peña
<jfs@computer.org>. (closes: #437379)
* Added Slovak (sk.po) by helix84 <helix84@centrum.sk>. (closes: #437670)
-- Frank S. Thomas <frank@thomas-alfeld.de> Sun, 09 Sep 2007 09:47:27 +0200
boinc (5.10.8-1) unstable; urgency=low
[ Frank S. Thomas ]
* New upstream release.
- Fixed wrong CPU information on alpha, hppa, ia64, ppc and sparc.
(closes: #406853)
- Use i686-pc-linux-gnu as alternative platform name for
x86_64-pc-linux-gnu to get i386 binaries on amd64. (closes: #366741)
Hence all traces to our own mechanism to override the platform name on
amd64 have been removed:
- debian/patches/001_amd64_disable_platform_reset.patch
- debian/extra/use-32bit-on-amd64.sh
- the associated paragraph from debian/boinc-client.README.Debian
* Updated boinc_client's, boinc_cmd's and boincmgr's manual pages for the
new release.
* debian/boinc-client.{init,default}: Use two dashes for boinc_client's
command line options instead of one because that is it's default now.
* debian/boinc-client.postinst: Use "[ ... ] && [ ... ]" instead of
"[ ... -a ... ]" because these constructs are much easier to read.
* debian/boinc-client.preinst: Use dpkg-query instead of poking directly
into the dpkg status file. See this thread for more information:
http://lists.debian.org/debian-devel/2007/05/msg01070.html
* debian/conffiles/{cc_config.xml,global_prefs_override.xml}: Added comments
which explain the purpose of each configuration file and which contain
URLs to upstream documentation for each of them.
* debian/copyright:
- State that the source code is obtained via Subversion (and not via CVS)
and added a pointer to debian/README.Debian-source.
- Updated for the new release.
* Added /usr/share/bug/boinc-client/script which pastes boinc-client's
init script configuration file (/etc/default/boinc-client) into bug
reports because this might be helpful for debugging.
* extra/bash/boinc: Added bash completion for boinc_client and boinc_cmd.
* debian/rules:
- Don't ignore $(MAKE) distclean errors to make lintian happy.
- Install unstripped versions of boinc_client, boinc_cmd and boincmgr
and let dh_strip do this job for us. Now building BOINC with
DEB_BUILD_OPTIONS="nostrip" actually does what it should do.
* debian/patches/: Added 002_remove_hardcoded_optimization.patch to remove
hardcoded compiler flags from client/Makefile.am and to make debian/rules
the only place again where compiler flags are defined.
(probably closes: #427661)
* New boinc-dbg package added to provide debugging symbols for BOINC
binaries.
* debian/boinc-dev.{install,links}:
- Don't install lib/common_defs.h manually, "make install" does this now.
- Create a symlink in /usr/share/boinc-dev/lib/ to the new str_util.h.
[ Steffen Moeller ]
* Smallish changes to Debian READMEs and man pages.
[ Debconf translations ]
* Added Portuguese (pt.po) by Miguel Figueiredo <elmig@debianpt.org>.
(closes: #428278)
-- Frank S. Thomas <frank@thomas-alfeld.de> Sun, 01 Jul 2007 11:43:53 +0200
boinc (5.8.17-2) unstable; urgency=low
[ Frank S. Thomas ]
* debian/control:
- Extended boinc-manager's long description.
- Added libcurl4-openssl-dev to Build-Depends because the libcurl packages
have bumped sonames. The B-D on libcurl3-openssl-dev remains as
alternative dependency to ease backporting to etch.
(closes: #424501, #425225)
* Updated all BOINC URLs to point to their new location in the official
BOINC wiki according to http://boinc.berkeley.edu/trac/wiki/FileList.
* debian/boinc-dev.{install,links}: Install lib/common_defs.h header to fix
a FTBFS of boinc-app-seti with boinc-dev/5.8.17-1. This was discovered by
Lucas Nussbaum's archive rebuild. (closes: #422643)
* debian/manpages/*.xml: Made <ulink> elements empty if their content was
the same as the content of their url attribute.
[ Steffen Moeller ]
* debian/control: Extended boinc-client's long description.
-- Frank S. Thomas <frank@thomas-alfeld.de> Sun, 20 May 2007 12:09:40 +0200
boinc (5.8.17-1) unstable; urgency=low
[ Frank S. Thomas ]
* New upstream release.
- BOINC Manager:
- Broadened "Options" dialog so that labels does not get truncated.
(closes: #389840)
- Display project names in "Reset Project" dialog correctly. (LP: #83708)
- Fixed run mode entries in "Activity" menu. (LP: #93850)
* debian/control:
- Bumped versioned Build-Depends on libcurl3-openssl-dev to >= 7.15.5
which is required for the bandwith-throttling feature. Also removed the
alternative on libcurl-ssl-dev because this was only added to aid
backporting BOINC to sarge but sarge has only libcurl3-dev/7.13.2.
- Added libxml2-utils to Build-Depends for xmllint which is used in the
unit-test target in debian/rules.
* debian/rules:
- Added the unit-test target which uses xmllint to check if the XML
conffiles cc_config.xml and global_prefs_override.xml are well-formed.
- Since backporting to sarge is not possible any more, also removed the
compatibility code for sarge's version of dpkg-architecture.
- On ppc64 use ppc64-linux-gnu as BOINC platform (which is the official
BOINC platform) instead of powerpc64-unknown-linux-gnu.
* Switched patch system from dpatch to quilt.
* debian/patches/:
- Updated 001_amd64_disable_platform_reset.patch for the new release.
- Updated 003_use_sensible-browser.patch for the new release.
- Added 101_gcc_4.3_fixes.patch that fixes a FTBFS with GCC 4.3, thanks to
Martin Michlmayr <tbm@cyrius.com>. (closes: #413307)
* debian/boinc-client.postinst: Change the permission and ownership of
boinc-client's conffiles from 0644 boinc:boinc to 0640 root:boinc for
gui_rpc_auth.cfg and to 0644 root:boinc for the rest but only if no
"stat override" exists. (closes: #407678)
* debian/boinc-client.postrm: Changed postrm so it does not fail if debconf
is not available. (closes: #416663)
* Replaced the log_flags.xml conffile with cc_config.xml:
- Added debian/boinc-client.preinst which removes the obsolete conffile
/etc/boinc-client/log_flags.xml if it was not modified locally or
renames it to /etc/boinc-client/log_flags.xml.dpkg-bak if it was.
- Added debian/boinc-client.NEWS which explains that the conffile
/etc/boinc-client/log_flags.xml is now obsolete and is superseded by
/etc/boinc-client/cc_config.xml.
* Added the run-boincmgr shell script as example to the boinc-manager
package. This script sources /etc/default/boinc-client and chdir into
$BOINC_DIR before starting boincmgr so that the BOINC Manager can read the
password from $BOINC_DIR/gui_rpc_auth.cfg file. See Ubuntu bug #48768 for
more details.
* debian/boinc-client.README.Debian: Added paragraph "Mass deployment of
boinc-client that automatically attach to an Account Manager" which points
(at the moment) to T-Bone's post on the pkg-boinc-devel mailing list.
* debian/boinc-client.install: Install the switcher binary into
/usr/lib/boinc-client/.
* debian/boinc-dev.{install,links}:
- Don't install lib/error_numbers.h, lib/gui_rpc_client.h,
lib/std_fixes.h, config.h and version.h manually because they are now
installed by the upstream makefiles.
- Added lib/md5_file.h to boinc-dev as requested by Alex Owen.
* Added ca-certificates to boinc-client's Depends field and create the
ca-bundle.crt symlink (which points to /etc/ssl/certs/ca-certificates) in
Debian's default BOINC data directory (/var/lib/boinc-client/) in
boinc-client.postinst.
* Updated boinc_cmd's and boincmgr's manual pages for the new release.
* Updated debian/copyright for the new release.
-- Frank S. Thomas <frank@thomas-alfeld.de> Thu, 19 Apr 2007 19:57:34 +0200
boinc (5.4.11-5) unstable; urgency=low
[ Frank S. Thomas ]
* debian/patches/:
- 01_amd64-disable-platform-reset.dpatch: Only reset projects if the
platform name in the statefile is not empty. This bugfix has been
backported from BOINC 5.8. (closes: #407461)
[ Debconf translations ]
* Added Galician (gl.po) by Jacobo Tarrio <jtarrio@trasno.net>.
(closes: #413461)
* Added Dutch (nl.po) by cobaco (aka Bart Cornelis) <cobaco@skolelinux.no>.
(closes: #413887)
-- Frank S. Thomas <frank@thomas-alfeld.de> Mon, 12 Mar 2007 15:38:54 +0100
boinc (5.4.11-4) unstable; urgency=low
[ Debconf translations ]
* Added German (de.po) by Matthias Julius <mdeb@julius-net.net>.
(closes: #400228)
* Added Czech (cs.po) by Jakub Kasparec <mr.k@centrum.cz>. (closes: #401923)
-- Frank S. Thomas <frank@thomas-alfeld.de> Wed, 6 Dec 2006 23:07:26 +0100
boinc (5.4.11-3) unstable; urgency=low
[ Frank S. Thomas ]
* clientgui/ValidateEmailAddress.cpp: Use a much simpler regex to validate
e-mail addresses. This also allows addresses that contain '+' in their
local-part. This regex is also used in BOINC's PHP function
is_valid_email_address() in html/inc/email.inc. (closes: #393948)
[ Debconf translations ]
* Added French (fr.po) by Cyril Brulebois
<cyril.brulebois@enst-bretagne.fr>. (closes: #393499)
-- Frank S. Thomas <frank@thomas-alfeld.de> Sun, 22 Oct 2006 17:58:01 +0200
boinc (5.4.11-2) unstable; urgency=low
[ Frank S. Thomas ]
* Use debconf to ask whether the default BOINC data directory
/var/lib/boinc-client should be removed while purging the boinc-client
package. The wording of the template was taken from the
dbconfig-common/purge template.
* debian/control:
- Added po-debconf to Build-Depends because debconf-updatepo is called in
the clean target of debian/rules.
- Added XS-Vcs-Svn field to the source stanza.
- Changed order of Build-Depends: List packages that are needed for the
packaging first, then list packages that are needed to compile the
upstream source.
* debian/rules:
- When using the --target configure option also append --program-prefix=""
to avoid that programs are prefixed with "i686-pc-linux-gnu-".
- Install the checkin_notes file as upstream changelog.
* debian/copyright:
- Added copyright note about the Debian packaging.
-- Frank S. Thomas <frank@thomas-alfeld.de> Fri, 6 Oct 2006 10:35:17 +0200
boinc (5.4.11-1) unstable; urgency=low
[ Frank S. Thomas ]
* New upstream release.
* Added the header file lib/gui_rpc_client.h to the boinc-dev package as
requested by Folkert van Heusden.
* debian/control:
- Removed Greg Norris <adric@debian.org> from the Uploaders field.
* debian/rules:
- Applied patch from Robert Millan <rmh@aybabtu.com> which simplifies the
platform override for i386. We are now using --target instead of the
--build and --host switches. This also needed some changes in
boinc-client.install and boinc-manager.install. Thanks Robert for the
patch. (closes: #383871)
* debian/patches/:
- Added 01_amd64-disable-platform-reset.dpatch from Robert Millan
<rmh@aybabtu.com>. This patch prevents that projects are reset when the
platform name in client_state.xml does not match the platform name the
client was compiled for and it also sets the platform name from
client_state.xml as the valid platform name which will be used for
scheduler requests. This patch only affects AMD64. (related to: #366741)
* Explain in boinc-client's README.Debian how to modify the BOINC core
client so that it downloads 32bit applications on AMD64. The
01_amd64-disable-platform-reset.dpatch patch is mandatory for this
procedure to work correctly. (also related to: #366741, LP#51948)
* Added two helper scripts (move-boinc-dir.sh and use-32bit-on-amd64.sh)
as examples in the boinc-client package.
-- Frank S. Thomas <frank@thomas-alfeld.de> Sun, 27 Aug 2006 14:50:00 +0200
boinc (5.4.10-2) unstable; urgency=medium
[ Frank S. Thomas ]
* Removed -ffast-math from the client's optimization flags because it causes
a floating point exception on Alpha when the client is started.
(closes: #379137)
* Added conffile /etc/boinc-client/log_flags.xml which can be used to turn
on/off logging and debugging messages. For a detailed list of messages
that can be turned on/off, see http://boinc.berkeley.edu/client_msgs.php
Note that this file was renamed to cc_config.xml in BOINC (>= 5.5.2).
* Applied patches from Peter Bailis <pbailis@gmail.com> for the boinc_cmd
manual page. Thanks again Peter!
* debian/control:
- Added boinc-app-seti to boinc-client's Suggests field.
-- Frank S. Thomas <frank@thomas-alfeld.de> Tue, 25 Jul 2006 12:55:10 +0200
boinc (5.4.10-1) unstable; urgency=low
[ Frank S. Thomas ]
* New upstream release.
- Display Account Manager names correctly in BOINC Manager. This fixes
Ubuntu bug #48246.
* debian/control:
- Really bumped the Standards-Version to 3.7.2.
* Added the boinc_gl.h header to the boinc-dev package. This file is needed
to compile SETI@home's graphics component.
* Added a hint to use "update-alternatives --set x-www-browser [...]" to
manually set the x-www-browser alternative to boinc-manager's
README.Debian. See Ubuntu bug #48766 for more details.
* Use /usr/bin/python as interpreter for update-boinc-applinks instead of
/usr/bin/python2.4 and make boinc-client depend on "python (>= 2.3)" to
avoid the unnecessary strict dependency on Python 2.4.
* Made debian/rules compatible with sarge's version of dpkg-architecture and
added libcurl-ssl-dev as alternative for the libcurl3-openssl-dev build
dependency. These changes aid in backporting BOINC to sarge. Thanks to
Robert Millan for the patch. (closes: #373089)
* debian/boinc-client.postinst:
- Make sure that the group boinc exists before trying to create the user
boinc. Thanks to Christoph Martin for the report. (closes: #372950)
-- Frank S. Thomas <frank@thomas-alfeld.de> Sat, 17 Jun 2006 21:09:15 +0200
boinc (5.4.9-1) unstable; urgency=low
[ Frank S. Thomas ]
* New upstream release.
- Really fix the connection to a remote machine bug. (closes: #360143)
- Fix another FTBFS bug with G++ 4.1, thanks again to Martin Michlmayr.
(closes: #358650)
* Removed watch file because upstream stopped providing nightly tarballs.
* debian/control:
- Bumped Standards-Version from 3.6.2 to 3.7.2, no changes required.
* debian/patches/:
- Removed 02_wx2.6-configure.ac.dpatch and 03_wx2.6-with-unicode.dpatch,
both were included upstream.
- Updated 07_use-sensible-browser.dpatch to use sensible-browser only,
because upstream's attempt to start a browser fails miserably.
-- Frank S. Thomas <frank@thomas-alfeld.de> Sat, 6 May 2006 16:41:01 +0200
boinc (5.4.3-1) unstable; urgency=low
[ Frank S. Thomas ]
* New upstream release.
- BOINC Manager: Allow a connection request to reset a connection attempt
to the local computer or another computer. Thanks to Zlatko Calusic for
the report. (closes: #360143)
* debian/control:
- Improved the short description of all three packages. Thanks to
Martin Schulze for his suggestions. (closes: #359332)
* debian/patches/:
- Removed 01_amd64-gcc4-fixes.dpatch, it was applied upstream.
- Updated 03_wx2.6-with-unicode.dpatch and 07_use-sensible-browser.dpatch
for the new upstream release.
* Added conffile /etc/boinc-client/global_prefs_override.xml which can be
used to edit preferences locally. For more information about this file,
see http://boinc.berkeley.edu/prefs_override.php
* Clarified and expanded the explanation of the -no_gui_rpc option in
boinc_client's manpage based on Steffen's suggestion. Thanks to
David Coe for the report. (closes: #362257)
* Added the update-boinc-applinks tool that creates (or removes) symlinks to
"anonymous" BOINC applications and their app_info.xml files in a given
data directory. The "anonymous" applications and their app_info.xml files
are provided by boinc-app-* packages (e.g. boinc-app-seti). Note that
currently there are no boinc-app-* packages in the Debian archive.
-- Frank S. Thomas <frank@thomas-alfeld.de> Sun, 16 Apr 2006 00:29:41 +0200
boinc (5.2.15-3) unstable; urgency=low
[ Frank S. Thomas ]
* debian/rules:
- Call configure properly with the --build and --host switches as
described in autotools-dev's README.Debian.
- Remove *.unmodified binaries in the clean target, because those files
are not removed by make distclean. This is needed to rebuild the
packages in an already used source tree.
- Update config.guess and config.sub from the autotools-dev package to add
support for GNU/k*BSD.
* debian/patches/:
- Added 10_exclude-sea.dpatch to prevent building the self-extracting
archive, since we don't need it in any case and this fixes a FTBFS on
non-Linux hosts.
- Modified 03_wx2.6-with-unicode.dpatch to fix Alioth bug #303021.
Thanks to Steven Altermatt for the bug report.
* Fixed FTBFS with G++ 4.1, thanks to Martin Michlmayr. (closes: #358650)
-- Frank S. Thomas <frank@thomas-alfeld.de> Thu, 23 Mar 2006 21:26:01 +0100
boinc (5.2.15-2) unstable; urgency=low
* Uploaded to Debian (closes: #281890).
[ Frank S. Thomas ]
* Added boinc-manager.README.Debian to explain how to set the web browser
that the BOINC Manager uses.
* Added the conffile "remote_hosts.cfg" to "/etc/boinc-client/". Old files
are handled the same way as old "gui_rpc_auth.cfg" files.
-- Frank S. Thomas <frank@thomas-alfeld.de> Thu, 26 Jan 2006 19:25:20 +0100
boinc (5.2.15-1) experimental; urgency=low
* New upstream release.
[ Frank S. Thomas ]
* debian/patches/:
- Added 07_use-sensible-browser.dpatch. The BOINC Manager now uses
"sensible-browser", which is part of the debianutils package, as
fallback if wxWidgets' method to determine the default browser fails.
Thanks to Olek Wojnar for the report and his helpful investigations.
* debian/boinc-client.postrm:
- Be more verbose when removing the "boinc" user/group.
* debian/boinc-manager.desktop:
- Added "Path: /var/lib/boinc-client" so that the BOINC Manager can find
the "gui_rpc_auth.cfg" file and does not ask for a password. This should
be removed when the BOINC Manager is able to store passwords in its
config file.
* debian/control:
- Added an extra space before the "Homepage" pseudo field according to the
Developer's Reference, Section 6.2.4.
- Added Christoph Martin <christoph.martin@uni-mainz.de> and
Greg Norris <adric@debian.org> to Uploaders.
* debian/copyright:
- Added more copyright and license information for various files.
* Created symlinks of headers and static libraries, which are required to
build the SETI@home application, in "/usr/share/boinc-dev/".
* Ship a default "gui_rpc_auth.cfg" file in "/etc/boinc-client/" and create
a symlink in "/var/lib/boinc-client" to this file. Old "gui_rpc_auth.cfg"
files are moved to "/etc/boinc-client/" before creating the symlink.
-- Frank S. Thomas <frank@thomas-alfeld.de> Mon, 9 Jan 2006 18:16:41 +0100
boinc (5.2.13a-1) experimental; urgency=low
* New upstream release.
[ Frank S. Thomas ]
* debian/patches/:
- Updated 01_amd64-gcc4-fixes.dpatch for the new release.
- Updated 03_wx2.6-with-unicode.dpatch for the new release.
* Added LSB headers to the BOINC core client init script.
* Record versions of build dependencies at compile-time using dh_buildinfo.
* Updated MySQL (build) dependencies to "libmysqlclient15-dev" and
"mysql-server-5.0".
* Bumped debhelper compatibility level to V5 and updated it's build
dependency to "debhelper (>= 5)".
-- Frank S. Thomas <frank@thomas-alfeld.de> Thu, 1 Dec 2005 13:47:54 +0100
boinc (5.2.5-1) experimental; urgency=low
* New upstream release.
-- Frank S. Thomas <frank@thomas-alfeld.de> Sun, 6 Nov 2005 12:19:57 +0100
boinc (5.2.4-2) experimental; urgency=low
[ Frank S. Thomas ]
* debian/patches/:
- Added 01_amd64-gcc4-fixes.dpatch again, it is still needed to compile
BOINC on AMD64.
-- Frank S. Thomas <frank@thomas-alfeld.de> Sat, 22 Oct 2005 16:13:55 +0200
boinc (5.2.4-1) experimental; urgency=low
* New upstream release.
[ Frank S. Thomas ]
* debian/patches/:
- Removed obsolete 01_amd64-gcc4-fixes.dpatch.
- Updated 02_wx2.6-configure.ac.dpatch for new release.
- Updated 03_wx2.6-with-unicode.dpatch for new release.
* debian/control:
- Add zlib1g-dev, libssl-dev and libcurl3-openssl-dev to Build-Depends.
- Build depend on the newer libmysqlclient14-dev package since
libmysqlclient12-dev is scheduled to be removed.
- Moved all packages back to main. Non-free code (RSAEuro and GLUT) has
been removed from BOINC.
- Added ${misc:Depends} to all packages' Depends. This variable is not
used at the moment.
- Use a versioned dependency for lsb-base (>= 3.0-6) to ensure that the
log_progress_msg function is available. (fixes: Alioth bug #302179)
* debian/copyright:
- Added copyright and license information for various PHP libraries
found in html/inc/.
- Added the full text of the Mozilla Public License 1.0 since stripchart
is distributed under the MPL.
- Removed RSAEuro and GLUT copyright and license information since this
code was removed upstream.
* debian/rules:
- Rewrote debian/rules without CDBS. CFLAGS and CXXFLAGS are now forwarded
to the build process.
- Compile only the BOINC core client program with "-O3 -ffast-math".
- Remove all files that are created by the autotools during the
pre-build target in the clean target.
* debian/boinc-client.postinst:
- If the file "/var/lib/boinc-client/gui_rpc_auth.cfg" does not exist,
create an empty one and make it readable by everyone. This allows
every user on the same host to control the core client with GUI RPCs
(eg. with "boincmgr" or "boinc_cmd").
* The boinc-dev package now only includes headers and static libraries, that
are installed by "make install". According to Bruce Allen this should be
sufficient for building BOINC applications.
(http://www.ssl.berkeley.edu/pipermail/boinc_dev/2005-October/003855.html)
* Removed all references to RSAEuro from the boinc-dev package.
* Added boinc-client.README.Debian that replaces boinc-client's previous
NEWS file and explains how to use the BOINC core client in Debian.
* Added icon to BOINC Manager's desktop file. (fixes: Alioth bug #302212)
* Updated boincmgr.xml manpage and watch file.
-- Frank S. Thomas <frank@thomas-alfeld.de> Sat, 22 Oct 2005 12:43:17 +0200
boinc (4.72-2) experimental; urgency=low
[ Frank S. Thomas ]
* Patched the BOINC Manager so that it compiles with Debian's experimental
wxWidgets version 2.6.1 (see: 03_wxwidgets_with_unicode.patch).
* Install "BOINC Manager.mo" files under /usr/share/locale/.
* Use LSB init-functions for the boinc-client init script and add lsb-base
dependency to boinc-client.
* debian/control.in:
- Added libjpeg62-dev to Build-Depends.
- boinc-manager properly conflicts with and replaces now the old boinc-gui
package. The experimental state of this package was a lame excuse for
not providing a smooth upgrade path in 4.27-1.
-- Frank S. Thomas <frank@thomas-alfeld.de> Sat, 13 Aug 2005 17:50:58 +0200
boinc (4.72-1) experimental; urgency=low
* The "You are a credit junkie!" release.
* New upstream release.
[ Frank S. Thomas ]
* debian/rules:
- Set default C/C++ compiler flags to "-g -O3 -ffast-math".
* debian/control.in:
- Added missing build dependencies for the BOINC graphics API library
(libsm-dev, libice-dev, libxi-dev, libx11-dev).
[ Steffen Moeller ]
* debian/control.in:
- Revised long description of the boinc-client package.
- Added "boinc-manager | kboincspy" to boinc-client's Suggests field.
-- Frank S. Thomas <frank@thomas-alfeld.de> Sat, 30 Jul 2005 00:56:42 +0200
boinc (4.71-1) experimental; urgency=low
* New upstream release.
* Included the 'boinc_cmd' program into the boinc-client package. boinc_cmd
is a command tool that provides an interactive command-line interface to
the BOINC core client.
* Created maintainer scripts to create/remove the '/var/lib/boinc-client'
working directory and the system user/group 'boinc'.
* Improved the boinc-client.init script and also removed the check for
uninitialized working directories (no client_state.xml file).
* Added .desktop file for the BOINC Manager program, thanks to Reed Hedges.
* debian/control.in:
- Added docbook-xml to Build-Depends. Without it this package FTBFS
(particularly docbook2x-man fails) on some systems. Thanks to
Adrian Zaugg for the report.
- Added libxmu-dev and freeglut3-dev (instead of the virtual package
freeglut-dev) to Build-Depends. Both are needed for the graphical parts
of the BOINC API library.
-- Frank S. Thomas <frank@thomas-alfeld.de> Wed, 20 Jul 2005 23:54:37 +0200
boinc (4.70-1) experimental; urgency=low
* New upstream release.
* Built with g++-4.0.
* debian/boinc-client.init:
- Added status option to init.d script as proposed in Debian bug #291148.
* debian/control.in:
- Removed Build-Conflicts on automake1.4 and automake1.6, because we invoke
aclocal-1.9 and automake-1.9 in debian/rules directly now.
- Bumped Standards-Version from 3.6.1 to 3.6.2, no changes required.
* debian/rules:
- Use 'i686-linux-gnu' as default DEB_BUILD_GNU_TYPE on 'i486-linux-gnu'.
It is still possible to override DEB_BUILD_GNU_TYPE with the
BOINC_BUILD_TYPE variable.
- Added '--enable-client' and '--enable-server' as configure flags.
* Added missing options to boinc-client manpage.
-- Frank S. Thomas <frank@thomas-alfeld.de> Thu, 7 Jul 2005 18:00:03 +0200
boinc (4.45a-1) experimental; urgency=low
* New upstream release.
* debian/control.in:
- Moved all packages into non-free section, because RSAEuro's license
does not comply with DFSG #6 (No Discrimination Against Fields of
Endeavor). The RSAEuro license is included in debian/copyright.
-- Frank S. Thomas <frank@thomas-alfeld.de> Fri, 10 Jun 2005 16:39:21 +0200
boinc (4.40-1) experimental; urgency=low
* New upstream release.
* Disabled the boinc-manager package, because it build depends on
wxWidgets 2.6 which is not in Debian yet.
* debian/control.in:
- Added Steffen Moeller and myself to Uploaders.
- Build-Depend on libmysqlclient12-dev instead of the virtual package
libmysqlclient-dev.
* debian/boinc-manager.menu:
- Added BOINC, Science and Monitoring to the 'hints' field.
-- Frank S. Thomas <frank@thomas-alfeld.de> Fri, 13 May 2005 23:30:01 +0200
boinc (4.27-1) experimental; urgency=low
* New upstream release.
* debian/control.in:
- Added automake1.9 and autoconf (>> 2.52) to Build-Depends.
- Added automake1.6 to Build-Conflicts.
* Renamed boinc-gui package to boinc-manager. The BOINC manager binary was
renamed from 'boinc_gui' to 'boincmgr', the BOINC core client binary was
renamed to 'boinc'. This package is still experimental, so boinc-manager
does not replace (or conflict with) boinc-gui.
* debian/rules:
- The BOINC_BUILD_TYPE environment variable can be used to specify
DEB_BUILD_GNU_TYPE in debian/rules. This is an interim solution for
the "platform '...' not found" problem.
- Create symlinks of BOINC libraries and header files under
/usr/share/boinc/ in the boinc-dev package.
-- Frank S. Thomas <frank@thomas-alfeld.de> Mon, 4 Apr 2005 19:18:31 +0200
boinc (4.26-1) experimental; urgency=low
* New upstream release.
* Added init.d script and defaults file for the boinc-client package.
* debian/copyright:
- Added copyright/license notices for RSAEURO, GLUT, Stripchart and
Zip/UnZip.
* Updated boinc_client and boinc_gui manpages.
-- Frank S. Thomas <frank@thomas-alfeld.de> Mon, 21 Mar 2005 02:33:02 +0100
boinc (4.25-1) experimental; urgency=low
* New upstream release.
* Provides now the boinc-gui package, which contains the BOINC manager, a
graphical monitoring utility for the core client.
* Revised the boinc_client manpage and added the boinc_gui manpage. Manpages
are now created with the docbook2x-man tool.
* debian/control:
- Added build dependences on libmysqlclient-dev, freeglut-dev,
libwxgtk2.4-dev and docbook2x.
- Added build conflict with automake1.4.
- Changed section from "science" to "net" (boinc-client), "x11" (boinc-gui)
and "devel" (boinc-dev).
-- Frank S. Thomas <frank@thomas-alfeld.de> Tue, 8 Mar 2005 15:54:12 +0100
boinc (4.19-1) experimental; urgency=low
* New upstream release.
* Cleaned up the debian directory and rewrote debian/rules for cdbs.
-- Frank S. Thomas <frank@thomas-alfeld.de> Thu, 27 Jan 2005 15:51:54 +0100
boinc (4.18-1) experimental; urgency=low
* New upstream release.
* Removed debian/watch, because BOINC core releases are not distributed
as tar archives.
-- Frank S. Thomas <frank@thomas-alfeld.de> Tue, 25 Jan 2005 17:26:42 +0100
boinc (4.17-1) experimental; urgency=low
* New upstream release.
* Removed menu entry of the boinc-client package.
-- Frank S. Thomas <frank@thomas-alfeld.de> Mon, 24 Jan 2005 20:35:10 +0100
boinc (4.16b-1) experimental; urgency=low
* New upstream release.
* Updated debian/copyright, because the BOINC source code is now distributed
under the GNU Lesser General Public License (LGPL).
-- Frank S. Thomas <frank@thomas-alfeld.de> Sun, 23 Jan 2005 15:48:10 +0100
boinc (4.13.20041201-1) experimental; urgency=low
* New upstream release.
* Package boinc-dev also contains Makefile.am as searched for by SETI client.
-- Steffen Moeller <moeller@pzr.uni-rostock.de> Sun, 5 Dec 2004 23:32:17 +0100
boinc (4.13.20041119-1) experimental; urgency=low
* Initial release.
-- Steffen Moeller <moeller@pzr.uni-rostock.de> Fri, 12 Nov 2004 23:32:17 +0100
|