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
|
evolution-data-server (2.30.3-2+squeeze1) stable; urgency=low
* Add 02_data_book_respond_get_changes_missing_array_add.patch, to fix
e_book_get_changes() not returning any changes. Bug reported and patch
fished in upstream Git by Chris Frey. Thanks a lot!
(closes: #641898, #658445)
-- Jordi Mallach <jordi@debian.org> Wed, 28 Mar 2012 20:21:19 +0200
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
|