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
|
enigmail (2:2.2.4-0.2~deb10u1) buster; urgency=medium
* Non-maintainer upload.
* Rebuild for buster.
* Don't run tests, the build dependency eslint is not in buster.
-- Adrian Bunk <bunk@debian.org> Fri, 27 Nov 2020 15:47:11 +0200
enigmail (2:2.2.4-0.2) unstable; urgency=medium
* Non-maintainer upload
[ Olivier Tilloy ]
* build-depend on eslint and node-text-table to have tests run at build time
and add a patch to fix problems raised by it
- d/p/0013-fix-eslint-errors.patch
* remove obsolete autopkgtests
[ Michael Biebl ]
* mark eslint and node-text-table build-depends as <!nocheck>
-- Michael Biebl <biebl@debian.org> Wed, 04 Nov 2020 11:49:49 +0100
enigmail (2:2.2.4-0.1) unstable; urgency=medium
* Non-maintainer upload
[ Gregor Riepl ]
* new upstream release (Closes: #970111)
* this version contains a migration wizard for converting existing
enigmail configurations to the built-in openpgp support in thunderbird
* it will no longer be maintained when thunderbird 78+ enters stable
-- Michael Biebl <biebl@debian.org> Tue, 20 Oct 2020 17:04:23 +0200
enigmail (2:2.1.6+ds1-1) unstable; urgency=medium
* new upstream release
* drop patches already applied upstream
* include more patches from upstream
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Sat, 11 Apr 2020 21:43:29 -0400
enigmail (2:2.1.5+ds1-1) unstable; urgency=medium
* new upstream release
* drop patches already upstreamed
* drop workaround for util/Preprocessor.py, since it is not used any longer
* refresh patches
* import bugfixes from upstream
* fix parallel build
* drop unnecessary debian/source/include-binaries
* drop shlibs:Depends, since enigmail is now arch: all
* standards-version: bump to 4.5.0 (no changes needed)
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Wed, 22 Jan 2020 14:52:18 -0500
enigmail (2:2.1.3+ds1-4) unstable; urgency=medium
* convert to python3
* convert unit tests to python3 as well
* wrap-and-sort -ast
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Sat, 09 Nov 2019 15:31:55 -0500
enigmail (2:2.1.3+ds1-3) unstable; urgency=medium
* d/tests: permit stderr on tbird-sqlite
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Fri, 08 Nov 2019 18:53:42 -0500
enigmail (2:2.1.3+ds1-2) unstable; urgency=medium
* Address autopkgtest failures (Closes: #944216)
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Thu, 07 Nov 2019 20:44:22 -0500
enigmail (2:2.1.3+ds1-1) unstable; urgency=medium
* new upstream version (closes: #933832)
* prepare to exclude more pieces of OpenPGP.js from upstream
* upstream renamed the openpgp.worker javascript file
* standards-version: bump to 4.4.1 (no changes needed)
* drop mozilla-devscripts due to lack of install.rdf
* strip out config.guess and config.sub when importing orig tarballs
* refresh patches
* strip even more OpenPGP.js when building
* build in build-tb/ instead of build/
* d/copyright: drop unnecessary stanzas
* enigmail 2.1.3 needs thunderbird 68
* d/run-tests: adapt to enigmail 2.1 test practices
* use thunderbird --headless and rely on main.js to identify jsunit test
* Avoid testing dependency on X11 for sqlite
* ensure that we see some output when testing.
* JSUnit is provided globally if jsunit 0.2.2 is installed
* make unit test run without xvfb
* always use system config.{guess,sub}
* whittle down errors in the test suite
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Tue, 05 Nov 2019 23:33:42 -0500
enigmail (2:2.0.12+ds1-1) unstable; urgency=medium
* new upstream release
* refresh patches, dropping those already upstream
* Standards-Version: bump to 4.4.0 (no changes needed)
* move to debhelper 12
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Fri, 12 Jul 2019 07:53:20 -0400
enigmail (2:2.0.11+ds1-2) unstable; urgency=medium
* minimize legacy-display protected headers for encrypted mails
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Thu, 30 May 2019 15:40:57 -0400
enigmail (2:2.0.11+ds1-1) unstable; urgency=medium
* new upstream release
* refresh patches
* use the older import-show with --dry-run instead of show-only
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Thu, 23 May 2019 17:06:35 -0400
enigmail (2:2.0.10+ds1-1) unstable; urgency=medium
* new upstream release
* refresh patches, dropping those already upstream
* cherry-pick .da locale bugfix from upstream
* standards-version: bump to 4.3.0 (no changes needed)
* note correct permissive licensing for appstream metadata
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Mon, 15 Apr 2019 22:56:15 -0400
enigmail (2:2.0.9+ds1-2) unstable; urgency=medium
* avoid spoofed HTTP authentication prompts during WKD
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Sun, 16 Dec 2018 10:01:03 -0500
enigmail (2:2.0.9+ds1-1) unstable; urgency=medium
* new upstream release
* refresh patches (majority adopted upstream already)
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Thu, 13 Dec 2018 17:27:42 -0500
enigmail (2:2.0.8-5) unstable; urgency=medium
* avoid auto-update mechanisms during autopkgtest
* more cleanup fixes for enigmail test suite
* avoid touching the GnuPG keyring when parsing unknown keys.
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Thu, 04 Oct 2018 23:48:10 -0500
enigmail (2:2.0.8-4) unstable; urgency=medium
* disable telemetry during autopkgtest
* add times.json to the autopkgtest default profile.
* Drop enigmail plugin from autopkgtest jsunit/sqlite test
* create simple profile during sqlite autopkgtest
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Tue, 02 Oct 2018 11:12:57 -0500
enigmail (2:2.0.8-3) unstable; urgency=medium
* Avoid stderr on sqlite test during autopkgtest.
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Mon, 01 Oct 2018 18:02:24 -0500
enigmail (2:2.0.8-2) unstable; urgency=medium
* refresh patches
* fix minimal key generation (pushed upstream, not yet released)
* drop "Fix test in streams-test.js" (TB 52 → 60 changes result?)
* Test autocrypt-style key minimization (pushed upstream, not yet
released)
* drop "correct keyserverUris" change (maybe also TB 52 → 60)
* import minor bugfixes from upstream
* prepare subprocesses to handle multiple file descriptors
* complete transition from OpenPGP.js to GnuPG (Closes: #908510)
* Standards-Version: bump to 4.2.1 (no changes needed)
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Sun, 30 Sep 2018 17:55:02 -0500
enigmail (2:2.0.8-1) unstable; urgency=medium
* New upstream version (closes: 907786)
-- Willi Mann <willi@debian.org> Sun, 02 Sep 2018 20:48:02 +0200
enigmail (2:2.0.7+ds1-1) unstable; urgency=medium
* New repacked upstream tarball:
- strip OpenPGP.js (Closes: 901556)
- Remove windows binaries too
* fix Vcs-Git to point to debian/master
* test suite: show the state of prefs.js after tests are run
* d/copyright: no need for OpenPGP.js any more.
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Tue, 10 Jul 2018 01:46:58 -0400
enigmail (2:2.0.7-11) unstable; urgency=medium
* avoid using and shippiing OpenPGP.js since we cannot build it from source
* update dependency on GnuPG to account for important bugfixes needed
to replace OpenPGP.js
* Standards-Version: bump to 4.1.5 (no changes needed)
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Thu, 05 Jul 2018 12:22:02 -0400
enigmail (2:2.0.7-10) unstable; urgency=medium
* drop build-deps on thunderbird, gpg, etc since unit tests are runtime-only
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Wed, 04 Jul 2018 17:17:17 -0400
enigmail (2:2.0.7-9) unstable; urgency=medium
* retry connections to autocrypt.sqlite if they fail busy
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Tue, 03 Jul 2018 19:19:52 -0400
enigmail (2:2.0.7-8) unstable; urgency=medium
* simplify autocrypt error handling
* fix output in unit-tests (thanks, elbrus)
* add tbird-sqlite test to autopkgtest suite
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Tue, 03 Jul 2018 00:12:14 -0400
enigmail (2:2.0.7-7) unstable; urgency=medium
* more debugging to try to see what is going wrong with the autocrypt test
* unit tests: dump the contents of the enigmail autocrypt database
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Sun, 24 Jun 2018 20:09:41 -0400
enigmail (2:2.0.7-6) unstable; urgency=medium
* clarify autocrypt errors in the test suite
* make build reproducible (closes: #901611)
* autopkgtest: use python, not python2
* avoid requiring zip for the test suite
* Permit stderr during autopkgtest
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Fri, 22 Jun 2018 00:09:56 -0400
enigmail (2:2.0.7-5) unstable; urgency=medium
* d/run-tests: avoid bashism
* ensure that the autopkgtest has a sensible configuration
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Thu, 21 Jun 2018 13:58:50 -0400
enigmail (2:2.0.7-4) unstable; urgency=medium
* drop unit tests from buildd again, due to timeout
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Wed, 20 Jun 2018 15:20:01 -0400
enigmail (2:2.0.7-3) unstable; urgency=medium
* make test suite more robust (including fixes from upstream)
* Improve testing (including autopkgtest)
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Wed, 20 Jun 2018 08:54:31 -0400
enigmail (2:2.0.7-2) unstable; urgency=medium
* acknowledge accidental move to unstable (oops)
(closes: #888897, #898630)
* skip unit tests for now, since they cause build failures
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Thu, 14 Jun 2018 13:06:56 -0400
enigmail (2:2.0.7-1) unstable; urgency=medium
* new upsteam release
fixes CVE-2018-12020, CVE-2018-12019
* try running tests under xvfb-run
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Thu, 14 Jun 2018 02:37:07 -0400
enigmail (2:2.0.6.1-4) unstable; urgency=medium
* force creation of /tmp/.X11-unix when running test suite
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Sun, 10 Jun 2018 23:36:08 -0400
enigmail (2:2.0.6.1-3) unstable; urgency=medium
* debugging /tmp to understand test suite failure on buildd
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Sun, 10 Jun 2018 17:55:46 -0400
enigmail (2:2.0.6.1-2) unstable; urgency=medium
* set a specific XAUTHORITY file during test suite
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Fri, 08 Jun 2018 18:59:04 -0400
enigmail (2:2.0.6.1-1) experimental; urgency=medium
* New upstream release
* actually run unit tests during build
* fix test suite
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Wed, 06 Jun 2018 18:38:51 -0400
enigmail (2:2.0.6-1) experimental; urgency=medium
* New upstream release
* drop patch already upstream
* refresh patches
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Tue, 29 May 2018 18:34:09 -0400
enigmail (2:2.0.5-1) experimental; urgency=medium
* New upstream release
* refresh patches
* fix error string about MDC
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Mon, 21 May 2018 14:19:19 -0400
enigmail (2:2.0.4-1) experimental; urgency=medium
* New upstream release
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Wed, 16 May 2018 13:37:47 -0400
enigmail (2:2.0.2-1) experimental; urgency=medium
* New upstream release
* drop patches already upstream
* refresh patches
* Standards-Version: bump to 4.1.4 (no changes needed)
* Rules-Requires-Root: no
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Fri, 13 Apr 2018 08:34:02 -0400
enigmail (2:2.0.1-1) experimental; urgency=medium
* new upstream release
* drop patches already applied upstream
* refresh patches
* cherry-pick patches from upstream
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Tue, 03 Apr 2018 10:17:02 -0400
enigmail (2:2.0-1) experimental; urgency=medium
* new upstream release
* drop patches already upstream
* refresh patches
* cherry-pick bug-fixes from upstream
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Fri, 30 Mar 2018 12:35:33 -0400
enigmail (2:2.0~beta2-1) experimental; urgency=medium
* convert to DEP-14 branch naming schemes
* point to upstream-experimental branch
* drop patches applied upstream
* import bugfix patches from upstream
* Avoid auto-download of pEpEngine (Closes: #891882)
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Wed, 07 Mar 2018 11:36:44 +0100
enigmail (2:2.0~beta1-1) experimental; urgency=medium
* new beta release (to experimental)
* point to experimental branches in packaging repositories
* refresh patches (drop re-certifying expired certs, already upstream)
* import patches from upstream
* d/watch: look for beta releases
* clean up package build date
* d/missing-sources: workaround: include sources for OpenPGP.js
* d/copyright: note OpenPGP.js licensing
* avoid failures on parallel builds
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Wed, 14 Feb 2018 18:44:56 -0500
enigmail (2:1.9.9-2) unstable; urgency=medium
* move to debhelper 11
* standards-version: bump to 4.1.3 (no changes needed)
* d/control: move Vcs-* to salsa.debian.org
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Tue, 30 Jan 2018 23:02:35 -0500
enigmail (2:1.9.9-1) unstable; urgency=medium
* new upstream release
* Standards-Version: bump to 4.1.2 (no changes needed)
* drop patch already upstreamed
* debian/changelog: drop trailing whitespace
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Fri, 15 Dec 2017 16:06:41 -0500
enigmail (2:1.9.8.3-1) unstable; urgency=medium
* New upstream release
* Standards-Version: bump to 4.1.1 (no changes needed)
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Mon, 02 Oct 2017 12:58:22 -0700
enigmail (2:1.9.8.2-2) unstable; urgency=medium
* fix memoryhole protected header force-display part
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Thu, 28 Sep 2017 13:28:39 -0400
enigmail (2:1.9.8.2-1) unstable; urgency=medium
* New upstream bugfix release
* refresh patches
* clean up debian/copyright
* clean up licensing in About dialog box (from upstream)
* Standards-Version: bump to 4.1.0 (no changes needed)
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Thu, 07 Sep 2017 12:41:27 -0400
enigmail (2:1.9.8.1-1) unstable; urgency=medium
* new upstream release
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Tue, 11 Jul 2017 18:53:06 -0400
enigmail (2:1.9.8-1) unstable; urgency=medium
* New upstream release.
* Standards-Version to 4.0.0 (no changes needed)
* use dpkg/pkg-info.mk instead of dpkg-parsechangelog
* use wrap-and-sort -ast
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Wed, 05 Jul 2017 07:31:45 -0700
enigmail (2:1.9.7-2) unstable; urgency=medium
* enable re-certifying keys with expired certs (Closes: #863273)
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Mon, 15 May 2017 14:52:57 -0400
enigmail (2:1.9.7-1) unstable; urgency=medium
* new upstream bugfix release
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Sun, 14 May 2017 09:06:48 -0400
enigmail (2:1.9.6-2) unstable; urgency=medium
* pulled a bugfix from upstream, refreshed patches
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Wed, 16 Nov 2016 07:30:05 +0900
enigmail (2:1.9.6-1) unstable; urgency=medium
* new upstream release
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Sun, 06 Nov 2016 17:27:51 -0500
enigmail (2:1.9.5-7) unstable; urgency=medium
* fix "exchange repair" variant format of e-mail
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Tue, 01 Nov 2016 13:48:33 -0400
enigmail (2:1.9.5-6) unstable; urgency=medium
* refresh patches from upstream enigmail-1.9-branch
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Mon, 31 Oct 2016 11:53:16 -0400
enigmail (2:1.9.5-5) unstable; urgency=medium
* fix query for getKeyFileType (Closes: #842212)
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Thu, 27 Oct 2016 11:08:05 -0400
enigmail (2:1.9.5-4) unstable; urgency=medium
* avoid parallel build failures
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Mon, 24 Oct 2016 14:48:38 -0400
enigmail (2:1.9.5-3) unstable; urgency=medium
* more patches from upstream
* bump to debhelper 10 (no changes needed)
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Wed, 19 Oct 2016 13:43:43 -0400
enigmail (2:1.9.5-2) unstable; urgency=medium
* include two patches from upstream
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Tue, 13 Sep 2016 00:29:56 +0200
enigmail (2:1.9.5-1) unstable; urgency=medium
* new upstream release
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Tue, 06 Sep 2016 01:11:28 -0400
enigmail (2:1.9.4-1) unstable; urgency=medium
* new upstream release
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Tue, 05 Jul 2016 15:20:07 -0400
enigmail (2:1.9.3-2) unstable; urgency=medium
* pulled more fixes from upstream
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Mon, 27 Jun 2016 15:52:03 -0400
enigmail (2:1.9.3-1) unstable; urgency=medium
* new upstream release
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Fri, 03 Jun 2016 15:25:05 -0400
enigmail (2:1.9.2-1) unstable; urgency=medium
* new upstream release
* drop old upstream patches, pull more fixes from upstream
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Thu, 26 May 2016 16:22:26 -0400
enigmail (2:1.9.1-2) unstable; urgency=medium
* changed dependencies to acknowledge newer versions of gnupg.
* bumped Standards-Version to 3.9.8 (no changes needed)
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Tue, 19 Apr 2016 16:45:04 -0400
enigmail (2:1.9.1-1) unstable; urgency=medium
* new upstream release
* incorporated some additional minor patches from upstream's
enigmial-1.9-branch as well.
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Mon, 28 Mar 2016 18:10:35 -0400
enigmail (2:1.9-1) unstable; urgency=medium
* new upstream release
* include upstream fix for excessive dumping
* bumped Standards-Version to 3.9.7 (no changes needed)
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Wed, 24 Feb 2016 11:24:44 -0500
enigmail (2:1.9~beta2+16.gd99b-1) experimental; urgency=medium
* new upstream snapshot
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Tue, 02 Feb 2016 10:48:42 -0500
enigmail (2:1.9~beta2-1) experimental; urgency=medium
* new upstream beta release.
* depend directly on gnupg2 -- 1.9 and later won't work with gpg1.
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Fri, 08 Jan 2016 06:55:32 -0800
enigmail (2:1.9~beta1-1) experimental; urgency=medium
* package new upstream beta for experimental.
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Fri, 09 Oct 2015 11:57:28 -0400
enigmail (2:1.8.2-4) unstable; urgency=medium
* pass through {GTK,QT}_IM_MODULE, XMODIFIERS, and
DBUS_SESSION_BUS_ADDRESS so that modern pinentry works. (Closes: #794627)
* correct reported version number of enigmail
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Thu, 20 Aug 2015 00:23:48 +0200
enigmail (2:1.8.2-3) unstable; urgency=medium
* Reproducibility:
- make build date use $SOURCE_DATE_EPOCH when available
- sort keys for perl-generated .dtd files
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Tue, 07 Jul 2015 15:48:24 -0400
enigmail (2:1.8.2-2) unstable; urgency=medium
* upload to unstable.
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Wed, 29 Apr 2015 19:22:15 -0400
enigmail (2:1.8.2-1) experimental; urgency=medium
* New upstream release.
* More strongly encourage the use of gnupg2 in Depends and Recommends;
enigmail 1.9 will make gnupg 2.x a requirement.
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Fri, 03 Apr 2015 08:57:40 -0400
enigmail (2:1.8.1-1) experimental; urgency=medium
* New upstream release.
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Sat, 28 Mar 2015 15:06:52 -0400
enigmail (2:1.8-1) experimental; urgency=medium
* New Upstream Release.
* move from autotools-dev to dh-autoreconf
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Tue, 17 Mar 2015 16:57:48 -0400
enigmail (2:1.7.2-3) unstable; urgency=medium
* d/rules - clean: Fake config/autoconf.mk if it doesn't exist, don't call
configure. Fixes FTBFS on ppc64el. closes: #760845
* Make enigmail use the right XPCOM_TARGET name on ppc64 archs.
-- Willi Mann <willi@debian.org> Sun, 23 Nov 2014 15:47:07 +0100
enigmail (2:1.7.2-2) unstable; urgency=medium
* Update config.* files by using autotools-dev. closes: #760845
* Update Standards-Version 3.9.5 -> 3.9.6
* Make enigmail use the right XPCOM_TARGET name on arm{el,hf}, powerpc, and
mipsel. Closes: #765937 (hopefully)
-- Willi Mann <willi@debian.org> Sun, 02 Nov 2014 19:12:49 +0100
enigmail (2:1.7.2-1) unstable; urgency=medium
* Imported Upstream version 1.7.2
- Fixes CVE-2014-5369 "an email with only Bcc recipients is sent in
plain text"
* Drop configure versioning patch
-- Willi Mann <willi@debian.org> Sun, 31 Aug 2014 18:25:45 +0200
enigmail (2:1.7-1) unstable; urgency=medium
* New upstream release
* move to unstable
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Fri, 11 Jul 2014 11:48:25 -0400
enigmail (2:1.7~git0.20140707-1) experimental; urgency=medium
* upstream 1.7 beta release
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Mon, 07 Jul 2014 17:24:00 -0400
enigmail (2:1.6+git0.20140323-2) unstable; urgency=medium
* clean up debian/copyright
* move to unstable after extensive use.
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Mon, 21 Apr 2014 14:03:43 -0400
enigmail (2:1.6+git0.20140323-1) experimental; urgency=low
* new snapshot release from upstream
- radically simplify debian/rules to use new upstream build system
- builds only against icedove 24 or later (Closes: #742135)
- drop all patches except for PGP/MIME default; adopted or
obsoleted upstream
* bumped Standards-Version to 3.9.5 (no changes needed)
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Tue, 25 Mar 2014 10:06:58 -0400
enigmail (2:1.6-4) unstable; urgency=low
* function properly on GNU/kFreeBSD (Closes: #726517)
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Thu, 14 Nov 2013 03:10:20 -0500
enigmail (2:1.6-3) unstable; urgency=low
* drop -fstack-protector and -Wcast-align from ia64 builds
* use g++ for linking libenigmime.so
* fix genxpi for GNU/kFreeBSD
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Wed, 13 Nov 2013 02:53:56 -0500
enigmail (2:1.6-2) unstable; urgency=low
* re-enable support for icedove 17
* change maintainer to pkg-mozext-maintainers
* release to unstable
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Tue, 12 Nov 2013 13:05:47 -0500
enigmail (2:1.6-1) experimental; urgency=low
* new upstream version.
(Closes: #728099, #729245, #729246)
* overhaul packaging for simplification
(temporarily dropping support for icedove < 19)
(Closes: #729001)
* debian/copyright: make machine-readable
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Sat, 09 Nov 2013 00:21:28 -0500
enigmail (2:1.5.2+id17-1) unstable; urgency=low
* New upstream version.
* Refresh patches, drop
- Fix-upstream-version-in-install.rdf.patch, fixed upstream
- Fix-for-false-positives-in-signature-verification.patch, was already
upstream
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Sun, 15 Sep 2013 07:54:52 -0400
enigmail (2:1.5.1+id17-4) unstable; urgency=low
* Add patch to fix false positives on signature verification
-- Willi Mann <willi@debian.org> Mon, 08 Jul 2013 18:39:07 +0200
enigmail (2:1.5.1+id17-3) unstable; urgency=low
* Upload to unstable
* d/control: Update Homepage: field and put it into general paragraph
* d/control: Update Standards-Version: 3.9.3 -> 3.9.4
-- Willi Mann <willi@debian.org> Mon, 20 May 2013 12:16:19 +0200
enigmail (2:1.5.1+id17-2) experimental; urgency=low
* Add patch to fix upstream version in install.rdf (1.6a1pre -> 1.5.1,
closes: #700890)
* Add Recommends on gnupg-agent (closes: #700114)
* Add patch to support multiarch python during build process
(closes: #704691, thanks to Robie Basak)
-- Willi Mann <willi@debian.org> Fri, 03 May 2013 19:20:19 +0200
enigmail (2:1.5.1+id17-1) experimental; urgency=low
* Imported Upstream version 1.5.1+id17
* Refresh patches, drop
- avoid-truncation-of-last-line.patch (fixed upstream differently)
- fix-non-ascii-inline.patch (included upstream)
* Prepare snapshot changelog
-- Willi Mann <willi@debian.org> Thu, 07 Feb 2013 18:29:55 +0100
enigmail (2:1.5.0+id17-2) experimental; urgency=low
* avoid truncating the last lines of PGP/MIME decrypted messages
(Closes: #698031)
* added myself to uploaders.
* switch packaging to 3.0 (quilt)
* update to debhelper 9
* default experimental packaging to use PGP/MIME (Closes: #698084)
* fix display of non-ASCII characters in some inline PGP messages
(Closes: #698080)
* avoid clearing CFLAGS and LDFLAGs when building binary components
(see https://wiki.debian.org/Hardening)
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Thu, 24 Jan 2013 21:02:23 -0500
enigmail (2:1.5.0+id17-1) experimental; urgency=low
* Imported Upstream version 1.5.0+id17 (closes: #696884)
* Refresh patches, get rid of ipc_rename and install.rdf patch, no longer needed
-- Willi Mann <willi@debian.org> Sat, 29 Dec 2012 10:36:08 +0100
enigmail (2:1.4.6+id17-1) experimental; urgency=low
* Imported Upstream version 1.4.6+id17
- fixes incompatibility with icedove 17 (closes: #695186)
* Refresh patches, drop fix-xpidl-path patch as patch no longer applies
* d/rules: --disable-webrtc to really avoid webm dependencies
* Add patch that adds --cachedir=. to xpidl calls
* Bump build-depends on icedove-dev to 17
* install.rdf: Add patch to depend on at least icedove 17
-- Willi Mann <willi@debian.org> Sat, 15 Dec 2012 08:46:03 +0100
enigmail (2:1.4.6+id16-1) experimental; urgency=low
* Imported Upstream version 1.4.6+id16
-- Willi Mann <willi@debian.org> Sun, 11 Nov 2012 11:31:04 +0100
enigmail (2:1.4.5+id16-1) experimental; urgency=low
* pack-upstream.sh: Add script to properly pack tarball
* Imported Upstream version 1.4.5+id16 (closes: #692062)
* d/control: Update dependencies
* Refresh patches
-- Willi Mann <willi@debian.org> Tue, 06 Nov 2012 22:58:32 +0100
enigmail (2:1.4.1exp-1) experimental; urgency=low
* Imported Upstream version 1.4.1exp
* install.rdf: Require icedove 11 or iceape 2.8
* Update my email address to willi@debian.org
* Build-Depend on icedove-dev >= 11
-- Willi Mann <willi@debian.org> Wed, 09 May 2012 22:38:14 +0200
enigmail (2:1.4.1-2) unstable; urgency=low
* install.rdf: 1.4.1 works with iceape 2.7
(Closes: 161046, 197339, 376572, 401703, 479854)
-- Willi Mann <willi@wm1.at> Sun, 06 May 2012 15:00:12 +0200
enigmail (2:1.4.1-1) unstable; urgency=low
* d/control: bump icedove-dev build-dependency
* d/control: Add Homepage: field
* d/control: Add ${xpi:Breaks} (Closes: 664427)
* Imported Upstream version 1.4.1
* Refresh patches, fix version number in install.rdf
-- Willi Mann <willi@wm1.at> Fri, 13 Apr 2012 22:06:48 +0200
enigmail (2:1.4-1) unstable; urgency=low
* New upstream version 1.4 (closes: #665712)
* Remove no longer needed patch "nonexisting methods"
* d/control: Standards-Version 3.9.2 => 3.9.3 (no changes)
* d/control: Add ${xpi:Depends}
-- Willi Mann <willi@wm1.at> Sun, 25 Mar 2012 18:10:15 +0200
enigmail (2:1.3.4-2) unstable; urgency=low
* debian/rules: Use chrome-format "omni". This fixes incomplete locales,
which fixes enigmail not working under some locales. Thanks to
Patrick Brunschwig for the hint. (Closes: #656306, #656629)
-- Willi Mann <willi@wm1.at> Sun, 22 Jan 2012 17:32:21 +0100
enigmail (2:1.3.4-1) unstable; urgency=low
* New upstream release
* Add debian/watch
* Add some *.pyc files to debian/clean
-- Willi Mann <willi@wm1.at> Sun, 11 Dec 2011 14:58:24 +0100
enigmail (2:1.3.3-1) experimental; urgency=low
* New upstream release (closes: #647850)
* Required differences to Ubuntu package:
- Fix xpidl path in config/config.mk
- build with system nspr
- Setting specific CXXFLAGS
* avoid dh_makeshlibs call, enigmail is no library package.
* Standards-Version 3.9.1 => 3.9.2, no changes.
-- Willi Mann <willi@wm1.at> Fri, 11 Nov 2011 22:10:37 +0100
enigmail (2:1.3.2-0ubuntu2) precise; urgency=low
* Rebuild for Thunderbird 8
-- Chris Coulson <chris.coulson@canonical.com> Mon, 07 Nov 2011 13:00:12 +0000
enigmail (2:1.3.2-0ubuntu1) oneiric; urgency=low
* New upstream release v1.3.2
* Make sure we remove the .bzr folder from the tarball when we build it
- update debian/rules
-- Chris Coulson <chris.coulson@canonical.com> Mon, 12 Sep 2011 16:57:37 +0100
enigmail (2:1.3.1-0ubuntu1) oneiric; urgency=low
* New upstream release
* Drop patch which isn't necessary for now:
- remove debian/patches/port_to_latest_thunderbird.diff
- update debian/patches/series
* Refresh patches
- update debian/patches/makefile_depth.diff
* Build with Thunderbird 7
- update debian/rules
-- Chris Coulson <chris.coulson@canonical.com> Thu, 01 Sep 2011 15:58:32 +0100
enigmail (2:1.2.1-1) experimental; urgency=low
* New upstream release. closes: #636606
* Drop patch fix_install_rdf_xml_errors.diff, included upstream
* Refresh patch ipc-pipe_rename.diff
-- Willi Mann <willi@wm1.at> Fri, 12 Aug 2011 10:11:48 +0200
enigmail (2:1.2.1-0ubuntu1) oneiric; urgency=low
* New upstream release
* Drop fix_install_rdf_xml_errors.diff - fixed upstream
* Refresh port_to_latest_thunderbird.diff
* Add a proper get-orig-source target which pulls the build system from
lp:~mozillateam/mozilla-build-system/beta, now that we don't have the old
build-system.tar.gz from xulrunner
-- Chris Coulson <chris.coulson@canonical.com> Fri, 12 Aug 2011 12:25:06 +0100
enigmail (2:1.2-1) experimental; urgency=low
* Merge from Ubuntu. Remaining changes:
- Remove thunderbird-dev build depends
- Remove -fshort-wchar from CXXFLAGS
- Reintroduce using system nspr when building for icedove (debian/rules)
* Update to Standards-Version 3.9.2
* Do not run dh_makeshlibs, causes unneeded ldconfig calls in postinst/rm
- add override_dh_makeshlibs to debian/rules
* Remove the Thunderbird 6.0 patch, not expected to work with icedove 5.0
* Fix path to xpidl and xpt_link: config/config.mk
- new patch fix-xpidl-path.diff
* Add some files to debian/clean that were not removed by interrupted builds
-- Willi Mann <willi@wm1.at> Tue, 09 Aug 2011 17:50:06 +0200
enigmail (2:1.2-0ubuntu2) oneiric; urgency=low
* Drop build_system_dont_link_libxul.diff - this isn't needed in current
Thunderbird versions, as it ships a libxul.so
* Bump maxVersion to 6.0.*
- add debian/patches/port_to_latest_thunderbird.diff
- update debian/patches/series
* Look for the Thunderbird 6 SDK
- update debian/rules
* The SDK no longer provides an xpt_link binary for creating the typelibs.
Use xpt.py instead (will be fixed when we refresh the build system)
- update debian/patches/port_to_latest_thunderbird.diff
-- Chris Coulson <chris.coulson@canonical.com> Wed, 20 Jul 2011 17:21:18 +0100
enigmail (2:1.2-0ubuntu1) oneiric; urgency=low
* Update to new upstream release v1.2
* Build with --disable-elf-hack - it's broken on oneiric, and is a no-op
on Ubuntu anyway
- update debian/rules
-- Chris Coulson <chris.coulson@canonical.com> Wed, 29 Jun 2011 11:19:17 +0100
enigmail (2:1.2~a2~cvs20110627t1630-0ubuntu2) oneiric; urgency=low
* Drop the nspr build-dep and don't build with --with-system-nspr.
Thunderbird provides this already, and avoids needing to bump nspr
on older releases just to build enigmail
- update debian/rules
- update debian/control
-- Chris Coulson <chris.coulson@canonical.com> Tue, 28 Jun 2011 12:10:39 +0100
enigmail (2:1.2~a2~cvs20110627t1630-0ubuntu1) oneiric; urgency=low
* Update to latest trunk snapshot
* Update debian/patches/makefile_depth.diff
* Fix XML parsing errors in install.rdf
- add debian/patches/fix_install_rdf_xml_errors.diff
- update debian/patches/series
-- Chris Coulson <chris.coulson@canonical.com> Mon, 27 Jun 2011 17:09:24 +0100
enigmail (2:1.2~a2~cvs20110606t2200-0ubuntu3) oneiric; urgency=low
* Add build/unix/elfhack/Makefile to debian/clean. It doesn't get cleaned
by the build system, and there is a copy in the tree already which
breaks the build
- update debian/clean
-- Chris Coulson <chris.coulson@canonical.com> Tue, 07 Jun 2011 21:29:15 +0100
enigmail (2:1.2~a2~cvs20110606t2200-0ubuntu2) oneiric; urgency=low
* Build with --disable-webm and --disable-libjpeg-turbo so we don't need to
build-depend on yasm. I really do need to clean all of this useless
junk out of the configure script
- update debian/rules
-- Chris Coulson <chris.coulson@canonical.com> Tue, 07 Jun 2011 15:23:30 +0100
enigmail (2:1.2~a2~cvs20110606t2200-0ubuntu1) oneiric; urgency=low
* Update to latest trunk snapshot for Thunderbird beta compat
* Remove build/pgo/profileserver.py from debian/clean. The new build
system has a target depending on this
- update debian/clean
* Drop debian/patches/autoconf.diff, just generate this at build time
* Refresh debian/patches/build_system_dont_link_libxul.diff
* libipc seems to be renamed to libipc-pipe. Fix genxpi and chrome.manifest
to fix this
- add debian/patches/ipc-pipe_rename.diff
- update debian/patches/series
* The makefiles in extensions/enigmail/ipc have an incorrect DEPTH
attribute. Fix this so that they can find the rest of the build system
- add debian/patches/makefile_depth.diff
- update debian/patches/series
* Drop debian/patches/makefile-in-empty-xpcom-fix.diff - fixed in the
current version
* Don't register a class ID multiple times, as this breaks enigmail entirely
- add debian/patches/dont_register_cids_multiple_times.diff
- update debian/patches/series
* Look for the Thunderbird 5 SDK
- update debian/rules
- update debian/control
* Run autoconf2.13 at build time
- update debian/rules
- update debian/control
* Add useless mesa-common-dev build-dep, just to satisfy the build system.
We should just patch this out entirely really, but that's for another upload
- update debian/control
-- Chris Coulson <chris.coulson@canonical.com> Tue, 07 Jun 2011 14:35:53 +0100
enigmail (2:1.1.2-1ubuntu1) maverick; urgency=low
* Merge from Debian experimental, remaining changes:
+ Add back thunderbird-dev build depends
- update debian/control
+ Add -fshort-wchar to CXXFLAGS
- update debian/rules
-- Micah Gersten <micahg@ubuntu.com> Mon, 04 Oct 2010 01:25:20 -0500
enigmail (2:1.1.2-1) experimental; urgency=low
* Merge changes from Ubuntu
- do not merge the -fshort-char change. Hack only required in Ubuntu.
* This version is for icedove 3.1, so upload to experimental. Closes: #591376
* Update to Standards-Version 3.9.1 (no changes)
* debian/rules: Rename DEBIANSPECIFICFLAGS to CONFIGFLAGS and remove some
commented lines.
* Add 3 files to debian/clean. They may otherwise end up in diff if build is
attempted without all build-deps being installed.
-- Willi Mann <willi@wm1.at> Tue, 31 Aug 2010 21:24:57 +0200
enigmail (2:1.1.2-0ubuntu1) maverick; urgency=low
* New upstream release
* Merge from debian unstable. Remaining changes:
- Drop versioned mozilla-devscripts dependency since we don't build on
mips or mipsel
- Add back thunderbird-dev build depends
- update debian/control
- fixes LP: #565014 - No signature detected in emails signed using pgp/mime
* Update build-depends on thunderbird or icedove to >= 3.1~
- update debian/control
* Drop frozen_api patch as changes were accepted upstream
- drop debian/patches/frozen_api.diff
- update debian/patches/series
* Use system NSPR in Ubuntu as well
- update debian/rules
* Build with -fshort-wchar for now to make the build succeed
- update debian/rules
-- Micah Gersten <micahg@ubuntu.com> Fri, 20 Aug 2010 11:45:10 -0500
enigmail (2:1.0.1-5) unstable; urgency=low
* Update frozen_api.diff to include nsEnigMimeListener.cpp and
nsEnigMimeService.cpp versions matching current upstream CVS. This fixes
PGP/MIME parsing. closes: #586577
* Pass --disable-optimize to configure script if called with noopt in
DEB_BUILD_OPTIONS.
* Call the distclean target of all Makefiles that support it. This allows to
significantly reduce the number of files in debian/clean. Still there are
some generated python build scripts.
-- Willi Mann <willi@wm1.at> Fri, 02 Jul 2010 22:21:20 +0200
enigmail (2:1.0.1-4) unstable; urgency=low
* Explicitly set target machine type according to dpkg-architecture
(DEB_BUILD_GNU_TYPE) to allow building working versions of the i386
package in i386 chroot with amd64 kernel.
* Add -std=gnu++0x to CXXFLAGS in order to allow building with icedove
3.0.5-1. closes: #586860, thanks to Christoph Goehre for this hint.
-- Willi Mann <willi@wm1.at> Sat, 26 Jun 2010 21:59:41 +0200
enigmail (2:1.0.1-3) unstable; urgency=low
* Remove Build-Dependency on libiw-dev. This is not used, but configure now
requires --disable-necko-wifi to be happy. Should allow build on kfreebsds.
* Build-Depend on mozilla-devscripts >= 0.23 to really fix FTBFS on mipsel
and mips. (m-d changed RDF implementation used to parse install.rdf)
-- Willi Mann <willi@wm1.at> Mon, 07 Jun 2010 19:25:28 +0200
enigmail (2:1.0.1-2) unstable; urgency=low
* Patch makefile-in-empty-xpcom-fix.diff: Fix FTBFS on armel, mips,
and mipsel.
-- Willi Mann <willi@wm1.at> Tue, 01 Jun 2010 18:17:41 +0200
enigmail (2:1.0.1-1) unstable; urgency=low
* Upload based on Ubuntu package:
- New upstream version closes: #569804, #461643, #553272
* Fix RC Bugs:
- enigmail < 1.0 not supported in icedove >= 3. closes: #569804, #562714
- enigmail 0.95 no longer builds. closes: #576997
* Use build flags --with-system-nspr --with-nspr-prefix=/usr if debian
environment is detected (detection as proposed in bug #569804)
* According to asac, buildds cannot cope with alternatives in
Build-Depends. Thus drop thunderbird-dev alternative.
* Some files are not removed at clean time. Added to debian/clean, so
deleted by debhelper.
* lintian:
- fix description-starts-with-package-name
- Fix 3 consecutive changelog entries: syntax-error-in-debian-changelog
(wrong date format)
- Add README.source for quilt: patch-system-but-no-source-readme
* Add myself to Uploaders.
-- Willi Mann <willi@wm1.at> Fri, 28 May 2010 14:56:17 +0200
enigmail (2:1.0.1-0ubuntu1) lucid; urgency=low
* First releaase of enigmail 1.0.1 for tbird/icedove 3
(LP: #527138)
* redo packaging from scratch
+ add debian/make-orig target that uses xulrunner provided
buildsystem + enigmail tarball to produce a proper orig.tar.gz
+ use debhelper 7 with mozilla-devscripts
+ use debian source format 3.0 (quilt)
+ patch enigmail to use frozen API only
- add debian/patches/frozen_api.diff
+ patch build system to not link against -lxul - which isnt
available for sdks produced by all-static apps like tbird
- add debian/patches/build_system_dont_link_libxul.diff
+ add minimal build-depends to control
-- Alexander Sack <asac@ubuntu.com> Sat, 10 Apr 2010 01:42:24 +0200
enigmail (2:0.95.7-1ubuntu2) jaunty; urgency=low
* no changes upload for nss/nspr SONAME mini-transition
-- Alexander Sack <asac@debian.org> Mon, 12 Jan 2009 16:21:47 +0100
enigmail (2:0.95.7-1ubuntu1) jaunty; urgency=low
Merge from debian experimental; changes:
* flip order of icedove-dev/thunderbird-dev build-depends
- update debian/control
-- Alexander Sack <asac@debian.org> Tue, 2 Dec 2008 13:10:00 +0100
enigmail (2:0.95.7-1) experimental; urgency=low
* Maintainer upload :-P
* upgrade to latest and greatest enigmail 0.95.7
- adjust debian/rules
* new enigmail needs intl headers; update configure helper
- update debian/configure.sh.THUNDERBIRD_2_0_0_0_RELEASE
-- Alexander Sack <asac@debian.org> Tue, 2 Dec 2008 13:10:00 +0100
enigmail (2:0.95.0+1-4) unstable; urgency=low
* fix enigmail use-agent behaviour for gpg < 2.0 (Closes: #506631)
- add debian/patches/81_dont_use_agent_before_gpg_2.dpatch
- update debian/patches/00list.thunderbird
-- Alexander Sack <asac@debian.org> Tue, 2 Dec 2008 13:00:00 +0100
enigmail (2:0.95.0+1-3.2) unstable; urgency=low
* Non-maintainer upload.
* Fix preinst to make sure the upgrade from old version actually works.
(Closes: #486491, #468954)
* Add missing #DEBHELPER# token to preinst.
-- Torsten Werner <twerner@debian.org> Sun, 12 Oct 2008 13:28:24 +0200
enigmail (2:0.95.0+1-3.1) unstable; urgency=low
* Non-maintainer upload to fix a long-standing RC bug in Debian.
* Added 80_no_pragma_pushed_visibility.dpatch from Ubuntu to fix
a FTBFS with gcc-4.2. (Closes: #379260)
-- Philipp Kern <pkern@debian.org> Mon, 18 Feb 2008 17:24:25 +0100
enigmail (2:0.95.0+1-3) unstable; urgency=low
* make buildds happy by using icedove-dev as the primary
build-depend; keep thunderbird-dev as second.
-- Alexander Sack <asac@debian.org> Fri, 1 Jun 2006 23:53:12 +0200
enigmail (2:0.95.0+1-2) unstable; urgency=low
* install enigmail-en-US.jar in right folder
-- Alexander Sack <asac@debian.org> Sun, 20 May 2006 19:30:09 +0200
enigmail (2:0.95.0+1-1) unstable; urgency=low
* debianizing enigmail package, by installing to independent place
usr/lib/enigmail/extension and linking from suitable places
(e.g. usr/lib/icedove|thunderbird/extensions/ID
* drop transitional mozilla-thunderbird-enigmail package for debian
* remove old enigmail source tarball from orig.tar.gz
-- Alexander Sack <asac@debian.org> Sun, 20 May 2006 18:11:12 +0200
enigmail (2:0.95.0-0ubuntu3) gutsy; urgency=low
* debian/control[.in] fix missing conflicts and replaces for
mozilla-thunderbird-enigmail -> enigmail transition
-- Alexander Sack <asac@ubuntu.com> Tue, 15 May 2006 10:59:00 +0200
enigmail (2:0.95.0-0ubuntu2) gutsy; urgency=low
* try to fix ftbfs on i386 by passing --disable-elf-dynstr-gc to
configure in case we have thunderbird 2.0.
-- Alexander Sack <asac@ubuntu.com> Fri, 4 May 2006 12:42:00 +0200
enigmail (2:0.95.0-0ubuntu1) gutsy; urgency=low
* new upstream release 0.95
* update mozsdk to build against TBIRD 2.0.0.0
* cleanup most obvious package cruft
* drop IPC code left-over from ancient times
* drop 80_enigmail-no-auto-check-trustdb (included upstream)
* update 50_enigmail_no_upgrade to not ship upgrade overlay
-- Alexander Sack <asac@ubuntu.com> Fri, 4 May 2006 10:01:10 +0200
enigmail (2:0.94.3-0ubuntu1) feisty; urgency=low
* new upstream release 0.94.2:
* Fix for security issue CVE-2006-5877 aka
http://bugzilla.mozdev.org/show_bug.cgi?id=9730: crash on access
to already freed memory.
* debian/patches/80_enigmail-no-auto-check-trustdb.dpatch: adapted
patch to new upstream code base
-- Alexander Sack <asac@ubuntu.com> Tue, 13 Feb 2006 12:07:00 +0100
enigmail (2:0.94-0ubuntu5) edgy; urgency=low
* debian/control: Make thunderbird dependencies less tight, so that this
package does not require an update for each thunderbird microversion
update. These generally do not break the ABI; if some update happens to do
that, we can still add a conflict/breaks to earlier enigmail versions to it.
-- Martin Pitt <martin.pitt@ubuntu.com> Fri, 28 Jul 2006 14:51:28 +0200
enigmail (2:0.94-0ubuntu4.1) dapper-security; urgency=low
* debian/control: Bump dependencies for Thunderbird 1.5.0.4.
-- Martin Pitt <martin.pitt@ubuntu.com> Mon, 12 Jun 2006 16:39:24 +0200
enigmail (2:0.94-0ubuntu4) dapper; urgency=low
* Rebuild mozilla-thunderbird-enigmail for mozilla-thunderbird 1.5.0.2
* Stop shipping /tmp (ick) and /var/lib/mozilla-thunderbird/chrome.d
* Remove all references to obsolete update-mozilla-thunderbird-chrome
-- Adam Conrad <adconrad@ubuntu.com> Thu, 18 May 2006 20:46:18 +1000
enigmail (2:0.94-0ubuntu3) dapper; urgency=low
* Add 80_enigmail-no-auto-check-trustdb.dpatch that, well, makes sure
it passes --no-auto-check-trustdb to gpg invocations.
-- Scott James Remnant <scott@ubuntu.com> Thu, 6 Apr 2006 05:37:52 +0100
enigmail (2:0.94-0ubuntu2) dapper; urgency=low
* Add 10_visibility_hidden_patch.dpatch, stealing a fix from thunderbird
for the ppc/amd64 build failure triggered by wrapping system includes.
-- Adam Conrad <adconrad@ubuntu.com> Wed, 15 Feb 2006 18:15:37 +1100
enigmail (2:0.94-0ubuntu1) dapper; urgency=low
* Fork package to allow mozilla 1.7 to be demoted to universe. This
package now only builds the enigmail extension for mozilla-thunderbird.
* Bump debhelper compat to 4, so single-package builds behave the same
as multipackage biulds (thus minimising our diff against the original).
* Bump upstream version to 0.94, for working Thunderbird 1.5 support.
-- Adam Conrad <adconrad@ubuntu.com> Wed, 15 Feb 2006 15:44:02 +1100
enigmail (2:0.93-1) unstable; urgency=high
* new upstream version, fixes security issue in etch/sid
* build for mozilla 1.7.12
(Closes: 334139)
-- Alexander Sack <asac@debian.org> Sun, 16 Oct 2005 15:00:00 +0100
enigmail (2:0.92.1-0ubuntu05.10) breezy-security; urgency=low
* SECURITY UPDATE: incorrect key selection, causing information disclosure
* Update to 0.92.1, whose only change from 0.92.0 is to fix a bug where the
key selection dialog can incorrectly select a key with a user ID that does
not have additional information, which allows parties with that key to
decrypt the message. This has been assigned CVE-2005-3256 by mitre.org.
-- Adam Conrad <adconrad@ubuntu.com> Thu, 20 Oct 2005 21:34:43 +1000
enigmail (2:0.92-4) unstable; urgency=low
* respin for mozilla 1.7.11 and mozilla-thunderbird 1.0.7
(Closes: 331207)
-- Alexander Sack <asac@debian.org> Mon, 17 Oct 2005 21:30:00 +0100
enigmail (2:0.92-3) unstable; urgency=low
* respin for mozilla 1.7.10 (Closes: 321147)
-- Alexander Sack <asac@debian.org> Sat, 15 Oct 2005 23:55:00 +0100
enigmail (2:0.92-2) unstable; urgency=low
* removed stupid amd64 gcc-3.4 dependency
-- Alexander Sack <asac@debian.org> Thu, 13 Oct 2005 15:00:00 +0100
enigmail (2:0.92-1ubuntu5) breezy; urgency=low
* Update control and rules for Thunderbird 1.0.7 (no other changes)
-- Adam Conrad <adconrad@ubuntu.com> Tue, 11 Oct 2005 03:34:59 +1000
enigmail (2:0.92-1ubuntu4) breezy; urgency=low
* Make enigmail buildable and installable with mozilla 1.7.12, using
the same SDK tarball as the mozilla-mailnews 1.7.10 build.
-- Stephan Hermann <sh@sourcecode.de> Mon, 26 Sep 2005 09:18:18 +0200
enigmail (2:0.92-1ubuntu3) breezy; urgency=low
* Make enigmail buildable and installable with mozilla 1.7.11, using
the same SDK tarball as the mozilla-mailnews 1.7.10 build.
-- Adam Conrad <adconrad@ubuntu.com> Sat, 13 Aug 2005 16:39:54 +1000
enigmail (2:0.92-1ubuntu2) breezy; urgency=low
* Stop using gcc-3.4 for amd64, now that gcc-4.0 is the default compiler.
-- Adam Conrad <adconrad@ubuntu.com> Mon, 1 Aug 2005 12:20:42 +1000
enigmail (2:0.92-1ubuntu1) breezy; urgency=low
* Update debian/control to allow building and installation with mozilla
1.7.10 and add debian/configure.sh.MOZILLA_1_7_10_RELEASE for the same.
-- Adam Conrad <adconrad@ubuntu.com> Mon, 1 Aug 2005 10:34:26 +1000
enigmail (2:0.92-1) unstable; urgency=low
* new upstream release
* gcc-4.0 transition
* no control.in patching for default build procedure anymore.
moved patching from clean target to ./debian/rules update_control
* updated sdk.mozdev releases to THUNDERBIRD_1_0_6 and
MOZILLA_RELEASE_1_7_8
* prepared MOZILLA_RELEASE_1_7_10
-- Alexander Sack <asac@debian.org> Thu, 21 Jul 2005 23:59:59 +0100
enigmail (2:0.91-4) unstable; urgency=high
* urgency high to rush into sarge. Just a respin for new
mozilla version ... looks safe to go into testing.
-- Alexander Sack <asac@debian.org> Sun, 22 May 2005 22:00:00 +0100
enigmail (2:0.91-3) unstable; urgency=low
* new upstream release enigmail 0.91. Respin for mozilla 1.7.7
* upload to unstable.
* introduce debian/control.in file to ease maintenance due
to version upgrades
-- Alexander Sack <asac@debian.org> Mon, 18 Apr 2005 20:30:00 +0100
enigmail (2:0.91-2) unstable; urgency=low
* new upstream release enigmail 0.91. Respin for mozilla 1.7.6
-- Alexander Sack <asac@debian.org> Mon, 11 Apr 2005 23:30:00 +0100
enigmail (2:0.91-1) unstable; urgency=low
* new upstream release enigmail 0.91
-- Alexander Sack <asac@debian.org> Mon, 11 Apr 2005 22:00:00 +0100
enigmail (2:0.90.2-1) unstable; urgency=low
* new upstream release enigmail 0.90.2 - plain
bugfixes and support for thunderbird 1.0.2
* builds for mozilla-mailnews 1.7.6 (Closes: 301975,302084)
-- Alexander Sack <asac@debian.org> Tue, 29 Mar 2005 21:00:00 +0100
enigmail (2:0.90.1-1) unstable; urgency=low
* new upstream release enigmail 0.90.1
-- Alexander Sack <asac@debian.org> Sat, 12 Feb 2005 23:00:00 +0100
enigmail (2:0.90.0-1) unstable; urgency=low
* new upstream release enigmail 0.90.0
* upload to unstable
* build for mozilla 1.7.5 (Closes: 290726)
-- Alexander Sack <asac@debian.org> Sun, 16 Jan 2005 12:00:00 +0100
enigmail (2:0.89.5.experimental-1) experimental; urgency=low
* new upstream release uses ipc 1.1.2 and enigmail 0.89.5
* upstream fix: no logging on the terminal anymore
(Closes: 246736)
* fixed amd64 build problems. Setting gcc to 3.4
(Closes: 283887)
* removed irrelevant parts from README.Debian (See: 273818)
-- Alexander Sack <asac@debian.org> Tue, 7 Dec 2004 22:00:00 +0100
enigmail (2:0.89.0.experimental-1) experimental; urgency=low
* mailnews uses ipc 1.1.1 and enigmail 0.89.0 now
* hopefully will go to unstable at some point closing
really old ITP (Closes: 138190, 216928)
-- Alexander Sack <asac@debian.org> Mon, 22 Nov 2004 12:00:00 +0100
enigmail (2:0.89.0-2) unstable; urgency=medium
* important small bug fix: fix old extension site
contents.rdf, that disable enigmail in thunderbird
(Closes: 286261)
* backported: fixed amd64 build problems. Setting gcc to 3.4
(Closes: 283887)
* backported:
removed irrelevant parts from README.Debian (See: 273818)
-- Alexander Sack <asac@debian.org> Sun, 19 Dec 2004 10:00:00 +0100
enigmail (2:0.89.0-1) unstable; urgency=low
* new upstream release
-- Alexander Sack <asac@debian.org> Mon, 08 Nov 2004 10:00:00 +0100
enigmail (2:0.86.1.debian1-1) unstable; urgency=low
* respin for new mozilla version in testing
-- Alexander Sack <asac@debian.org> Mon, 18 Oct 2004 20:00:00 +0100
enigmail (2:0.86.1-0.testing.1) unstable; urgency=low
* new upstream release for new thunderbird
-- Alexander Sack <asac@debian.org> Thu, 17 Sep 2004 20:00:00 +0100
enigmail (2:0.85.0.1-0.testing.1) unstable; urgency=low
* respin for new thunderbird 0.7.3
* includes new mozsdk for RELEASE_THUNDERBIRD_0_7_3
-- Alexander Sack <asac@jwsdot.com> Thu, 5 Aug 2004 20:00:00 +0100
enigmail (2:0.85.0-0.testing.2) unstable; urgency=low
* fixed versioned dependency of mozilla-enigmail on
mozilla-mailnews to match current sid version
* removed accidentally applied patches for thunderbird
from the list of patches applied to the mailnews target.
Closes a (not yet posted) bug that displayed all mozilla
toolbar icons instead of the true decrypt button of enigmail
-- Alexander Sack <asac@jwsdot.com> Thu, 29 Jul 2004 01:00:00 +0100
enigmail (2:0.85.0-0.testing.1) unstable; urgency=low
* new upstream version - 0.85.0
* produces binaries for thunderbird and mozilla-mailnews
(Closes: 138190, 216928)
* is sensible wether the distribution contains mozilla 1.6 or
1.7.1
* Fixed upstream: gpg boundaries are now displayed correctly in
news (Closes: 246734)
-- Alexander Sack <asac@jwsdot.com> Mon, 26 Jul 2004 01:00:00 +0100
enigmail (2:0.84.2-1) unstable; urgency=low
* new upstream release 0.84.2
* added 50-enigmail-extension.txt and extension.part.enigmail
to extensions.d directory
-- Alexander Sack <asac@jwsdot.com> Thu, 1 Jul 2004 15:15:00 +0100
enigmail (2:0.84.1-0.asac4) unstable; urgency=low
* added 50-enigmail-extension.txt and extension.part.enigmail
to extensions.d directory
* removed upgrade menu item from enigmail menu,
because it is not applicable to debian packaged
extensions
enigmail is now its own package and therefore has
a new version scheme. hence this version is
2:0.84.1-0.asac3
-- Alexander Sack <asac@jwsdot.com> Thu, 27 Jun 2004 15:15:00 +0100
mozilla-enigmail (0.84.1-0.asac1) unstable; urgency=low
* new upstream release 0.84.1 packaged
-- Alexander Sack <asac@jwsdot.com> Sun, 06 Jun 2004 16:01:20 +0100
mozilla-enigmail (0.84.0-0.asac1) unstable; urgency=low
* new upstream release 0.84.0 packaged
-- Alexander Sack <asac@jwsdot.com> Mon, 10 May 2004 01:13:20 +0100
mozilla-enigmail (0.83.6-0.asac2) unstable; urgency=low
* added copyright file
* moved linked enigmail.js as config file to /etc/mozilla/enigmail.js
-- Alexander Sack <asac@jwsdot.com> Tue, 13 Apr 2004 01:13:20 +0100
mozilla-enigmail (0.83.6-0.asac1) unstable; urgency=low
* initial preview release of mozilla enigmail package
-- Alexander Sack <asac@jwsdot.com> Tue, 13 Apr 2004 01:13:20 +0100
|