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
|
evolution-data-server (3.46.4-2) unstable; urgency=medium
* Cherry-pick build fixes for latest webkitgtk
* Build against webkitgtk 6.0 instead of 5.0
-- Jeremy Bicha <jbicha@ubuntu.com> Wed, 15 Mar 2023 20:41:30 -0400
evolution-data-server (3.46.4-1) unstable; urgency=medium
* New upstream release
* Update lintian override info format
* Update standards version to 4.6.2, no changes needed
* debian/gbp.conf, debian/control.in: branch for bookworm
-- Jeremy Bicha <jbicha@ubuntu.com> Fri, 10 Feb 2023 07:07:22 -0500
evolution-data-server (3.46.3-1) unstable; urgency=medium
* New upstream release
* Add debian/upstream/metadata
* Fix some minor Lintian warnings
-- Jeremy Bicha <jbicha@ubuntu.com> Mon, 09 Jan 2023 11:34:33 -0500
evolution-data-server (3.46.2-1) unstable; urgency=medium
* New upstream release
-- Jeremy Bicha <jbicha@ubuntu.com> Mon, 05 Dec 2022 16:30:55 -0500
evolution-data-server (3.46.1-1) unstable; urgency=medium
* New upstream release (LP: #1993834)
-- Jeremy Bicha <jbicha@ubuntu.com> Fri, 21 Oct 2022 11:32:50 -0400
evolution-data-server (3.46.0-1) unstable; urgency=medium
* New upstream release
* Bump Standards-Version to 4.6.1
* Release to unstable
-- Jeremy Bicha <jbicha@ubuntu.com> Fri, 16 Sep 2022 15:27:03 -0400
evolution-data-server (3.45.3-2) experimental; urgency=medium
* Add packages for the GTK4 version of libedataserverui: libedataserverui4
-- Jeremy Bicha <jbicha@ubuntu.com> Fri, 02 Sep 2022 14:16:20 -0400
evolution-data-server (3.45.3-1.2) unstable; urgency=medium
* fix typo in Breaks field
-- Jeremy Bicha <jbicha@ubuntu.com> Mon, 05 Sep 2022 19:33:05 -0400
evolution-data-server (3.45.3-1.1) unstable; urgency=medium
* Release to unstable
* Add some Breaks for evolution-data-server 3.45/libsoup3 transition
-- Jeremy Bicha <jbicha@ubuntu.com> Mon, 05 Sep 2022 15:31:56 -0400
evolution-data-server (3.45.3-1) experimental; urgency=medium
* New upstream release
* debian/control.in: Drop obsolete gcr from Build-Depends
* debian/libedataserverui-1.2-4.symbols: Add new symbols
-- Jeremy Bicha <jbicha@ubuntu.com> Fri, 02 Sep 2022 04:16:04 -0400
evolution-data-server (3.45.2-1) experimental; urgency=medium
* New upstream release
* Update package names for soname bump
* Update symbols files
* debian/control.in: Build-Depend on libsoup3 instead of libsoup2.4
* debian/control.in: Build-Depend on libwebkit2gtk-4.1-dev instead of 4.0
* debian/control.in: Bump minimum libgweather to 4.1
* debian/control.in: Drop Build-Depends on libgdata
* debian/rules: Don't build the gtk4 library yet
-- Jeremy Bicha <jbicha@ubuntu.com> Fri, 05 Aug 2022 08:18:04 -0400
evolution-data-server (3.44.4-1) unstable; urgency=medium
* New upstream release
* Drop glib patch: applied in new release
-- Jeremy Bicha <jbicha@ubuntu.com> Fri, 05 Aug 2022 07:13:11 -0400
evolution-data-server (3.44.3-2) unstable; urgency=medium
* Team upload
* d/patches: Improve patch metadata
* d/p/Check-for-non-zero-value-passed-to-g_flags_get_first_valu.patch:
Add patch from upstream to prevent infinite loop of memory allocation
with GLib 2.73.x (Closes: #1015181)
-- Simon McVittie <smcv@debian.org> Mon, 25 Jul 2022 22:03:36 +0100
evolution-data-server (3.44.3-1) unstable; urgency=medium
* New upstream release (LP: #1980545)
* Drop patch applied upstream
-- Nathan Pratta Teodosio <nathan.teodosio@canonical.com> Fri, 01 Jul 2022 14:57:16 -0300
evolution-data-server (3.44.2-2) unstable; urgency=medium
* Cherry-pick patch to fix recurring calendar events starting at midnight
(LP: #1978476)
-- Jeremy Bicha <jbicha@ubuntu.com> Tue, 14 Jun 2022 13:16:57 -0400
evolution-data-server (3.44.2-1) unstable; urgency=medium
* New upstream release (LP: #1976371)
-- Nathan Pratta Teodosio <nathan.teodosio@canonical.com> Tue, 31 May 2022 09:30:00 -0300
evolution-data-server (3.44.1-1) unstable; urgency=medium
* New upstream release (LP: #1969934)
-- Jeremy Bicha <jbicha@ubuntu.com> Fri, 22 Apr 2022 08:41:41 -0400
evolution-data-server (3.44.0-3) unstable; urgency=medium
* Build with libgweather4
-- Jeremy Bicha <jbicha@ubuntu.com> Mon, 28 Mar 2022 11:24:11 -0400
evolution-data-server (3.44.0-2) unstable; urgency=medium
* debian/rules: Fix dh_fixperms override (Closes: #1004484, #1006603)
-- Jeremy Bicha <jbicha@ubuntu.com> Sat, 19 Mar 2022 21:45:47 -0400
evolution-data-server (3.44.0-1) unstable; urgency=medium
* New upstream release
-- Jeremy Bicha <jbicha@ubuntu.com> Fri, 18 Mar 2022 08:14:59 -0400
evolution-data-server (3.43.3-1) unstable; urgency=medium
* New upstream release
-- Jeremy Bicha <jeremy.bicha@canonical.com> Sat, 05 Mar 2022 15:25:51 -0500
evolution-data-server (3.43.2-1) unstable; urgency=medium
* New upstream release
* Add new symbols to symbols files
-- Jeremy Bicha <jeremy.bicha@canonical.com> Tue, 15 Feb 2022 11:44:30 -0500
evolution-data-server (3.42.4-1) unstable; urgency=medium
* New upstream release
-- Jeremy Bicha <jeremy.bicha@canonical.com> Fri, 11 Feb 2022 08:02:19 -0500
evolution-data-server (3.42.3-1) unstable; urgency=medium
* New upstream release
-- Jeremy Bicha <jbicha@debian.org> Fri, 14 Jan 2022 07:15:20 -0500
evolution-data-server (3.42.2-1) unstable; urgency=medium
* New upstream release
-- Jeremy Bicha <jbicha@debian.org> Fri, 03 Dec 2021 06:35:36 -0500
evolution-data-server (3.42.1-1) unstable; urgency=medium
[ Laurent Bigonville ]
* Reenable OAuth support on sh4, webkit now builds on that architecture
[ Sebastien Bacher ]
* New upstream release
* Updated the symbols
-- Sebastien Bacher <seb128@ubuntu.com> Wed, 10 Nov 2021 11:34:45 +0100
evolution-data-server (3.42.0-2) unstable; urgency=medium
* Release to unstable
-- Jeremy Bicha <jbicha@debian.org> Tue, 28 Sep 2021 19:11:28 -0400
evolution-data-server (3.42.0-1) experimental; urgency=medium
* New upstream release
* Don't let debhelper 13.4+ make all the installed-tests executable
-- Jeremy Bicha <jbicha@debian.org> Sun, 19 Sep 2021 16:12:07 -0400
evolution-data-server (3.41.3-1) experimental; urgency=medium
* New upstream release
* Rename libcamel-1.2-62 to libcamel-1.2-63 to match soname bump
* Add new symbols for the new release
-- Jeremy Bicha <jbicha@debian.org> Fri, 10 Sep 2021 19:58:56 -0400
evolution-data-server (3.40.4-1) experimental; urgency=medium
* New upstream release
-- Sebastien Bacher <seb128@ubuntu.com> Thu, 09 Sep 2021 17:20:25 +0200
evolution-data-server (3.40.2-1) experimental; urgency=medium
* New upstream release
-- Sebastien Bacher <seb128@ubuntu.com> Tue, 08 Jun 2021 21:29:30 +0200
evolution-data-server (3.40.1-3) experimental; urgency=medium
* debian/control: Bump libgweather dependendency to rebuild against 40.0
libgweather had some internal API/ABI changes (not reflected by a soname
update as they apply at runtime only) so e-d-s needs to be rebuilt
against it.
As per this, bump the build dependency. Even though we supports both
versions and this is technically not required, we depend on a newer
release to ensure that we'll only rebuild this package when available.
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Tue, 25 May 2021 13:28:19 +0200
evolution-data-server (3.40.1-2) experimental; urgency=medium
* Disable OAuth support on architecture where webkit is not available
* Disable libphonenumber support on ia64 too
-- Laurent Bigonville <bigon@debian.org> Sat, 08 May 2021 19:34:54 +0200
evolution-data-server (3.40.1-1) experimental; urgency=medium
* New upstream release
* Updated symbols for the new version
[ Matthias Klose ]
* libebook-contacts-1.2-3.symbols:
- Remove duplicate symbols.
- Mark symbols as optional not seen when building with lto.
-- Sebastien Bacher <seb128@ubuntu.com> Mon, 03 May 2021 10:50:49 +0200
evolution-data-server (3.40.0-1) experimental; urgency=medium
* New upstream release
-- Sebastien Bacher <seb128@ubuntu.com> Mon, 22 Mar 2021 21:20:23 +0100
evolution-data-server (3.39.3-1) experimental; urgency=medium
[ Olivier Tilloy ]
* Make libedataserver1.2-dev depend on libgdata-dev (per upstream change
https://gitlab.gnome.org/GNOME/evolution-data-server/-/commit/45009e9)
[ Sebastien Bacher ]
* New upstream release
* Refresh the symbols for the new version
-- Sebastien Bacher <seb128@ubuntu.com> Mon, 15 Mar 2021 10:43:56 +0100
evolution-data-server (3.39.2-1) experimental; urgency=medium
* New upstream release
* Updated for the soname changes and refreshed symbols
* Removed patches included in the new version
-- Sebastien Bacher <seb128@ubuntu.com> Thu, 25 Feb 2021 16:32:58 +0100
evolution-data-server (3.38.3-1) unstable; urgency=medium
[ Sebastien Bacher ]
* New upstream release
* debian/libebackend-1.2-10.symbols:
- updated for the new version
[ Laurent Bigonville ]
* Stop hardcoding the build path in EDataServer-1.2.gir and make
libedataserver1.2-dev MA co-installable
* Try to make evolution-data-server-tests reproductible, patch from upstream
-- Sebastien Bacher <seb128@ubuntu.com> Mon, 25 Jan 2021 17:06:37 +0100
evolution-data-server (3.38.2-2) unstable; urgency=medium
* Add a patch from upstream to remove absolute build paths from header
files, that should make them reproducible and fix multi-arch
-- Laurent Bigonville <bigon@debian.org> Tue, 08 Dec 2020 10:42:08 +0100
evolution-data-server (3.38.2-1) unstable; urgency=medium
* New upstream release
- debian/*.symbols: Add newly exported symbols
* debian/rules: Add reproducible=+fixfilepath option to
DEB_BUILD_MAINT_OPTIONS to try to make the package reproductible
-- Laurent Bigonville <bigon@debian.org> Mon, 07 Dec 2020 17:49:01 +0100
evolution-data-server (3.38.1-2) unstable; urgency=medium
* Upload to unstable
-- Sebastien Bacher <seb128@ubuntu.com> Tue, 17 Nov 2020 16:05:10 +0100
evolution-data-server (3.38.1-1) experimental; urgency=medium
* New upstream release
-- Sebastien Bacher <seb128@ubuntu.com> Mon, 05 Oct 2020 13:37:20 +0200
evolution-data-server (3.38.0-2) experimental; urgency=medium
* Correctly update the symbols now
-- Sebastien Bacher <seb128@ubuntu.com> Tue, 15 Sep 2020 13:29:29 +0200
evolution-data-server (3.38.0-1) experimental; urgency=medium
* New upstream release
-- Sebastien Bacher <seb128@ubuntu.com> Tue, 15 Sep 2020 11:20:26 +0200
evolution-data-server (3.37.90-1) experimental; urgency=medium
* New upstream release
* Updated for the libedataserver soname change
* Refreshed the symbols for the new version
-- Sebastien Bacher <seb128@ubuntu.com> Mon, 10 Aug 2020 15:20:12 +0200
evolution-data-server (3.36.4-1) unstable; urgency=medium
* New stable version (lp: #1886644), fixes
- CVE-2020-14928: Response Injection via STARTTLS in SMTP and POP3
* Updated symbols for the new version
-- Sebastien Bacher <seb128@ubuntu.com> Tue, 07 Jul 2020 12:38:45 +0200
evolution-data-server (3.36.3-1) unstable; urgency=medium
* New stable version (lp: #1883116)
-- Sebastien Bacher <seb128@ubuntu.com> Thu, 11 Jun 2020 23:09:07 +0200
evolution-data-server (3.36.2-1) unstable; urgency=medium
* New upstream release
* Drop backported patches applied in new release
* Drop obsolete dh_strip dbgsym migration rule
* Bump debhelper-compat to 13
-- Jeremy Bicha <jbicha@debian.org> Sun, 26 Apr 2020 17:36:00 -0400
evolution-data-server (3.36.1-2) unstable; urgency=medium
* debian/patches/git_stable_bugfixes.patch:
- backport upstream fixes for webdav and goa calendar issues
(lp: #1871019)
-- Sebastien Bacher <seb128@ubuntu.com> Wed, 15 Apr 2020 09:38:29 +0200
evolution-data-server (3.36.1-1) unstable; urgency=medium
* New upstream release
-- Jeremy Bicha <jbicha@debian.org> Sun, 29 Mar 2020 12:59:11 -0400
evolution-data-server (3.36.0-1) unstable; urgency=medium
* New upstream release
-- Sebastien Bacher <seb128@ubuntu.com> Tue, 10 Mar 2020 15:29:17 +0100
evolution-data-server (3.35.92-1) experimental; urgency=medium
* New upstream release
-- Sebastien Bacher <seb128@ubuntu.com> Mon, 02 Mar 2020 16:37:28 +0100
evolution-data-server (3.35.91-1) experimental; urgency=medium
* New upstream release
* debian/gbp.conf:
- go back to use upstream/latest for the new serie
* debian/control.in:
- updated the libical version requirement to 3.0.7
* debian/libedataserver-1.2-24.symbols:
- refresh the symbols for the new version
-- Sebastien Bacher <seb128@ubuntu.com> Tue, 25 Feb 2020 15:20:32 +0100
evolution-data-server (3.34.3-2) unstable; urgency=medium
[ Iain Lane ]
* Re-apply accidentally dropped changes from 3.34.1-2.
* gbp.conf: Use upstream/3.34.x for upstream branch, now upstream/latest has
diverged
[ Steve Langasek ]
* debian/rules: Omit evolution-data-server{,-tests} packages on
ubuntu/i386.
-- Iain Lane <laney@debian.org> Sun, 16 Feb 2020 21:49:04 +0000
evolution-data-server (3.34.3-1) unstable; urgency=medium
* New upstream release
* Bump Standards-Version to 4.5.0
-- Jeremy Bicha <jbicha@debian.org> Sat, 01 Feb 2020 21:34:29 -0500
evolution-data-server (3.34.1-2) unstable; urgency=medium
[ Steve Langasek ]
* debian/rules: Omit evolution-data-server{,-tests} packages on
ubuntu/i386. (Closes: #947186)
-- Sebastien Bacher <seb128@ubuntu.com> Thu, 09 Jan 2020 17:30:09 +0100
evolution-data-server (3.34.1-1) unstable; urgency=medium
* New upstream release
* debian/libedataserver-1.2-24.symbols: Add new symbols
-- Jeremy Bicha <jbicha@debian.org> Mon, 07 Oct 2019 20:19:38 -0400
evolution-data-server (3.34.0-3) unstable; urgency=medium
* Team upload.
* Upload to unstable.
-- Andreas Henriksson <andreas@fatal.se> Mon, 30 Sep 2019 13:39:53 +0200
evolution-data-server (3.34.0-2) experimental; urgency=medium
* Correctly update debian/libedata-cal-2.0-1.symbols
-- Sebastien Bacher <seb128@ubuntu.com> Fri, 13 Sep 2019 18:10:19 +0200
evolution-data-server (3.34.0-1) experimental; urgency=medium
* New upstream release
-- Sebastien Bacher <seb128@ubuntu.com> Wed, 11 Sep 2019 17:59:16 +0200
evolution-data-server (3.33.91-3) experimental; urgency=medium
* Correctly update the symbols for the new version...
-- Sebastien Bacher <seb128@ubuntu.com> Wed, 28 Aug 2019 21:25:12 +0200
evolution-data-server (3.33.91-2) experimental; urgency=medium
* Remove patch not needed in the new version
-- Sebastien Bacher <seb128@ubuntu.com> Wed, 28 Aug 2019 17:07:53 +0200
evolution-data-server (3.33.91-1) experimental; urgency=medium
* New upstream release
-- Sebastien Bacher <seb128@ubuntu.com> Wed, 28 Aug 2019 17:04:06 +0200
evolution-data-server (3.33.4-1) experimental; urgency=medium
* New upstream release
* debian/*: Update package names for new SONAMEs. There are new gir
libraries too, for EDataCal / ECal / EDataBook / EBackend - add binary
packages for these.
* Bump libical BD per upstream.
* Refresh patches
* debian/evolution-data-server.docs: Drop TODO, it's removed upstream
* ecal-Add-camel-and-libedataserver-to-the-library-search-p.patch: Fix gir
build failure
* Update symbols files
* debian/evolution-data-server.lintian-overrides: Fix path of sgid binary
* debian/copyright: Update slightly
-- Iain Lane <laney@debian.org> Tue, 30 Jul 2019 13:28:58 +0100
evolution-data-server (3.32.2-1) experimental; urgency=medium
* New upstream release
-- Sebastien Bacher <seb128@ubuntu.com> Sat, 18 May 2019 08:52:08 +0200
evolution-data-server (3.32.1-1) experimental; urgency=medium
* New upstream release
-- Sebastien Bacher <seb128@ubuntu.com> Tue, 09 Apr 2019 11:18:52 +0200
evolution-data-server (3.32.0-1) experimental; urgency=medium
* New upstream release
* debian/libedataserver-1.2-24.symbols: Add new symbols
-- Jeremy Bicha <jbicha@debian.org> Mon, 11 Mar 2019 06:37:12 -0400
evolution-data-server (3.31.90-1) experimental; urgency=medium
* New upstream development release
* Rename libedataserver-1.2-23 to libedataserver-1.2-24 to match soname bump
* Update symbols files
* Build-Depend on debhelper-compat 12 and drop debian/compat
* Build-Depend on dh-sequence-gir and dh-sequence-gnome
* Stop overriding libexec directory (/usr/libexec is fine now)
-- Jeremy Bicha <jbicha@debian.org> Mon, 04 Feb 2019 09:37:42 -0500
evolution-data-server (3.30.5-1) unstable; urgency=medium
* New upstream release
-- Jeremy Bicha <jbicha@debian.org> Mon, 04 Feb 2019 08:14:07 -0500
evolution-data-server (3.30.4-1) unstable; urgency=medium
* New upstream release
* Drop obsolete Build-Depends on gnome-common
* Restore -Wl,-O1 to our LDFLAGS
* Bump Standards-Version to 4.3.0
-- Jeremy Bicha <jbicha@debian.org> Mon, 07 Jan 2019 08:21:11 -0500
evolution-data-server (3.30.3-1) unstable; urgency=medium
* New upstream release
* debian/libebackend-1.2-10.symbols: Add new symbols
* debian/libebook-contacts-1.2-2.symbols: Drop no-longer needed protobuf
leaked symbols
-- Jeremy Bicha <jbicha@debian.org> Mon, 10 Dec 2018 10:43:18 -0500
evolution-data-server (3.30.2-2) unstable; urgency=medium
* Fix postinst script if update-notifier is not installed
- Thanks Felix Zielcke for the suggested fix (Closes: #911603)
-- Jeremy Bicha <jbicha@debian.org> Mon, 22 Oct 2018 17:31:43 -0400
evolution-data-server (3.30.2-1) unstable; urgency=medium
* New upstream release
-- Jeremy Bicha <jbicha@debian.org> Mon, 22 Oct 2018 06:57:49 -0400
evolution-data-server (3.30.1-1) unstable; urgency=medium
* New upstream release
* Update dh_auto_test override for cmake but continue ignoring test
failures
-- Jeremy Bicha <jbicha@debian.org> Mon, 24 Sep 2018 10:42:24 -0400
evolution-data-server (3.30.0-1) unstable; urgency=medium
* New upstream release
-- Jeremy Bicha <jbicha@debian.org> Mon, 03 Sep 2018 17:48:54 -0400
evolution-data-server (3.29.92-2) unstable; urgency=medium
* Have libedataserverui1.2-dev depend on libecal1.2-dev (Closes: #907757)
-- Jeremy Bicha <jbicha@debian.org> Sat, 01 Sep 2018 15:04:46 -0400
evolution-data-server (3.29.92-1) unstable; urgency=medium
* New upstream release
* debian/evolution.install: Install org.gnome.Evolution-alarm-notify.desktop
* Release to unstable
-- Jeremy Bicha <jbicha@debian.org> Mon, 27 Aug 2018 05:52:56 -0400
evolution-data-server (3.29.90-1) experimental; urgency=medium
* New upstream development release
* Update library names for soname bumps
* Add Breaks/Replaces for evolution-alarm-notify's move from libevolution
* debian/control.in: Build-Depend on libcanberra-gtk3-dev (>= 0.25)
* Update symbols files
* debian/libebook-contacts-1.2-2.symbols: Mark a symbol as optional
-- Jeremy Bicha <jbicha@debian.org> Fri, 10 Aug 2018 09:34:12 -0400
evolution-data-server (3.28.5-3) unstable; urgency=medium
* debian/libebook-contacts-1.2-2.symbols: Adjust for hppa
-- Jeremy Bicha <jbicha@debian.org> Tue, 31 Jul 2018 09:17:28 -0400
evolution-data-server (3.28.5-2) unstable; urgency=medium
* Update symbols files for new release
-- Jeremy Bicha <jbicha@debian.org> Mon, 30 Jul 2018 22:09:40 -0400
evolution-data-server (3.28.5-1) unstable; urgency=medium
* New upstream release (LP: #1784514)
-- Jeremy Bicha <jbicha@debian.org> Mon, 30 Jul 2018 20:25:04 -0400
evolution-data-server (3.28.2-1) unstable; urgency=medium
* New upstream release (LP: #1769637)
-- Jeremy Bicha <jbicha@debian.org> Mon, 07 May 2018 08:21:46 -0400
evolution-data-server (3.28.1-1) unstable; urgency=medium
* New upstream release
* Bump Standards-Version to 4.1.4
-- Jeremy Bicha <jbicha@debian.org> Mon, 09 Apr 2018 08:39:55 -0400
evolution-data-server (3.28.0-3) unstable; urgency=medium
* Team upload
* d/shlibs.local: Add lockstep dependencies wherever a binary package
depends on libraries from this same source package. We can't expect
to support partial upgrades within a source package: upstreams won't
expect that situation to be possible. (Closes: #894482)
* Move e-d-s pkg-config metadata to /usr/lib/$(multiarch)/pkgconfig,
making it available for cross-compilation
* Standards-Version: 4.1.3 (no changes required)
* d/evolution-data-server-tests.lintian-overrides:
Override warnings for test-only library not being packaged like a
normal library
-- Simon McVittie <smcv@debian.org> Tue, 03 Apr 2018 10:26:56 +0100
evolution-data-server (3.28.0-2) unstable; urgency=medium
[ Simon McVittie ]
* d/control: Update Vcs-* for migration from Alioth svn to salsa.debian.org
git
* d/gbp.conf: Add
[ Jeremy Bicha ]
* Switch Maintainer from Debian Evolution team to Debian GNOME team
* Release to unstable
-- Jeremy Bicha <jbicha@debian.org> Mon, 26 Mar 2018 19:10:17 -0400
evolution-data-server (3.28.0-1) experimental; urgency=medium
* New upstream release
-- Jeremy Bicha <jbicha@debian.org> Mon, 12 Mar 2018 08:18:39 -0400
evolution-data-server (3.27.90-1) experimental; urgency=medium
* New upstream development release
* Update library names for soname bumps
* Add Rules-Requires-Root: binary-targets for file owned by root:mail
* Bump debhelper compat to 11
-- Jeremy Bicha <jbicha@debian.org> Sat, 10 Feb 2018 18:00:25 -0500
evolution-data-server (3.26.5-2) unstable; urgency=medium
* Cherry-pick gweather-3-27.patch to build against latest libgweather
-- Jeremy Bicha <jbicha@debian.org> Sun, 11 Mar 2018 13:23:29 -0400
evolution-data-server (3.26.5-1) unstable; urgency=medium
* New upstream release
-- Jeremy Bicha <jbicha@debian.org> Sat, 10 Feb 2018 17:08:42 -0500
evolution-data-server (3.26.3-4) unstable; urgency=high
* Add missing comma to Conflicts list
-- Jeremy Bicha <jbicha@debian.org> Fri, 29 Dec 2017 10:06:09 -0500
evolution-data-server (3.26.3-3) unstable; urgency=high
* Replace Conflicts against libcal2 with versioned Conflicts against the
packages that depend on both libical2 and either libecal-1.2-19 or
libedata-cal-1.2-28
* Set urgency to high since many of these packages are already in Testing
-- Jeremy Bicha <jbicha@debian.org> Thu, 28 Dec 2017 15:58:04 -0500
evolution-data-server (3.26.3-2) unstable; urgency=medium
* Add Conflicts against libical2 to libecal-1.2-19 and libedata-cal-1.2-28.
This avoids that applications that link against libecal/libedata-cal and
libical end up with both libical2 and libical3 being loaded into their
address space. This is not supported and leads to a crash.
(Closes: #884012)
-- Michael Biebl <biebl@debian.org> Sat, 16 Dec 2017 16:45:07 +0100
evolution-data-server (3.26.3-1) unstable; urgency=medium
* New upstream release
* Revert unnecessary NMU
-- Jeremy Bicha <jbicha@debian.org> Mon, 11 Dec 2017 09:03:03 -0500
evolution-data-server (3.26.2.1-1.1) unstable; urgency=medium
* Non-maintainer upload.
* Update (build) dependencies for libical3. Closes: #883922.
-- Matthias Klose <doko@debian.org> Sat, 09 Dec 2017 13:52:27 +0100
evolution-data-server (3.26.2.1-1) unstable; urgency=medium
* New upstream release
* Add new symbol
-- Jeremy Bicha <jbicha@debian.org> Tue, 31 Oct 2017 07:48:07 -0400
evolution-data-server (3.26.2-1) unstable; urgency=medium
* New upstream release (LP: #1728653)
* Add new symbols
-- Jeremy Bicha <jbicha@debian.org> Mon, 30 Oct 2017 12:44:31 -0400
evolution-data-server (3.26.1-1) unstable; urgency=medium
[ Jeremy Bicha ]
* New upstream release
* Bump Standards-Version to 4.1.1
[ Andreas Henriksson ]
* Remove myself from uploaders
-- Jeremy Bicha <jbicha@debian.org> Mon, 02 Oct 2017 09:33:00 -0400
evolution-data-server (3.26.0-1) unstable; urgency=medium
* New upstream release
* Upload to unstable
* debian/control:
- Have evolution-data-server-tests depend on evolution-common and
evolution-data-server since they're needed by the tests.
* debian/tests/control:
- Disable installed-tests autopkgtest since it's too unreliable
to be useful
-- Jeremy Bicha <jbicha@ubuntu.com> Mon, 11 Sep 2017 19:41:55 -0400
evolution-data-server (3.25.92-1) experimental; urgency=medium
* New upstream release
* Add new symbols
* debian/evolution-data-server.install:
- Install new list-sources tool
- owncloud backend has been renamed to webdav
* Add ubuntu_gettext_domain.patch:
Work around Ubuntu translations issue
-- Jeremy Bicha <jbicha@debian.org> Mon, 04 Sep 2017 08:38:50 -0400
evolution-data-server (3.24.5-6) unstable; urgency=medium
* debian/rules: Fix arch-conditional filter rule
-- Jeremy Bicha <jbicha@debian.org> Fri, 01 Sep 2017 15:29:35 -0400
evolution-data-server (3.24.5-5) unstable; urgency=medium
* debian/libebook-contacts-1.2-2.symbols: Fix for !hppa
-- Jeremy Bicha <jbicha@debian.org> Fri, 01 Sep 2017 13:59:26 -0400
evolution-data-server (3.24.5-4) unstable; urgency=medium
* Don't build with libphonenumber on hppa
-- Jeremy Bicha <jbicha@debian.org> Fri, 01 Sep 2017 11:53:20 -0400
evolution-data-server (3.24.5-3) unstable; urgency=medium
* Build with libphonenumber on Linux only
-- Jeremy Bicha <jbicha@debian.org> Fri, 01 Sep 2017 08:54:46 -0400
evolution-data-server (3.24.5-2) unstable; urgency=medium
* Upload to unstable.
* Bump Standards-Version to 4.1.0
-- Jeremy Bicha <jbicha@debian.org> Wed, 30 Aug 2017 14:35:21 -0400
evolution-data-server (3.24.5-1) experimental; urgency=medium
* New upstream release (LP: #1685683)
- Switch from autotools to cmake
* Add new packages:
- evolution-data-server-tests
- gir1.2-camel-1.2
- gir1.2-edataserverui-1.2
* Rename libcamel-1.2-59 -> libcamel-1.2-60
* Rename libebook-1.2-16 -> libebook-1.2-19
* debian/control:
- Build-depend on db-util to silence test warning
- Have libebook-contacts1.2-dev depend on its gir package
* debian/rules:
- Set -DCMAKE_SKIP_RPATH=ON
- Explicitly set SENDMAIL_PATH to avoid a build warning
* Add additional autopkgtest to run installed-tests
* Add evolution-data-server.postinst to recommend restarting
after updating.
-- Jeremy Bicha <jbicha@ubuntu.com> Tue, 08 Aug 2017 01:26:02 -0400
evolution-data-server (3.22.7-1) unstable; urgency=medium
* New upstream release.
-- Michael Biebl <biebl@debian.org> Fri, 24 Mar 2017 02:20:03 +0100
evolution-data-server (3.22.6-1) unstable; urgency=medium
* New upstream release.
-- Michael Biebl <biebl@debian.org> Tue, 14 Mar 2017 00:02:39 +0100
evolution-data-server (3.22.5-1) unstable; urgency=medium
* New upstream release.
* Update debian/libcamel-1.2-59.symbols.
-- Michael Biebl <biebl@debian.org> Tue, 14 Feb 2017 23:08:09 +0100
evolution-data-server (3.22.4-1) unstable; urgency=medium
* New upstream release.
-- Michael Biebl <biebl@debian.org> Tue, 17 Jan 2017 07:14:17 +0100
evolution-data-server (3.22.3-1) unstable; urgency=medium
* New upstream release.
-- Michael Biebl <biebl@debian.org> Tue, 13 Dec 2016 02:19:21 +0100
evolution-data-server (3.22.2-1) unstable; urgency=medium
* New upstream release.
-- Michael Biebl <biebl@debian.org> Mon, 07 Nov 2016 14:37:52 +0100
evolution-data-server (3.22.1-2) unstable; urgency=medium
* Add a Build-Depends-Package line to all symbols files to get proper
dependencies when a package build-depends on a higher version of a
dev package than what it gets from the used symbols.
* Remove a few obsolete Breaks.
-- Michael Biebl <biebl@debian.org> Tue, 11 Oct 2016 01:48:09 +0200
evolution-data-server (3.22.1-1) unstable; urgency=medium
* New upstream release.
* Update debian/libedataserver-1.2-22.symbols.
-- Michael Biebl <biebl@debian.org> Mon, 10 Oct 2016 18:06:22 +0200
evolution-data-server (3.22.0-2) unstable; urgency=medium
* Upload to unstable.
-- Michael Biebl <biebl@debian.org> Thu, 29 Sep 2016 23:49:36 +0200
evolution-data-server (3.22.0-1) experimental; urgency=medium
* New upstream release.
* Update debian/libedataserver-1.2-22.symbols.
* Simplify dh_auto_test override by using VERBOSE=1.
-- Michael Biebl <biebl@debian.org> Wed, 21 Sep 2016 23:20:37 +0200
evolution-data-server (3.21.92-1) experimental; urgency=medium
* New upstream development release.
* Drop debian/patches/02-csv2vcard-Ensure-PERL-is-properly-substit.patch,
merged upstream.
-- Michael Biebl <biebl@debian.org> Mon, 12 Sep 2016 17:25:23 +0200
evolution-data-server (3.21.91-1) experimental; urgency=medium
[ Jeremy Bicha ]
* New upstream release
* Rename libcamel-1.2-57 -> libcamel-1.2-59
* Rename libedataserver-1.2-21 -> libedataserver-1.2-22
* Update symbols
* Build-depend on libwebkit2 gtk-4.0-dev instead of libwebkitgtk-3.0-dev
* Bump dh compat to 10
* Minor update to autopkgtest
[ Michael Biebl ]
* Fix @PERL@ substitution in csv2vcard, which was moved from evolution to
evolution-data-server.
-- Michael Biebl <biebl@debian.org> Fri, 02 Sep 2016 14:16:37 +0200
evolution-data-server (3.20.5-1) unstable; urgency=medium
* Team upload
[ Jeremy Bicha ]
* New upstream release
* Add missing libedataserverui-1.2-1.symbols (from Ubuntu)
-- Andreas Henriksson <andreas@fatal.se> Sat, 20 Aug 2016 10:57:43 +0200
evolution-data-server (3.20.4-2) unstable; urgency=medium
* Move chmod/chgrp calls for camel-lock-helper to override_dh_fixperms.
* Run override_dh_fixperms only for arch-any build.
* Add myself to Uploaders.
-- Michael Biebl <biebl@debian.org> Fri, 15 Jul 2016 22:50:53 +0200
evolution-data-server (3.20.4-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* Drop Build-Depends on chrpath and stop calling chrpath in debian/rules.
The shared libraries no longer embed any RPATH so this is not needed
anymore.
* Convert from cdbs to dh.
* Don't make test-suite failures fatal. Dump the contents of the
test-suite.log files to stdout in case of an error.
* Use dbus-run-session to run the test-suite.
-- Michael Biebl <biebl@debian.org> Fri, 15 Jul 2016 16:36:08 +0200
evolution-data-server (3.20.3-1) unstable; urgency=medium
* Team upload.
* New upstream release.
-- Michael Biebl <biebl@debian.org> Tue, 07 Jun 2016 13:33:22 +0200
evolution-data-server (3.20.2-2) unstable; urgency=medium
[ Laurent Bigonville ]
* Re-enable libphonenumber support
* Drop -dbg package en rely on the -dbgsym automatically built packages
* Add 'Multi-arch: foreign' field to evolution-data-server-common package
[ Michael Biebl ]
* Drop Build-Depends on libdbus-glib-1-dev and libdbus-glib-1-doc, no longer
needed.
* Remove people from Uploaders who haven't made any uploads or changes for
several years. Thank you all for your past contributions.
* Upload to unstable.
-- Michael Biebl <biebl@debian.org> Wed, 18 May 2016 16:48:39 +0200
evolution-data-server (3.20.2-1) experimental; urgency=medium
* New upstream release.
* Update (build-)dependencies according to configure.ac changes:
- Bump libical-dev to (>= 2.0)
- Add libjson-glib-dev (>= 1.0.4), libwebkitgtk-3.0-dev (>= 2.4.9)
(used for google auth)
* Bump Standards-Version to 3.9.8
* Ship systemd user units for dbus-activated services
* Ship libcamel1.2 vapi, deps and gir in libcamel1.2-dev
* Update symbols files with many additions:
- libedataserver-1.2-21.symbols
- libecal-1.2-19.symbols
* Rename libcamel-1.2-54 -> libcamel-1.2-57
- update symbols file.
-- Andreas Henriksson <andreas@fatal.se> Wed, 11 May 2016 10:42:58 +0200
evolution-data-server (3.18.5-1) unstable; urgency=medium
* Multiarchify the library packages. (Closes: #812938)
* debian/rules: Strip -Bsymbolic-functions from LDFLAGS - this breaks e-d-s
at runtime.
* debian/rules: Build with --fail-missing
* New upstream release 3.18.5
-- Iain Lane <laney@debian.org> Fri, 19 Feb 2016 14:23:37 +0000
evolution-data-server (3.18.3-1) unstable; urgency=medium
* New upstream release.
-- Iain Lane <laney@debian.org> Wed, 16 Dec 2015 13:39:07 +0000
evolution-data-server (3.18.2-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* Drop XS-Testsuite header, no longer required with recent dpkg versions.
* Drop obsolete Breaks and Replaces for versions pre-wheezy.
-- Michael Biebl <biebl@debian.org> Sun, 15 Nov 2015 06:39:34 +0100
evolution-data-server (3.18.1-1) unstable; urgency=medium
* New upstream release.
-- Andreas Henriksson <andreas@fatal.se> Mon, 19 Oct 2015 14:47:24 +0200
evolution-data-server (3.18.0-3) unstable; urgency=medium
* Upload to unstable.
-- Andreas Henriksson <andreas@fatal.se> Sun, 04 Oct 2015 20:32:39 +0200
evolution-data-server (3.18.0-2) experimental; urgency=medium
* Import and update 3.16.3-1.1 NMU
- temporarily disables libphonenumber (build-)dep
-- Andreas Henriksson <andreas@fatal.se> Thu, 01 Oct 2015 18:47:53 +0200
evolution-data-server (3.18.0-1) experimental; urgency=medium
* New upstream release.
* Update debian/libedataserver-1.2-21.symbols with three additions.
* Update debian/libcamel-1.2-54.symbols with two additions.
* Update debian/libebackend-1.2-10.symbols with one addition.
* Add myself to uploaders
-- Andreas Henriksson <andreas@fatal.se> Thu, 01 Oct 2015 13:41:37 +0200
evolution-data-server (3.17.90-1) experimental; urgency=medium
* Team upload.
* New upstream beta release.
* Update build-dependencies according to configure.ac changes:
- bump libgtk-3-dev to >= 3.10
- bump libgweather-3-dev to >= 3.10
- bump libsqlite3-dev to >= 3.7.17
* Rename packages according to upstream SONAME bumps
- libcamel-1.2-52 -> libcamel-1.2-54
- libebook-contacts-1.2-1 -> libebook-contacts-1.2-2
- libecal-1.2-18 -> libecal-1.2-19
- libedata-cal-1.2-27 -> libedata-cal-1.2-28
- libedataserver-1.2-20 -> libedataserver-1.2-21
* Update symbols files
-- Andreas Henriksson <andreas@fatal.se> Sat, 29 Aug 2015 11:23:55 +0200
evolution-data-server (3.16.5-1) unstable; urgency=medium
* New upstream release 3.16.5 and 3.16.4
* Remove accidentally leaked symbols from the symbols file; they aren't used
elsewhere.
* debian/*.symbols: Add new ones.
-- Iain Lane <laney@debian.org> Thu, 27 Aug 2015 12:39:50 +0100
evolution-data-server (3.16.3-1.1) unstable; urgency=medium
* Non-maintainer upload.
* Disable libphonenumber support for now, to disentangle e-d-s from
that part of the libstdc++ transition (which it appears is going
to involve a new upstream release).
* debian/libedataserver-1.2-20.symbols: mark ICU template instantiations
as optional since they are not intended to be ABI (Closes: #792494)
-- Simon McVittie <smcv@debian.org> Thu, 06 Aug 2015 19:56:33 +0100
evolution-data-server (3.16.3-1) unstable; urgency=medium
* New upstream release.
* debian/libedataserver-1.2-20.symbols:
+ Add a few new symbols.
* Upload to unstable.
-- Emilio Pozuelo Monfort <pochu@debian.org> Thu, 11 Jun 2015 21:28:24 +0200
evolution-data-server (3.16.2-4) experimental; urgency=medium
* debian/control:
+ Let libebook1.2-dev depend on libedata-book1.2-dev.
+ Drop libcamel1.2-dev dependency on libedataserver1.2-dev. It isn't
needed and breaks another dependency loop.
+ Let libedata-book1.2-dev depend on libebook-contacts1.2-dev and drop
its dependency on libedataserver1.2-dev and libebook1.2-dev.
+ Drop libedata-cal1.2-dev dependency on libedataserver1.2-dev.
+ Let libebackend1.2-dev depend on libedataserver1.2-dev.
* Merge changes from 3.12.5-2 through 3.12.11-1.
-- Emilio Pozuelo Monfort <pochu@debian.org> Sun, 31 May 2015 15:41:04 +0200
evolution-data-server (3.16.2-3) experimental; urgency=medium
* debian/patches/01-noinst-libedbus-private.patch,
debian/evolution-data-server.install:
+ Revert installation of libedbus-private.so. This library wasn't
installed in 3.12 and earlier versions. Instead, the other libraries
embedded it. Keep doing that, as installing it brings a whole
lot of problems. See the patch for a longer explanation.
* debian/*.symbols:
+ Add the libedbus-private symbols as the libraries now embed them.
* debian/control:
+ Drop libedataserver1.2-dev dependency on libedata-book1.2-dev. That
isn't necessary and was causing a circular dependency loop.
-- Emilio Pozuelo Monfort <pochu@debian.org> Sat, 30 May 2015 22:02:32 +0200
evolution-data-server (3.16.2-2) experimental; urgency=medium
* debian/evolution-data-server.install:
+ Add missing files from the new version.
* debian/control,
debian/libedataserverui-1.2-1.install,
debian/libedataserverui1.2-dev.install:
+ Add new packages for libedataserverui-1.2.so.
-- Emilio Pozuelo Monfort <pochu@debian.org> Thu, 28 May 2015 19:41:03 +0200
evolution-data-server (3.16.2-1) experimental; urgency=medium
[ Laurent Bigonville ]
* Add d/p/01_Adapt-to-new-Google-HTTP-restriction.patch: Adapt to new Google
HTTP restriction, this fixes authentication issue when updating the
calendar
* debian/rules, debian/control: Enable libphonenumber on linux architectures
(Closes: #758653)
* Add debian/patches/02_Only-export-symbols-starting-with-e.patch: Hide
symbols not starting with 'e_.*' to avoid some libphonenumber symbols to
be exported.
[ Jean Schurger ]
* New upstream release 3.13.5.
* debian/control, lib*.symbols, lib*.install:
- Bump soname for libcamel-1.2 from 49 to 50
- Bump soname for libebackend-1.2 from 7 to 9
- Bump soname for libebook-1.2 from 14 to 15
- Bump soname for libecal-1.2 from 16 to 17
- Bump soname for libedata-book-1.2 from 20 to 24
- Bump soname for libedata-cal-1.2 from 23 to 26
- Bump soname for libedataserver-1.2 from 18 to 19
[ Emilio Pozuelo Monfort ]
* New upstream release 3.16.2.
* debian/control:
+ Update (build-)dependencies.
* debian/patches/01_Adapt-to-new-Google-HTTP-restriction.patch,
debian/patches/02_Only-export-symbols-starting-with-e.patch:
+ Removed, merged upstream.
* debian/lib*.{install,symbols},
debian/control:
+ Update for new sonames.
-- Emilio Pozuelo Monfort <pochu@debian.org> Mon, 25 May 2015 14:22:31 +0200
evolution-data-server (3.12.11-1) unstable; urgency=medium
* Replace hardcoded list of libphonenumber architectures with just
[linux-any], so arm64 can also get this support.
* New upstream bugfix release.
* Bump valac build-dependency.
-- Josselin Mouette <joss@debian.org> Fri, 29 May 2015 17:25:33 +0200
evolution-data-server (3.12.9~git20141128.5242b0-2) unstable; urgency=medium
* Fix brown paper bug in libcamel1.2-dev dependencies.
-- Josselin Mouette <joss@debian.org> Sun, 30 Nov 2014 23:59:50 +0100
evolution-data-server (3.12.9~git20141128.5242b0-1) unstable; urgency=medium
* Fix dependencies for development packages. Closes: #724595.
* Depend on gnome-keyring. Closes: #739324, #753478.
* New upstream git snapshot from stable branch, includes only bugfixes
and translations.
-- Josselin Mouette <joss@debian.org> Sun, 30 Nov 2014 09:55:18 +0100
evolution-data-server (3.12.7.1-2) unstable; urgency=medium
* Replace hardcoded list of libphonenumber architectures with just
[!kfreebsd-any !hurd-any], so arm64 can also get this support.
* Add sqlite3_xfetch_crash.patch: Add upstream fix for crashes with
new sqlite3 (closes: #765812).
* Add imapx_no_connect_when_offline.patch: avoid server connections while
in offline mode.
* Add imapx_reconnect_after_socket_io_timeout.patch: Fix connection
problems after network state changes.
-- Jordi Mallach <jordi@debian.org> Thu, 06 Nov 2014 21:10:18 +0100
evolution-data-server (3.12.7.1-1) unstable; urgency=medium
* New upstream release 3.12.7.1
+ Fixes failure to send message in some situations (when the SASL
challenge returned NULL)
-- Iain Lane <laney@debian.org> Tue, 14 Oct 2014 17:28:58 +0100
evolution-data-server (3.12.7.1-1) unstable; urgency=medium
* New upstream release 3.12.7.1
+ Fixes failure to send message in some situations (when the SASL
challenge returned NULL)
-- Iain Lane <laney@debian.org> Tue, 14 Oct 2014 17:28:58 +0100
evolution-data-server (3.12.7-1) unstable; urgency=medium
* New upstream release 3.12.7
* debian/control: Standards-Version → 3.9.6, no changes required
-- Iain Lane <iain@orangesquash.org.uk> Mon, 13 Oct 2014 14:58:20 +0100
evolution-data-server (3.12.6-1.1) unstable; urgency=medium
* Non-Maintainer Upload
* Restrict use of libphonenumber to architectures where it is confirmed to
be available. (Closes: 762129)
-- Peter Michael Green <plugwash@debian.org> Wed, 17 Sep 2014 19:10:52 +0000
evolution-data-server (3.12.6-1) unstable; urgency=medium
* New upstream release.
- Drop d/p/01_Adapt-to-new-Google-HTTP-restriction.patch,
d/p/03_CamelNetworkService-fails-to-connect-to-localhost.patch: Merged
upstream
- Adjust debian/libcamel-1.2-49.symbols file: New symbols added
-- Laurent Bigonville <bigon@debian.org> Mon, 15 Sep 2014 15:28:33 +0200
evolution-data-server (3.12.5-2) unstable; urgency=medium
* Add d/p/01_Adapt-to-new-Google-HTTP-restriction.patch: Adapt to new Google
HTTP restriction, this fixes authentication issue when updating the
calendar (Closes: #756959)
* debian/rules, debian/control: Enable libphonenumber on linux architectures
(Closes: #758653)
* Add debian/patches/02_Only-export-symbols-starting-with-e.patch: Hide
symbols not starting with 'e_.*' to avoid some libphonenumber symbols to
be exported.
* d/p/03_CamelNetworkService-fails-to-connect-to-localhost.patch: Fix
sending mails to "localhost"
-- Laurent Bigonville <bigon@debian.org> Mon, 08 Sep 2014 17:20:20 +0200
evolution-data-server (3.12.5-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* Update debian/libebook-contacts-1.2-0.symbols with one addition.
-- Andreas Henriksson <andreas@fatal.se> Sat, 23 Aug 2014 17:57:19 -0700
evolution-data-server (3.12.2-1) unstable; urgency=medium
* New upstream release.
* debian/control: downgrade Build-Depends on libgoa-1.0-dev to >= 3.8.
-- Jordi Mallach <jordi@debian.org> Mon, 12 May 2014 01:52:26 +0200
evolution-data-server (3.12.1-1) unstable; urgency=medium
* New upstream release.
* Upload to unstable.
* Bump Build-Depends libgoa-1.0-dev to >= 3.12 for transition purposes.
-- Jordi Mallach <jordi@debian.org> Sat, 26 Apr 2014 10:52:17 +0200
evolution-data-server (3.12.0-1) experimental; urgency=medium
* Team upload.
[ Laurent Bigonville ]
* New upstream release (3.11.90).
- Adjust build-dependencies
- Bump soname for libcamel-1.2 from 45 to 49
- Adjust .symbols files
* debian/control.in:
- Bump Standards-Version to 3.9.5 (no further changes)
- Adjust Homepage URL
[ Emilio Pozuelo Monfort ]
* New upstream release (3.12.0).
* debian/control:
+ Build against gnome-online-accounts 3.8 in preparation for an
upload to unstable.
* debian/libcamel-1.2-49.symbols:
+ Update for the new symbols.
* debian/rules:
+ Fail the build if there are mismatches with the symbols files.
-- Emilio Pozuelo Monfort <pochu@debian.org> Wed, 26 Mar 2014 17:29:30 +0100
evolution-data-server (3.10.1-2) experimental; urgency=low
[ Yves-Alexis Perez ]
* Team upload.
* Remove myself from uploaders, this should have been done a long time
ago.
[ Sjoerd Simons ]
* debian/control: Build against G3.10 gnome-online-accounts
-- Sjoerd Simons <sjoerd@debian.org> Sun, 03 Nov 2013 23:22:38 +0100
evolution-data-server (3.10.1-1) experimental; urgency=low
* New upstream release.
* Drop all patches, all were cherrypicked from git.
* Bump Build-Depends on libgoa-dev to >= 3.8, as per configure.ac.
* Adjust packaging for the usual eds soname bumps.
* Update symbols.
-- Jordi Mallach <jordi@debian.org> Thu, 17 Oct 2013 23:59:24 +0200
evolution-data-server (3.8.5-2) unstable; urgency=low
* Team upload.
* Upload to unstable.
-- Andreas Henriksson <andreas@fatal.se> Tue, 17 Sep 2013 21:38:53 +0200
evolution-data-server (3.8.5-1) experimental; urgency=low
* Team upload.
[ Laurent Bigonville ]
* debian/control: Fix Homepage URL
[ Michael Biebl ]
* New upstream release.
* Refresh fix-google-2fa-2.patch.
-- Michael Biebl <biebl@debian.org> Tue, 03 Sep 2013 00:02:17 +0200
evolution-data-server (3.8.4-1) experimental; urgency=low
[ Jeremy Bicha ]
* New upstream release
* debian/libcamel-1.2-43.symbols: Updated
- camel_imapx_conn_manager_ref_store() replaces
camel_imapx_conn_manager_get_store() which wasn't thread-safe
* Drop Debian revision from *.symbols
* Drop gir1.2-ecalendar-1.2; it's no longer provided in 3.8
* debian/patches/fix-google-2fa-*.patch:
- Backport commits to fix Google Two-Factor Authentication
with GNOME Online Accounts by using Google's new OAuth v2
support for CalDav
[ Laurent Bigonville ]
* debian/control:
- Drop obsolete Dm-Upload-Allowed field
- Use canonical Vcs-* field
* debian/rules:
- Include buildflags.mk after the flags have been overridden so they are
actually used
- Call dh_autoreconf with --as-needed option
- Do not generate shlibs info for the modules installed under
/usr/lib/evolution-data-server/ directory
* Use dh_lintian to install lintian-overrides files
-- Laurent Bigonville <bigon@debian.org> Sun, 04 Aug 2013 23:55:04 +0200
evolution-data-server (3.8.2-1) experimental; urgency=low
* New upstream release
* debian/patches/imapx_dont_remove_folders_on_error.patch:
+ Removed, fixed upstream
* debian/patches/imapx_fix_memleak.patch
+ Removed, fixed upstream
* debian/*.symbols: Updated
* debian/control: Change valac-0.18 depend to valac
-- Sjoerd Simons <sjoerd@debian.org> Fri, 17 May 2013 00:12:50 +0200
evolution-data-server (3.8.0-2) experimental; urgency=low
* Oops, bring imapx_dont_remove_folders_on_error.patch back: it was
actually a post 3.8.0 patch from git.
-- Jordi Mallach <jordi@debian.org> Sun, 31 Mar 2013 11:20:06 -0500
evolution-data-server (3.8.0-1) experimental; urgency=low
* New upstream release.
* Drop imapx_dont_remove_folders_on_error.patch, included in this version.
* Add imapx_fix_memleak.patch: fix for memory leak in IMAPx.
-- Jordi Mallach <jordi@debian.org> Sat, 30 Mar 2013 21:19:10 -0500
evolution-data-server (3.7.92-1) experimental; urgency=low
* New upstream release
* debian/patches/imapx_dont_remove_folders_on_error.patch:
+ Added. Don't throw away local folders when syncing the folders from the
server only returned partial results (bgo#693101)
-- Sjoerd Simons <sjoerd@debian.org> Fri, 22 Mar 2013 10:47:27 +0100
evolution-data-server (3.7.91-1) experimental; urgency=low
[ Jeremy Bicha ]
* Team upload.
* Merge from Ubuntu:
- Add debian/tests/
[ Laurent Bigonville ]
* debian/control:
- Add myself as an Uploaders
- Add Breaks against libecal-1.2-11 and libebook-1.2-13 from 3.4, D-Bus API
has been broken again (Closes: #689930)
[ Sjoerd Simons ]
* New upstream release
* Sync with Ubuntu
- debian/rules: Tune configure flags to match the current defaults of
e-d-s.
- debian/*.install updated
- Update sonames of various libraries:
+ libedata-book
+ libebackend
+ libcamel
+ libedata-book
+ libebackend
- Drop libedataserverui packages, library no longer shipped upstream
- Add new libebook-conacts library
- debian/control: Update build-depends
* debian/control: Bump gnome-common (>= 3.6.0)
* debian/libecal1.2-dev.install:
debian/gir1.2-ecalendar-1.2.install:
Remove introspection installation (removed upstream)
* debian/control: Update -dev package depends to better match the pkg-config
files
* debian/control: libebook dev should depend on libebook-contacts-1.2
-- Sjoerd Simons <sjoerd@debian.org> Fri, 15 Mar 2013 21:37:55 +0100
evolution-data-server (3.6.3-1) experimental; urgency=low
* New upstream release
* debian/libcamel-1.2-40.symbols: Rmoved symbols that were accidentally
exported (and were never in a Debian unstable)
-- Sjoerd Simons <sjoerd@debian.org> Thu, 24 Jan 2013 20:29:07 +0100
evolution-data-server (3.6.1-1) experimental; urgency=low
* New upstream release
* debian/evolution-data-server.install: Install the registry-modules
-- Sjoerd Simons <sjoerd@debian.org> Thu, 18 Oct 2012 20:42:38 +0200
evolution-data-server (3.6.0-1) experimental; urgency=low
* New upstream release
* Sync with Ubuntu
* Add symbols files
* drop debian/patches/20_gettext_intltool.patch: Applied upstream
-- Sjoerd Simons <sjoerd@debian.org> Fri, 05 Oct 2012 22:20:25 +0200
evolution-data-server (3.4.4-4) unstable; urgency=low
* Team upload.
* Update Build-Depends on vala to valac (>= 0.20) to fix build failures with
newer gobject-introspection. Closes: #707349, #709737
* 21_Dont_override_CPPFLAGS.patch: Don't override CPPFLAGS but use
AM_CPPFLAGS instead.
* 22_Remove-Werror-from-AM_INIT_AUTOMAKE.patch: Remove -Werror from
AM_INIT_AUTOMAKE. Patch cherry-picked from upstream Git.
* 23_Support-both-old-and-new-buf-libxml2-APIs.patch: Support both old and
new-buf libxml2 APIs. libxml2 changed the API for xmlOutputBuffer
incompatibly. Patch cherry-picked from upstream Git.
* Drop obsolete Dm-Upload-Allowed field.
-- Michael Biebl <biebl@debian.org> Sun, 11 Aug 2013 18:44:28 +0200
evolution-data-server (3.4.4-3) unstable; urgency=low
* 04_mbox_index.patch: patch from upstream git. Correctly display
emails from mboxes. Closes: #640851.
-- Josselin Mouette <joss@debian.org> Sun, 10 Feb 2013 19:16:56 +0100
evolution-data-server (3.4.4-2) unstable; urgency=low
* d/p/01_Save_also_UID_REV_in_WebDAV_backend.patch: Save contact UID value
when exporting to WebDAV (CardDAV) backend (Closes: #699353)
* d/p/02-Check_email_value_in_e_destination_set_contact.patch: Properly
check email value in e_destination_set_contact() to avoid crash in some
conditions (Closes: #687951)
* debian/control: Add myself as an Uploaders
* d/p/03_EBookBackendSqliteDB_Escape_SQL_strings.patch: Properly escape
strings in convert_match_exp() (Closes: #699925)
-- Laurent Bigonville <bigon@debian.org> Thu, 07 Feb 2013 22:42:17 +0100
evolution-data-server (3.4.4-1) unstable; urgency=low
* New upstream bugfix release.
* Bump libglib2.0-dev build-dep to 2.32 for GRecMutex.
-- Jordi Mallach <jordi@debian.org> Mon, 08 Oct 2012 19:29:57 +0200
evolution-data-server (3.4.3-1) unstable; urgency=low
* Team upload.
* New upstream release.
* Change Conflicts for evolution-data-server to versioned Breaks and add
libebook-1.2-12 (<< 3.4) since the AddressBook D-Bus API had a version
bump between 3.2 and 3.4. Fix a typo while at it.
* Upload to unstable.
-- Michael Biebl <biebl@debian.org> Tue, 19 Jun 2012 18:46:44 +0200
evolution-data-server (3.4.2-2) experimental; urgency=low
* Bump to debhelper compat v9.
* Strip debian/tmp/ prefix from install files.
* Make libedata-cal1.2-dev depend on libebackend1.2-dev, as it uses
one of its header files.
-- Jordi Mallach <jordi@debian.org> Sun, 17 Jun 2012 17:45:21 +0200
evolution-data-server (3.4.2-1) experimental; urgency=low
* New upstream version.
* Add list-missing target.
* Install gsettings schemas and gconf conversion scripts.
* Include buildflags.mk, and adjust rules to use all hardening flags.
* Move all gtk-doc API documentation to a new evolution-data-server-doc
binary, and let it break/replace obsolete libedataserverui1.2-dev
(closes: #672253).
* Build-Depend on libglib2.0-doc and libdbus-glib-1-doc to ensure
proper cross-reference links in generated gtk-doc API documentation.
-- Jordi Mallach <jordi@debian.org> Fri, 18 May 2012 19:32:20 +0200
evolution-data-server (3.4.1-1) experimental; urgency=low
* New upstream version.
* Watch for xz tarballs.
* Bump Build-Depends as per configure.ac.
* Rename packages for soname bumps.
* Remove all patches except 20_gettext_intltool.patch, all are obsolete.
-- Jordi Mallach <jordi@debian.org> Tue, 01 May 2012 23:04:11 +0200
evolution-data-server (3.2.2-3) unstable; urgency=low
* debian/patches/23_dbus_glib_threading.patch
- Added. Initialize threading support in dbus-glib which is used through
gconf (Closes: #666890).
* debian/control: Add myself to uploaders
-- Sjoerd Simons <sjoerd@debian.org> Mon, 02 Apr 2012 10:50:44 +0200
evolution-data-server (3.2.2-2) unstable; urgency=low
* Remove manual call to dh_bugfiles in binary-indep which was also
affecting arch:all packages. Instead, bump to cdbs (>= 0.4.90) to
ensure integrated dh_bugfiles support (closes: #593786).
* Update Vcs-* URLs.
* Add 22_gmodule_dep.patch: Add explicit dependencies on gmodule-2.0
(closes: #665664).
* Drop obsolete e-d-s1.2 Conflicts/Replaces.
* Make e-d-s onflict against old versions of libecal1.2 and libebook1.2,
to ensure no packages using the old libs try to talk to the new server
(closes: #623216).
* Bump Standards-Version to 3.9.3, with no further changes.
-- Jordi Mallach <jordi@debian.org> Tue, 27 Mar 2012 19:51:37 +0200
evolution-data-server (3.2.2-1) unstable; urgency=low
* Loosen dependency of libedataserverui on e-d-s-common to avoid
problems with the upcoming transition.
* Rename back the source package to evolution-data-server.
* Drop libicu-dev build-dependency.
* Tighten dependencies between -dev packages.
* New upstream release.
* 01_timezones.patch, 02_deprecated.patch, 03_ports_translation.patch,
04_delay_vcard_parsing.patch, 05_contact_fields.patch,
06_revert_space_categories.patch, 07_http_crash.patch,
08_newfolder_imap.patch: bugfixes from upstream 3.2 git.
* 20_gettext_intltool.patch: don’t confuse autoreconf by using both
gettext and intltool.
* Call dh-autoreconf.
* Move gir packages to introspection section.
* 21_link_libical.patch: new patch. Correctly link to libical (for
01_timezones.patch).
-- Josselin Mouette <joss@debian.org> Fri, 16 Dec 2011 19:43:35 +0100
evolution-data-server3 (3.2.1-1) experimental; urgency=low
[ Yves-Alexis Perez ]
* New upstream release.
- correctly use secure connection (if used in imap) when storing mail in
sent folder. This fixes CVE-2011-3355. closes: #641052
* debian/control:
- update debhelper build-dep to 8.
- drop hardening-includes
- add build-dep on liboauth-dev
- drop libegroupwise packages.
- update dpkg-dev build-dep for hardening support.
- rename packages for soname bumps: libedata-cal-1.2-13,
libedata-book-1.2-11, libedataserverui-3.0-1, libcamel-1.2-29,
libedataserver-1.2-15, libebook-1.2-12 libecal-1.2-10
* debian/rules:
- set hardening flags using cdbs.
- use --disable-goa since libgoa is not in Debian.
* debian/compat bumped to 8.
[ Sjoerd Simons ]
* New upstream release
* enable goa
* Update libgdata b-d for goa
* Enable vala bindings
[ Josselin Mouette ]
* Update remaining library package names to standard names. Drop the
lintian warnings accordingly.
* Update shlibs for libcamel.
-- Josselin Mouette <joss@debian.org> Fri, 11 Nov 2011 13:35:58 +0100
evolution-data-server3 (3.0.3-2) unstable; urgency=low
* debian/control:
- make -dev packages depend on corresponding gir package.
-- Yves-Alexis Perez <corsac@debian.org> Fri, 02 Sep 2011 23:47:23 +0200
evolution-data-server3 (3.0.3-1) unstable; urgency=low
* New upstream bugfix release.
* debian/rules:
- delete .la files
* debian/{control,libebook1.2-dev.install,gir1.2-ebook-1.2.install}:
- install GObject introspect files for EBook library.
-- Yves-Alexis Perez <corsac@debian.org> Thu, 01 Sep 2011 22:20:25 +0200
evolution-data-server3 (3.0.2.1-1) unstable; urgency=low
[ Yves-Alexis Perez ]
* New upstream release.
* debian/watch updated to track 3.x versions.
* debian/patches:
- 01_calendar_exit dropped, included upstream.
* debian/control:
- update standards version to 3.9.2.
[ Josselin Mouette ]
* Move Conflict against libedataserverui1.2-dev from the runtime
package to the development one.
-- Josselin Mouette <joss@debian.org> Fri, 19 Aug 2011 22:06:12 +0200
evolution-data-server3 (3.0.0-1) experimental; urgency=low
* Rename source package to allow parallel installation/migration for
libedataserverui.
* New upstream stable release.
* 01_calendar_exit.patch: stolen upstream. Fix a process not exiting
at the end of the session.
* Fix short description for libcamel.
* Automatically generate better shlibs for libcamel.
* Tighten dependencies on libcamel and e-d-s-common.
-- Josselin Mouette <joss@debian.org> Sun, 10 Apr 2011 10:55:32 +0200
evolution-data-server (2.91.92-1) experimental; urgency=low
* Bump libsoup build-dependency. Closes: #620090.
* New upstream pre-release.
* 01_hurd_path-max.patch: dropped, merged upstream.
-- Josselin Mouette <joss@debian.org> Wed, 30 Mar 2011 09:31:07 +0200
evolution-data-server (2.91.91-1) experimental; urgency=low
* New upstream pre-release.
* Update build-dependencies and development dependencies.
* Rename packages that need to.
* source.lintian-overrides: say goodbye to the bundled libdb.
* Add introspection packages for libedataserver and libecal.
* Drop dh-autoreconf, it doesn’t cope well with intltool.
* Update list of copyright holders.
* Remove licenses for code that isn’t here anymore.
* 01_hurd_path-max.patch: stolen upstream. Fix build on Hurd.
-- Josselin Mouette <joss@debian.org> Mon, 21 Mar 2011 12:37:06 +0100
evolution-data-server (2.32.2-2) unstable; urgency=low
* debian/control:
- update libcamel1.2-dev dependencies from the .pc file.
-- Yves-Alexis Perez <corsac@debian.org> Sat, 19 Feb 2011 11:51:35 +0100
evolution-data-server (2.32.2-1) unstable; urgency=low
* New upstream release.
* debian/watch updated
- remove call to uupdate.
- switch to .tar.bz2 format since we use 3.0 source format.
-- Yves-Alexis Perez <corsac@debian.org> Sat, 12 Feb 2011 23:21:51 +0100
evolution-data-server (2.32.1-1) unstable; urgency=low
* New upstream release.
* debian/watch updated.
* debian/control:
- bump gweather, glib and gtk build-dep.
- add build dep on libgdata.
- drop dbus-glib build-dep.
- drop libgdata* packages, now external.
- rename libedataserver, libcamel1.2, libebook1.2, libedataserverui1.2,
libedata-book1.2, libecal1.2, libedata-cal1.2 packages to follow
soname changes.
- add build-dep on hardening-includes.
* debian/patches:
- 01_imapx_lockup dropped, included upstream.
- 65_evolution-color dropped as well, not relevant anymore.
- 102-Bug-630135-No-UI-feedback-when-imapx-connection-fail,
103-Bug-630150-imapx-attempts-to-connect-to-server-when-,
104-Bug-630152-imapx_parser_thread-registers-wrong-opera,
105-Bug-629916-imapx-fails-to-handle-errors-in-imapx_com,
106-Bug-630149-imapx_sync-never-returns-error dropped as well,
included upstream.
- 25_mute-debug-messages dropped, included upstream.
- 45_libcamel_providers_version finally dropped, stop diverting from
upstream on this.
* debian/rules:
- explicitly disable gtk3 build.
- get flags from dpkg-buildflags.
- include hardening rules.
- add hardening, -z,defs, -O1 and --as-needed to LDFLAGS.
- add hardening to CFLAGS.
* debian/libcamel1.2-14.shlibs:
- bump depends/conflicts for 2.32.
- bump soversion to 19.
* debian/libedataserver-13.install renamed to follow soname change.
* debian/libcamel1.2-14.install renamed to follow soname change.
* debian/libebook1.2-9.install renamed to follow soname change.
* debian/libedataserverui1.2-8.install renamed to follow soname change.
* debian/libedata-book1.2-2.install renamed to follow soname change.
* debian/libecal1.2-7.install renamed to follow soname change.
* debian/libedata-cal1.2-7.install renamed to follow soname change.
* lintian overrides updated to follow soname changes.
* debian/evolution-data-server.install:
- update install file to follow camel-provider rename patch removal.
-- Yves-Alexis Perez <corsac@debian.org> Sat, 12 Feb 2011 20:07:16 +0100
evolution-data-server (2.30.3-2) unstable; urgency=low
[ Josselin Mouette ]
* 01_imapx_lockup.patch: stolen upstream. Avoid evolution lockups when
logging out with IDLE enabled.
[ Yves-Alexis Perez ]
* debian/patches:
- 101-Bug-629714-endless-loop-in-imapx_parse_status,
102-Bug-630135-No-UI-feedback-when-imapx-connection-fail,
103-Bug-630150-imapx-attempts-to-connect-to-server-when-,
104-Bug-630152-imapx_parser_thread-registers-wrong-opera,
105-Bug-629916-imapx-fails-to-handle-errors-in-imapx_com and
106-Bug-630149-imapx_sync-never-returns-error added, fix various issues
with IMAP+ backend leading to endless loops.
-- Yves-Alexis Perez <corsac@debian.org> Tue, 21 Sep 2010 21:00:52 +0200
evolution-data-server (2.30.3-1) unstable; urgency=low
* New upstream bugfix release.
* debian/patches:
- 01_make-nss-db-init-more-robust dropped, included upstream
- 02_remove-courier-imap-workaround-breaking-rename as well.
* debian/control:
- update standards version to 3.9.1.
* debian/*.shlibs:
- bump shlibs to 2.30.3.
-- Yves-Alexis Perez <corsac@debian.org> Sat, 14 Aug 2010 13:47:40 +0200
evolution-data-server (2.30.2.1-1) unstable; urgency=low
* New upstream bugfix release.
* debian/patches:
- 01_make-nss-db-init-more-robust added. closes: #587849
- 02_remove-courier-imap-workaround-breaking-rename added, fix renaming on
courier-imap servers.
* debian/rules:
- rename --enable-nss to -enable-ssl in configure call.
- DEB_FIXPERMS_EXCLUDE switched to _evolution-data-server.
- disable largefile support for now, it'll be re-enabled for squeeze+1
cycle. closes: #588316
* debian/control:
- update standards version to 3.9.0.
-- Yves-Alexis Perez <corsac@debian.org> Sat, 10 Jul 2010 14:30:12 +0200
evolution-data-server (2.30.2-1) unstable; urgency=low
* New upstream release.
- fix random mailbox corruption causing expunge problems. closes: #526216
* debian/watch:
- update rule to order hrefs correctly.
- install some information on bug reporting
* debian/bug-presubj: warn user that she should report upstream issues
directly to upstream bugzilla because of lack of time and manpower.
* debian/patches:
- 01_unitialized_key, 02_fix-warning-in_source_get_uri,
03_bump-soname-libedataserver dropped, included upstream.
- 25_mute-debug-messages updated.
- 45_libcamel_providers_version refreshed.
* debian/libcamel1.2-14.shlibs updated for 2.30.2.
* debian/control:
- bump debhelper build-dep to 7.2.3 for dh_bugfiles.
- add build-dep on gnome-pkg-tools for gnome-get-source.mk.
* Switch to 3.0 (quilt) format.
* debian/rules:
- include gnome-get-source.mk.
-- Yves-Alexis Perez <corsac@debian.org> Wed, 23 Jun 2010 21:31:37 +0200
evolution-data-server (2.30.1-5) unstable; urgency=low
* debian/patches:
- 03_bump-soname-libedataserver added, cherry-picked from upstream, bump
libedataserver soname before 2.30.2 to ease transition.
* debian/control:
- rename libedataserver package to follow soname change.
- add build-dep on dh-autoreconf.
* debian/lintian:
- rename libedataserver override.
* debian/rules:
- run autoreconf to get soname change.
-- Yves-Alexis Perez <corsac@debian.org> Sat, 22 May 2010 14:00:00 +0200
evolution-data-server (2.30.1-4) unstable; urgency=low
* debian/control:
- adjust eds-dev dependencies. closes: #582150, #582148
-- Yves-Alexis Perez <corsac@debian.org> Wed, 19 May 2010 01:22:40 +0200
evolution-data-server (2.30.1-3) unstable; urgency=low
* debian/control:
- adjust -dev packages dependencies according to .pc files.
* debian/patches:
- 02_fix-warning-in_source_get_uri added, fix e_source_get_uri() called on
source with no absolute URI. closes: #582029
-- Yves-Alexis Perez <corsac@debian.org> Mon, 17 May 2010 21:46:57 +0200
evolution-data-server (2.30.1-2) unstable; urgency=low
[ Josselin Mouette ]
* 01_unitialized_key.patch: stolen upsteam. Fix a crasher.
[ Yves-Alexis Perez ]
* Upload to unstable.
* debian/lib{camel,edata-book1.2,ebackend1.2,edataserverui1.2}-dev.install:
- ship gtk-doc in the package.
-- Yves-Alexis Perez <corsac@debian.org> Mon, 17 May 2010 12:52:06 +0200
evolution-data-server (2.30.1-1) experimental; urgency=low
* New upstream bugfix release.
* debian/libcamel1.2-14.shlibs: bump shlibs dependencies to 2.30.1.
-- Yves-Alexis Perez <corsac@debian.org> Mon, 26 Apr 2010 20:08:48 +0200
evolution-data-server (2.30.0-1) experimental; urgency=low
* New upstream release.
* debian/watch updated to track stable releases.
* debian/control:
- bump required GTK+ version to 2.18.
* debian/patches/25_mute-debug-messages.patch updated.
* debian/libcamel1.2-14.shlibs: bump shlibs dependencies to 2.30, conflicts
against 2.31.
-- Yves-Alexis Perez <corsac@debian.org> Fri, 23 Apr 2010 08:37:40 +0200
evolution-data-server (2.29.92-1) experimental; urgency=low
* New upstream release candidate.
* debian/control:
- add build-dep on gperf for imapx backend.
* debian/libcamel1.2-14.shlibs: bump shlibs.
-- Yves-Alexis Perez <corsac@debian.org> Mon, 08 Mar 2010 23:15:54 +0100
evolution-data-server (2.29.91-1) experimental; urgency=low
* New upstream development release.
* debian/libcamel1.2-14.shlibs: bump shlibs.
-- Yves-Alexis Perez <corsac@debian.org> Tue, 23 Feb 2010 21:38:26 +0100
evolution-data-server (2.29.90-1) experimental; urgency=low
* New upstream release candidate.
* debian/libcamel1.2-14.shlibs: bump shlibs.
* debian/control:
- bump standards version to 3.8.4.
-- Yves-Alexis Perez <corsac@debian.org> Mon, 08 Feb 2010 22:31:13 +0100
evolution-data-server (2.29.6-1) experimental; urgency=low
* New upstream development release.
* debian/patches:
- 66_fix-gtkdoc-call dropped.
- build with --enable-largefile.
-- Yves-Alexis Perez <corsac@debian.org> Tue, 26 Jan 2010 22:59:43 +0100
evolution-data-server (2.29.5-1) experimental; urgency=low
* New upstream development release.
* debian/control:
- rename package to libedata-cal-1.2-7 to match SONAME bump.
* debian/patches
- 66_fix-gtkdoc-call added, fix FTBFS with gtk-doc 1.13.
-- Yves-Alexis Perez <corsac@debian.org> Thu, 14 Jan 2010 21:40:40 +0100
evolution-data-server (2.29.3-1) experimental; urgency=low
* New upstream development release.
-- Yves-Alexis Perez <corsac@debian.org> Wed, 02 Dec 2009 22:36:30 +0100
evolution-data-server (2.29.2-1) experimental; urgency=low
[2.29.1]
* New upstream development release.
* debian/watch:
- updated to track development releases.
* debian/*.install:
- update eds folder to 2.30 ;
- drop bonobo install folders ;
- drop bonobo interface files (.idl).
* debian/evolution-data-server-common.install:
- ship dbus services in eds-common.
* debian/control:
- drop liborbit, libbonobo and libglade build-deps.
- add dbus-glib build-dep ;
- drop libexchange packages, exchange supports doesn't exist anymore.
- cleanup deps for -dev packages.
* debian/patches:
- correct typo in 45_libcamel_providers_version.patch.
[2.29.2]
* New upstream development release.
-- Yves-Alexis Perez <corsac@debian.org> Mon, 16 Nov 2009 21:53:26 +0100
evolution-data-server (2.28.3.1-1) unstable; urgency=low
* New upstream bugfix release.
* debian/control:
- Add myself to uploaders.
* debian/patches:
- 25_mute-debug-messages: Regenerated.
- 45_libcamel_providers_version: Regenerated.
- 65_evolution-color: Regenerated.
-- David Weinehall <tao@debian.org> Wed, 03 Mar 2010 04:37:24 +0200
evolution-data-server (2.28.3-1) unstable; urgency=low
* New upstream bugfix release. closes: #572112
* debian/control:
- update standards version to 3.8.4.
-- Yves-Alexis Perez <corsac@debian.org> Mon, 01 Mar 2010 18:16:49 +0100
evolution-data-server (2.28.2-1) unstable; urgency=low
* New upstream release.
-- Yves-Alexis Perez <corsac@debian.org> Tue, 15 Dec 2009 08:20:19 +0100
evolution-data-server (2.28.1-1) unstable; urgency=low
* New upstream bugfix release.
* debian/rules:
- drop useless configure target.
-- Yves-Alexis Perez <corsac@debian.org> Sun, 18 Oct 2009 18:26:07 +0200
evolution-data-server (2.28.0-2) unstable; urgency=low
* Upload to unstable.
-- Yves-Alexis Perez <corsac@debian.org> Thu, 24 Sep 2009 11:13:02 +0200
evolution-data-server (2.28.0-1) experimental; urgency=low
* New upstream stable release.
* debian/watch updated to track stable releases.
* debian/libcamel1.2-14.shlibs updated to add dependencies on stable
releases.
-- Yves-Alexis Perez <corsac@debian.org> Tue, 22 Sep 2009 08:31:53 +0200
evolution-data-server (2.27.92-1) experimental; urgency=low
* New upstream release candidate.
* debian/patches:
- 66_re-enable-gpg-agent dropped, included upstream.
- 11_it_translation dropped as well, no real need to tune it everytime
upstream source changes.
-- Yves-Alexis Perez <corsac@debian.org> Tue, 08 Sep 2009 12:14:05 +0200
evolution-data-server (2.27.91-2) experimental; urgency=low
* debian/patches:
- 66_re-enable-gpg-agent, enable back gpg-agent.
-- Yves-Alexis Perez <corsac@debian.org> Wed, 26 Aug 2009 20:15:22 +0200
evolution-data-server (2.27.91-1) experimental; urgency=low
* New upstream beta release.
* debian/patches:
45_libcamel_providers_version refreshed.
* debian/control:
- update standards version to 3.8.3.
-- Yves-Alexis Perez <corsac@debian.org> Tue, 25 Aug 2009 08:30:54 +0200
evolution-data-server (2.27.90-1) experimental; urgency=low
* New upstream releaase candidate.
-- Yves-Alexis Perez <corsac@debian.org> Tue, 11 Aug 2009 21:05:54 +0200
evolution-data-server (2.27.5-1) experimental; urgency=low
* New upstream development release.
-- Yves-Alexis Perez <corsac@debian.org> Mon, 03 Aug 2009 22:36:19 +0200
evolution-data-server (2.27.4-1) experimental; urgency=low
* New upstream development release.
-- Yves-Alexis Perez <corsac@debian.org> Mon, 13 Jul 2009 21:39:36 +0200
evolution-data-server (2.27.3-1) experimental; urgency=low
* New upstream development release.
* debian/watch updated to match development version numbering scheme.
* debian/*install:
- update folders name to 2.28.
* debian/libcamel1.2-14.shlibs:
- update depends for 2.27 branch.
* debian/patches:
- 45_libcamel_providers_version updated to patch configure.ac.
* debian/rules:
- update chrpath call to use 2.28 folder name.
* debian/control:
- update standards version to 3.8.2.
- update dependencies for 2.27 branch.
-- Yves-Alexis Perez <corsac@debian.org> Fri, 26 Jun 2009 23:56:35 +0200
evolution-data-server (2.26.2-1) unstable; urgency=low
* New upstream bugfix release.
* debian/patches:
- 67_fix-vfolders dropped, included upstream.
-- Yves-Alexis Perez <corsac@debian.org> Tue, 26 May 2009 07:46:27 +0200
evolution-data-server (2.26.1.1-2) unstable; urgency=low
[ Josselin Mouette ]
* Add missing dependency on libical-dev to libecal1.2-dev.
[ Yves-Alexis Perez ]
* debian/libcamel1.2-14.shlibs added, ensure we use the correct libcamel
to avoid ABI breakages.
* debian/control:
- add a Breaks: for evolution 2.24. closes: #525742
* debian/patches:
- 67_fix-vfolders added, fix endless loop when closing. closes: #526217
* debian/source.lintian-overrides
- update tag name for config.{guess,sub} in libdb/
-- Yves-Alexis Perez <corsac@debian.org> Wed, 06 May 2009 23:21:52 +0200
evolution-data-server (2.26.1.1-1) unstable; urgency=low
* New upstream release.
* debian/control:
- update eds-common dep for evolution-data-server 2.26.
- add build-dep on libicu-dev, libgweather-dev and libical-dev.
- drop deprecated Replace/Conflict.
* debian/*.install:
- update path for 2.26.
* debian/patches:
- 11_it_translation slightly updated.
- debian/patches/66_autoreconf-ignore-folders dropped, eds doesn't ship
libical sources anymore.
- 67_detect-change-signed-messages dropped, included upstream.
- 68_deadlock_thread-leak as well.
-- Yves-Alexis Perez <corsac@debian.org> Sun, 26 Apr 2009 09:20:49 +0200
evolution-data-server (2.24.5-4) unstable; urgency=low
* Fix -dbg package section to match the override.
* 68_deadlock_thread-leak.patch: new patch, stolen upstream. Fixes
thread leak leading to a deadlock. Closes: #520132, #520771.
* Add a Conflict with evolution (<< 2.24). This will force the preinst
upgrade check in the evolution package to be done before e-d-s
itself is unpacked.
* Build-depend on sqlite3 3.6 because of the infamous ABI change in
the VFS API. Closes: #519428.
-- Josselin Mouette <joss@debian.org> Wed, 01 Apr 2009 12:19:03 +0200
evolution-data-server (2.24.5-3) unstable; urgency=low
[ Yves-Alexis Perez ]
* debian/control:
- libedata-cal1.2-dev: add dep on libebackend1.2-dev and libglib2.0-dev
so correct dependencies are pulled. closes: #519636
- update standards version to 3.8.1.
[ Josselin Mouette ]
* Add myself to uploaders; upload to unstable.
-- Josselin Mouette <joss@debian.org> Tue, 24 Mar 2009 10:58:32 +0100
evolution-data-server (2.24.5-2) unstable; urgency=low
* Upload to unstable.
* debian/patches:
- debian/patches/67_detect-change-signed-messages added. closes: #508479
-- Yves-Alexis Perez <corsac@debian.org> Sun, 01 Mar 2009 14:58:11 +0100
evolution-data-server (2.24.5-1) experimental; urgency=low
* New upstream release.
* debian/control:
- add build-dep on libsqlite3-dev.
- update dep on evolution-data-server-common 2.24.
- add build-dep on chrpath.
- add libsqlite3-dev to libcamel1.2-dev dependencies.
- add libsoup2.4-dev to libedataserver1.2-dev and libedataserverui1.2-dev.
- drop libgnomevfs2-dev (build)-deps.
- version (build) deps on keyring and sqlite3.
* debian/*.install:
- update paths for 2.24.
* Add libraries, development-files and lintian for libebackend.
* Bump soname for libedataserver1.2 (9 → 11)
- debian/control: update package name
- debian/libedataserver1.2-9.install renamed to libcamel1.2-11.install
- debian/lintian: libedataserver1.2-9 renamed to libcamel1.2-11
* Bump soname for libcamel1.2 (11 → 14)
- debian/control: update package name
- debian/libcamel1.2-11.install renamed to libcamel1.2-14.install
- debian/lintian: libcamel1.2-11 renamed to libcamel1.2-14
* debian/rules:
- remove rpaths.
* debian/patches:
- 66_autoreconf-ignore-folders added, don't add libdb/dists and
calendar/libical to AC_CONFIG_SUBDIRS so autoreconf doesn't fail.
* debian/source.lintian-overrides:
- evolution-data-server: add an ignore for ancient libtool in unused
embbered libdb copy.
-- Yves-Alexis Perez <corsac@debian.org> Sat, 28 Feb 2009 20:07:09 +0100
evolution-data-server (2.22.3-1) unstable; urgency=low
[ Pedro Fragoso ]
* New upstream bugfix release
* debian/control:
- Add myself to Uploaders
- Bump Standards-Version to 3.8.0 (no changes)
-- Heikki Henriksen <heikkih@gmail.com> Sun, 06 Jul 2008 13:13:25 +0200
evolution-data-server (2.22.2-1) unstable; urgency=low
* New upstream release
- bugfixes and translations
* Remove patch 55_fix_gpg_breaks_keyring.patch
- applied upstream
-- Heikki Henriksen <heikkih@gmail.com> Mon, 26 May 2008 21:51:08 +0200
evolution-data-server (2.22.1.1-2) unstable; urgency=low
[ Oystein Gisnas ]
* Fix spelling mistake in package description
[ Heikki Henriksen ]
* debian/patches/55_fix_gpg_breaks_keyring.patch:
- Add patch from upstream to stop gpg breaking the keyring
(closes: #481940)
* debian/patches/65_evolution-color.patch
- Add patch to fix 16bits color function. Thanks to Sjoerd Simmons.
(closes: #477807)
-- Heikki Henriksen <heikkih@gmail.com> Mon, 19 May 2008 21:19:38 +0200
evolution-data-server (2.22.1.1-1) unstable; urgency=low
* New upstream bugfix release
-- Oystein Gisnas <oystein@gisnas.net> Sun, 04 May 2008 17:42:59 +0200
evolution-data-server (2.22.1-1) unstable; urgency=low
[ Pedro Fragoso ]
* New upstream bugfix release
[ Heikki Henriksen]
* Improve short and long descriptions for libraris according to
lib*.pc.in as well as actual usage (closes: #474535)
-- Heikki Henriksen <heikkih@gmail.com> Thu, 10 Apr 2008 21:27:39 +0200
evolution-data-server (2.22.0-2) unstable; urgency=low
* Upload to unstable
* Update DM-Upload-Allowed according to change in dpkg 1.14.16 and bump
build-dep on dpkg-dev
-- Heikki Henriksen <heikkih@gmail.com> Sat, 05 Apr 2008 13:53:09 +0200
evolution-data-server (2.22.0-1) experimental; urgency=low
[ Heikki Henriksen ]
* Upload to experimental to smoothen NEW-handling
* New upstream release
* Upgrade build-deps:
- libsoup2.4-dev from libsoup2.2-dev
* Bump the following build-deps:
- libglib2.0-dev (>= 2.15.3)
- libgnomevfs2-dev (>= 2.4.0)
- libbonobo2-dev (>= 2.20.3
* Bump so-name for libcamel to 11
* Add libraries, development-files and lintian for:
- libgdata
- libgdata-google
* Update base-version to 2.22 in *.install
* Remove patches:
- 10_camel-pkg-config-requires.patch - included upstream
- 30_iconv-gb2312-gb18030.patch - iconv-cjk-handling is changed
* Update patches:
- 25_mute-debug-messages.patch
- 45_libcamel_providers_version.patch
[ Oystein Gisnas ]
* Depend on libdb-dev instead of libdb4.4-dev
* Sync deps of -dev packages with pkg-config files
-- Oystein Gisnas <oystein@gisnas.net> Tue, 18 Mar 2008 00:35:38 +0100
evolution-data-server (1.12.3-1) unstable; urgency=low
* New upstream release (bugfixes and translations).
* debian/rules: remove configure flags --with-nspr-includes and
--with-nss-includes. (closes: #462642)
* debian/control:
- add myself to uploaders.
- add ${shlibs:Depends} to -dev packages dependencies.
- update standards versions to 3.7.3 (no changes needed)
-- Yves-Alexis Perez <corsac@debian.org> Sun, 27 Jan 2008 14:50:16 +0100
evolution-data-server (1.12.2-1) unstable; urgency=low
* New upstream release (bugfixes and translations)
* Pkgconfig build-dep is bumped to 0.16
* Add Dm-Upload-Allowed, Homepage, Vcs-Browser and Vcs-Svn fields in control
* Add build-depend on libgnome-keyring-dev to build with keyring-support
* Add lintian overrides for all package-name-doesnt-match-sonames
-- Heikki Henriksen <heikkih@gmail.com> Mon, 03 Dec 2007 21:39:45 +0100
evolution-data-server (1.12.1-1) unstable; urgency=low
[ Heikki Henriksen ]
* libedataserverui1.2-8 needs files from /usr/share/evolution-data-se
rver-1.12/glade/ so add a versioned depend on e-d-s-common (closes: #444163)
[ Oystein Gisnas ]
* New upstream release
* 30_iconv-gb2312-gb18030.patch: Use gb18030 which is a superset of gb2312
to decode gb2312. Thanks to Darren Hoo. (closes: #447233)
-- Oystein Gisnas <oystein@gisnas.net> Mon, 22 Oct 2007 10:45:32 +0200
evolution-data-server (1.12.0-1) unstable; urgency=low
* New upstream release
* Adjusted Build-Deps
* Adjusted .install paths to reflect the new upstream.
* Dropped patch:
15_libebook-optimised-folding.patch - Applied upstream.
20_e-book-is-self.patch - Applied upstream.
30_vcf-import-linebreak.patch - Applied upstream.
35_warn-on-server-service-init-failure.patch - Applied upstream.
50_libebook-get-contact-list-prepend.patch - Applied upstream.
65_imap-negative-array-index.patch - Applied upstream.
-- Riccardo Setti <giskard@debian.org> Sun, 23 Sep 2007 12:07:20 +0200
evolution-data-server (1.10.3-1) unstable; urgency=low
* New upstream stable release; no API change; bug fixes.
-- Loic Minier <lool@dooz.org> Wed, 25 Jul 2007 16:42:14 +0200
evolution-data-server (1.10.2-2) unstable; urgency=high
[ Oystein Gisnas ]
* Extend description to cover mail, tasks and memos too.
(closes: #426488)
[ Loic Minier ]
* SECURITY: New patch, 65_imap-negative-array-index, fixes potential
negative array index usage in IMAP code (remote); FEDORA-2007-0464;
GNOME #447414; closes: #429876.
-- Loic Minier <lool@dooz.org> Thu, 21 Jun 2007 10:34:17 +0200
evolution-data-server (1.10.2-1) unstable; urgency=low
[ Oystein Gisnas ]
* New upstream release.
* 15_libebook-optimised-folding.patch: Speed up vCard line folding by
orders of magnitude (bugzilla #433782)
* 20_e-book-is-self.patch: Return TRUE when self contact is returned
(bugzilla #378502)
* 25_mute-debug-messages.patch: Mute debug noise
* 35_warn-on-server-service-init-failure.patch: Do not core dump when
two servers are started at the same time. (closes: #422426)
* Remove unused ${misc:Depends}
[ Loic Minier ]
* Wrap deps and build-deps.
* Add ${misc:Depends}.
-- Loic Minier <lool@dooz.org> Tue, 29 May 2007 11:57:07 +0200
evolution-data-server (1.10.1-2) unstable; urgency=low
* Upload to unstable.
-- Loic Minier <lool@dooz.org> Tue, 24 Apr 2007 16:30:48 +0200
evolution-data-server (1.10.1-1) experimental; urgency=low
[ Oystein Gisnas ]
* New upstream release. (closes: #414716)
- Bump intltool build-dep to >= 0.35.5
- Bump libglib2.0-dev build-dep to >= 2.10.0
- libedataserver1.2-7 -> libedataser1.2-9 SONAME change
- Add libedataserver1.2-dev Depends: libnspr4-dev
- libcamel1.2-8 -> libcamel1.2-10 SONAME change
- libegroupwise1.2-12 -> libegroupwise1.2-13 SONAME change
- libexchange-storage1.2-2 -> libexchange-storage1.2-3 SONAME change
- Drop 40_libcamel_soname_version.patch, applied upstream
- Drop 50_file-backend-recursive-locking.patch, applied upstream
- Drop debian/patches/65_tz-updates.patch, applied upstream
* Update watch file to track all stable versions
* 50_libebook-get-contact-list-prepend.patch: replace g_list_append
with _prepend, which is O(1)
* Add lintian overrides
[ Loic Minier ]
* Drop shlibs.local generation hack which seems obsolete.
-- Loic Minier <lool@dooz.org> Tue, 24 Apr 2007 16:07:59 +0200
evolution-data-server (1.8.3-1) experimental; urgency=low
* Drop Takuo Kitame from Uploaders.
* New upstream stable release; no API change.
-- Loic Minier <lool@dooz.org> Thu, 05 Apr 2007 14:41:36 +0200
evolution-data-server (1.8.2-3) experimental; urgency=low
* 20_too-many-open-files.patch: Revert patch which consistently caused
crash. (closes: #417656)
-- Oystein Gisnas <oystein@gisnas.net> Wed, 04 Apr 2007 14:17:13 +0200
evolution-data-server (1.8.2-2) experimental; urgency=high
[ Oystein Gisnas ]
* 20_too-many-open-files.patch: Backport of patch from 2.9.1 and patch
from bugzilla (closes: #401010)
* 30_vcf-import-linebreak.patch: Fix broken newlines in .vcf import
(closes: #395417)
[ Loic Minier ]
* New patch, 65_tz-updates, misc timezone updates, adapted from a patch
found in the Ubuntu stable package in version 1.8.1-0ubuntu5, itself taken
from Fedora; closes: #415585.
-- Loic Minier <lool@dooz.org> Tue, 03 Apr 2007 18:58:10 +0200
evolution-data-server (1.8.2-1) experimental; urgency=low
* New upstream release
- Remove 20_revert-exchange-offline-supported-patch.patch
* Document mailbox summary corruption and removal of
IMAP4rev1 provider. [debian/README.Debian]
-- Oystein Gisnas <oystein@gisnas.net> Thu, 11 Jan 2007 21:47:04 +0100
evolution-data-server (1.8.1-3) experimental; urgency=low
* Add recursive lock to avoid race condition in file backend. Thanks
to Patrick Ohly. (closes: #395416)
[debian/patches/50_file-backend-recursive-locking.patch]
-- Oystein Gisnas <oystein@gisnas.net> Tue, 31 Oct 2006 22:15:53 +0100
evolution-data-server (1.8.1-2) experimental; urgency=low
* Revert obtrusive exchange performance patch. (closes: #391022)
[debian/patches/20_revert-exchange-offline-supported-patch.patch]
* For now, do not use gnome-keyring. [debian/rules] (closes: #392061)
-- Oystein Gisnas <oystein@gisnas.net> Sun, 22 Oct 2006 09:51:16 +0200
evolution-data-server (1.8.1-1) experimental; urgency=low
* New upstream release
-- Heikki Henriksen <heikkih@gmail.com> Tue, 3 Oct 2006 15:19:32 +0200
evolution-data-server (1.8.0-3) experimental; urgency=low
[ oysteigi ]
* Correct camel-providers dir calculation.
[debian/patches/45_libcamel_providers_version.patch]
-- Heikki Henriksen <heikkih@gmail.com> Tue, 26 Sep 2006 09:55:24 +0200
evolution-data-server (1.8.0-2) experimental; urgency=low
* Add build-dep on libglade2-dev for eds-ui [debian/control]
* Enable gtk-doc [debian/rules]
-- Heikki Henriksen <heikkih@gmail.com> Thu, 21 Sep 2006 14:15:44 +0200
evolution-data-server (1.8.0-1) experimental; urgency=low
[ Oystein Gisnas ]
* debian/patches/55_no-fallback-for-tls.patch: Applied upstream
* debian/patches/60_gpg-smartcard.patch: Applied upstream
* debian/patches/9?_from_cvs_*.patch: Applied upstream
* debian/rules: Explicitly enable dynamic libdb
* debian/rules: Enable gnome-keyring integration
* debian/patches/20_xulrunner.patch: remove - fixed upstream
* debian/patches/35_external-libdb.patch - fixed upstream
* libebook1.2-5 -> libebook1.2-9 SONAME change
* libedataserverui1.2-6 -> libedataserverui1.2-8 SONAME change
* libegroupwise1.2-9 -> libegroupwise1.2-12 SONAME change
* libexchange1.2-1 -> libexchange1.2-2 SONAME change
* Remove libdb-dev build dep - no longer compiles with libdb3-dev.
[debian/control]
[ Heikki Henriksen ]
* New upstream release (1.8.0)
* Updated watch-file to follow 1.8-series
* Removed patch applied upstream [debian/patches/10_de_translation.patch]
* Add build-depend on libgnome-keyring-dev [debian/control]
* libecal1.2-5 -> libecal1.2-7 SONAME change
* libedatacal1.2-5 -> libedatacal1.2-6 SONAME change
* Update soname-changes in descriptions [debian/control]
* Update patch for camel pkg-config [debian/patches/10_camel-pkg-config-requires.patch]
* Update small translation patch [debian/patches/11_it_translation.patch]
* Update camel-version patch [debian/patches/40_libcamel_soname_version.patch]
* Update camel-providers patch [debian/patches/45_libcamel_providers_version.patch]
-- Heikki Henriksen <heikkih@gmail.com> Mon, 11 Sep 2006 22:35:46 +0200
evolution-data-server (1.6.3-1) unstable; urgency=low
* New upstream release
* Depend on (= source:Version) of -common package for binNMU
compatibility. [debian/control]
* Explicitly build-depend on everything used in configure.in.
[debian/control]
* Bump libegroupwise SONAME to libegroupwise1.2-10.
[debian/control, debian/libegroupwise1.2-10.install]
* Drop patch applied upstream:
- 92_from_cvs_fix_attachment_icon_to_messages_list.patch
* Let evolution-data-server-dev depend only on what's in its
.pc file. This means that deps on e-d-s-dev has to be replaced
by explicit deps to each library. [debian/control]
-- Oystein Gisnas <oystein@gisnas.net> Tue, 8 Aug 2006 10:56:51 +0200
evolution-data-server (1.6.2-3) unstable; urgency=low
[ Oystein Gisnas ]
* debian/control: Add ${misc:Depends}
* debian/control: Clean up dependencies
* debian/patches/10_pkg-config-requires.patch: Fix camel pkgconfig
[ Heikki Henriksen ]
* Added libglade2-dev to dep for libedataserverui-dev [debian/control]
-- Oystein Gisnas <oystein@gisnas.net> Sun, 18 Jun 2006 15:57:23 +0200
evolution-data-server (1.6.2-2) unstable; urgency=low
[ Heikki Henriksen ]
* Make package binNMU-safe:
- build-depend on dpkg-dev >= 1.13.19. [debian/control]
- Use ${binary:Version} [debian/control]
* Lower build-dep on cdbs to what's needed, and not work around the
broken version [debian/control]
-- Heikki Henriksen <heikkih@gmail.com> Mon, 12 Jun 2006 11:36:00 +0200
evolution-data-server (1.6.2-1) unstable; urgency=low
[ Heikki Henriksen ]
* New upstream release
* Soname-bump for libecal & libedatacal
[debian/control]
* Bump build-dep on cdbs (>= 0.4.40) to fix DEB_SHLIBDEPS_INCLUDE
[debian/control]
* Change dep on Source-Version from = to >= to have it binNMU-able
[debian/control]
* Move architechture independent files to package
evolution-data-server-common
* Add replaces evolution-data-server1.2 [debian/control] (closes: #371863)
* Updated patches:
- debian/patches/20_xulrunner.patch
- debian/patches/35_external-libdb.patch
- debian/patches/40_libcamel_soname_version.patch
- debian/patches/45_libcamel_providers_version.patch
- debian/patches/60_gpg-smartcard.patch
- debian/patches/91_from_cvs_valid_utf8_vcard.patch
- debian/patches/92_from_cvs_fix_attachment_icon_to_messages_list.patch
* Drop patches applied upstream:
- debian/patches/55_no-fallback-for-tls.patch
- debian/patches/90_from_cvs_dont_override_namespace_when_not_required.patch
- debian/patches/93_from_cvs_fix_prefered_encoding.patch
- debian/patches/94_from_cvs_fix_compare_im_performances_and_leak.patch
[ Oystein Gisnas ]
* debian/evolution-data-server-dev.install: Remove the rest of .la
files
-- Heikki Henriksen <heikkih@gmail.com> Sun, 11 Jun 2006 20:26:50 +0200
evolution-data-server (1.6.1-3) unstable; urgency=low
[ Oystein Gisnas ]
* debian/rules: Set CFLAG += -fPIC to comply to Debian Policy 3.7.1
* debian/control: Claim compliance with Debian Policy 3.7.2
* Dropped installation of .la-files to /usr/lib in -dev packages
[ Heikki Henriksen ]
* pull patches from ubuntu:
- 90_from_cvs_dont_override_namespace_when_not_required.patch
- 91_from_cvs_valid_utf8_vcard.patch
- 92_from_cvs_fix_attachment_icon_to_messages_list.patch
- 93_from_cvs_fix_prefered_encoding.patch
- 94_from_cvs_fix_compare_im_performances_and_leak.patch
* debian/control: update build-dep & -dev deps to libdb4.4-dev
-- Heikki Henriksen <heikkih@gmail.com> Tue, 23 May 2006 23:04:30 +0200
evolution-data-server (1.6.1-2) unstable; urgency=low
* debian/patches/35_external-libdb.patch:
update to fix disable build of internal libdb, so we can build on
mips/mipsel
* debian/control.in: removed
* debian/rules, debian/lib*@VER*: remove update-control
* debian/control: add suggests on evolution-data-server-dbg
* debian/copyright: fix slight typo
-- Heikki Henriksen <heikkih@gmail.com> Wed, 3 May 2006 14:42:12 +0200
evolution-data-server (1.6.1-1) unstable; urgency=low
[ Heikki Henriksen ]
* Upload to unstable
* New upstream release (1.6.1)
* debian/patches/10_de_translation.patch (closes: #313698)
* debian/patches/11_it_translation.patch (closes: #295269)
* debian/control[.in]: bump debhelper build-dep to > 5.0.0
* debian/rules: clean out clean::
* e-d-s is now restarted on upgrade (closes: #319054)
* debian/watch: added
* debian/control[.in]: remove old unnecessary conflicts/replaces
* debian/patches/55_no-fallback-for-tls.patch:
don't fallback to plain password for tls/ssl (upstream bug 321797)
* debian/patches/60_gpg-smartcard.patch:
Handle GPG keys stored on a smartcard device. Thanks to Tilman Koschnick
(closes: #365327)
[ Oystein Gisnas ]
* Make libcamel versioned and remove conflict with previous versions
* Move libcamel providers to e-d-s package
* debian/contol{,.in}: Change Recommends: evolution to Suggests:
* debian/copyright:
Mention current package maintainer
More detailed path of download location
Include authors from all files, not just AUTHORS
Include Copyright owner
Change copyright statement from GPL-2 to LGPL-2 (ref. COPYING)
Mention all other copyright holders and specific licenses
-- Heikki Henriksen <heikkih@gmail.com> Mon, 1 May 2006 11:02:00 +0200
evolution-data-server (1.6.0-1) experimental; urgency=low
* New upstream release
* Target experimental
* Added -dbg-package
* debian/patches/20_xulrunner.patch:
Build with xulrunner
* debian/patches/35_external-libdb.patch:
Build with debian's libdb4.3
* Change build-dep from libgnutls11-dev to libgnutls-dev
* Add gtk-doc for lib*-dev (closes: #316063)
-- Heikki Henriksen <heikkih@gmail.com> Wed, 29 Mar 2006 15:52:31 +0100
evolution-data-server (1.4.2.1-2) unstable; urgency=medium
* Acknowledge NMU (closes: #358590)
* Add myself to Uploaders
* Add back hurd-i386 build-dep for libldap2-dev (closes: #357261)
* Add libgtk2.0-dev in dep for libedataserverui-dev (closes: #358914)
* debian/patches/50_imapoffline_imap-store.patch:
fix crash with Draft-saving when offline
* debian/patches/51_uw-imapd-new-folder_imap-command.patch:
* debian/patches/55_camel-imap-command-1.71.2.3.patch
fix hang on new folder with uw-imapd
fix access to utf8-folders in imap
* debian/patches/55_camel-imap-store-1.330.2.2.patch
fix access to utf8-folders in imap
* debian/patches/55_camel-imap-store-summary.1.16.2.1.patch
fix access to utf8-folders in imap
* debian/patches/81_reload-http_e-cal-backend-http.patch:
fix crash on http-cal-reload
* debian/patches/60_e-name-selector-dialog.1.24.patch:
put focus on search in "Select from Addressbook"
* debian/patches/61_e-name-selector-dialog.1.26.patch:
crash on "Select from Addressbook" (closes: #359200, #354448)
-- Heikki Henriksen <heikkih@gmail.com> Sun, 26 Mar 2006 17:28:44 +0100
evolution-data-server (1.4.2.1-1.1) unstable; urgency=low
* NMU to fix crasher in e-cal-backend-http
(pulled from upstream cvs)
-- Heikki Henriksen <heikkih@gmail.com> Thu, 23 Mar 2006 11:43:52 +0000
evolution-data-server (1.4.2.1-1) unstable; urgency=low
* New uptream release.
- fixes an implicit pointer conversion (closes: #431323).
* ACK Steve Langasek's NMU; thanks! (closes: #344829).
* Upload to unstable.
* Update patches:
- 70_rebootstrap.patch: update, including a full intltoolisation, as
upstream's is broken.
-- Jordi Mallach <jordi@debian.org> Mon, 9 Jan 2006 03:28:07 +0100
evolution-data-server (1.4.1.1-1.1) experimental; urgency=low
* Non-maintainer upload.
* Added libexchange-storage and libexchange-storage-dev. The Exchange
server communication code has moved to evolution-data-server under
servers/exchange. Patch from Sebastien Bacher and Lawrence Walton.
Closes: #344829.
-- Steve Langasek <vorlon@debian.org> Fri, 6 Jan 2006 11:07:51 -0800
evolution-data-server (1.4.1.1-1) experimental; urgency=high
[ Jordi Mallach ]
* New upstream release.
* Merge all changes from 1.2.3-4.1, 1.2.3-4.2, 1.2.3-5 and 1.2.3-6 to
experimental.
* debian/patches/ia64_crash_fix.patch: update for new version.
[ Loic Minier ]
* Merge changes from 1.2.3-7 to experimental.
* Drop patches merged upstream:
- 10_pc-files-inversion.patch
* Update patches to apply cleanly:
- 05_libical-declare-const.patch
- 15_amd64-build.patch
- 20_decode-non-space-separated-mime-header.patch
* Port the patch to build against Debian's libdb4.2 to the new upstream
release, 35_use-debians-libdb42.patch, and update the reboostrapping
patch, 70_rebootstrap.patch.
* Update FSF address in copyright file.
* Clarify License versus Copyright and update authors list in copyright
file.
* Fix description of libedataserver and libedataserverui packages.
(Closes: #291469)
* Add CDBS' utils.
* Wrap description of libedataserverui1.2-dev.
* Follow libcamel's SONAME changes:
- Uncomment the configure.in scanning hack for libcamel as the SONAME /
libtool version-info is updated for -provider.
(Closes: #333142, #337464)
- Add debian/libcamel1.2-6.install and remove old debian/lib*.install for
previous SONAMEs.
- Add Conflicts / Replaces with libcamel1.2-0 on libcamel1.2-@VER@.
* Merge changes from 1.2.3-8 to experimental.
* Move libcamel from the libdevel section to libs. (Closes: #305611)
* Remove superfluous self-depends of libcamel@VER@-dev.
* Sync shlibs.
* E-D-S plugins are in /usr/lib/evolution-data-server-1.2, not 1.4.
[debian/evolution-data-server.install]
-- Loic Minier <lool@dooz.org> Mon, 7 Nov 2005 17:22:25 +0100
evolution-data-server (1.4.1-1) experimental; urgency=low
* New upstream release
-- Takuo KITAME <kitame@debian.org> Mon, 10 Oct 2005 05:34:04 +0900
evolution-data-server (1.4.0-3) experimental; urgency=low
* libedataserver1.2-dev: fix unmet dependency.
-- Takuo KITAME <kitame@debian.org> Mon, 10 Oct 2005 05:08:29 +0900
evolution-data-server (1.4.0-2) experimental; urgency=low
* Build against libdb4.2
-- Takuo KITAME <kitame@debian.org> Wed, 21 Sep 2005 16:55:06 +0900
evolution-data-server (1.4.0-1) experimental; urgency=low
* New upstream release
-- Takuo KITAME <kitame@debian.org> Mon, 12 Sep 2005 02:23:41 +0900
evolution-data-server (1.2.3-8) unstable; urgency=high
* Add depends to *-dev packages to match .la files referenced in the
dependency_libs of *.la files they ship:
- evolution-data-server-dev: libaudiofile-dev, libbonobo2-dev,
libdb4.2-dev, libebook1.2-dev, libecal1.2-dev, libedataserver1.2-dev,
libesd0-dev, libgconf2-dev, libgcrypt11-dev, libglib2.0-dev,
libgnome2-dev, libgnomevfs2-dev, libgnutls11-dev, libgpg-error-dev,
liborbit2-dev, libpopt-dev, libsoup2.2-dev, libtasn1-2-dev, libxml2-dev
- libedataserver1.2-dev: libaudiofile-dev, libbonobo2-dev, libesd0-dev,
libgconf2-dev, libgcrypt11-dev, libglib2.0-dev, libgnome2-dev,
libgnomevfs2-dev, libgnutls11-dev, libgpg-error-dev, liborbit2-dev,
libpopt-dev, libtasn1-2-dev, libxml2-dev
- libedataserverui1.2-dev: libaudiofile-dev, libbonobo2-dev,
libcamel1.2-dev, libdb4.2-dev, libebook1.2-dev, libesd0-dev,
libgconf2-dev, libgcrypt11-dev, libglib2.0-dev, libgnomevfs2-dev,
libgnutls11-dev, libgpg-error-dev, liborbit2-dev, libpopt-dev,
libtasn1-2-dev, libxml2-dev (Closes: #337422)
- libebook1.2-dev: libaudiofile-dev, libbonobo2-dev, libcamel1.2-dev,
libesd0-dev, libgconf2-dev, libgcrypt11-dev, libglib2.0-dev,
libgnomevfs2-dev, libgnutls11-dev, libgpg-error-dev, liborbit2-dev,
libpopt-dev, libtasn1-2-dev, libxml2-dev
- libedata-book1.2-dev: libaudiofile-dev, libbonobo2-dev, libcamel1.2-dev,
libdb4.2-dev, libedataserver1.2-dev, libesd0-dev, libgconf2-dev,
libgcrypt11-dev, libglib2.0-dev, libgnome2-dev, libgnomevfs2-dev,
libgnutls11-dev, libgpg-error-dev, liborbit2-dev, libpopt-dev,
libtasn1-2-dev, libxml2-dev (Closes: #337421)
- libecal1.2-dev: libaudiofile-dev, libbonobo2-dev, libdb4.2-dev,
libesd0-dev, libgconf2-dev, libgcrypt11-dev, libglib2.0-dev,
libgnomevfs2-dev, libgnutls11-dev, libgpg-error-dev, liborbit2-dev,
libpopt-dev, libtasn1-2-dev, libxml2-dev
- libedata-cal1.2-dev: libaudiofile-dev, libbonobo2-dev, libdb4.2-dev,
libedataserver1.2-dev, libesd0-dev, libgconf2-dev, libgcrypt11-dev,
libglib2.0-dev, libgnome2-dev, libgnomevfs2-dev, libgnutls11-dev,
libgpg-error-dev, liborbit2-dev, libpopt-dev, libtasn1-2-dev, libxml2-dev
- libegroupwise1.2-dev: libaudiofile-dev, libbonobo2-dev, libesd0-dev,
libgconf2-dev, libgcrypt11-dev, libglib2.0-dev, libgnome2-dev,
libgnomevfs2-dev, libgnutls11-dev, libgpg-error-dev, liborbit2-dev,
libpopt-dev, libtasn1-2-dev, libxml2-dev
- libcamel1.2-dev: libaudiofile-dev, libbonobo2-dev, libcamel1.2-dev,
libegroupwise1.2-dev, libesd0-dev, libgconf2-dev, libgcrypt11-dev,
libglib2.0-dev, libgnome2-dev, libgnomevfs2-dev, libgnutls11-dev,
libgpg-error-dev, liborbit2-dev, libpopt-dev, libsoup2.2-dev,
libtasn1-2-dev, libxml2-dev
* Add ${misc:Depends} to all Depends.
-- Loic Minier <lool@dooz.org> Sat, 5 Nov 2005 16:13:06 +0100
evolution-data-server (1.2.3-7) unstable; urgency=high
* Update the patch to build against Debian's libdb4.2 instead of the bundled
libdb4.1 copy.
- Clean up.
- Split in two patches, one for configure.in and **/Makefile.am, the other
to update generated files: debian/patches/35_use-debians-libdb42.patch
and debian/patches/70_rebootstrap.patch (result of automake-1.7 &&
autoconf && rm -rf autom4te.cache)
- Also cover the addressbook/backends/file sub-directory.
(Closes: #336761, #336897, #337018, #337077)
* Add DEB_FIXPERMS_EXCLUDE to preserve the mail group and the setgid bit of
usr/lib/evolution/evolution-data-server*. (Closes: #336755)
* Re-create patches applying cleanly, preprend a number to patches missing
one.
- debian/patches/05_libical-declare-const.patch: cleaned up, renamed.
- debian/patches/10_pc-files-inversion.patch: cleaned up, renamed.
- debian/patches/15_amd64-build.patch: cleaned up, renamed.
- debian/patches/20_decode-non-space-separated-mime-header.patch: cleaned
up, renamed.
- debian/patches/25_ia64-crash.patch: cleaned up, renamed.
- debian/patches/30_dont-send-second-pop-capa.patch: cleaned up, renamed.
* Don't overwrite DEB_SHLIBDEPS_INCLUDE, DEB_CONFIGURE_EXTRA_FLAGS, nor
DEB_DH_MAKESHLIBS_ARGS_ALL.
* Add myself to Uploaders.
-- Loic Minier <lool@dooz.org> Wed, 2 Nov 2005 17:12:50 +0100
evolution-data-server (1.2.3-6) unstable; urgency=low
* debian/control.in, debian/control:
- duplicate all changes made in the
last three uploads to sync both files. debian/control isn't regenerated
at build time, so many changes were missing.
- bump Standards-Version to 3.6.2.0, no changes required.
-- Jordi Mallach <jordi@debian.org> Mon, 31 Oct 2005 13:24:39 +0100
evolution-data-server (1.2.3-5) unstable; urgency=low
* Acknowledge NMU changes, thanks James Troup and Loïc Minier
(closes: #331569, #330013, #331570, #331571).
* Forwardport a security improvement from evolution 2.0.3-1.2 that got
lost later on:
- debian/rules: move here chmod/chgrp calls for camel-lock-helper
from evolution-data-server.postinst, and make it sgid mail, not
suid root.
- debian/evolution-data-server.postinst: removed.
* Patch from Michael Banck to not build with libldap2-dev on hurd-i386
(closes: #315163).
- debian/control.in (Build-Depends): Do not Build-Depend on
libldap2-dev on hurd-i386.
- debian/rules (DEB_CONFIGURE_EXTRA_FLAGS): Do not add --with-openldap
on GNU/Hurd.
* Move to team maintenance:
- debian/control.in:
+ set maintainer to Debian Evolution Maintainers
<pkg-evolution-maintainers@lists.alioth.debian.org>.
+ add Takuo, Marga and me to Uploaders.
-- Jordi Mallach <jordi@debian.org> Mon, 31 Oct 2005 10:06:04 +0100
evolution-data-server (1.2.3-4.2) unstable; urgency=high
* Non-maintainer upload.
* Urgency high for RC bug fix.
* Add missing libdb4.2-dev dependency to libebook1.2-dev and
libcamel1.2-dev. (Closes: #331570, #331571)
-- Loic Minier <lool@dooz.org> Sat, 8 Oct 2005 17:42:11 +0200
evolution-data-server (1.2.3-4.1) unstable; urgency=low
* debian/control: fix libedataserver1.2-dev to Depend on libdb4.2-dev
rather than libdb4.1-dev. Closes: #331569, #330013
-- James Troup <james@nocrew.org> Sat, 8 Oct 2005 01:54:09 +0100
evolution-data-server (1.2.3-2) unstable; urgency=low
* libcamel-dev: depends on libkrb5-dev (closes: #318981, #319787)
-- Takuo KITAME <kitame@debian.org> Mon, 1 Aug 2005 12:38:53 +0900
evolution-data-server (1.2.3-1) unstable; urgency=low
* New upstream release
* enable GSSAPI. (closes: Bug#317175)
* close bugs which fixed in 1.2.2-6 (closes: #305597, #308927)
-- Takuo KITAME <kitame@debian.org> Wed, 13 Jul 2005 14:29:57 +0900
evolution-data-server (1.2.2-6) unstable; urgency=low
* Maintainer upload (closes: #305597)
* Change package name untagged. (except libraries) (closes: #308927)
* build with -sa
* e-d-s: conflicts and replaces with e-d-s1.2
* e-d-s-dev: conflicts and replaces with e-d-s1.2-dev
-- Takuo KITAME <kitame@debian.org> Thu, 23 Jun 2005 12:48:03 +0900
evolution-data-server1.2 (1.2.2-5.1) unstable; urgency=low
* Non-maintainer upload.
* Rename ia64_crash_fix to ia64_crash_fix.patch, so that the build system
will pick it up. (closes: #305597)
-- dann frazier <dannf@debian.org> Tue, 24 May 2005 15:38:49 -0600
evolution-data-server1.2 (1.2.2-5) unstable; urgency=low
* libedataserver1.2: depends on libnspr4 (closes: #309449)
* libedataserver1.2-dev: depends on libnspr-dev (closes: #309189)
-- Takuo KITAME <kitame@debian.org> Wed, 18 May 2005 15:59:32 +0900
evolution-data-server1.2 (1.2.2-4) unstable; urgency=low
* fix dependency of *-dev packages. (closes: Bug#307931)
-- Takuo KITAME <kitame@debian.org> Tue, 10 May 2005 12:49:34 +0900
evolution-data-server1.2 (1.2.2-3) unstable; urgency=low
* fix crash on ia64 when clicking on "reply" in evolution mailer (closes: #305597)
* applied patch to use system libdb (closes: #305518)
-- Takuo KITAME <kitame@debian.org> Thu, 5 May 2005 19:49:11 +0900
evolution-data-server1.2 (1.2.2-2) unstable; urgency=low
* applied amd64 build fix patch. (closes: #304584)
* trying force decode not-space-separated mime header.
Feel free to submit bug caused by this patch.
-- Takuo KITAME <kitame@debian.org> Thu, 14 Apr 2005 18:22:29 +0900
evolution-data-server1.2 (1.2.2-1) unstable; urgency=high
* New upstream release
* Build-Depends on libnss-dev, It will fix SSL issue.
closes: #304361, #304243, #304279, #304243, #304083, #299603
* debian/rules: added some configure options from evolution/debian/rules.
* libebook1.2-dev depend on libnss-dev (closes: #304085)
* libebook1.2 depend on libcamel1.2 (closes: #304075)
* fix description (closes: #303761)
-- Takuo KITAME <kitame@debian.org> Wed, 13 Apr 2005 17:57:28 +0900
evolution-data-server1.2 (1.2.1-1) unstable; urgency=low
* New upstream release
* upload to unstable/main.
-- Takuo KITAME <kitame@debian.org> Tue, 29 Mar 2005 11:34:48 +0900
evolution-data-server1.2 (1.1.6-1) experimental; urgency=low
* New upstream release
-- Takuo KITAME <kitame@debian.org> Tue, 22 Mar 2005 14:20:55 +0900
evolution-data-server1.2 (1.1.5-2) experimental; urgency=low
* remove unnecessary dependency.
-- Takuo KITAME <kitame@debian.org> Mon, 28 Feb 2005 16:48:26 +0900
evolution-data-server1.2 (1.1.5-1) experimental; urgency=low
* New upstream release
-- Takuo KITAME <kitame@debian.org> Mon, 21 Feb 2005 18:45:56 +0900
evolution-data-server1.2 (1.1.4-1) experimental; urgency=low
* New upstream release
-- Takuo KITAME <kitame@debian.org> Fri, 4 Feb 2005 14:26:26 +0900
evolution-data-server1.2 (1.1.3-1) experimental; urgency=low
* New upstream release
-- Takuo KITAME <kitame@debian.org> Thu, 13 Jan 2005 13:34:40 +0900
evolution-data-server1.2 (1.1.2-4) experimental; urgency=low
* chmod u+s /usr/lib/evolution/camel-lock-helper-1.2
-- Takuo KITAME <kitame@debian.org> Thu, 6 Jan 2005 18:48:04 +0900
evolution-data-server1.2 (1.1.2-3) experimental; urgency=low
* Conflicts and Replaces libedata-cal1.2-0, libedata-book1.2-0 and libegroupwise1.2-0 (= 1.1.2-1)
* includes libcamel*.la into libcamel1.2-dev
-- Takuo KITAME <kitame@debian.org> Thu, 6 Jan 2005 16:22:10 +0900
evolution-data-server1.2 (1.1.2-2) experimental; urgency=low
* separate libcamel package.
* evolution-data-server1.2-dev depends on earch libdevel packages.
-- Takuo KITAME <kitame@debian.org> Thu, 6 Jan 2005 15:23:40 +0900
evolution-data-server1.2 (1.1.2-1) experimental; urgency=low
* New upstream release
* build-depends on libgnomeui-dev (closes: #281339)
-- Takuo KITAME <kitame@debian.org> Thu, 6 Jan 2005 14:37:02 +0900
evolution-data-server1.2 (1.1.1-1) experimental; urgency=low
* New upstream release
* Build depends on libgnome2-dev (closes: #281339)
-- Takuo KITAME <kitame@debian.org> Fri, 17 Dec 2004 15:42:46 +0900
evolution-data-server1.2 (1.1.0-1) experimental; urgency=low
* New upstream release
* tagged package name 1.2.
-- Takuo KITAME <kitame@debian.org> Fri, 5 Nov 2004 11:46:58 +0900
evolution-data-server (1.0.2-2) unstable; urgency=low
* upload to unstable/main
-- Takuo KITAME <kitame@debian.org> Tue, 19 Oct 2004 11:51:47 +0900
evolution-data-server (1.0.2-1) experimental; urgency=low
* New upstream release
-- Takuo KITAME <kitame@debian.org> Wed, 13 Oct 2004 12:00:09 +0900
evolution-data-server (1.0.1-1) experimental; urgency=low
* New upstream release
-- Takuo KITAME <kitame@debian.org> Wed, 29 Sep 2004 15:31:14 +0900
evolution-data-server (1.0.0-1) experimental; urgency=low
* New upstream release, RC package for uploading into main.
* change package structure.
lib* is into own package.
e-d-s-dev is meta package of lib*-dev packages.
(closes: #270678)
-- Takuo KITAME <kitame@debian.org> Tue, 14 Sep 2004 17:09:57 +0900
evolution-data-server (0.0.99-1) experimental; urgency=low
* New upstream release
-- Takuo KITAME <kitame@debian.org> Tue, 31 Aug 2004 13:55:25 +0900
evolution-data-server (0.0.98-1) experimental; urgency=low
* New upstream release
-- Takuo KITAME <kitame@debian.org> Mon, 16 Aug 2004 12:42:30 +0900
evolution-data-server (0.0.97-1) experimental; urgency=low
* New upstream release
-- Takuo KITAME <kitame@debian.org> Thu, 5 Aug 2004 18:58:54 +0900
evolution-data-server (0.0.96-1) experimental; urgency=low
* New upstream release
* remove useless files in doc (closes: #257405)
-- Takuo KITAME <kitame@debian.org> Tue, 20 Jul 2004 16:18:03 +0900
evolution-data-server (0.0.95-1) experimental; urgency=low
* New upstream release
-- Takuo KITAME <kitame@debian.org> Thu, 8 Jul 2004 18:41:50 +0900
evolution-data-server (0.0.94.1-2) experimental; urgency=low
* --with-uniquename=eds (closes: #255727)
-- Takuo KITAME <kitame@debian.org> Wed, 30 Jun 2004 00:15:58 +0900
evolution-data-server (0.0.94.1-1) experimental; urgency=low
* New upstream release
* use cdbs instead of cdb
-- Takuo KITAME <kitame@debian.org> Mon, 28 Jun 2004 10:59:44 +0900
evolution-data-server (0.0.94-1) experimental; urgency=low
* New upstream release
* Conflicts: evolution1.5 (<< 1.5.9)
-- Takuo KITAME <kitame@debian.org> Mon, 7 Jun 2004 11:50:34 +0900
evolution-data-server (0.0.93-2) experimental; urgency=low
* Conflict with evolution1.5 (<< 1.5.8)
-- Takuo KITAME <kitame@debian.org> Wed, 26 May 2004 15:36:23 +0900
evolution-data-server (0.0.93-1) experimental; urgency=low
* New upstream release
* build against libgnutls10
-- Takuo KITAME <kitame@debian.org> Mon, 24 May 2004 19:47:53 +0900
evolution-data-server (0.0.92-1) experimental; urgency=low
* New upstream release
-- Takuo KITAME <kitame@debian.org> Tue, 20 Apr 2004 17:02:50 +0900
evolution-data-server (0.0.91-2) experimental; urgency=low
* Applied patch to fix build problem on ppc (closes: #242044)
* Build-Depends on gtk-doc-tools (closes: #241227)
-- Takuo KITAME <kitame@debian.org> Mon, 12 Apr 2004 09:57:50 +0900
evolution-data-server (0.0.91-1) experimental; urgency=low
* New upstream release
-- Takuo KITAME <kitame@debian.org> Wed, 7 Apr 2004 12:35:34 +0900
evolution-data-server (0.0.90-1) experimental; urgency=low
* New upstream release
* NOTE:
libsoup2.2-3 and libgtkhtml3.1-6 package had been uploaded already.
But it marked as NEW package and waiting for ACCEPTED.
So please wait for installing into archive by ftp-maintainer.
-- Takuo KITAME <kitame@debian.org> Tue, 9 Mar 2004 12:59:34 +0900
evolution-data-server (0.0.7-1) experimental; urgency=low
* New upstream release
-- Takuo KITAME <kitame@debian.org> Thu, 19 Feb 2004 14:47:19 +0900
evolution-data-server (0.0.6-1) experimental; urgency=low
* New upstream release
-- Takuo KITAME <kitame@debian.org> Tue, 3 Feb 2004 14:23:19 +0900
evolution-data-server (0.0.5-1) experimental; urgency=low
* New upstream release
-- Takuo KITAME <kitame@debian.org> Tue, 20 Jan 2004 16:43:50 +0900
evolution-data-server (0.0.4-1) experimental; urgency=low
* New upstream release
-- Takuo KITAME <kitame@debian.org> Fri, 9 Jan 2004 14:16:21 +0900
evolution-data-server (0.0.3-2) experimental; urgency=low
* fix unavailable libdb.a
-- Takuo KITAME <kitame@debian.org> Thu, 18 Dec 2003 11:17:42 +0900
evolution-data-server (0.0.3-1) experimental; urgency=low
* Initial Release.
-- Takuo KITAME <kitame@debian.org> Mon, 15 Dec 2003 10:36:50 +0900
|