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
|
akonadi (4:22.12.3-1) unstable; urgency=medium
[ Patrick Franz ]
* New upstream release (22.12.3).
* Update build-deps and deps with the info from cmake.
* Remove inactive uploaders, thanks for your work.
-- Patrick Franz <deltaone@debian.org> Wed, 01 Mar 2023 21:31:04 +0100
akonadi (4:22.12.2-1) unstable; urgency=medium
[ Patrick Franz ]
* New upstream release (22.12.2).
-- Patrick Franz <deltaone@debian.org> Sun, 05 Feb 2023 00:24:11 +0100
akonadi (4:22.12.0-2) unstable; urgency=medium
[ Patrick Franz ]
* Upload to unstable.
-- Patrick Franz <deltaone@debian.org> Wed, 04 Jan 2023 21:35:00 +0100
akonadi (4:22.12.0-1) experimental; urgency=medium
[ Patrick Franz ]
* New upstream release (22.12.0).
* Update build-deps and deps with the info from cmake.
* Bump Standards-Version to 4.6.2 (No changes needed).
* Update list of installed files.
-- Patrick Franz <deltaone@debian.org> Thu, 22 Dec 2022 21:02:44 +0100
akonadi (4:22.08.3-1) unstable; urgency=medium
[ Patrick Franz ]
* New upstream release (22.08.3).
-- Patrick Franz <deltaone@debian.org> Fri, 04 Nov 2022 21:52:40 +0100
akonadi (4:22.08.2-1) unstable; urgency=medium
[ Patrick Franz ]
* New upstream release (22.08.2).
* Enable reproducible builds, thanks to Vagrant Cascadian (Closes:
#1003920).
-- Patrick Franz <deltaone@debian.org> Sat, 29 Oct 2022 00:10:01 +0200
akonadi (4:22.08.0-2) unstable; urgency=medium
[ Patrick Franz ]
* Upload to unstable.
-- Patrick Franz <deltaone@debian.org> Sat, 10 Sep 2022 13:07:21 +0200
akonadi (4:22.08.0-1) experimental; urgency=medium
[ Patrick Franz ]
* Update upstream signing-key.
* Bump Standards-Version to 4.6.1 (No changes needed).
* New upstream release (22.08.0).
* Update build-deps and deps with the info from cmake.
* Update list of installed files.
-- Patrick Franz <deltaone@debian.org> Wed, 31 Aug 2022 01:44:12 +0200
akonadi (4:22.04.3-1) unstable; urgency=medium
[ Patrick Franz ]
* New upstream release (22.04.3).
-- Patrick Franz <deltaone@debian.org> Thu, 14 Jul 2022 21:55:57 +0200
akonadi (4:22.04.2-2) unstable; urgency=medium
[ Patrick Franz ]
* Upload to unstable.
-- Patrick Franz <deltaone@debian.org> Mon, 27 Jun 2022 21:59:18 +0200
akonadi (4:22.04.2-1) experimental; urgency=medium
[ Patrick Franz ]
* New upstream release (22.04.2).
-- Patrick Franz <deltaone@debian.org> Sun, 19 Jun 2022 02:45:40 +0200
akonadi (4:22.04.1-1) experimental; urgency=medium
[ Patrick Franz ]
* New upstream release (22.04.1).
* Update build-deps and deps with the info from cmake.
* Update list of installed files.
-- Patrick Franz <deltaone@debian.org> Wed, 25 May 2022 01:57:24 +0200
akonadi (4:21.12.3-2) unstable; urgency=medium
[ Patrick Franz ]
* Upload to unstable.
-- Patrick Franz <deltaone@debian.org> Fri, 01 Apr 2022 22:08:57 +0200
akonadi (4:21.12.3-1) experimental; urgency=medium
[ Patrick Franz ]
* New upstream release (21.12.3).
* Update build-deps and deps with the info from cmake.
* Add myself to Uploaders.
* Refresh patches.
-- Patrick Franz <deltaone@debian.org> Thu, 24 Mar 2022 22:22:11 +0100
akonadi (4:21.08.1-1) unstable; urgency=medium
[ Norbert Preining ]
* New upstream release (21.08.1).
* Bump Standards-Version to 4.6.0, no change required.
-- Norbert Preining <norbert@preining.info> Sat, 11 Sep 2021 07:19:14 +0900
akonadi (4:21.08.0-1) unstable; urgency=medium
[ Norbert Preining ]
* New upstream release (21.08.0).
-- Norbert Preining <norbert@preining.info> Mon, 16 Aug 2021 15:41:09 +0900
akonadi (4:21.04.3-1) experimental; urgency=medium
[ Norbert Preining ]
* New upstream release (21.04.3).
-- Norbert Preining <norbert@preining.info> Fri, 09 Jul 2021 10:32:19 +0900
akonadi (4:21.04.1-1) experimental; urgency=medium
[ Norbert Preining ]
* New upstream release (21.04.1).
-- Norbert Preining <norbert@preining.info> Fri, 14 May 2021 06:08:24 +0900
akonadi (4:21.04.0-1) experimental; urgency=medium
[ Norbert Preining ]
* New upstream release (21.04.0).
* Update upstream signing key.
* Drop Modestas and Max from uploaders, thanks for your work.
* Add myself to uploaders.
* Drop Kubuntu from maintainer name.
* Update dependencies according to cmake.
* Update patches.
-- Norbert Preining <norbert@preining.info> Thu, 13 May 2021 09:45:57 +0900
akonadi (4:20.08.3-3) unstable; urgency=medium
* Handle mariadbd_akonadi with dh_apparmor (Closes: #986635).
-- Sandro Knauß <hefee@debian.org> Tue, 13 Apr 2021 22:30:46 +0200
akonadi (4:20.08.3-2) unstable; urgency=medium
* Add patch to load local apparmor rules (Closes: #985080).
-- Sandro Knauß <hefee@debian.org> Mon, 05 Apr 2021 13:09:40 +0200
akonadi (4:20.08.3-1) unstable; urgency=medium
[ Sandro Knauß ]
* New upstream release (20.08.3).
* Bump Standards-Version to 4.5.1 (No changes needed).
-- Sandro Knauß <hefee@debian.org> Wed, 16 Dec 2020 01:38:46 +0100
akonadi (4:20.08.2-3) unstable; urgency=medium
* Team upload.
* Unregister the old /etc/xdg/akonadi.categories, and
/etc/xdg/akonadi.renamecategories conffiles. (Closes: #946512)
* Explicitly add the gettext build dependency.
* Minimize the upstream GPG signing key.
-- Pino Toscano <pino@debian.org> Wed, 28 Oct 2020 10:24:03 +0100
akonadi (4:20.08.2-2) unstable; urgency=medium
* Team upload to unstable.
-- Sandro Knauß <hefee@debian.org> Tue, 20 Oct 2020 00:07:40 +0200
akonadi (4:20.08.2-1) experimental; urgency=medium
[ Sandro Knauß ]
* New upstream release (20.08.2).
* Update build-deps and deps with the info from cmake.
* Update Homepage link to point to new invent.kde.org
* Update field Source in debian/copyright to invent.kde.org move.
* Update repository related entries to metadata file.
* Add Bug-* entries to metadata file.
* Update patch hunks.
* Remove backported patch.
* Update copyright file for 20.08.
-- Sandro Knauß <hefee@debian.org> Fri, 16 Oct 2020 00:51:55 +0200
akonadi (4:20.04.1-4) unstable; urgency=medium
[ Sandro Knauß ]
* Fix AppArmor profile patch for Mariadb 10.5.
-- Sandro Knauß <hefee@debian.org> Wed, 30 Sep 2020 13:04:52 +0200
akonadi (4:20.04.1-3) unstable; urgency=medium
[ Sandro Knauß ]
* Fix AppArmor profile for Mariadb 10.5.
-- Sandro Knauß <hefee@debian.org> Tue, 29 Sep 2020 12:49:10 +0200
akonadi (4:20.04.1-2) unstable; urgency=medium
[ Sandro Knauß ]
* Add linkage against atomic, where needed. (Closes: #961647)
Thanks to Adrian Bunk <bunk@debian.org>
-- Sandro Knauß <hefee@debian.org> Wed, 27 May 2020 11:52:12 +0200
akonadi (4:20.04.1-1) unstable; urgency=medium
[ Sandro Knauß ]
* New upstream release (20.04.1).
* Update build-deps and deps with the info from cmake.
* Update patch hunks.
* Remove not needed Build-Depends.
-- Sandro Knauß <hefee@debian.org> Tue, 26 May 2020 23:59:26 +0200
akonadi (4:20.04.0-1) experimental; urgency=medium
[ Sandro Knauß ]
* Update watch file to the new release-service location.
* New upstream release (19.12.1).
* Update build-deps and deps with the info from cmake.
* Bump Standards-Version to 4.5.0 (No changes needed).
* Get rid of debug-symbol-migration package.
* Add Rules-Requires-Root field to control.
* New upstream release (19.12.3).
* Enable build for designer plugins.
* Bump compat level to 13.
* Update Build-Depends.
* Update libkf5akonadi-dev: Designer plugin was renamed.
* Use apparmor profiles from upstream.
* Switch to dh for building.
* use execute_after_dh_install for dh_apparmor.
* Enable auto_tests(mark them non-failing).
* New upstream release (20.04.0).
* Wrap long lines in changelog entries: 4:18.08.3-6, 4:16.04.3-2,
4:16.04.3-1, 4:16.04.2-2, 4:16.04.1-1, 1.3.1-3ubuntu1, 1.2.1-
1ubuntu1.
* Set field Upstream-Contact in debian/copyright.
* Remove obsolete fields Contact, Name from debian/upstream/metadata
(already present in machine-readable debian/copyright).
* Cleanup copyright file.
* Remove unused license definitions for Expat.
* Remove not needed linker flags.
-- Sandro Knauß <hefee@debian.org> Wed, 13 May 2020 12:20:28 +0200
akonadi (4:19.08.3-1) unstable; urgency=medium
[ Sandro Knauß ]
* New upstream release (19.08.3).
-- Sandro Knauß <hefee@debian.org> Sat, 30 Nov 2019 22:54:27 +0100
akonadi (4:19.08.2-1) experimental; urgency=medium
[ Sandro Knauß ]
* Bump Standards-Version to 4.4.1 (No changes needed).
* New upstream release (19.08.2).
* Update build-deps and deps with the info from cmake.
* Delete backported patches.
* Update patch hunks.
* Move qlogging-categories5 files from akonadi-server to libkf5akonadi-
data
* Remove breaks against kde-l10n pacakges.
* Update libkf5akonadi-dev dependencies.
-- Sandro Knauß <hefee@debian.org> Fri, 08 Nov 2019 10:39:02 +0100
akonadi (4:18.08.3-11) unstable; urgency=medium
[ Sandro Knauß ]
* Fix "expermental version impossible to install due to old qt
dependency" (Closes: #943972)
-- Sandro Knauß <hefee@debian.org> Thu, 14 Nov 2019 23:48:16 +0100
akonadi (4:18.08.3-10) experimental; urgency=medium
[ Sandro Knauß ]
* Remove outdated AppAromor profiles.
* Fix broken Apparmor profile (Closes: #941902)
* Use xdg_data_home/xdg_config_home in AppArmor profiles.
-- Sandro Knauß <hefee@debian.org> Tue, 08 Oct 2019 19:08:20 +0200
akonadi (4:18.08.3-9) experimental; urgency=medium
[ Sandro Knauß ]
* Improve AppArmor profile:
- Support for non merged-/usr system.
- Akonadiserver needs read access to mime database.
-- Sandro Knauß <hefee@debian.org> Sun, 06 Oct 2019 23:52:15 +0200
akonadi (4:18.08.3-8) experimental; urgency=medium
[Maximiliano Curia]
* Drop kdesignerplugin dependency
[ Sandro Knauß ]
* Use Apparmor profiles by upstream.
* Use virtual packages to bundle kdepim.
* Remove not needed break rules (as the versions are already in
stable).
* Bump to compat v12 (no changes needed).
* Bump to Standards-Version 4.4.0 (no changes needed).
* Move asapcat from akonadi-server -> libkf5akonadi-dev-bin.
* Add myself to Uploaders.
-- Sandro Knauß <hefee@debian.org> Tue, 24 Sep 2019 00:21:04 +0200
akonadi (4:18.08.3-7) unstable; urgency=medium
* Team upload.
[ Sandro Knauß ]
* Add patch to fix: Akonadi components crash on logout. (Closes: #939013)
* Add patch to fix: Automatic recovery from Multiple Merge Candidates
error (Closes: #939012)
* Add patch with files, that are needed for other patches.
* Update symbols from buildds for 4:18.08.3
-- Sandro Knauß <hefee@debian.org> Fri, 30 Aug 2019 12:59:47 +0200
akonadi (4:18.08.3-6) unstable; urgency=medium
* Team upload.
[ Sandro Knauß ]
* Fix "Akonadi don't anwser any requests and ends in deadlock"
(Closes: #935981) by adding upstream patches.
- Akonadi-fix-dangling-transaction-after-itemsync-fail.patch
- ItemSync-skip-handling-remote-items-if-local-changes.patch
-- Sandro Knauß <hefee@debian.org> Wed, 28 Aug 2019 19:31:31 +0200
akonadi (4:18.08.3-5) unstable; urgency=medium
* Team upload.
[ Sandro Knauß ]
* Switch back to use default-mysql-server-core instead of default-
mysql-server as dependency (see #910902).
-- Sandro Knauß <hefee@debian.org> Mon, 29 Apr 2019 16:24:10 +0200
akonadi (4:18.08.3-4) unstable; urgency=medium
* Team upload.
[ Sandro Knauß ]
* Update symbols from buildds for 4:18.08.3
-- Sandro Knauß <hefee@debian.org> Thu, 14 Feb 2019 21:07:51 +0100
akonadi (4:18.08.3-3) unstable; urgency=medium
* Team upload.
[ Sandro Knauß ]
* Add Build-Depends-package field in symbolfiles.
* Add patch Call-QSqlQuery-finish-on-all-SELECT-queries-when-don
(Closes: #921535).
-- Sandro Knauß <hefee@debian.org> Fri, 08 Feb 2019 23:20:48 +0100
akonadi (4:18.08.3-2) unstable; urgency=medium
* Team upload.
[ Sandro Knauß ]
* Rename {kubuntu_,}disable_secure_file_priv_check.diff.
* Update symbols from buildds for 4:18.08.3
[ Alf Gaida ]
* Replaced wrapper mysqld-akonadi with link mysqld -> mysqld-akonadi
(Closes: #921389)
* Replaced dependency for akonadi-backend-mysql:
- default-mysql-server-core -> default-mysql-server
- virtual-mysql-server-core -> virtual-mysql-server
-- Sandro Knauß <hefee@debian.org> Wed, 06 Feb 2019 12:56:58 +0100
akonadi (4:18.08.3-1) unstable; urgency=medium
* Team upload.
[ Sandro Knauß ]
* New upstream release (18.08.3).
* Bump Standards-Version to 4.3.0 (No changes needed).
* Removed acc autopkgtest.
-- Sandro Knauß <hefee@debian.org> Mon, 04 Feb 2019 15:56:47 +0100
akonadi (4:18.08.1-1) unstable; urgency=medium
* Team upload.
[ Sandro Knauß ]
* Bump Standards-Version to 4.2.1 (No changes needed).
* Update symbols from buildds for 4:18.07.90
* Remove armel specific symbols, that are not exposed anymore.
* Follow stable releases in KDE again..
* New upstream release (18.08.1).
-- Sandro Knauß <hefee@debian.org> Tue, 02 Oct 2018 23:16:04 +0200
akonadi (4:18.07.90-1) experimental; urgency=medium
* Team upload.
[ Sandro Knauß ]
* New upstream release (18.07.90).
* Update build-deps and deps with the info from cmake
* Update copyright file for new upstream.
* Bump DebianAbi for libkf5akonadicore5 because of breakage to 2.
* Bump DebianAbi for libkf5akonadiprivate5 because of breakage to 2.
* Update symbols for libkf5akonadiagentbase5 for 18.07.90.
* Remove patch that got upstream.
* Update patch hunks.
-- Sandro Knauß <hefee@debian.org> Thu, 16 Aug 2018 11:10:34 +0200
akonadi (4:17.12.3-3) unstable; urgency=medium
* Team upload.
* Backport upstream commit 310b6a26f58814568245c781c2136504d1a6f338 to fix
build with Qt 5.11; patch
upstream_Fix-build-with-Qt-5.11-missing-QAbstractItemView.patch.
* Remove empty line at the end of changelog.
* Bump Standards-Version to 4.1.5, no changes required.
* Remove the 'testsuite' autopkgtest:
- it runs the test suite from the build dir, not using the installed
packages (hence misusing what autopkgtest is for)
- it always failed (so it is not useful to even catch regressions), and
nobody bothered to fix it
- hence, pass -DBUILD_TESTING=OFF to cmake to disable the build of the
tests, and pass -DBUILD_TOOLS=ON to explicitly request the test tools
(which are installed)
* Update symbols files for GCC 8, and the loss of test-only symbols.
* Do not append -fvisibility=hidden -fvisibility-inlines-hidden to the
CFLAGS, and CXXFLAGS anymore, since they are already there since at least
the switch to KF5/ECM.
-- Pino Toscano <pino@debian.org> Tue, 31 Jul 2018 08:01:23 +0200
akonadi (4:17.12.3-2) unstable; urgency=medium
* Team upload.
[ Sandro Knauß ]
* Adds Breaks/Replaces against kapptemplate (Closes: #894913)
-- Sandro Knauß <hefee@debian.org> Thu, 05 Apr 2018 19:45:46 +0200
akonadi (4:17.12.3-1) unstable; urgency=medium
* Team upload.
[ Sandro Knauß ]
* Add kdevelop templates to libkf5akonadi-dev.
* New upstream release (17.12.3).
* Update symbols from buildds for 4:17.12.2
* bump epoch in symbolsfiles to match version of the package.
* use secure copyright format uri.
* small fixes in copyright file.
* Update package descriptions.
-- Sandro Knauß <hefee@debian.org> Sat, 31 Mar 2018 18:21:21 +0200
akonadi (4:17.12.2-1) experimental; urgency=medium
* Team upload.
[ Sandro Knauß ]
* Drop transitional package libkf5akonadicore-bin (Closes: #873932)
* New upstream release (17.12.2).
* Update build-deps and deps with the info from cmake
* Remove unneded Build-Deps.
* Use DebianABIManager to handle libkf5akonadi* properly
* Update library from libkf5akonadicore5 -> libkf5akonadicore5abi1,
because of ABI breakage.
* Update library from libkf5akonadiprivate5 ->
libkf5akonadiprivate5abi1, because of ABI breakage.
* Update library from libkf5akonadiwidgets5 ->
libkf5akonadiwidgets5abi1, because of ABI breakage.
* Update copyright file.
* Split arch independet data out of libkf5akonadicore5abi1 into new
package libkf5akonadi-data.
* Update Vcs links to salsa.
* Bump debhelper build-dep and compat to 11.
* add akonadi-backend-postgresql.lintian-overrides to ignore empty
package.
-- Sandro Knauß <hefee@debian.org> Fri, 09 Mar 2018 20:10:06 +0100
akonadi (4:17.08.3-2) unstable; urgency=medium
* Team upload.
[ Pino Toscano ]
* Fix typo in NEWS file.
* Remove the unused kio-dev build dependency.
* Remove obsolete /etc/akonadi/mysql-global.conf, and
/etc/akonadi/mysql-global-mobile.conf conffiles. (Closes: #868231)
* Update symbols files from logs of buildds.
* Bump Standards-Version to 4.1.3, no changes required.
* Simplify watch file, and switch it to https.
* Remove trailing whitespaces in changelog.
[ Sandro Knauß ]
* libkf5akonadiserver-dev incorrectly marked as Multi-Arch: same
(Closes: #880385)
* Fix "usr.sbin.mysqld-akonadi: denied access to
/etc/mysql/mariadb.cnf" (Closes: #869865)
- Added patch to allow files under mariadb.conf.d
Thanks to Vincas Dargis <vindrg@gmail.com> for the patch
-- Pino Toscano <pino@debian.org> Wed, 03 Jan 2018 17:38:15 +0100
akonadi (4:17.08.3-1) unstable; urgency=medium
* Team upload.
[ Maximiliano Curia ]
* New revision
* Update the apparmor file for mariadb, and report errors
* Update uploaders list as requested by MIA team (Closes: #879284)
[ Sandro Knauß ]
* New upstream release (17.08.3).
* Bump Standards-Version to 4.1.2 (No changes needed).
* Add NEWS entry about the db migration
* Bump debhelper build-dep and compat to 10.
* Update symbols from buildds for 4:17.08.0
* Update symbols from buildds for 4:17.08.3
* Bump l10npkgs_firstversion_ok to 4:16.04.3-9~
-- Sandro Knauß <hefee@debian.org> Thu, 21 Dec 2017 17:48:11 +0100
akonadi (4:17.08.0-1) experimental; urgency=medium
[ Maximiliano Curia ]
* New upstream release (17.08.0). (Closes: 871147, 871246)
* Drop Multi-Arch: foreign from the dev pkg.
Thanks to Helmut Grohne <helmut@subdivi.de> for the report (Closes: 872207)
* Uscan no longer supports two main components urls
* Update build-deps and deps with the info from cmake
* Drop upstream patches
* Bump Standards-Version to 4.0.1.
* Update symbols files
* Update install files
* Set Priority to optional
* Add breaks/replaces for the /mo files
* Add breaks for libkolab1
* Bump group breaks (17.08)
* Drop kdepimlibs-data symbols injection
* Release to experimental
[ Jonathan Riddell ]
* Sync debian/watch with neon
-- Maximiliano Curia <maxy@debian.org> Fri, 01 Sep 2017 22:07:58 +0200
akonadi (4:16.04.3-6) unstable; urgency=medium
* Team upload.
* Backport upstream changes to not #include .cpp files in tests sources.
(Closes: #871147)
-- Dmitry Shachnev <mitya57@debian.org> Fri, 25 Aug 2017 20:26:14 +0300
akonadi (4:16.04.3-5) unstable; urgency=medium
* Team upload.
[ Maximiliano Curia ]
* Add new patch: Delete-the-properties-window-if-closed.patch.
Thanks to Nancy Anthracite for reporting (Closes: 845553)
[ Dmitry Shachnev ]
* Add a patch from upstream to fix build with Qt 5.9.
-- Dmitry Shachnev <mitya57@debian.org> Fri, 07 Jul 2017 16:33:59 +0300
akonadi (4:16.04.3-4) unstable; urgency=medium
* Team upload.
[ Sandro Knauß ]
* Add patch from kubuntu: kubuntu_disable_secure_file_priv_check.diff
- fix compatibility with stricter defaults in mysql security update.
(Closes: 843534) Thanks to fld for the report and Marc Deslauriers
for the patch.
* Fix known typos.
* Update Build-Deps to use default-libmysqlclient-dev instead of
libmysqlclient-dev.
* Add Multi-Arch Hinters from tracker.
* Remove unused source.lintian-overrides file.
* Merge libkf5akonadicore-bin into akonadi-server package.
[ Maximiliano Curia ]
* Use mysql default metapackages
* Replace dbus-launch with dbus-run-session in tests.
Thanks to Simon McVittie for reporting (Closes: 835827)
-- Sandro Knauß <hefee@debian.org> Tue, 22 Nov 2016 21:42:07 +0100
akonadi (4:16.04.3-3) unstable; urgency=medium
* Team upload.
[ Sandro Knauß ]
* Backport patch from upstream to build QSqlite3 backend with Qt5.7.1
- QSqlite3-fix-build-with-Qt-5.7.patch
- Closes: 842502
- The original patch written by Daniel Vratil:
068c0bd5f93232eea97e492354eff2b9b62c6643
- Added qtbase5-private-dev to build deps
* Update symbols files from buildds logs (4:16.04.3-2+b1).
-- Sandro Knauß <hefee@debian.org> Wed, 02 Nov 2016 01:15:34 +0100
akonadi (4:16.04.3-2) unstable; urgency=medium
[ Automatic packaging ]
* Update symbols files from buildds logs (4:16.04.3-1).
[ Maximiliano Curia ]
* Inject libkf5akonadicore-bin dependency through the akonadiwidgets symbols
file. Thanks to Bill Allombert for the report (Closes: 834099)
-- Maximiliano Curia <maxy@debian.org> Sun, 14 Aug 2016 12:07:49 +0200
akonadi (4:16.04.3-1) unstable; urgency=medium
[ Automatic packaging ]
* Update symbols files from buildds logs (4:16.04.2-3).
[ Maximiliano Curia ]
* Add Breaks from kmail, korganizer and akonadiconsole, to avoid invalid
installations
* Add conflicts for akonadi2xml against kdepimlibs5-dev.
Thanks to Andreas Beckmann for the report (Closes: 831226)
-- Maximiliano Curia <maxy@debian.org> Tue, 19 Jul 2016 16:24:06 +0200
akonadi (4:16.04.2-3) unstable; urgency=medium
* Avoid depending on a reverse dependency.
-- Maximiliano Curia <maxy@debian.org> Tue, 05 Jul 2016 11:08:48 +0200
akonadi (4:16.04.2-2) unstable; urgency=low
[ Maximiliano Curia ]
* Drop libakonadi-kde4 breaks/replaces to allow installing knode and
ktimetracker
* Release to unstable.
[ Automatic packaging ]
* Update symbols files from buildds logs (4:16.04.2-1).
-- Maximiliano Curia <maxy@debian.org> Mon, 04 Jul 2016 15:09:18 +0200
akonadi (4:16.04.2-1) experimental; urgency=medium
[ Maximiliano Curia ]
* Update copyright information
* Drop automoc build dependency
* testsuite: Set the akonaditest path
* Inject kdepimlibs-data dependency through the symbols files
[ Automatic packaging ]
* Update symbols files from buildds logs (4:16.04.1-1).
* Update symbols files.
* Refresh patches
-- Maximiliano Curia <maxy@debian.org> Thu, 23 Jun 2016 23:02:40 +0200
akonadi (4:16.04.1-1) experimental; urgency=medium
[ Automatic packaging ]
* Bump Standards-Version to 3.9.8
* Refresh patches
* Add a .gitattributes file to use dpkg-mergechangelogs
* Update build-deps and deps with the info from cmake
* Update symbols files.
[ Maximiliano Curia ]
* Add missing dependency on mysql server core.
* New upstream release (15.12.2).
* Replace the "Historical name" ddeb-migration by its "Modern, clearer"
replacement dbgsym-migration.
* Add upstream metadata (DEP-12)
* debian/control: Update Vcs-Browser and Vcs-Git fields
* Add kgendesignerplugin as a build dep
* Add missing breaks/replaces, knutresource was in in kdepimlibs5-dev
* Set the dev-bin as m-a: foreign
* Add new patch: set_dependency_order.diff
-- Maximiliano Curia <maxy@debian.org> Fri, 27 May 2016 18:08:49 +0200
akonadi (15.12.1-1) experimental; urgency=medium
* New upstream release (15.12.0).
* New upstream release (15.12.1).
-- Maximiliano Curia <maxy@debian.org> Mon, 01 Feb 2016 10:23:57 +0100
akonadi (15.08.3-1) experimental; urgency=medium
* New upstream release (15.08.3).
-- Maximiliano Curia <maxy@debian.org> Wed, 02 Dec 2015 12:39:44 +0100
akonadi (15.08.2-1) experimental; urgency=medium
* New upstream release (15.08.2).
-- Maximiliano Curia <maxy@debian.org> Fri, 16 Oct 2015 08:06:30 +0200
akonadi (15.08.1-1) experimental; urgency=medium
* New upstream release (15.08.1).
-- Maximiliano Curia <maxy@debian.org> Sat, 19 Sep 2015 03:16:13 +0200
akonadi (15.08.0-1) experimental; urgency=medium
* New upstream release (15.07.90).
* New upstream release (15.08.0).
* Remove upstream patches.
* Refresh patches.
* Update copyright file.
-- Maximiliano Curia <maxy@debian.org> Sat, 05 Sep 2015 21:41:58 +0200
akonadi (4:15.08.0-0ubuntu1) wily; urgency=medium
* new upstream release
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 26 Aug 2015 16:52:58 +0100
akonadi (4:15.07.90-0ubuntu1) wily; urgency=medium
* New upstream release
* new upstream beta release
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 18 Aug 2015 08:53:42 +0100
akonadi (1.13.0-8) unstable; urgency=medium
* Team upload.
* Update symbols files.
-- Maximiliano Curia <maxy@debian.org> Sat, 29 Aug 2015 00:41:28 +0200
akonadi (1.13.0-7) unstable; urgency=medium
* Team upload.
* Removed some patches introduced in previous upload due to regressions
causing invalid SQL commands.
-- Dmitry Smirnov <onlyjob@debian.org> Mon, 20 Jul 2015 12:30:32 +1000
akonadi (1.13.0-6) unstable; urgency=medium
* Team upload.
* New "upstream-MOVEcomplete.patch" (fixes deadlock).
* Bunch of optimisation patches from upstream 1.13 branch.
* Install "akonadictl.1" man page.
* copyright: reviewed, converted to copyright-format-1.0 and updated.
-- Dmitry Smirnov <onlyjob@debian.org> Mon, 20 Jul 2015 03:26:42 +1000
akonadi (1.13.0-5) unstable; urgency=medium
* Team upload.
* New upstream patches:
+ upstream-use-QAtomicInt.patch
+ upstream-prevent-QTimer-negative-interval.patch
* Initialise PSQL database with "--data-checksums" (Closes: #791807).
* Build-Depends: removed "mysql-server-core" (not needed on build time).
-- Dmitry Smirnov <onlyjob@debian.org> Sun, 19 Jul 2015 20:31:33 +1000
akonadi (1.13.0-4) unstable; urgency=medium
* Team upload.
* backend-mysql: depend on MySQL-5.6 or any MySQL flavour (Closes: #746651)
Depends:
- mysql-server-core-5.5 | mysql-server-core
+ mysql-server-core-5.6 | virtual-mysql-server-core
* Standards-Version: 3.9.6.
* xs-testsuite-header-in-debian-control: removed "XS-Testsuite" header.
* Updated Vcs-Browser URL.
* Patches renamed to consistently end with ".patch".
* New patch to add PostgreSQL 9.4 search path (Closes: #791805).
-- Dmitry Smirnov <onlyjob@debian.org> Mon, 13 Jul 2015 23:56:38 +1000
akonadi (1.13.0-3) unstable; urgency=medium
* Team upload.
* Apply upstream_dont_leak_old_external_payload_files.patch which fixes a bug
that let old files be kept when they should be removed.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Tue, 30 Jun 2015 12:03:32 -0300
akonadi (1.13.0-2ubuntu5) wily; urgency=medium
* No change rebuild for boost1.58/libstdc++6.
-- Dimitri John Ledkov <dimitri.j.ledkov@linux.intel.com> Sun, 02 Aug 2015 11:57:02 +0100
akonadi (1.13.0-2ubuntu4) vivid; urgency=medium
* debian/rules: re-enable the override_dh_installinit target, disabled
in an earlier merge from debian. This allows dh-apparmor to create
the postinst for the akonadi-backend-mysql package, which creates
the missing part of that package's apparmor profile at install time
(LP: #1440501)
-- Steve Beattie <sbeattie@ubuntu.com> Wed, 15 Apr 2015 10:48:33 -0700
akonadi (1.13.0-2ubuntu3) vivid; urgency=medium
* Still prefer mysql 5.6, but allow any mysql implementation that provides
virtual-mysql-server-core and virtual-mysql-client-core
(LP: #1336005)
* Force dependency on akonadi-backend-mysql for akonadi-server.
(was accidentally dropped in the last debian merge)
-- Philip Muškovac <yofel@kubuntu.org> Wed, 15 Apr 2015 16:57:20 +0200
akonadi (1.13.0-2ubuntu2) vivid; urgency=medium
* Allow using mariadb 10.0 as backend for akonadi-backend-mysql
(LP: #1441119)
-- Philip Muškovac <yofel@kubuntu.org> Thu, 09 Apr 2015 18:25:44 +0200
akonadi (1.13.0-2ubuntu1) vivid; urgency=medium
* Merge from Debian unstable. Remaining changes:
- Add a mysqld-akonadi wrapper script.
- Add apparmor profile for mysqld-akonadi (usr.sbin.mysqld-akonadi).
- Make akonadi-backend-mysql depend on mysql-server-core-5.5 and
mysql-client-core-5.5 or *5.6 instead of mysql-server-core.
- Force dependency on akonadi-backend-mysql for akonadi-server.
- Keep debian/libakonadiprotocolinternals1.symbols from Ubuntu
- Add Kubuntu to the maintainers as we are moving to debian git.
-- Scarlett Clark <sgclark@kubuntu.org> Fri, 31 Oct 2014 14:50:27 +0000
akonadi (1.13.0-2) unstable; urgency=medium
[ Pino Toscano ]
* Bump the priority of all the binaries, except akonadi-dbg, to optional
(as other packages depend on them).
[ Maximiliano Curia ]
* New upstream patch: upstream-fix_typo_in_if_condition
* New upstream patch: upstream-
fix_buffer_overflow_in_AKTEST_FAKESERVER_MAIN
* New upstream patch: upstream-
do_not_crash_when_setmntent_returns_NULL
* Update symbols files from buildds logs (1.13.0-1).
* New upstream patch: upstream_dont_call_insert_from_Q_ASSERT
* libakonadi-dev: Add libqt4-dev Dependency.
-- Maximiliano Curia <maxy@debian.org> Fri, 19 Sep 2014 11:04:57 +0200
akonadi (1.13.0-1) unstable; urgency=medium
* New upstream release.
* Remove upstream patches.
* Update symbols file.
* Add missing breaks for kdepim-runtime << 4:4.13. (Closes: #749776)
-- Maximiliano Curia <maxy@debian.org> Tue, 19 Aug 2014 21:01:28 +0200
akonadi (1.12.91-0ubuntu1) utopic; urgency=medium
* New upstream release needed for KDE 4.13.90 beta 2
* Remove patches applied upstream.
* Update symbols with batchpatch.
-- Scarlett Clark <scarlett@scarlettgatelyclark.com> Fri, 18 Jul 2014 15:38:49 -0700
akonadi (1.12.1-1ubuntu3) utopic; urgency=medium
* Allow using mysql 5.6 as DB for akonadi-backend-mysql (LP: #1330180)
-- Philip Muškovac <yofel@kubuntu.org> Wed, 18 Jun 2014 14:14:01 +0200
akonadi (1.12.1-1ubuntu2) utopic; urgency=medium
* Add upstream_1.12.1-invalid-gid.diff from upstream to fix broken upgrade
- LP: #1318718
- https://bugs.kde.org/331867
-- Jonathan Riddell <jriddell@ubuntu.com> Mon, 12 May 2014 16:37:03 +0100
akonadi (1.12.1-1ubuntu1) utopic; urgency=low
* Merge from Debian unstable. Remaining changes:
- Add a mysqld-akonadi wrapper script.
- Add apparmor profile for mysqld-akonadi (usr.sbin.mysqld-akonadi).
- Make akonadi-backend-mysql depend on mysql-server-core-5.5 and
mysql-client-core-5.5 instead of mysql-server-core.
- Force dependency on akonadi-backend-mysql for akonadi-server.
- Keep debian/libakonadiprotocolinternals1.symbols from Ubuntu
-- Rohan Garg <rohangarg@kubuntu.org> Thu, 08 May 2014 15:08:19 +0200
akonadi (1.12.1-1) unstable; urgency=medium
* New upstream release.
* Update symbols for 1.12.0 version.
* New upstream patch: upstream_1.12-Use-per-thread-
QDBusConnections.patch
* New upstream patch: upstream_1.12-Remove-the-invalid-GID-part-from-
PartTable-before-st.patch
* New upstream patch: upstream_1.12-Fix-retrieving-of-GID-from-SQL-
query-result-in-Fetch.patch
-- Maximiliano Curia <maxy@debian.org> Tue, 06 May 2014 17:19:48 +0200
akonadi (1.12.1-0ubuntu2) utopic; urgency=high
* No change rebuild against boost1.55.
-- Dimitri John Ledkov <xnox@ubuntu.com> Sat, 26 Apr 2014 23:20:45 +0100
akonadi (1.12.1-0ubuntu1) trusty; urgency=medium
* New upstream bugfix release
-- Harald Sitter <apachelogger@kubuntu.org> Tue, 08 Apr 2014 10:30:38 +0200
akonadi (1.12.0-1) experimental; urgency=medium
* New upstream release.
* Remove patch: dont_do_redundant_flag_changes.diff
* Remove patch: always_verify_writing_data_to_external_file.diff
* Remove patch: correctly_detect_inter-resource_moves.diff
* Update install files.
* Remove old abi information, update acc file.
* Update symbols from 1.11.0.
* Update symbols.
-- Maximiliano Curia <maxy@debian.org> Tue, 01 Apr 2014 15:37:32 +0200
akonadi (1.12.0-0ubuntu1) trusty; urgency=medium
* New upstream release
-- Jonathan Riddell <jriddell@ubuntu.com> Fri, 28 Mar 2014 21:40:59 +0000
akonadi (1.11.90-0ubuntu1) trusty; urgency=medium
* New upstream release (LP: #1296707)
-- Scarlett Clark <scarlett@scarlettgatelyclark.com> Mon, 24 Mar 2014 06:01:57 -0700
akonadi (1.11.80-0ubuntu3) trusty; urgency=medium
* Support mariadb as alternate database for the mysql backend as it is
also supported upstream said on IRC.
LP: #1289840
-- Harald Sitter <apachelogger@kubuntu.org> Mon, 10 Mar 2014 23:09:34 +0100
akonadi (1.11.80-0ubuntu2) trusty; urgency=medium
* Install missing files
-- Jonathan Riddell <jriddell@ubuntu.com> Mon, 10 Mar 2014 11:31:06 +0000
akonadi (1.11.80-0ubuntu1) trusty; urgency=medium
* New upstream alpha release
* Replace disable_dbus_requiring_tests.diff with starting dbus
in debian/rules
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 05 Mar 2014 15:09:30 +0000
akonadi (1.11.0-1) unstable; urgency=low
* New upstream release.
* Update build dependencies.
* Update subst var for akonadi-backend-mysql.
* Bump Standards-Version to 3.9.5, no changes needed.
* New upstream patch: dont_do_redundant_flag_changes.diff
* New upstream patch: always_verify_writing_data_to_external_file.diff
* Update symbols file.
* Update install files.
* New upstream patch: correctly_detect_inter-resource_moves.diff.
-- Maximiliano Curia <maxy@debian.org> Wed, 08 Jan 2014 15:40:35 -0300
akonadi (1.11.0-0ubuntu1) trusty; urgency=medium
* New upstream release
* Add new symbol to libakonadiprotocolinternals1.symbols
-- Philip Muškovac <yofel@kubuntu.org> Tue, 24 Dec 2013 11:07:42 +0100
akonadi (1.10.80-0ubuntu1) trusty; urgency=low
* New upstream release
- Update install files
- Update disable_dbus_requiring_tests.diff
-- Rohan Garg <rohangarg@kubuntu.org> Mon, 11 Nov 2013 17:38:58 +0100
akonadi (1.10.3-1) unstable; urgency=medium
* New upstream release. (Closes: #729615, #716922)
* Update build dependencies.
-- Maximiliano Curia <maxy@debian.org> Wed, 20 Nov 2013 14:53:11 +0100
akonadi (1.10.3-0ubuntu2) trusty; urgency=low
* No change rebuild for Boost 1.54 transition.
-- Dmitrijs Ledkovs <xnox@ubuntu.com> Mon, 21 Oct 2013 13:54:07 +0100
akonadi (1.10.3-0ubuntu1) saucy; urgency=low
* New upstream bug fix release (LP: #1236394)
-- Rohan Garg <rohangarg@kubuntu.org> Mon, 07 Oct 2013 16:39:34 +0200
akonadi (1.10.2-2) unstable; urgency=low
* Rebuild for unstable release.
-- Maximiliano Curia <maxy@debian.org> Tue, 05 Nov 2013 12:54:23 +0100
akonadi (1.10.2-1) experimental; urgency=low
* Update vcs-fields.
* Refresh patch disable_dbus_requiring_tests.
* Update installed files.
* Update libakonadiprotocolinternals1 symbols file.
* Add empty dir in -dev package, to make AkonadiConfig.cmake happy.
-- Maximiliano Curia <maxy@debian.org> Fri, 30 Aug 2013 12:42:10 +0200
akonadi (1.10.2-0ubuntu2) saucy; urgency=low
* Set INSTALL_QSQLITE_IN_QT_PREFIX=TRUE so the sqlite3 driver is installed
in a place where qt4 can find it (LP: #1218820)
-- Philip Muškovac <yofel@kubuntu.org> Wed, 18 Sep 2013 22:54:09 +0200
akonadi (1.10.2-0ubuntu1) saucy; urgency=low
* New upstream bugfix release (LP: #1218847)
-- Howard Chan <smartboyhw@gmail.com> Fri, 30 Aug 2013 19:18:01 +0800
akonadi (1.10.1-0ubuntu1) saucy; urgency=low
* New upstream release
-- Philip Muškovac <yofel@kubuntu.org> Tue, 23 Jul 2013 19:16:46 +0200
akonadi (1.9.80-0ubuntu1) saucy; urgency=low
[ Rohan Garg ]
* New upstream release
- Update symbols
- Install asapcat with akonadi-server for now
- Install notificationmessagev2_p.h with -dev package
- Refresh disable_dbus_requiring_tests.diff
[ Philip Muškovac ]
* libkonadi-dev needs to depend on akonadi-server for the dbus service
-- Rohan Garg <rohangarg@kubuntu.org> Thu, 13 Jun 2013 08:46:15 +0100
akonadi (1.9.2-2) unstable; urgency=low
* Team upload.
* Force the installation of the Qt plugins (such as qsqlite3) within Qt's
plugin directory: (Closes: #708007)
- pass -DINSTALL_QSQLITE_IN_QT_PREFIX=ON to cmake
- adjust akonadi-backend-sqlite.install
- add ${misc:Pre-Depends} in akonadi-backend-sqlite
-- Pino Toscano <pino@debian.org> Fri, 17 May 2013 15:39:30 +0200
akonadi (1.9.2-1) unstable; urgency=low
* New upstream release.
* Bump debhelper build-dep and compat to 9.
* Add myself to the Uploaders field.
* Bump Standards-Version to 3.9.4.
-- Maximiliano Curia <maxy@debian.org> Sat, 11 May 2013 00:57:28 +0200
akonadi (1.9.1-2ubuntu1) saucy; urgency=low
* Merge with debian experimental, remaining changes:
- Add a mysqld-akonadi wrapper script.
- Add apparmor profile for mysqld-akonadi (usr.sbin.mysqld-akonadi).
- Make akonadi-backend-mysql depend on mysql-server-core-5.5 and
mysql-client-core-5.5 instead of mysql-server-core.
- Force dependency on akonadi-backend-mysql for akonadi-server.
-- Philip Muškovac <yofel@kubuntu.org> Tue, 30 Apr 2013 22:39:32 +0200
akonadi (1.9.1-2) experimental; urgency=low
* Merge in the uploads to unstable.
-- Sune Vuorela <sune@debian.org> Tue, 02 Apr 2013 22:52:29 +0200
akonadi (1.9.1-1) experimental; urgency=low
* New upstream release.
[ José Manuel Santamaría Lema ]
* Update disable_dbus_requiring_tests.diff; some tests were added and
some of them need D-Bus.
* Update installed files.
[ Sune Vuorela ]
* Add mysql-server-core to Build-Depends so it can be used by the test suite
-- Sune Vuorela <sune@debian.org> Mon, 25 Mar 2013 17:00:16 +0100
akonadi (1.9.1-0ubuntu2) saucy; urgency=low
* No change rebuild for Boost 1.53 transition.
-- Dmitrijs Ledkovs <dmitrij.ledkov@ubuntu.com> Fri, 26 Apr 2013 19:18:39 +0100
akonadi (1.9.1-0ubuntu1) raring; urgency=low
* New upstream bugfix release
-- Jonathan Riddell <jriddell@ubuntu.com> Thu, 04 Apr 2013 22:49:18 +0100
akonadi (1.9.0-0ubuntu1) raring; urgency=low
* New upstream release
-- Philip Muškovac <yofel@kubuntu.org> Thu, 03 Jan 2013 21:11:34 +0100
akonadi (1.8.80-0ubuntu1) raring; urgency=low
* New upstream beta release
-- Jonathan Riddell <jriddell@ubuntu.com> Fri, 16 Nov 2012 15:16:10 +0000
akonadi (1.8.1-0ubuntu1) raring; urgency=low
* New upstream release
-- Scott Kitterman <scott@kitterman.com> Sat, 03 Nov 2012 23:00:43 -0400
akonadi (1.8.0-0ubuntu1) quantal; urgency=low
* New upstream release
-- Jonathan Riddell <jriddell@ubuntu.com> Thu, 26 Jul 2012 16:04:21 +0100
akonadi (1.7.90-0ubuntu1) quantal; urgency=low
* New upstream beta release
-- Jonathan Riddell <jriddell@ubuntu.com> Mon, 09 Jul 2012 12:09:55 +0100
akonadi (1.7.2-3) unstable; urgency=low
* Team upload.
* akonadi-backend-mysql: depend on a real mysql-server-core-5.5 before the
virtual mysql-server-core. This should help apt in really choosing -mysql
when upgrading from squeeze. (Closes: #686147, #702919)
-- Pino Toscano <pino@debian.org> Tue, 26 Mar 2013 20:02:38 +0100
akonadi (1.7.2-2) unstable; urgency=low
* Team upload.
[ Lisandro Damián Nicanor Pérez Meyer ]
* Change [General] to [%General] in README.Debian (Closes: #688236).
Thanks Alexander Wuerstlein for noticing.
-- Pino Toscano <pino@debian.org> Wed, 05 Dec 2012 11:07:57 +0100
akonadi (1.7.2-1ubuntu1) quantal; urgency=low
* Merge with Debian, remaining changes:
- Add a mysqld-akonadi wrapper script.
- Add apparmor profile for mysqld-akonadi (usr.sbin.mysqld-akonadi).
- Make akonadi-backend-mysql depend on mysql-server-core-5.5 and
mysql-client-core-5.5 instead of mysql-server-core.
- Force dependency on akonadi-backend-mysql for akonadi-server.
-- Jonathan Thomas <echidnaman@kubuntu.org> Thu, 24 May 2012 19:27:56 -0400
akonadi (1.7.2-1) unstable; urgency=low
* New upstream release.
* Drop x11_not_required.diff, no longer needed as internal FindQt4 was
dropped.
* Disable tests which require an active DBus daemon. It is not available on
buildds (patch disable_dbus_requiring_tests.diff).
* Bump Standards-Version to 3.9.3: no changes needed.
-- Modestas Vainius <modax@debian.org> Sat, 12 May 2012 23:41:01 +0300
akonadi (1.7.2-0ubuntu2) quantal; urgency=low
* No change rebuild for boost 1.49 transition
-- Dmitrijs Ledkovs <dmitrij.ledkov@ubuntu.com> Thu, 03 May 2012 20:28:00 +0100
akonadi (1.7.2-0ubuntu1) precise; urgency=low
* New upstream release
-- Philip Muškovac <yofel@kubuntu.org> Tue, 10 Apr 2012 21:52:32 +0200
akonadi (1.7.0-0ubuntu3) precise; urgency=low
* make akonadi-server require the mysql backend. It's the only one really
supported upstream and as the default backend has to be installed.
(LP: #923189)
-- Philip Muškovac <yofel@kubuntu.org> Mon, 09 Apr 2012 18:49:42 +0200
akonadi (1.7.0-0ubuntu2) precise; urgency=low
* Add build-dep on dh-apparmor (LP: #948481)
-- Philip Muškovac <yofel@kubuntu.org> Thu, 08 Mar 2012 22:22:17 +0100
akonadi (1.6.2-2) unstable; urgency=low
* Team upload. Upload to unstable.
[ Sune Vuorela ]
* Kill the odbc package. It won't currently work.
-- Ana Beatriz Guerrero Lopez <ana@debian.org> Mon, 05 Mar 2012 10:09:22 +0100
akonadi (1.7.0-0ubuntu1) precise; urgency=low
* New upstream release
* Remove x11_not_required.diff, file no longer shipped
* Disable test suite in debian/rules, it requires dbus
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 24 Jan 2012 23:43:13 +0000
akonadi (1.6.2-1ubuntu1) precise; urgency=low
* Merge from Debian experimental, remaining changes:
- Add a mysqld-akonadi wrapper script.
- Add apparmor profile for mysqld-akonadi (usr.sbin.mysqld-akonadi).
- Make akonadi-backend-mysql depend on mysql-server-core-5.5 and
mysql-client-core-5.5 instead of mysql-server-core.
- Bump Breaks/Replaces akonadi-sever version to "<< 1.5.3~".
-- Felix Geyer <debfx@ubuntu.com> Sun, 04 Dec 2011 21:06:19 +0100
akonadi (1.6.2-1) experimental; urgency=low
* New upstream release.
[ Felix Geyer ]
* Add a watch file.
* Use DEB_*_MAINT_APPEND instead of setting CFLAGS/CXXFLAGS.
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Thu, 01 Dec 2011 17:18:06 +0100
akonadi (1.6.2-0ubuntu3) precise; urgency=low
* Change dependency on client/server to 5.5
-- Clint Byrum <clint@ubuntu.com> Sun, 27 Nov 2011 01:49:35 -0800
akonadi (1.6.2-0ubuntu2) precise; urgency=low
* Rebuild for libmysqlclient transition
-- Clint Byrum <clint@ubuntu.com> Wed, 23 Nov 2011 23:49:27 -0800
akonadi (1.6.2-0ubuntu1) oneiric; urgency=low
* New upstream bugfix release
-- Scott Kitterman <scott@kitterman.com> Tue, 04 Oct 2011 16:43:57 -0500
akonadi (1.6.1+git110927-0ubuntu1) oneiric; urgency=low
* Update to 1.6 branch snapshot for additional bug fixes
-- Scott Kitterman <scott@kitterman.com> Fri, 30 Sep 2011 06:45:45 -0400
akonadi (1.6.1-0ubuntu1) oneiric; urgency=low
* New upstream bug fix release (LP: #707878)
-- Rohan Garg <rohangarg@kubuntu.org> Fri, 16 Sep 2011 16:09:18 +0200
akonadi (1.6.0-0ubuntu2) oneiric; urgency=low
* No change rebuild due to multi-arch changes in qt4-x11
-- Scott Kitterman <scott@kitterman.com> Thu, 18 Aug 2011 10:38:30 -0400
akonadi (1.6.0-0ubuntu1) oneiric; urgency=low
* New upstream release
-- Philip Muškovac <yofel@kubuntu.org> Sat, 16 Jul 2011 16:41:20 +0200
akonadi (1.5.80-0ubuntu1) oneiric; urgency=low
* New upstrem beta release
- bump debhelper version to fix lintian warning
- refresh libakonadiprotocolinternals1.symbols
-- Philip Muškovac <yofel@kubuntu.org> Thu, 07 Jul 2011 22:25:38 +0200
akonadi (1.5.3-2ubuntu1) oneiric; urgency=low
* Change Vcs-* from kubuntu-members to kubuntu-packagers
* Merge from debian unstable. Remaining changes:
- Use versioned boost build-depends
- Add a mysqld-akonadi wrapper script
- Add apparmor profile for mysqld-akonadi (usr.sbin.mysqld-akonadi)
- Make akonadi-backend-mysql depend on mysql-server-core-5.1 and
mysql-client-core-5.1 instead of mysql-server-core
- Bump Breaks/Replaces akonadi-sever version to "<< 1.5.3~"
-- Scott Kitterman <scott@kitterman.com> Fri, 27 May 2011 23:06:47 -0400
akonadi (1.5.3-2) unstable; urgency=low
[ Pino Toscano ]
* Fix typo in README.Debian. (Closes: #627826)
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Thu, 26 May 2011 00:22:36 +0300
akonadi (1.5.3-1ubuntu1) oneiric; urgency=low
* Merge from Debian experimental, remaining changes:
- Use versioned boost build-depends.
- Add a mysqld-akonadi wrapper script.
- Add apparmor profile for mysqld-akonadi (usr.sbin.mysqld-akonadi).
- Make akonadi-backend-mysql depend on mysql-server-core-5.1 and
mysql-client-core-5.1 instead of mysql-server-core.
- Bump Breaks/Replaces akonadi-sever version to "<< 1.5.3~".
-- Felix Geyer <debfx-pkg@fobos.de> Tue, 24 May 2011 21:04:40 +0200
akonadi (1.5.3-1) experimental; urgency=low
* New upstream release.
-- Modestas Vainius <modax@debian.org> Mon, 09 May 2011 00:50:11 +0300
akonadi (1.5.2-0ubuntu1) natty; urgency=low
* New upstream release.
- Fixes warnings about duplicated agent identifiers. (LP: #740488)
-- Felix Geyer <debfx-pkg@fobos.de> Tue, 05 Apr 2011 17:29:48 +0200
akonadi (1.5.1-2) experimental; urgency=low
* Replace $(overriden_command) with $(overridden_command) in debian/rules.
Requires pkg-kde-tools 0.12.
* Bump Standards-Version to 3.9.2: no changes needed.
* Merge 1.3.1-4 changes:
- Drop 04_socket_location.diff patch, merged upstream.
* Build with -fvisibility=hidden -fvisibility-inlines-hidden.
* Update symbol file: private symbols disappeared after building with hidden
visibility.
-- Modestas Vainius <modax@debian.org> Mon, 02 May 2011 01:40:34 +0300
akonadi (1.5.1-1) experimental; urgency=low
* New upstream release.
[ Modestas Vainius ]
* Point debian/control Vcs fields to the new Git repository.
* Add libsqlite3-dev to build depends. This build has support for SQLite
backend.
* Drop 03_disable_usr_lib_install_rpath.diff patch, no longer needed as
the problem was fixed upstream differently.
* Add new packages for multiple backend split:
- akonadi-backend-mysql - a package which depends on the stuff needed for
MySQL backend (server and Qt module) and installs a configuration file
previously present in akonadi-server;
- akonadi-backend-postgresql - a package which depends on the stuff needed
for PostgreSQL backend. Even if default configuration starts an internal
PostgreSQL server instance, add postgresql package to Recommends because
the latter package enables the daemon system-wide. PostgreSQL needs to be
split to the -core part as MySQL was;
- akonadi-backend-odbc - a package which depends on the stuff needed to
enable Akonadi ODBC backend. It's primarily intended to be used with a
local Virtuoso instance that's started by Nepomuk;
- akonadi-backend-sqlite - a package with improved SQLite driver that is
needed for Akonadi SQLite backend;
* Make akonadi-server on both backends with | relation preferring MySQL for
now. Also suggest both backends.
* Move akonadi-dbg to the end of debian/control.
* Update install files.
* Add README.Debian with extensive information about Akonadi configuration
files and storage backends.
* Bump build dependency to libqt4-dev 4:4.6.0. SQLite backend needs it.
* Drop Replaces from libakonadi-dev for very old pre-4.1 KDE versions.
* Switch to quilt 3.0 format:
- add appropriate debian/source/format;
- remove quilt from Build-Depends;
- remove debian/README.source, no longer necessary.
* Bump Standards-Version to 3.9.1: add Breaks next to Replaces where needed
or replace Conflicts with Breaks respectively,
* Improve passing of MYSQLD_EXECUTABLE flag to cmake.
* Drop 02_hardcode_debian_mysqld_path.diff, not needed any more.
* Drop obsolete (pre-KDE 4.1) Breaks.
* Switch debian/rules engine to qt-kde-team/2/*. Fix FTBFS in the process.
(Closes: #618200)
* Strip sequence numbers from debian/patches/*.
* Install README.Debian to akonadi-server and all backend packages.
* Install README.sqlite to akonadi-backend-sqlite.
* Drop ${shlibs:Depends} from libakonadi-dev Depends.
* Update debian/copyright.
[ José Manuel Santamaría Lema ]
* Rename libakonadiprivate1 as libakonadiprotocolinternals1
(libakonadiprivate.so.1* doesn't exist anymore) and create symbols file.
-- Modestas Vainius <modax@debian.org> Sun, 13 Mar 2011 22:25:05 +0200
akonadi (1.5.1-0ubuntu1) natty; urgency=low
* New upstream release. (LP: #739424)
* Drop 03_disable_usr_lib_install_rpath.diff, fixed upstream.
* Call dh_apparmor instead of providing our own postinst/postrm scripts to
reload the AppArmor profile.
-- Felix Geyer <debfx-pkg@fobos.de> Tue, 22 Mar 2011 18:40:35 +0100
akonadi (1.5.0-0ubuntu2) natty; urgency=low
* Use a wrapper script instead of copying mysqld to mysqld-akonadi.
(LP: #728584)
- Update the AppArmor profile accordingly.
- Drop mysql-server-core-5.1 from build-deps.
-- Felix Geyer <debfx-pkg@fobos.de> Thu, 03 Mar 2011 18:06:42 +0100
akonadi (1.5.0-0ubuntu1) natty; urgency=low
* New upstream release
-- Jonathan Riddell <jriddell@ubuntu.com> Mon, 24 Jan 2011 09:48:32 +0000
akonadi (1.4.95-0ubuntu1) natty; urgency=low
* New upstream release
- Fix install files
-- Rohan Garg <rohangarg@kubuntu.org> Sun, 09 Jan 2011 16:19:52 +0530
akonadi (1.4.90-0ubuntu1) natty; urgency=low
* New upstream release
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 21 Dec 2010 13:57:05 +0000
akonadi (1.4.80-0ubuntu2) natty; urgency=low
* Give up on akonadi-agent-launcher and akonadi-agent-server binaries as a
bad idea
- Remove debian/akonadi-agent-launcher.install and
debian/akonadi-agent-server.install
- Move files to akonadi-server.install
- Remove binaries from debian/control
-- Scott Kitterman <scott@kitterman.com> Tue, 23 Nov 2010 10:10:30 -0500
akonadi (1.4.80-0ubuntu1) natty; urgency=low
* New upstream release to support KDE 4.6 beta 1 packaging
- Add new binary packages for usr/bin/akonadi_agent_server and
usr/bin/akonadi_agent_launcher
- Add org.freedesktop.Akonadi.NotificationSource.xml to
libakonadi-dev.install
- Refresh patches
- Update debian/copyright
* Rename libakonadiprivate1 to libakonadiprotocolinternals1 since the
private library has been removed and only protocolinternals remains
- Update debian/control
- Rename install file and drop remove shared objects
* Drop implicit-it=thumb workaround as it will no longer be needed once
armel is fixed
-- Scott Kitterman <scott@kitterman.com> Mon, 22 Nov 2010 09:32:48 -0500
akonadi (1.4.1-0ubuntu2) natty; urgency=low
* Add CXXFLAGS += -Wa,-mimplicit-it=thumb on armel to fix FTBFS
-- Scott Kitterman <scott@kitterman.com> Mon, 01 Nov 2010 12:14:01 -0400
akonadi (1.4.1-0ubuntu1) natty; urgency=low
* New upstream release
-- Alessandro Ghersi <alessandro-ghersi@kubuntu.org> Fri, 22 Oct 2010 19:14:31 +0200
akonadi (1.4.0-0ubuntu1) maverick; urgency=low
* New upstream release.
-- Harald Sitter <apachelogger@ubuntu.com> Sun, 01 Aug 2010 12:29:08 +0200
akonadi (1.3.90-0ubuntu1) maverick; urgency=low
* New upstream release
- Bump debhelper to 7.3.16 or greater
- Drop quilt from build-depends no longer need with source
format 3.0 (quilt)
-- Alessandro Ghersi <alessandro-ghersi@kubuntu.org> Tue, 06 Jul 2010 02:34:57 +0200
akonadi (1.3.85-0ubuntu1) maverick; urgency=low
* New upstream release
- Update akonadi-server.install
-- Alessandro Ghersi <alessandro-ghersi@kubuntu.org> Sat, 05 Jun 2010 17:13:53 +0200
akonadi (1.3.80-0ubuntu1) maverick; urgency=low
* New upstream release
- Bump libqt4-dev and libsoprano-dev
- Drop kubuntu_01_fix_init.diff no longer need
- Update 03_disable_usr_lib_install_rpath.diff
- Update akonadi-server.install
* Switch to dpkg-source 3.0 (quilt) format
-- Alessandro Ghersi <alessandro-ghersi@kubuntu.org> Wed, 26 May 2010 19:44:52 +0200
akonadi (1.3.1-4) unstable; urgency=low
* Add patch 04_socket_location.diff to allow akonadi-server to run when HOME
is mounted to the network filesystem (Closes: #545139). Thanks to Ansgar
Burchardt for the patch.
-- Modestas Vainius <modax@debian.org> Sat, 30 Apr 2011 12:31:46 +0300
akonadi (1.3.1-3+squeeze1) stable-proposed-updates; urgency=low
* Add patch 04_socket_location.diff to allow akonadi-server to run when HOME
is mounted to the network filesystem (Closes: #545139). Thanks to Ansgar
Burchardt for the patch.
-- Modestas Vainius <modax@debian.org> Sat, 30 Apr 2011 12:50:31 +0300
akonadi (1.3.1-3ubuntu1) maverick; urgency=low
* Merge with Debian Unstable, remaining changes:
- Build-depend on mysql-server-core-5.1
- Use versioned boost build-depends
- Copy mysqld to mysqld-akonadi (rules)
- Make akonadi-server depend on mysql-server-core-5.1 rather than
mysql-server
- Add apparmor profile for mysqld-akonadi (usr.sbin.mysqld-akonadi)
- Add pre and postinst scripts for akonadi-server
- Keep kubuntu_01_fix_init.diff
- Don't apply 02_hardcode_debian_mysqld_path.diff, we set it in our
debian/rules file
* Update KUBUNTU-DEBIAN-DIFFERENCES
-- Jonathan Thomas <echidnaman@kubuntu.org> Mon, 17 May 2010 23:40:04 -0400
akonadi (1.3.1-3) unstable; urgency=low
[ Didier Raboud ]
* Make akonadi-mysql depend on mysql-server-core instead of mysql-server,
thanks to the split made in mysql-5.1. (Closes: #513382)
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Sun, 11 Apr 2010 01:46:38 +0300
akonadi (1.3.1-2) unstable; urgency=low
[ Modestas Vainius ]
* Bump libakonadiprivate1 shlibs with each new upstream release.
* Generate strict local shlibs for libakonadiprivate1: use
library-packages.mk from pkg-kde-tools 0.6.4.
* Add ${misc:Depends} to akonadi-dbg Depends.
* Add 03_disable_usr_lib_install_rpath.diff patch in order to get rid of
/usr/lib RPATH.
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Sat, 06 Mar 2010 01:51:56 +0200
akonadi (1.3.1-1) unstable; urgency=low
* New upstream release.
[ Lisandro Damián Nicanor Pérez Meyer ]
* New upstream release.
* Refresh patches to apply cleanly:
- 01_x11_not_required.diff
- 02_hardcode_debian_mysqld_path.diff
* Fix the list of dbus interfaces files installed by libakonadi-dev.
[ Martin Alfke ]
* Make libakonadiprivate1 depend on akonadi-server
binary version (Closes: #544431)
[ Ana Beatriz Guerrero Lopez ]
* Remove myself from Uploaders.
* Update year on packaging copyright.
[ Modestas Vainius ]
* Change my email address to modax@debian.org in Uploaders field.
* Fix Vcs-Browser URL.
[ Fathi Boudra ]
* Bump Standards-Version to 3.8.4 (no changes needed).
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Sat, 30 Jan 2010 22:09:48 -0300
akonadi (1.3.1-0ubuntu3) lucid; urgency=low
* Set VCS fields to Bazaar branches
* Sync kubuntu_01_fix_init.diff with upstream SVN as per KDE bug 185395.
+ akonadi-server depends on mysql-server-core-5.1 (>= 5.1.41-3ubuntu11)
+ akonadi-server depends on mysql-client-core-5.1 (>= 5.1.41-3ubuntu12)
* Expand apparmor profile to silence apparmor complaints in syslog,
additonally this seems to fix LP: #554514
-- Harald Sitter <apachelogger@ubuntu.com> Mon, 12 Apr 2010 17:13:38 +0200
akonadi (1.3.1-0ubuntu2) lucid; urgency=low
* Add kubuntu_01_fix_init.diff in a mere attemt to fix akonadi startup. This
depends on a fixed verison of mysql (5.1.41-3ubuntu10) (LP: #448705)
+ Unlike upstream this uses the --force cmdl argument to also work without
resolveip, an executable that is currently shipped in the main server
package.
-- Harald Sitter <apachelogger@ubuntu.com> Wed, 31 Mar 2010 22:08:13 +0200
akonadi (1.3.1-0ubuntu1) lucid; urgency=low
* New upstream release
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 09 Feb 2010 21:11:37 +0000
akonadi (1.3.0-0ubuntu1) lucid; urgency=low
* New upstream release
-- Alessandro Ghersi <alessandro-ghersi@kubuntu.org> Wed, 20 Jan 2010 10:27:54 +0100
akonadi (1.2.80-0ubuntu1) lucid; urgency=low
* New upstream release
- Refresh 01_x11_not_required.diff
- Refresh 02_hardcode_debian_notmysqld_path.diff
- Remove kubuntu_01_imap_line_endings.diff fixed by upstream
- Update libakonadi-dev.install
- Bump libboost to 1.40
-- Alessandro Ghersi <alessandro-ghersi@kubuntu.org> Wed, 02 Dec 2009 03:12:37 +0100
akonadi (1.2.1-1ubuntu3) lucid; urgency=low
* Add missing epoch to Qt build-depends version
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 25 Nov 2009 13:46:57 +0000
akonadi (1.2.1-1ubuntu2) lucid; urgency=low
* Rebuild against Qt 4.6 rc 1, which is binary incompatible with 4.6
beta
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 24 Nov 2009 08:59:50 +0000
akonadi (1.2.1-1ubuntu1) lucid; urgency=low
* Merge with Debian testing, remaining changes:
- Build-depend on mysql-server-core-5.1
- Copy mysqld to mysqld-akonadi (rules)
- Make akonadi-server depend on mysql-server-core-5.1 rather than
mysql-server
- Add apparmor profile for mysqld-akonadi (usr.sbin.mysqld-akonadi)
- Add pre and postinst scripts for akonadi-server
- Keep kubuntu_01_imap_line_endings.diff
-- Jonathan Thomas <echidnaman@kubuntu.org> Sat, 07 Nov 2009 17:52:46 -0500
akonadi (1.2.1-1) unstable; urgency=low
* New upstream release.
* Bump Standards-Version to 3.8.3 (no changes needed).
-- Fathi Boudra <fabo@debian.org> Sat, 29 Aug 2009 12:00:51 +0200
akonadi (1.2.1-0ubuntu4) karmic; urgency=low
* Revert previous upload (LP: #418342). Apparently Akonadi
does not like being used with MySQL 5.0. This is probably
because both Qt and Akonadi are built against 5.1, and the
5.1 libraries are apparently unable to access a 5.0 server
part. (LP: #459741)
-- Harald Sitter <apachelogger@ubuntu.com> Mon, 26 Oct 2009 11:11:44 +0100
akonadi (1.2.1-0ubuntu3) karmic; urgency=low
* Don't depend on mysql-server-core-5.1 but mysql-server-core
which is provided by both 5.0 and 5.1 (LP: #418342)
-- Harald Sitter <apachelogger@ubuntu.com> Thu, 22 Oct 2009 21:10:28 +0200
akonadi (1.2.1-0ubuntu2) karmic; urgency=low
* Add kubuntu_01_imap_line_endings.diff from
http://websvn.kde.org:80/trunk/kdesupport/akonadi/server/src/handler
/fetchhelper.cpp?r1=1032262&r2=1032261&pathrev=1032262 as advised by
upstream, 'Follow a literal size with CRLF as specified in the IMAP
RFC 3501'
-- Jonathan Riddell <jriddell@ubuntu.com> Thu, 08 Oct 2009 15:49:57 +0100
akonadi (1.2.1-1) unstable; urgency=low
* New upstream release.
* Bump Standards-Version to 3.8.3 (no changes needed).
-- Fathi Boudra <fabo@debian.org> Sat, 29 Aug 2009 12:00:51 +0200
akonadi (1.2.1-0ubuntu1) karmic; urgency=low
* New upstream release
-- Alessandro Ghersi <alessandro-ghersi@kubuntu.org> Fri, 28 Aug 2009 18:43:17 +0200
akonadi (1.2.0-2ubuntu3) karmic; urgency=low
* Make akonadi-server depend on mysql-server-core-5.1 rather than the whole
mysql-server package
* Update KUBUNTU-DEBIAN-DIFFERENCES to reflect the above so that this does
not happen again in the future
-- Jonathan Thomas <echidnaman@kubuntu.org> Thu, 20 Aug 2009 12:29:59 -0400
akonadi (1.2.0-2ubuntu2) karmic; urgency=low
* Copy rather than hard link mysql
-- Jonathan Riddell <jriddell@ubuntu.com> Thu, 20 Aug 2009 01:05:58 +0100
akonadi (1.2.0-2ubuntu1) karmic; urgency=low
* Merge from Debian Unstable, remaining changes:
+ Build-depend on mysql-server-core-5.1
+ Hardlink mysqld to mysqld-akonadi (rules)
+ Add apparmor profile for mysqld-akonadi (usr.sbin.mysqld-akonadi)
+ Add pre and postinst scripts for akonadi-server
* Transition over to MySQL 5.1, as part of the merge above (LP: #415191)
-- Jonathan Thomas <echidnaman@kubuntu.org> Wed, 19 Aug 2009 08:57:48 -0400
akonadi (1.2.0-2) unstable; urgency=low
+++ Changes by Modestas Vainius:
* Build depend on libmysqlclient-dev rather than libmysqlclient15-dev.
Backports friendly as libmysqlclient-dev is a virtual package in lenny.
(Closes: #541024).
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Tue, 11 Aug 2009 12:58:10 +0300
akonadi (1.2.0-1) unstable; urgency=low
* New upstream release.
-- Ana Beatriz Guerrero Lopez <ana@debian.org> Tue, 04 Aug 2009 09:07:49 +0200
akonadi (1.2.0-0ubuntu1) karmic; urgency=low
* New upstream release:
- bump akonadi version in debian/rules
- bump pkg-kde-tools to 0.4.6
- bump libsoprano-dev to 2.3.0
- bump cdbs to 0.4.56
-- Alessandro Ghersi <alessandro-ghersi@kubuntu.org> Wed, 29 Jul 2009 19:52:18 +0200
akonadi (1.1.95-2) experimental; urgency=low
* Make akonadi-dev depend on boost-dev, as several akonadi headers includes
boost headers.
-- Sune Vuorela <debian@pusling.com> Sat, 11 Jul 2009 23:51:48 +0200
akonadi (1.1.95-1) experimental; urgency=low
* New upstream prerelease.
+++ Changes by George Kiagiadakis:
* Refresh patches.
* Update installed files.
+++ Changes by Sune Vuorela:
* Add lintian override for broken lintian checks in -dbg package
dependencies.
* Bump Standards-Version to 3.8.2. No changes needed.
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Fri, 26 Jun 2009 19:25:36 +0300
akonadi (1.1.95-0ubuntu1) karmic; urgency=low
* New upstream release
- bump akonadi version in debian/rules
- bump libboost-program-options1.35-dev to libboost-program-options1.38-dev
-- Alessandro Ghersi <alessandro-ghersi@kubuntu.org> Wed, 24 Jun 2009 05:14:31 +0200
akonadi (1.1.90-0ubuntu1) karmic; urgency=low
* New upstream release:
- bump akonadi versino in debian/rules
- update libakonadi-dev.install
- refresh 02_hardcode_debian_mysqld_path.diff
-- Steve Stalcup <vorian@ubuntu.com> Thu, 04 Jun 2009 09:47:55 -0400
akonadi (1.1.85-0ubuntu1) karmic; urgency=low
* New upstream release
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 13 May 2009 09:45:47 +0000
akonadi (1.1.2-1ubuntu1) karmic; urgency=low
* Merge from Debian unstable, remaining changes: (LP: #372700)
+ Add mysql-server-5.0 as build dependency
+ Add mysql-server-5.0 as dependency for akonadi-server
+ Hardlink mysqld to mysqld-akonadi (rules)
+ Add apparmor profile for mysqld-akonadi (usr.sbin.mysqld-akonadi)
+ Add pre and postinst scripts for akonadi-server
-- Jonathan Thomas <echidnaman@kubuntu.org> Wed, 06 May 2009 09:09:00 -0400
akonadi (1.1.2-1) unstable; urgency=low
* New upstream release.
+++ Changes by Modestas Vainius:
* Point Debian Vcs URLs to pkg-kde/trunk (new location).
+++ Changes by Fathi Boudra:
* Bump Standards-Version to 3.8.1. No changes needed.
* Update akonadi-dbg package section: debug.
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Fri, 01 May 2009 14:00:31 +0200
akonadi (1.1.1-2ubuntu2) karmic; urgency=low
* Add missing comma to build-depends, fixes FTBFS
-- Jonathan Thomas <echidnaman@kubuntu.org> Tue, 28 Apr 2009 13:21:15 -0400
akonadi (1.1.1-2ubuntu1) karmic; urgency=low
* Merge from Debian unstable, remaining changes: (LP: #367109)
+ Add mysql-server-5.0 as build dependency
+ Add mysql-server-5.0 as dependency for akonadi-server
+ Hardlink mysqld to mysqld-akonadi (rules)
+ Add apparmor profile for mysqld-akonadi (usr.sbin.mysqld-akonadi)
+ Add pre and postinst scripts for akonadi-server
* Update KUBUNTU-DEBAIN-DIFFERENCES
-- Jonathan Thomas <echidnaman@kubuntu.org> Sat, 25 Apr 2009 22:25:00 -0400
akonadi (1.1.1-2) unstable; urgency=low
+++ Changes by Modestas Vainius:
* Switch from internal debian/cdbs/kde.mk to pkg-kde-tools:
- build depend on pkg-kde-tools 0.4;
- remove debian/cdbs directory;
- replace debian/cdbs/kde.mk with
/usr/share/pkg-kde-tools/qt-kde-team/1/debian-qt-kde.mk in debian/rules.
* Remove THIS_SHOULD_GO_TO_UNSTABLE from debian/rules.
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Wed, 18 Feb 2009 23:19:08 +0100
akonadi (1.1.1-1) experimental; urgency=low
* New upstream release.
+++ Changes by Modestas Vainius:
* Bump Standards-Version to 3.8.0: add README.source.
* Build depend on libboost-program-options-dev.
* Bump cmake build depend to 2.6.2.
* Switch to new installgen format.
* Update install files.
* Bump shlibs.
* Make akonadi-server depend on libqt4-sql-mysql.
* Add 02_hardcode_debian_mysqld_path.diff patch to hardcode MySQLd
path instread of depending on mysql-server at build time.
* Bump debian/compat and debhelper build dependency to v7 (to get more
sophisticated debian/tmp handling).
+++ Changes by Ana Beatriz Guerrero Lopez:
* Remove no longer needed lintian override.
* Updating packaging copyright years.
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Sat, 24 Jan 2009 13:37:05 +0100
akonadi (1.1.1-0ubuntu3) jaunty; urgency=low
* Change build-deps to boost 1.35, LP: #297152
-- Jonathan Riddell <jriddell@ubuntu.com> Thu, 29 Jan 2009 12:13:53 +0000
akonadi (1.1.1-1) experimental; urgency=low
* New upstream release.
+++ Changes by Modestas Vainius:
* Bump Standards-Version to 3.8.0: add README.source.
* Build depend on libboost-program-options-dev.
* Bump cmake build depend to 2.6.2.
* Switch to new installgen format.
* Update install files.
* Bump shlibs.
* Make akonadi-server depend on libqt4-sql-mysql.
* Add 02_hardcode_debian_mysqld_path.diff patch to hardcode MySQLd
path instread of depending on mysql-server at build time.
* Bump debian/compat and debhelper build dependency to v7 (to get more
sophisticated debian/tmp handling).
+++ Changes by Ana Beatriz Guerrero Lopez:
* Remove no longer needed lintian override.
* Updating packaging copyright years.
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Sat, 24 Jan 2009 13:37:05 +0100
akonadi (1.1.1-0ubuntu2) jaunty; urgency=low
* akonadi-server depends on mysql-server-core-5.0 not
mysql-server-5.0, full server not needed
-- Jonathan Riddell <jriddell@ubuntu.com> Thu, 22 Jan 2009 10:48:22 +0000
akonadi (1.1.1-0ubuntu1) jaunty; urgency=low
* New upstream release
* Changed build-dep on mysql-server-5.0 to mysql-server-core-5.0
-- Steve Stalcup <vorian@ubuntu.com> Wed, 21 Jan 2009 14:03:55 -0500
akonadi (1.1.0-0ubuntu1) jaunty; urgency=low
* New upstream release
* Add libboost-program-options-dev as build dependency (libboost-dev doesn't
depend on it any longer)
-- Harald Sitter <apachelogger@ubuntu.com> Sat, 03 Jan 2009 17:45:48 +0100
akonadi (1.0.81-0ubuntu2) jaunty; urgency=low
* Really change build dependency
-- Harald Sitter <apachelogger@ubuntu.com> Wed, 17 Dec 2008 16:19:19 +0100
akonadi (1.0.81-0ubuntu1) jaunty; urgency=low
* New upstream release
* Replace kdesdk-scripts build dependency with pkg-kde-tools (files got moved)
-- Harald Sitter <apachelogger@ubuntu.com> Wed, 17 Dec 2008 14:38:55 +0100
akonadi (1.0.80-0ubuntu1) jaunty; urgency=low
* New upstream release
* Use kde4.mk from cdbs rather than embedded debian/cdbs
+ Build depend on kdesdk-scripts for kde4.mk
* Remove obsolete THIS_SHOULD_GO_TO_UNSTABLE=1 from debian/rules
* Add new build dependency on libboost-dev
-- Jonathan Thomas <echidnaman@kubuntu.org> Sun, 23 Nov 2008 12:33:35 +0100
akonadi (1.0.0-2ubuntu2) jaunty; urgency=low
* Remove kubuntu_01_mysqldakonadi.diff,
set -DMYSQLD_EXECUTABLE=/usr/sbin/mysqld-akonadi
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 05 Nov 2008 19:57:19 +0000
akonadi (1.0.0-2ubuntu1) jaunty; urgency=low
* Merge with Debian, remaining changes:
- Make akonadi-server depend on libqt4-sql-mysql
- Add mysql-server-5.0 as build dependency
- Add mysql-server-5.0 as dependency for akonadi-server
- Add kubuntu_01_mysqldakonadi.diff ensuring that akonadiserver uses
mysqld-akonadi instead of mysqld itself (to bypass apparmor)
- Hardlink mysqld to mysqld-akonadi (rules)
- Add apparmor profile for mysqld-akonadi (usr.sbin.mysqld-akonadi)
- Add pre and postinst scripts for akonadi-server
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 05 Nov 2008 16:35:03 +0000
akonadi (1.0.0-2) unstable; urgency=low
+++ Changes by Ana Beatriz Guerrero Lopez:
* Make libakonadi-dev depend on libakonadiprivate1 instead of
libakonadiprivate0.
+++ Changes by Sune Vuorela:
* Copyright file. Thanks Thomas.
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Thu, 24 Jul 2008 16:35:45 +0200
akonadi (1.0.0-1) unstable; urgency=low
* New upstream release.
+++ Changes by Modestas Vainius:
* Update debian/copyright: download URL and copyright/license check.
* libakonadiprivate SONAME was changed to 1. Rename library package, update
debian/libakonadiprivate* files, update control and rules.
* Make akonadi-server depend on mysql-server.
* libakonadiprivate suggests akonadi-server instead of Recommends.
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Wed, 23 Jul 2008 20:27:52 +0300
akonadi (0.82.0-1) unstable; urgency=low
* New upstream snapshot.
* Protocol changed in akonadi, add appropriate conflicts.
* Hardcode mysqld path in debian/rules.
-- Sune Vuorela <debian@pusling.com> Fri, 27 Jun 2008 19:30:34 +0200
akonadi (1.0.0-0ubuntu5) intrepid; urgency=low
* Reprofile mysqld-akonadi (LP: #280404)
-- Harald Sitter <apachelogger@ubuntu.com> Thu, 09 Oct 2008 16:20:47 +0200
akonadi (1.0.0-0ubuntu4) intrepid; urgency=low
* Fix duplicated variable in akonadiserver apparmor profile
(LP: #271643)
-- Steve Beattie <sbeattie@ubuntu.com> Mon, 06 Oct 2008 20:53:43 -0700
akonadi (1.0.0-0ubuntu3) intrepid; urgency=low
* Apparmor shouldn't hate akonadiserver when it tries to create directories
(also add locking permissions in case it's necessary some day)
* Make the Apparmor profile also work as root
* Add postinst and postrm for akonadi-server, invoking an apparmor reload to
get immediate access permissions for the daemon
-- Harald Sitter <apachelogger@ubuntu.com> Fri, 05 Sep 2008 16:44:44 +0200
akonadi (1.0.0-0ubuntu2) intrepid; urgency=low
* Add akonadi-server dependency on libqt4-sql-mysql
-- Harald Sitter <apachelogger@ubuntu.com> Tue, 19 Aug 2008 00:05:05 +0200
akonadi (1.0.0-0ubuntu1) intrepid; urgency=low
* New upstream release
* libakonadiprivate0 -> libakonadiprivate1
-- Harald Sitter <apachelogger@ubuntu.com> Thu, 24 Jul 2008 02:21:18 +0200
akonadi (0.82.0-0ubuntu3) intrepid; urgency=low
* libakonadiprivate0 suggests not recommends akonadi-server
-- Jonathan Riddell <jriddell@ubuntu.com> Fri, 18 Jul 2008 09:31:54 +0100
akonadi (0.82.0-0ubuntu2) intrepid; urgency=low
* Add mysql-server-5.0 as build dependency
* Add mysql-server-5.0 as dependency for akonadi-server
* Add kubuntu_01_mysqldakonadi.diff ensuring that akonadiserver uses
mysqld-akonadi instead of mysqld itself (to bypass apparmor)
* Hardlink mysqld to mysqld-akonadi
* Add apparmor profile for mysqld-akonadi
* Bump Standards-Version to 3.8.0
-- Harald Sitter <apachelogger@ubuntu.com> Thu, 26 Jun 2008 14:48:49 +0200
akonadi (0.82.0-0ubuntu1) intrepid; urgency=low
* New upstream beta release
-- Jonathan Riddell <jriddell@ubuntu.com> Thu, 19 Jun 2008 14:03:43 +0000
akonadi (0.81.0-1) experimental; urgency=low
* New upstream snapshot.
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Thu, 22 May 2008 11:22:26 +0200
akonadi (0.80.0+svn807399-1) experimental; urgency=low
* New upstream development snapshot:
- The latest upstream commit is r807399 by qbast
- Date: Tue May 13 19:03:19 2008 UTC
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Fri, 16 May 2008 12:23:43 +0200
akonadi (0.80.0+svn804999-1) experimental; urgency=low
* New upstream development snapshot:
- The latest upstream commit is r804999 by mlaurent
- Date: Wed May 7 10:59:48 2008 UTC
+++ Changes by Modestas Vainius:
* Corrections to *.install files:
- libakonadi-dev.install: 12 new file(s) added; 12 file(s) removed;
- akonadi-server.install: 1 new file(s) added; 1 file(s) removed;
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Mon, 05 May 2008 21:13:37 +0300
akonadi (0.80.0+svn802602-1) experimental; urgency=low
* New upstream development snapshot:
- The latest upstream commit is r802602 by toma
- Date: Wed, 30 Apr 2008 08:45:32 -0000
+++ Changes by Sune Vuorela
* Update debian/copyright.
+++ Changes by Modestas Vainius:
* Build depend on automoc.
* Add akonadi.pc, suggest pkg-config.
+++ Changes by Armin Berres:
* Add replaces to libakonadi-dev, to make it possible to install it before
upgrading kdepimlibs.
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Wed, 30 Apr 2008 11:40:52 +0300
akonadi (0.80.0-1) experimental; urgency=low
+++ Changes by Sune Vuorela:
* Initial packaging.
* Split from unuploaded kdepim.
+++ Changes by Ana Beatriz Guerrero Lopez:
* Rework descriptions and add Homepage field.
+++ Changes by Modestas Vainius:
* Patch FindQt4.cmake to make X11 optional.
* Add myself to uploaders.
* Add installgen files.
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Fri, 25 Apr 2008 16:29:05 +0300
|