1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672
|
libgcrypt20 (1.10.1-3) unstable; urgency=medium
* 32-build-Prefer-gpgrt-config-when-available.patch from
LIBGCRYPT-1.10-BRANCH updates libgcrypt.m4 to prefer gpgrt-config over
libgcrypt-config even when --with-libgcrypt-prefix is set.
+ 35-keccak-Use-size_t-to-avoid-integer-overflow.patch: Fix wrong result for
SHA3 functions > 4GB invoked in one-shot.
+ 37-doc-Update-document-for-pkg-config-and-libgcrypt.m4.patch: Suggest
pkg-config instead of libgcrypt-config.
-- Andreas Metzler <ametzler@debian.org> Sat, 19 Nov 2022 17:59:10 +0100
libgcrypt20 (1.10.1-2) unstable; urgency=low
* Upload to unstable.
* Update from upstream LIBGCRYPT-1.10-BRANCH, renaming the patch in the
previous upload and adding another fix
(31_0003-hwf-ppc-fix-missing-HWF_PPC_ARCH_3_10-in-HW-feature.patch).
-- Andreas Metzler <ametzler@debian.org> Sun, 03 Apr 2022 18:32:32 +0200
libgcrypt20 (1.10.1-1) experimental; urgency=low
* New upstream version.
+ Drop cherrypicked patches.
+ Add post-release fix 31_0001-kdf-argon2-Fix-for-the-case-output-64.patch
-- Andreas Metzler <ametzler@debian.org> Wed, 30 Mar 2022 18:44:02 +0200
libgcrypt20 (1.10.0-2) experimental; urgency=low
[ Debian Janitor ]
* Remove constraints unnecessary since buster:
+ Build-Depends: Drop versioned constraint on libgpg-error-dev.
+ Build-Depends-Indep: Drop versioned constraint on texinfo.
[ Andreas Metzler ]
* Upgrade to head of LIBGCRYPT-1.10-BRANCH.
+ 30_0001-Post-release-updates.patch
+ 30_0002-jitterentropy-Include-fcntl.h-and-limits.h.patch
+ 30_0003-kdf-Use-u64.patch
+ 30_0004-Register-DCO-for-Clemens-Lang.patch
+ 30_0005-fips-Fix-memory-leaks-in-FIPS-mode.patch
+ 30_0006-hmac-Fix-memory-leak.patch
+ 30_0007-build-Fix-m4-gpg-error.m4.patch
+ 30_0008-Silence-compiler-warnings-for-possible-alignment-pro.patch
+ 30_0009-fips-Use-ELF-header-to-find-hmac-file-offset.patch
+ 30_0010-fips-Fix-previous-commit.patch
+ 30_0011-fips-Integrity-check-improvement-with-only-loadable-.patch
+ 30_0012-fips-More-portable-integrity-check.patch
+ 30_0013-fips-Fix-gen-note-integrity.sh-script-not-to-use-cmp.patch
+ 30_0014-fips-Clarify-what-to-be-hashed-for-the-integrity-che.patch
* Point vcs-* to experimental branch.
[ Johannes Schauer Marin Rodrigues ]
* debian/libgcrypt20.postinst: only run clean-up-unmanaged-libraries on
upgrades and not on new installations. Closes: #1007754
-- Andreas Metzler <ametzler@debian.org> Sun, 20 Mar 2022 07:27:23 +0100
libgcrypt20 (1.10.0-1) experimental; urgency=low
* Run wrap-and-sort -ast.
* New upstream version.
+ Drop 30_01-poly1305-fix-building-with-arm-linux-gnueabihf-gcc-1.patch.
+ Add new symbols to symbol file, bump versioned dependency info of all
symbols to 1.10.0. (Many enums extended, most notably gcry_ctl_cmds, i.e.
the arguments for gcry_control()).
-- Andreas Metzler <ametzler@debian.org> Sun, 06 Feb 2022 15:48:15 +0100
libgcrypt20 (1.9.4-5) unstable; urgency=medium
* Pull 30_01-poly1305-fix-building-with-arm-linux-gnueabihf-gcc-1.patch from
upstream GIT master branch, fixing FTBFS on armhf. Closes: #1001675
-- Andreas Metzler <ametzler@debian.org> Tue, 14 Dec 2021 17:56:04 +0100
libgcrypt20 (1.9.4-4) unstable; urgency=low
* Import clean-up-unmanaged-libraries from the debian glib salsa repository.
* Work around unreproducible (possibly fixed) dpkg bug 949395 and use
clean-up-unmanaged-libraries to remove leftover libgcrypt versions in
/lib. (Thanks, Simon McVittie!) Closes: #984884
* Fix references for CVE-2021-40528 and CVE-2021-33560 in previous
changelogs.
* Add lintian override for false positive
debian-rules-sets-dpkg-architecture-variable.
-- Andreas Metzler <ametzler@debian.org> Sun, 28 Nov 2021 13:33:35 +0100
libgcrypt20 (1.9.4-3) unstable; urgency=medium
* Fix libgcrypt-config wrapper to use 'command -v' instead of 'which'.
(Thanks, Emmanuel Bouthenot)
Closes: #993244
-- Andreas Metzler <ametzler@debian.org> Sat, 11 Sep 2021 13:43:26 +0200
libgcrypt20 (1.9.4-2) unstable; urgency=medium
* Upload to unstable.
-- Andreas Metzler <ametzler@debian.org> Sat, 04 Sep 2021 07:29:03 +0200
libgcrypt20 (1.9.4-1) experimental; urgency=medium
* New upstream release. (Also includes fix for Elgamal encryption for
other implementations. CVE-2021-40528, formerly know as CVE-2021-33560,
this number now points to a local side channel attack which is
fixed by libgcrypt 1.9.4, too.)
-- Andreas Metzler <ametzler@debian.org> Sun, 29 Aug 2021 19:17:04 +0200
libgcrypt20 (1.9.3-1) experimental; urgency=medium
* New upstream release.
-- Andreas Metzler <ametzler@debian.org> Wed, 21 Apr 2021 18:22:56 +0200
libgcrypt20 (1.9.2-1) experimental; urgency=low
* New upstream release.
-- Andreas Metzler <ametzler@debian.org> Thu, 18 Feb 2021 18:00:38 +0100
libgcrypt20 (1.9.2~beta16-1) experimental; urgency=low
* Simplify ./configure for Windows build, do not disable optimization and
assembly, set timestamp=$(SOURCE_DATE_EPOCH) instead of disabling the
timestamp.
* New upstream release.
+ Drop 30_Revert-Define-HW-feature-flags-per-architecture.patch.
-- Andreas Metzler <ametzler@debian.org> Sat, 13 Feb 2021 08:08:19 +0100
libgcrypt20 (1.9.1-1) experimental; urgency=low
* Add Bug-Database and Bug-Submit to upstream/metadata.
* New upstream version.
+ Fixes heap buffer overflow introduced in 1.9.0.
https://dev.gnupg.org/T5275. CVE-2021-3345 Closes: #981336
* 30_Revert-Define-HW-feature-flags-per-architecture.patch Fix w* build
error.
-- Andreas Metzler <ametzler@debian.org> Sat, 30 Jan 2021 13:51:54 +0100
libgcrypt20 (1.9.0-1) experimental; urgency=low
* New upstream version.
+ Drop 13_lessdeps_libgcrypt-pkgconfig.diff
+ Update 25_norevisionfromgit.diff.
+ List new symbols, bump all version requirements in libgcrypt20.symbols.
(New args for gcry_control, new algorithms.)
+ Update copyright file.
+ Update algorithm list in package descriptions.
-- Andreas Metzler <ametzler@debian.org> Sun, 24 Jan 2021 08:39:32 +0100
libgcrypt20 (1.8.7-6) unstable; urgency=medium
* Update from LIBGCRYPT-1.8-BRANCH:
+ 30_10-cipher-Fix-ElGamal-encryption-for-other-implementati.patch
This is nowadays registered as CVE-2021-40528 but was at the time of
this upload identified as CVE-2021-33560; however
this number now points to a local side channel attack.
-- Andreas Metzler <ametzler@debian.org> Thu, 27 May 2021 18:07:38 +0200
libgcrypt20 (1.8.7-5) unstable; urgency=medium
* Pull fix for ECC decyryption regression (caused by
30_08-ecc-Check-the-input-length-for-the-point.patch) from
LIBGCRYPT-1.8-BRANCH. Closes: #987956
-- Andreas Metzler <ametzler@debian.org> Thu, 06 May 2021 18:06:14 +0200
libgcrypt20 (1.8.7-4) unstable; urgency=medium
* Update from LIBGCRYPT-1.8-BRANCH:
+ 30_07-Fix-previous-commit.patch
+ 30_08-ecc-Check-the-input-length-for-the-point.patch
-- Andreas Metzler <ametzler@debian.org> Sun, 02 May 2021 13:58:47 +0200
libgcrypt20 (1.8.7-3) unstable; urgency=medium
* Update from LIBGCRYPT-1.8-BRANCH:
+ 30_01-Post-release-updates.patch
+ 30_02-tests-Put-a-work-around-to-tests-random-for-macOS.patch
+ 30_03-ecc-Add-checking-key-for-ECDSA.patch
+ 30_04-Fix-ubsan-warnings-for-i386-build.patch
+ 30_05-Add-handling-for-Og-with-O-flag-munging.patch
+ 30_06-Make-sure-the-grcy_get_config-string-is-always-null-.patch
-- Andreas Metzler <ametzler@debian.org> Sun, 14 Feb 2021 15:27:13 +0100
libgcrypt20 (1.8.7-2) unstable; urgency=low
* Upload to unstable.
-- Andreas Metzler <ametzler@debian.org> Wed, 28 Oct 2020 08:00:01 +0100
libgcrypt20 (1.8.7-1) experimental; urgency=low
[ Debian Janitor ]
* Apply multi-arch hints.
+ libgcrypt-mingw-w64-dev, libgcrypt20-doc: Add Multi-Arch: foreign.
[ Andreas Metzler ]
* Update debian/upstream/signing-key.asc from
https://gnupg.org/signature_key.html.
* New upstream bugfix release.
* Use dh v13 compat level.
-- Andreas Metzler <ametzler@debian.org> Mon, 26 Oct 2020 10:19:55 +0100
libgcrypt20 (1.8.6-2) unstable; urgency=low
* Upload to unstable.
-- Andreas Metzler <ametzler@debian.org> Tue, 14 Jul 2020 07:09:01 +0200
libgcrypt20 (1.8.6-1) experimental; urgency=low
[ Debian Janitor ]
* Set upstream metadata fields: Repository.
[ Andreas Metzler ]
* New upstream version.
+ Drop 40_*.patch
* Install library to /usr/lib instead of /lib in udeb, too.
-- Andreas Metzler <ametzler@debian.org> Sat, 11 Jul 2020 13:08:25 +0200
libgcrypt20 (1.8.5-5) unstable; urgency=low
* Upload to unstable.
* Drop libgcrypt20-dev's Conflicts with ancient (pre-jessie)
libgcrypt11-dev.
-- Andreas Metzler <ametzler@debian.org> Sun, 23 Feb 2020 13:39:58 +0100
libgcrypt20 (1.8.5-4) experimental; urgency=low
* Move library from /lib to /usr/lib instead of splitting
runtime/development over both locations. This includes moving the
pkgconfig file. Closes: #951039
* Use DH 12 compat level.
+ Drop superfluous dh_missing override.
+ In debian/rules export DPKG_GENSYMBOLS_CHECK_LEVEL=4 instead of
overriding override_dh_makeshlibs.
* Update from upstream LIBGCRYPT-1.8-BRANCH:
+ 40_01-ecc-Add-a-keygrip-testcase-for-cv25519.patch
+ 40_02-ecc-Fix-wrong-handling-of-shorten-PK-bytes.patch
+ 40_03-Fix-declaration-of-internal-function-_gcry_mpi_get_u.patch
+ 40_04-random-Fix-include-of-config.h.patch
+ 40_05-Set-vZZ.16b-register-to-zero-before-use-in-armv8-gcm.patch
+ 40_06-Fix-wrong-code-execution-in-Poly1305-ARM-NEON-implem.patch
* Add usr/lib/*/libgcrypt.la to debian/not-installed.
-- Andreas Metzler <ametzler@debian.org> Sun, 16 Feb 2020 11:39:04 +0100
libgcrypt20 (1.8.5-3) unstable; urgency=medium
* Switch b-d from texlive-generic-recommended to texlive-plain-generic.
Closes: #941536
-- Andreas Metzler <ametzler@debian.org> Wed, 02 Oct 2019 19:37:25 +0200
libgcrypt20 (1.8.5-2) unstable; urgency=medium
* Upload to unstable.
-- Andreas Metzler <ametzler@debian.org> Sat, 31 Aug 2019 19:08:39 +0200
libgcrypt20 (1.8.5-1) experimental; urgency=medium
* Drop --add-udeb=libgcrypt20-udeb to work around debhelper bug #935577.
* New upstream version.
+ Fixes ECDSA timing attack. CVE-2019-13627 Closes: #938938
+ Drop 30_doc-Fix-library-initialization-examples.patch
+ Ship newly available pkgconfig file in libgcrypt20-dev, moving gpg-error
from Requires to Requires.private in new
13_lessdeps_libgcrypt-pkgconfig.diff.
-- Andreas Metzler <ametzler@debian.org> Fri, 30 Aug 2019 18:44:49 +0200
libgcrypt20 (1.8.4-5) unstable; urgency=medium
* 30_doc-Fix-library-initialization-examples.patch from upstream
LIBGCRYPT-1.8-BRANCH: Stop suggesting gcry_check_version (GCRYPT_VERSION)
in documentation. Add some touch magic to still allow building without
makeinfo. See #914009
* [lintian] Minimize upstream/signing-key.asc.
* Use dh v11 compatibility level.
-- Andreas Metzler <ametzler@debian.org> Sun, 20 Jan 2019 14:47:23 +0100
libgcrypt20 (1.8.4-4) unstable; urgency=medium
* Run "wrap-and-sort --max-line-length=72 --short-indent" and add back
autodeleted comments.
* Drop libgcrypt11-dev transition package. Closes: #878654
-- Andreas Metzler <ametzler@debian.org> Sun, 02 Dec 2018 13:43:39 +0100
libgcrypt20 (1.8.4-3) unstable; urgency=medium
* Fix arch-indep build error by running dh_auto_install for both -arch and
-indep builds.
-- Andreas Metzler <ametzler@debian.org> Sun, 28 Oct 2018 07:22:27 +0100
libgcrypt20 (1.8.4-2) unstable; urgency=medium
* Upload to unstable.
* Use dh_missing.
* Ship info files from installed tree (debian/tmp/) instead of from doc/.
-- Andreas Metzler <ametzler@debian.org> Sat, 27 Oct 2018 18:33:22 +0200
libgcrypt20 (1.8.4-1) experimental; urgency=medium
* New upstream bugfix release.
+ Drop 40-*.patch.
-- Andreas Metzler <ametzler@debian.org> Sat, 27 Oct 2018 07:45:13 +0200
libgcrypt20 (1.8.3-2) experimental; urgency=low
* Update from LIBGCRYPT-1.8-BRANCH:
+ 40-01-Post-release-updates.patch
+ 40-02-random-Fix-hang-of-_gcry_rndjent_get_version.patch
+ 40-03-sexp-Fix-uninitialized-use-of-a-var-in-the-error-cas.patch
+ 40-04-ecc-Fix-potential-unintended-freeing-of-an-internal-.patch
+ 40-06-ecc-Fix-possible-memory-leakage-in-parameter-check-o.patch
+ 40-07-ecc-Fix-memory-leak-in-the-error-case-of-ecc_encrypt.patch
+ 40-08-Fix-memory-leak-in-secmem-in-out-of-core-conditions.patch
+ 40-09-doc-Update-yat2m.c-from-upstream-libgpg-error.patch
+ 40-10-build-Add-release-make-target.patch
-- Andreas Metzler <ametzler@debian.org> Fri, 26 Oct 2018 17:29:25 +0200
libgcrypt20 (1.8.3-1) unstable; urgency=high
* [lintian] Fix spelling-error-in-patch-description in
15_multiarchpath_in_-L.diff.
* New upstream version.
+ Use blinding for ECDSA signing to mitigate a novel side-channel
attack. CVE-2018-0495
* [lintian] Delete trailing empty lines in changelog.
-- Andreas Metzler <ametzler@debian.org> Wed, 13 Jun 2018 19:15:54 +0200
libgcrypt20 (1.8.2-2) unstable; urgency=medium
* Upload to unstable.
* Partially sync priorities with override file. (libgcrypt20 optional from
standard.)
* Point Vcs* to salsa.
-- Andreas Metzler <ametzler@debian.org> Wed, 28 Mar 2018 18:43:21 +0200
libgcrypt20 (1.8.2-1) experimental; urgency=medium
* New upstream version.
+ Drop 30_Fix-secmem-test-for-machine-with-larger-page.patch and
31_tests-Add-HAVE_MMAP-check-for-MinGW.patch.
* Use dh v10 mode. Bump b-d, drop explicit b-d on automake and
dh_autoreconf, remove --parallel --with autoreconf options from dh
invocation.
* Clean up, delete some libgcrypt20-dbg leftovers.
* Use https for upstream URL.
-- Andreas Metzler <ametzler@debian.org> Sat, 16 Dec 2017 13:36:49 +0100
libgcrypt20 (1.8.1-4) unstable; urgency=low
* Upload to unstable.
-- Andreas Metzler <ametzler@debian.org> Wed, 15 Nov 2017 18:52:21 +0100
libgcrypt20 (1.8.1-3) experimental; urgency=medium
* Replace 30_fedora_t-secmem-PPC64.diff with
30_Fix-secmem-test-for-machine-with-larger-page.patch and
31_tests-Add-HAVE_MMAP-check-for-MinGW.patch from upstream GIT
LIBGCRYPT-1.8-BRANCH.
* Set Rules-Requires-Root: no.
-- Andreas Metzler <ametzler@debian.org> Tue, 14 Nov 2017 19:10:39 +0100
libgcrypt20 (1.8.1-2) experimental; urgency=medium
* Sync priorities with override file
(libgcrypt11-dev/libgcrypt-mingw-w64-dev: extra -> optional). Bump
Standards-Version to 4.1.1.
* Point watchfile to https URL.
* Use DEB_VERSION_UPSTREAM_REVISION instead of DEB_VERSION to generate fake
version number.
* Sync debian/copyright with upstream's LICENSES file, adding the OCB
license 1. Closes: #879984
* [lintian] Drop trailing whitespace in control and changelog.
* [lintian] Fix typo in copyright file.
-- Andreas Metzler <ametzler@debian.org> Sat, 04 Nov 2017 19:06:49 +0100
libgcrypt20 (1.8.1-1) experimental; urgency=medium
* New upstream version.
+ Mitigates a local side-channel attack on Curve25519 dubbed "May the
Fourth be With You". [CVE-2017-0379] Closes: #873383
+ Add the OID SHA384WithECDSA from RFC-7427 to SHA-384. Closes: 873297
* Use @ARCHIVE_EXT@ in watchfile instead of hardcoding bz2.
-- Andreas Metzler <ametzler@debian.org> Sun, 27 Aug 2017 13:13:01 +0200
libgcrypt20 (1.8.0-2) experimental; urgency=low
* 30_fedora_t-secmem-PPC64.diff from Fedora package: Fix t_secmen on
powerpc which uses a pagesize > 16K.
* Use /usr/share/dpkg/pkg-info.mk instead of invoking dpkg-parsechangelog.
-- Andreas Metzler <ametzler@debian.org> Sat, 19 Aug 2017 16:06:03 +0200
libgcrypt20 (1.8.0-1) experimental; urgency=low
* New upstream version.
+ Drop 30_mpi-Fix-mpi_set_secure.patch.
+ Update copyright file.
+ Update symbol file.
+ Bump libgpg-error-dev b-d requirement to >= 1.25.
+ Update algorithm list in package description.
-- Andreas Metzler <ametzler@debian.org> Wed, 19 Jul 2017 19:47:46 +0200
libgcrypt20 (1.7.9-2) unstable; urgency=medium
* Sync debian/copyright with upstream's LICENSES file, adding the OCB
license 1. Closes: #879984
* [lintian] Drop trailing whitespace in control and changelog.
* [lintian] Sync priorities with override file (extra -> optional).
* [lintian] Fix typo in copyright file.
-- Andreas Metzler <ametzler@debian.org> Sat, 04 Nov 2017 16:37:16 +0100
libgcrypt20 (1.7.9-1) unstable; urgency=high
* New upstream version, mitigates a local side-channel attack on Curve25519
dubbed "May the Fourth be With You". [CVE-2017-0379] Closes: #873383
+ Drop 30_mpi-Fix-mpi_set_secure.patch
-- Andreas Metzler <ametzler@debian.org> Sun, 27 Aug 2017 11:56:17 +0200
libgcrypt20 (1.7.8-2) unstable; urgency=medium
* 30_mpi-Fix-mpi_set_secure.patch from upstream LIBGCRYPT-1-7-BRANCH: Fix
memory allocation in mpi_set_secure. Closes: #866964
* Drop override_dh_strip from debian/rules.
-- Andreas Metzler <ametzler@debian.org> Thu, 06 Jul 2017 18:16:23 +0200
libgcrypt20 (1.7.8-1) unstable; urgency=high
* Fix 25_norevisionfromgit.diff to let ./configure generate a version-string
without -beta suffix. LP: #1700157
* New upstream version.
+ Mitigate a flush+reload side-channel attack on RSA secret keys dubbed
"Sliding right into disaster". For details see
<https://eprint.iacr.org/2017/627>. [CVE-2017-7526]
-- Andreas Metzler <ametzler@debian.org> Thu, 29 Jun 2017 18:27:03 +0200
libgcrypt20 (1.7.7-2) unstable; urgency=low
* Upload to unstable.
-- Andreas Metzler <ametzler@debian.org> Sun, 18 Jun 2017 11:28:58 +0200
libgcrypt20 (1.7.7-1) experimental; urgency=medium
* New upstream version.
+ Drop 30_gcry177*.patch
-- Andreas Metzler <ametzler@debian.org> Sun, 04 Jun 2017 15:34:56 +0200
libgcrypt20 (1.7.6-2) unstable; urgency=high
* Refresh debian/upstream/signing-key.asc, key-expiry-dates bumped.
* Pull two fixes from gcrypt 1.7.7 bugfix release:
+ 30_gcry177_01-ecc-Store-EdDSA-session-key-in-secure-memory.patch
Fix possible timing attack on EdDSA session key.
+ 30_gcry177_02-secmem-Fix-SEGV-and-stat-calculation.patch
Fix long standing bug in secure memory implementation which could lead
to a segv on free.
-- Andreas Metzler <ametzler@debian.org> Sat, 03 Jun 2017 10:58:36 +0200
libgcrypt20 (1.7.6-1) unstable; urgency=medium
* New upstream version, includes
30_rijndael-ssse3-fix-counter-operand-from-read-only-to.patch.
-- Andreas Metzler <ametzler@debian.org> Thu, 26 Jan 2017 11:58:32 +0100
libgcrypt20 (1.7.5-3) unstable; urgency=medium
* 30_rijndael-ssse3-fix-counter-operand-from-read-only-to.patch from
upstream GIT master: Fix SSE3 assembly on Nehalem.
-- Andreas Metzler <ametzler@debian.org> Sat, 14 Jan 2017 11:06:04 +0100
libgcrypt20 (1.7.5-2) unstable; urgency=medium
* Upload to unstable.
-- Andreas Metzler <ametzler@debian.org> Sat, 17 Dec 2016 08:38:47 +0100
libgcrypt20 (1.7.5-1) experimental; urgency=medium
* New upstream version.
-- Andreas Metzler <ametzler@debian.org> Thu, 15 Dec 2016 19:32:33 +0100
libgcrypt20 (1.7.3-2) unstable; urgency=medium
[ Helmut Grohne / Andreas Metzler ]
* Turn libgcrypt11-dev into an Arch:any package. Closes: #840205
-- Andreas Metzler <ametzler@debian.org> Sun, 09 Oct 2016 18:00:59 +0200
libgcrypt20 (1.7.3-1) unstable; urgency=high
* New upstream version.
Fix critical security bug in the RNG [CVE-2016-6313]. An
attacker who obtains 580 bytes from the standard RNG can
trivially predict the next 20 bytes of output.
-- Andreas Metzler <ametzler@debian.org> Thu, 18 Aug 2016 07:47:10 +0200
libgcrypt20 (1.7.2-2) unstable; urgency=low
* Upload to unstable.
-- Andreas Metzler <ametzler@debian.org> Sun, 17 Jul 2016 15:32:09 +0200
libgcrypt20 (1.7.2-1) experimental; urgency=medium
* New upstream bugfix release.
-- Andreas Metzler <ametzler@debian.org> Fri, 15 Jul 2016 19:21:29 +0200
libgcrypt20 (1.7.1-2) unstable; urgency=medium
* Upload to unstable.
-- Andreas Metzler <ametzler@debian.org> Sat, 18 Jun 2016 07:24:03 +0200
libgcrypt20 (1.7.1-1) experimental; urgency=medium
* Fix package descriptions. The algorithm-list was incomplete for some
packages. Closes: #821368 (Thanks, Katsuhiko Nishimra)
* New upstream bugfix release, update copyright info.
-- Andreas Metzler <ametzler@debian.org> Thu, 16 Jun 2016 19:12:08 +0200
libgcrypt20 (1.7.0-2) unstable; urgency=low
* Upload to unstable.
-- Andreas Metzler <ametzler@debian.org> Sun, 17 Apr 2016 13:16:30 +0200
libgcrypt20 (1.7.0-1) experimental; urgency=medium
* New upstream release.
* Update debian/copyright from AUTHORS.
* Update algorithm list in package description.
-- Andreas Metzler <ametzler@debian.org> Fri, 15 Apr 2016 19:31:29 +0200
libgcrypt20 (1.6.5+git20160413+8472b-1) experimental; urgency=medium
* New upstream snapshot.
* Use hardening=+bindnow instead of hardening=+all, we are mainly shipping
libraries, including static ones.
-- Andreas Metzler <ametzler@debian.org> Wed, 13 Apr 2016 18:54:07 +0200
libgcrypt20 (1.6.5+git20160407+5e5d3-1) experimental; urgency=medium
* New upstream snapshot.
-- Andreas Metzler <ametzler@debian.org> Thu, 07 Apr 2016 18:56:20 +0200
libgcrypt20 (1.6.5+git20160329+48ee9-1) experimental; urgency=medium
* New upstream snapshot.
* Drop 40_Fix-building-random-drbg-for-Win32-64.patch, removal of
src/gcrypt.h in debian/clean is unnecessary, too.
* Build with DEB_BUILD_MAINT_OPTIONS := hardening=+all.
-- Andreas Metzler <ametzler@debian.org> Wed, 30 Mar 2016 19:15:01 +0200
libgcrypt20 (1.6.5+git20160220+839d12c-2) experimental; urgency=medium
[ Andreas Metzler ]
* Drop build/ from debian/clean, passing --builddirectory=build on dh $@
line makes this unnecessary.
* 40_Fix-building-random-drbg-for-Win32-64.patch from upstream GIT: Remove
include for sys/types.h and asm/types.h. Fixes FTBFS in win* (and
possibly kfreebsd-*).
* 25_norevisionfromgit.diff: Hardcode dummy values instead of trying to pull
revision/version info from GIT when autoconf is run.
* Delete generated header src/gcrypt.h on clean. - The version shipped in
the tarball can have different content than a freshly generated one, and
with out-of-tree-builds the outdated version is not overwritten.
[ Daniel Kahn Gillmor ]
* Add libgcrypt-mingw-w64-dev package which will allow building a gpgv-win32
package for debian installer's win32-loader. Closes: #814954
-- Andreas Metzler <ametzler@debian.org> Mon, 22 Feb 2016 18:50:38 +0100
libgcrypt20 (1.6.5+git20160220+839d12c-1) experimental; urgency=medium
[ Daniel Kahn Gillmor ]
* Build out-of-tree for cleanliness.
[ Andreas Metzler ]
* Also set --builddirectory=build on dh $@ line.
* New git snapshot, drop 30_bufhelp-disable-unaligned-ppc.patch.
-- Andreas Metzler <ametzler@debian.org> Sat, 20 Feb 2016 16:28:56 +0100
libgcrypt20 (1.6.5+git20160212+a9b64-2) experimental; urgency=low
* Add 30_bufhelp-disable-unaligned-ppc.patch by Jussi Kivilinn (Disable
unaligned memory accesses on powerpc*) to fix errors on ppc64el.
-- Andreas Metzler <ametzler@debian.org> Sat, 13 Feb 2016 11:41:22 +0100
libgcrypt20 (1.6.5+git20160212+a9b64-1) experimental; urgency=medium
* Upload upstream git master branch to experimental to get some buildd
exposure.
* New upstream version (preparing for 1.7.0):
+ Drop 30_support_source_date_epoch.diff. Upstream now defaults to no
build-stamp.
+ Drop 20_fedora_libgcrypt-1.6.3-aliasing.patch. It does not apply cleanly
and we want to test unpatched buildability anyway.
+ List newly added symbols in symbols file.
+ Update debian/copyright from AUTORS and LICENSES. RFC 1952 code is gone.
Closes: #745453
+ Core enums have been extended (gcry_ctl_cmds, gcry_cipher_algos,
gcry_cipher_modes, gcry_pk_algos, gcry_md_algos, gcry_mac_algo) after
addition of inter alia SHA-3, ChaCha20, Poly1305, curve sec256k1 and
curves GOST R 34.10-2001 and GOST R 34.10-2012. Be paraniod and bump
Debian dependency info (via debian/libgcrypt20.symbols) to >= 1.7.0.
-- Andreas Metzler <ametzler@debian.org> Fri, 12 Feb 2016 10:18:00 +0100
libgcrypt20 (1.6.5-2) unstable; urgency=medium
* serial-tests was added in automake 1.12, add versioned b-d.
* Upload to unstable.
-- Andreas Metzler <ametzler@debian.org> Wed, 10 Feb 2016 12:01:58 +0100
libgcrypt20 (1.6.5-1) experimental; urgency=medium
* New upstream bugfix release.
+ Mitigate side-channel attack on ECDH with Weierstrass curves
[CVE-2015-7511]. See http://www.cs.tau.ac.IL/~tromer/ecdh/ for
details.
-- Andreas Metzler <ametzler@debian.org> Tue, 09 Feb 2016 19:52:06 +0100
libgcrypt20 (1.6.4-5) unstable; urgency=medium
* Move Vcs-* from git/http to https.
* Add 30_support_source_date_epoch.diff: Support setting BUILD_TIMESTAMP
using SOURCE_DATE_EPOCH through the SOURCE_DATE_EPOCH environment
variable. (Thanks, Jérémy Bobbio!). Use/b-d on dh-autoreconf instead of
autotools-dev. Closes: #812428
-- Andreas Metzler <ametzler@debian.org> Sun, 24 Jan 2016 16:00:41 +0100
libgcrypt20 (1.6.4-4) unstable; urgency=medium
* Delete build-aux/texinfo.tex and let texinfo use the system copy instead
to prevent breakage in pdf generation in UTF-8 locale. Closes: #803081
* Migrate from libgcrypt20-dbg to ddebs. dh_strip's --ddeb-migration
option was added to debhelper/unstable with version 9.20150628, bump
build-dependency accordingly.
-- Andreas Metzler <ametzler@debian.org> Fri, 25 Dec 2015 14:06:18 +0100
libgcrypt20 (1.6.4-3) unstable; urgency=medium
* Upload to unstable.
* Ship pdf instead of postscript docs.
-- Andreas Metzler <ametzler@debian.org> Sun, 18 Oct 2015 13:37:58 +0200
libgcrypt20 (1.6.4-2) experimental; urgency=medium
* Pull 20_fedora_libgcrypt-1.6.3-aliasing.patch from Fedora to fix testsuite
error with gcc5 on ppc64.
-- Andreas Metzler <ametzler@debian.org> Sat, 03 Oct 2015 18:06:52 +0200
libgcrypt20 (1.6.4-1) experimental; urgency=medium
* libgcrypt-config: Do not fail on missing dpkg-architecture.
Closes: #796818
* New upstream version.
-- Andreas Metzler <ametzler@debian.org> Sat, 26 Sep 2015 13:22:15 +0200
libgcrypt20 (1.6.3-2) unstable; urgency=medium
* Upload to unstable.
* Fix Vcs-Browser link.
-- Andreas Metzler <ametzler@debian.org> Sun, 01 Mar 2015 13:46:59 +0100
libgcrypt20 (1.6.3-1) experimental; urgency=medium
* Use ascii-armored debian/upstream/signing-key.asc instead of
debian/upstream-signing-key.pgp for uscan's verification. This alllows us
to drop debian/source/include-binaries. Add 2071B08A33BD3F06 as accepted
key.
* New upstream release.
+ Use ciphertext blinding for Elgamal decryption [CVE-2014-3591].
See http://www.cs.tau.ac.il/~tromer/radioexp/ for details.
+ Fixed data-dependent timing variations in modular exponentiation
[related to CVE-2015-0837, Last-Level Cache Side-Channel Attacks
are Practical].
-- Andreas Metzler <ametzler@debian.org> Sat, 28 Feb 2015 13:18:25 +0100
libgcrypt20 (1.6.2-4) unstable; urgency=medium
* Add libgcrypt11-dev transitional package. It Breaks libgnutls-dev
(<< 2.12.23-18), because addition of a dummy package does not magically
fix GnuTLS 2.x incompatibilities with libgcrypt20.
-- Andreas Metzler <ametzler@debian.org> Sat, 27 Sep 2014 14:12:54 +0200
libgcrypt20 (1.6.2-3) unstable; urgency=medium
* libgcrypt20-dev provides libgcrypt-dev.
-- Andreas Metzler <ametzler@debian.org> Sun, 31 Aug 2014 15:50:01 +0200
libgcrypt20 (1.6.2-2) unstable; urgency=medium
* Upload to unstable.
-- Andreas Metzler <ametzler@debian.org> Sun, 24 Aug 2014 07:38:52 +0200
libgcrypt20 (1.6.2-1) experimental; urgency=medium
* New upstream bugfix release.
* Upload to experimental, do not delay propagation of udeb (#758756) to
testing.
-- Andreas Metzler <ametzler@debian.org> Thu, 21 Aug 2014 19:38:21 +0200
libgcrypt20 (1.6.1-3) unstable; urgency=high
* Add udeb. Closes: #758756
-- Andreas Metzler <ametzler@debian.org> Thu, 21 Aug 2014 19:04:59 +0200
libgcrypt20 (1.6.1-2) unstable; urgency=medium
* libgcrypt20-dev does not provide libgcrypt-dev anymore and conflicts with
libgcrypt11-dev in addition to the virtual package libgcrypt-dev.
The previous setup of having libgcryptXX-dev provide/conflict
libgcrypt-dev breaks for packages build-depending on the virtual package.
Closes: #741959
-- Andreas Metzler <ametzler@debian.org> Mon, 17 Mar 2014 19:14:23 +0100
libgcrypt20 (1.6.1-1) unstable; urgency=medium
* New upstream version.
+ New member in gcry_md_flags, bump dependency version of gcry_md_open().
+ GCRYCTL_INACTIVATE_FIPS_FLAG/GCRYCTL_REACTIVATE_FIPS_FLAG reserved but
returning a GPG_ERR_NOT_IMPLEMENTED yet. Bump dependency version of
gcry_control().
* Fix c'n'p error in Vcs-Git field. Closes: #737022
-- Andreas Metzler <ametzler@debian.org> Wed, 29 Jan 2014 16:21:56 +0100
libgcrypt20 (1.6.0-2) unstable; urgency=low
* Upload to unstable.
* Add description to 12_lessdeps_libgcrypt-config.diff.
-- Andreas Metzler <ametzler@debian.org> Sat, 04 Jan 2014 13:15:57 +0100
libgcrypt20 (1.6.0-1) experimental; urgency=low
* Point vcs* to git.
* New upstream version.
+ Update symbol file.
+ Rename all (including -dev) packages to match soname bump. Because of
API changes gnutls26 cannot be built against gcrypt 1.6.0. As we are not
ready to drop gnutls26 and it seems unlikely that gnutls upstream makes
feature changes to its old-old-old-stable release we will need to keep
the old gcrypt development package around.
+ Don't build udeb for the time being.
+ Update version of libgpg-error-dev build-dependency.
* Drop Breaks with old, gcrypt-1.5.x incompatible versions of gnupg2, gpgsm
and libgnutls26.
* Ship hmac256.1 in libgcrypt20-dev.
* Add debian/upstream-signing-key.pgp (listed in
debian/source/include-binaries) and update watchfile to check
upstream signature.
* Edit "image path" entries in info docs to point /usr/share/doc/.../html.
* Replace /usr/share/doc/libgcrypt20-dbg with a symlink to
/usr/share/doc/libgcrypt20.
-- Andreas Metzler <ametzler@debian.org> Sun, 22 Dec 2013 15:51:07 +0100
libgcrypt11 (1.5.3-2) unstable; urgency=low
* Convert to dh and move building of ps and html docs to
override_dh_auto_build-indep. Enable parallel building.
-- Andreas Metzler <ametzler@debian.org> Tue, 20 Aug 2013 19:21:29 +0200
libgcrypt11 (1.5.3-1) unstable; urgency=high
* New upstream bugfix release. (CVE-2013-4242)
-- Andreas Metzler <ametzler@debian.org> Thu, 25 Jul 2013 14:24:43 +0200
libgcrypt11 (1.5.2-3) unstable; urgency=low
* Install libgcrypt.a and libgcrypt.so to /usr.
* [15_multiarchpath_in_-L.diff] Do not print -L/lib/i386-linux-gnu on
"libgcrypt-config --libs".
* Use debhelper v9 mode. This allows us to mark libgcrypt11-dbg Multi-Arch:
same.
-- Andreas Metzler <ametzler@debian.org> Sun, 23 Jun 2013 15:55:26 +0200
libgcrypt11 (1.5.2-2) unstable; urgency=low
* Upload to unstable.
* Fix vcs-field-not-canonical lintian error by refering to anonscm instead
of svn.debian.org.
* Update info in debian/copyright from upstream's README, fixing typo 'teh'.
* Delete some outdated and unused code in debian/rules.
-- Andreas Metzler <ametzler@debian.org> Sun, 09 Jun 2013 08:54:56 +0200
libgcrypt11 (1.5.2-1) experimental; urgency=low
* New upstream version.
+ IDEA support added.
* Move list of supported algorithms to a separate paragraph in description
to decrease work-load of translators. Closes: #640261
* Move TeX-packages from b-d to Build-Depends-Indep. (Thanks, P. J.
McDermott) Closes: #682597
-- Andreas Metzler <ametzler@debian.org> Sun, 21 Apr 2013 14:31:51 +0200
libgcrypt11 (1.5.1-1) experimental; urgency=low
* Point watchfile to stable release.
* New upstream version.
* Drop superfluous patches:
29_Fix-a-problem-with-select-and-high-fds.patch
30_Avoid-dereferencing-pointer-right-after-the-end.patch
31_Fix-segv-with-AES-NI-on-some-platforms.patch
32_libgcrypt-1.5-rinjdael-Fix-use-of-SSE2-outside-USE_A.patch
* Bump version gcry_control@GCRYPT_1.2 in debian/libgcrypt11.symbols from
1.4.5 to 1.5.1 since its argument enum has a new member.
-- Andreas Metzler <ametzler@debian.org> Thu, 21 Mar 2013 19:43:39 +0100
libgcrypt11 (1.5.0-5) unstable; urgency=low
* While we are at it also pick
29_Fix-a-problem-with-select-and-high-fds.patch
LP: #1084279
-- Andreas Metzler <ametzler@debian.org> Sun, 24 Feb 2013 18:38:55 +0100
libgcrypt11 (1.5.0-4) unstable; urgency=low
* Pull patches from upstream LIBGCRYPT-1-5-BRANCH:
30_Avoid-dereferencing-pointer-right-after-the-end.patch
31_Fix-segv-with-AES-NI-on-some-platforms.patch
<https://bugs.g10code.com/gnupg/issue1452> LP: #1105758
32_libgcrypt-1.5-rinjdael-Fix-use-of-SSE2-outside-USE_A.patch
Closes: #699034
-- Andreas Metzler <ametzler@debian.org> Sun, 24 Feb 2013 17:43:09 +0100
libgcrypt11 (1.5.0-3) unstable; urgency=low
* Upload to unstable.
* Drop 20_workaroundarmgcc.diff (1.4.6/unstable). It seems to be unnecessary
with 1.5.0.
* libgcrypt11 Breaks gnupg2|gpgsm (<< 2.0.17-2ubuntu2) and libgnutls26 (<<
2.12.7-3). See https://bugs.launchpad.net/bugs/815190 and
https://lists.gnu.org/archive/html/gnutls-devel/2011-07/msg00001.html
-- Andreas Metzler <ametzler@debian.org> Thu, 01 Sep 2011 18:53:49 +0200
libgcrypt11 (1.5.0-2) experimental; urgency=low
* Add a symbols file (Based on binary shipped in squeeze.) Closes: #550077
-- Andreas Metzler <ametzler@debian.org> Fri, 19 Aug 2011 13:20:19 +0200
libgcrypt11 (1.5.0-1) experimental; urgency=low
* Merge multi-arch changes (1.4.6-6 and 1.4.6-7), drop libtool la file.
* Drop CFLAGS += -Wall again, it has become unnecessary.
* New upstream version.
* Bump shlibs
-- Andreas Metzler <ametzler@debian.org> Sat, 02 Jul 2011 12:09:09 +0200
libgcrypt11 (1.5.0~beta1-1) experimental; urgency=low
* Development release.
* Drop 13_ftbfs_gold.diff. (applied upstream)
* Bump shlibs.
* Run ./configure with --enable-static option, it is disabled by default
now.
* Set CFLAGS += -Wall, the latest combination of cdbs + dpkg-dev does not
seem to set it by default.
-- Andreas Metzler <ametzler@debian.org> Sat, 26 Feb 2011 19:34:14 +0100
libgcrypt11 (1.4.6-9) unstable; urgency=low
* Also enable the gcc bug 633458 workaround on sparc.
-- Andreas Metzler <ametzler@debian.org> Sun, 07 Aug 2011 16:56:56 +0200
libgcrypt11 (1.4.6-8) unstable; urgency=medium
* [20_workaroundarmgcc.diff] Set __attribute__((noinline)) on
do_decrypt_aligned() if DEB_BUILD_ARCH=arm. This works around gcc bug
633458.
-- Andreas Metzler <ametzler@debian.org> Wed, 27 Jul 2011 19:09:35 +0200
libgcrypt11 (1.4.6-7) unstable; urgency=low
* Do not use multiarch path in udeb. (Thanks, Colin Watson)
-- Andreas Metzler <ametzler@debian.org> Sat, 25 Jun 2011 19:21:16 +0200
libgcrypt11 (1.4.6-6) unstable; urgency=low
* Stop shipping libtool la file. This should take care of LP: #751142
* Convert to multi-arch.
+ configure with --libdir=/lib/$(DEB_HOST_MULTIARCH), update
*.install accordingly.
+ Bump cdbs Build-Depends to 0.4.93 (required for expanding
$(DEB_HOST_MULTIARCH)).
+ Bump debhelper b-d to 8.1.3 (for ${misc:Pre-Depends}).
+ runtime library is Multi-Arch: same and has Pre-Depends:
${misc:Pre-Depends}.
+ This is based on 1.4.6-5ubuntu1, however some differences remain. -dbg
package is not Multi-Arch: same (Due to usr/lib/debug/usr/bin/*). We
ship the so-symlink in /lib/$(DEB_HOST_MULTIARCH) instead of
/usr/lib/$(DEB_HOST_MULTIARCH).
-- Andreas Metzler <ametzler@debian.org> Sat, 25 Jun 2011 17:52:12 +0200
libgcrypt11 (1.4.6-5) unstable; urgency=low
* Upload to unstable.
-- Andreas Metzler <ametzler@debian.org> Sat, 12 Feb 2011 16:15:28 +0100
libgcrypt11 (1.4.6-4) experimental; urgency=low
* Stricter version requirement (>> 1.10-0.1 instead of >= 1.4) on the
libgpg-error-dev build-dependency, to get correct dependencies in the
udeb.
* Use debhelper compatibility level 7.
-- Andreas Metzler <ametzler@debian.org> Sat, 15 Jan 2011 15:02:27 +0100
libgcrypt11 (1.4.6-3) experimental; urgency=low
* debian/patches/13_ftbfs_gold.diff fix build failure with binutils-gold.
Closes: #555179
* Add libgcrypt11-udeb. Closes: #608504 (Thanks for the patch, Jonas Meurer)
* Sync with Ubuntu:
- Disable tests when cross-building.
- Keep la file in /usr/lib, with a symlink in /lib.
-- Andreas Metzler <ametzler@debian.org> Sat, 01 Jan 2011 14:55:59 +0100
libgcrypt11 (1.4.6-2) experimental; urgency=low
* Move library to /lib. Closes: #604944
-- Andreas Metzler <ametzler@debian.org> Sat, 11 Dec 2010 13:03:43 +0100
libgcrypt11 (1.4.6-1) experimental; urgency=low
* New upstream version.
* Drop debian/patches/20_ftbfsmips.diff, included upstream.
* Includes tiger message-digest variant with commonly used output print
order. Closes: #575038
* Interface extended (GCRY_MD_TIGER1 GCRY_MD_TIGER2
GCRY_CIPHER_MODE_AESWRAP), bump shlibs.
* Policy 3.9. I have kept the conflicts for libgcrypt{,7}-{doc,dev}
unchanged instead of trying to convert them to Breaks. These would only
trigger on upgrades from installations older than Sarge (3.1).
-- Andreas Metzler <ametzler@debian.org> Sat, 17 Jul 2010 15:15:09 +0200
libgcrypt11 (1.4.5-2) unstable; urgency=low
* Fix FTBFS on mips(el). Thank you, Aurelien Jarno. Closes: #561475
-- Andreas Metzler <ametzler@debian.org> Wed, 03 Feb 2010 19:02:07 +0100
libgcrypt11 (1.4.5-1) unstable; urgency=low
* New upstream version.
+ Does not try to use SPARC32 assembly code on SPARC64. Closes: #560028
* Drop patches included upstream: 21_cpuid.diff 20_padlock.diff.
* Switch to 3.0 (quilt) format.
* Update copyright stanza for documentation.
* Simplify debian/rules. There should not be any reason to disable the
pubkey test on specific archs anymore since GCRYCTL_ENABLE_QUICK_RANDOM is
set. (#385805). Also tests/register et al. are run by upstream's check
target, there is no need for manual invocation.
-- Andreas Metzler <ametzler@debian.org> Sat, 12 Dec 2009 10:44:53 +0100
libgcrypt11 (1.4.4-6) unstable; urgency=low
* Sync priorities with override file, libgcrypt11 is priority standard
now.
* [patches/21_cpuid.diff] Fix CPUID detection. (Thank's, Ben Hutchings.)
Closes: #519391
-- Andreas Metzler <ametzler@debian.org> Sun, 29 Nov 2009 13:54:31 +0100
libgcrypt11 (1.4.4-5) unstable; urgency=low
* Use makeinfo -html instead of texi2html to generate html docs.
Closes: #552947
* Ship png figures used in html documentation.
-- Andreas Metzler <ametzler@debian.org> Sat, 31 Oct 2009 09:32:52 +0100
libgcrypt11 (1.4.4-4) unstable; urgency=low
* Update homepage location. Closes: #540468
* Empty dependency_libs in la-file.
* Stop double installing info files with both dh_install and dh_installinfo.
-- Andreas Metzler <ametzler@debian.org> Tue, 25 Aug 2009 20:24:31 +0200
libgcrypt11 (1.4.4-3) unstable; urgency=low
* 20_padlock.diff: Fix stack smashing on VIA processors with Padlock RNG
(patch by Tomas Mraz of Red Hat; thanks to Roberto Rosario for the
archaeology, forwarded from Ubuntu by Colin Watson). Closes: #535456
* Standards-Version: 3.8.2, no changes required.
* Sync section settings in control with override file.
-- Andreas Metzler <ametzler@debian.org> Sat, 04 Jul 2009 13:47:23 +0200
libgcrypt11 (1.4.4-2) unstable; urgency=low
* Upload to unstable.
-- Andreas Metzler <ametzler@debian.org> Sat, 21 Feb 2009 13:46:58 +0100
libgcrypt11 (1.4.4-1) experimental; urgency=low
* Add Simon Josefsson to uploaders.
* New upstream version.
* Fixes test failure on sparc. (Closes: #499542)
* Lintian: Add ${misc:Depends} to all package dependencies.
* Standards-Version 3.8.0, rename debian/README.source_and_patches to
debian/README.source
* Add Homepage field to debian/control.
* Also run new fips186-dsa test at build time.
-- Andreas Metzler <ametzler@debian.org> Sat, 24 Jan 2009 15:48:32 +0100
libgcrypt11 (1.4.3-1) experimental; urgency=low
* New upstream version.
* Add texlive-generic-recommended to Build-Depends (needed for epsf.tex),
drop tetex-bin alternatives.
* New symbols added, bump shlibs.
-- Andreas Metzler <ametzler@debian.org> Thu, 18 Sep 2008 19:40:18 +0200
libgcrypt11 (1.4.1-1) unstable; urgency=low
* New upstream version.
- includes debian/patches/13_fixexcessiverandom.diff
* Add Vcs-Svn: and Vcs-Browser control fields.
* Register libgcrypt11-doc with doc-base. (Closes: #472292)
* Use passive ftp instead of http in watchfile.
* Fix format errors in libgcrypt-config.1 (lintian)
* Stop (Build-)Depending on -0 versions (lintian)
-- Andreas Metzler <ametzler@debian.org> Sat, 26 Apr 2008 11:38:29 +0200
libgcrypt11 (1.4.0-3) unstable; urgency=low
* Added debian/patches/13_fixexcessiverandom.diff: Patch by upstream
reducing /dev/*random usage for initialising the RNG to less than 1/100.
This bug had been introduced in 1.3.1.
-- Andreas Metzler <ametzler@debian.org> Tue, 08 Jan 2008 19:49:13 +0100
libgcrypt11 (1.4.0-2) unstable; urgency=low
* Bump shlibs, new symbols added. (Should have been done in 1.4.0-1.)
* B-d on libgpg-error-dev (>= 1.4).
* First upload of 1.4.x to unstable, including alll changes from 1.3.0-1 to
1.4.0-1:
- gcrypt now uses abort() instead of exit() for critical errors (missing
/dev/random) Closes: #412408
-- Andreas Metzler <ametzler@debian.org> Wed, 12 Dec 2007 20:02:34 +0100
libgcrypt11 (1.4.0-1) experimental; urgency=low
* New upstream stable version.
* Standards-Version: 3.7.3. ${binary:Version} instead of ${Source-Version}.
-- Andreas Metzler <ametzler@debian.org> Mon, 10 Dec 2007 19:14:29 +0100
libgcrypt11 (1.3.2-1) experimental; urgency=low
* New upstream version.
- Remove 14_ftbfs_hppa_448377.diff (already included).
- gcrypt now uses abort() instead of exit() for critical errors (missing
/dev/random) Closes: #412408
- Pull new copyright header from source, getting rid of
old-fsf-address-in-copyright-file error.
-- Andreas Metzler <ametzler@debian.org> Thu, 6 Dec 2007 19:02:35 +0100
libgcrypt11 (1.3.1-2) experimental; urgency=low
* Add patches/14_ftbfs_hppa_448377.diff to actually make use of asm
routines. Fixes FTBFS on HPPA. Closes: #448377
* Make dumpsexp.8 more useful.
-- Andreas Metzler <ametzler@debian.org> Thu, 1 Nov 2007 09:02:17 +0100
libgcrypt11 (1.3.1-1) experimental; urgency=low
* New upstream version.
- includes dumpsexp, a tool for debugging s-expressions. Ship it in
libgcrypt11-dev and add are minimal manpage (generated by help2man).
* Update debian/copyright.
* Change build-dep to prefer texlive-latex-base over tetex-bin.
* Drop docbook-utils, docbook-to-man and jade from build-deps.
* Drop 13_fixPIC.diff 14_udiv_asm_fix_1253.diff 50_re_autofoo.diff
-- Andreas Metzler <ametzler@debian.org> Fri, 26 Oct 2007 17:56:18 +0200
libgcrypt11 (1.3.0-2) experimental; urgency=low
* 14_udiv_asm_fix_1253: Pulled from upstream SVN 1252:1253. Fix
build-failure on hppa. (Closes: #424616)
* 50_re_autofoo.diff regenerated and renamed.
-- Andreas Metzler <ametzler@debian.org> Sun, 20 May 2007 09:12:06 +0200
libgcrypt11 (1.3.0-1) experimental; urgency=low
* New upstream development release 1.3.0.
- includes 11_gcrypt_h_362636.patch and 13_powerpc64_284609.diff
- Support for SEED cipher and SHA-224 and HMAC using SHA-384 and SHA-512.
* Pulled from SVN:
- 13_fixPIC.diff to fix shlib-with-non-pic-code.
* run auto* 14_re_autofoo.diff
* bump shlibs to 1.3.0.
-- Andreas Metzler <ametzler@debian.org> Mon, 9 Apr 2007 12:57:15 +0200
libgcrypt11 (1.2.4-2) unstable; urgency=low
* Upload to unstable.
* Drop -lgpg-error from libgcrypt-config --libs output. (Closes: #405238)
* Switch to debhelper v5 mode.
* New upstream version closes filehandles in gcry_rndlinux_gather_random().
(Closes: #403613)
-- Andreas Metzler <ametzler@debian.org> Mon, 9 Apr 2007 11:22:41 +0200
libgcrypt11 (1.2.4-1) experimental; urgency=low
[ Andreas Metzler ]
* Add a watch file.
* Update download URL and example copyright statement in debian/copyright.
* New upstream version.
* Update patches/11_gcrypt_h_362636.patch to change gcrypt.h.in instead of
gcrypt.h.
-- Andreas Metzler <ametzler@debian.org> Sat, 3 Feb 2007 13:58:51 +0100
libgcrypt11 (1.2.3-2) unstable; urgency=low
[ Andreas Metzler ]
* Actually the keygen test does not access /dev/random, the pubkey test is
the entropy expensive one. Disable running pubkey test on arm, s390 and
sparc where it caused FTBFS. Re-enable keygen on s390. (closes: #385805)
-- Andreas Metzler <ametzler@debian.org> Mon, 4 Sep 2006 19:44:50 +0200
libgcrypt11 (1.2.3-1) unstable; urgency=low
[ Andreas Metzler ]
* Mark libgcrypt11-dbg as Priority: extra in debian/control
* New upstream version.
-- Andreas Metzler <ametzler@debian.org> Sat, 2 Sep 2006 15:13:46 +0200
libgcrypt11 (1.2.2-3) unstable; urgency=low
[ Andreas Metzler ]
* Don't run keygen test on s390 as the buildd seems to be entropy-starved
(closes: #377526)
-- Andreas Metzler <ametzler@debian.org> Sat, 29 Jul 2006 12:54:49 +0200
libgcrypt11 (1.2.2-2) unstable; urgency=low
[ James Westby ]
* New maintainer team. Thanks, Matthias for all the work you did.
* Set maintainer to alioth mailinglist.
* Drop build-dependency on binutils (>= 2.14.90.0.7), even sarge has 2.15-6.
* Standards-Version: 3.7.2, no changes required.
* Clean packaging against upstream tarball.
* Drop debian/*.dirs as dh_* will create the necessary directories.
* Remove code from debian/rules to update config.sub and config.guess as it
is handled by cdbs. Build-Depends on autotools-dev.
* Pass --enable-noexecstack to ./configure (closes: #321720)
* Use cdbs' simple-patchsys.mk.
- add debian/README.source_and_patches
- add debian/patches/11_gcrypt_h_362636 (closes: #362636)
- add debian/patches/20_doc_gcrypt_texi_typos.patch to correct a small
typo in doc/gcrypt.texi (not a new patch)
* Tidied up the debian/copyright file. Noted that the documentation is now
licensed under the GPL (closes: #323458)
* Remove Build-Depends-Indep as it contained no packages that are not in
Build-Depends.
* Remove the change to doc/gcrpyt.texi that rendered incorrectly.
* Use symbol versioning by passing --enable-ld-version-script in
DEB_CONFIGURE_EXTRA_FLAGS in debian/rules.
[ Andreas Metzler ]
* Add patches/13_powerpc64_284609.diff (not a new patch).
* Set DEB_MAKE_CHECK_TARGET = check to run included testsuite.
-- Andreas Metzler <ametzler@debian.org> Sat, 8 Jul 2006 13:06:34 +0200
libgcrypt11 (1.2.2-1) unstable; urgency=low
* Updated to new Upstream version.
* Update shlibdep version to 1.2.2
* Update copyright file with pointers to the current SCM archives.
-- Matthias Urlichs <smurf@debian.org> Tue, 18 Oct 2005 18:27:03 +0200
libgcrypt11 (1.2.1-5) unstable; urgency=low
* Added shlibdep flag. Closes:#330019
* Skip tests if cross-building. Closes:#286619
* Fix the debian/copyright file. Closes:#323458
- Also add a Suggests: libgcrypt11-doc to debian/control (same bug).
-- Matthias Urlichs <smurf@debian.org> Mon, 17 Oct 2005 19:20:23 +0200
libgcrypt11 (1.2.1-4) unstable; urgency=low
* Fix HTML documentation generation (texi2html update).
Closes: #318520: FTBFS: Cannot install docs
-- Matthias Urlichs <smurf@debian.org> Mon, 18 Jul 2005 00:02:52 +0200
libgcrypt11 (1.2.1-3) unstable; urgency=low
* Rewrote Description: in debian/control.
Closes: #291984: DSA is not a hash function
* Added Priority: important to the runtime library, because it is.
* Added a missing period to doc/gcrypt.texi.
Closes: #317474: install-info errors during installation
* Updated Standards-Version: to 3.6.2; no changes.
-- Matthias Urlichs <smurf@debian.org> Thu, 14 Jul 2005 05:55:01 +0200
libgcrypt11 (1.2.1-2) unstable; urgency=low
* Fix FTBFS due to missing /usr/share/misc/config.guess file.
-- Matthias Urlichs <smurf@debian.org> Thu, 14 Jul 2005 05:55:01 +0200
libgcrypt11 (1.2.1-1) unstable; urgency=low
* Merge with Upstream: v1.2.1
Closes: #284905: FTBFS (amd64/gcc-4.0): invalid storage class for
function 'serpent_test'
* Add Suggests: rng-tools.
Closes: #286448: should suggest rng-tools
-- Matthias Urlichs <smurf@debian.org> Mon, 4 Jul 2005 01:06:34 +0200
libgcrypt11 (1.2.0-12) unstable; urgency=low
* Suggest rng-tools (support for hardware random number generators
on recent mainboards). From Marc Haber. Closes: #286448.
-- Matthias Urlichs <smurf@debian.org> Mon, 20 Dec 2004 15:24:13 +0100
libgcrypt11 (1.2.0-11) unstable; urgency=low
* Support ppc64.
Patch by Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
Closes:#284609
-- Matthias Urlichs <smurf@debian.org> Wed, 8 Dec 2004 16:59:34 +0100
libgcrypt11 (1.2.0-10) unstable; urgency=high
* Revert accidental version number change in configure.ac.
(Accidentally-applied patch while pulling bugfixes from CVS.)
Sorry about that.
-- Matthias Urlichs <smurf@debian.org> Mon, 11 Oct 2004 09:28:53 +0200
libgcrypt11 (1.2.0-9) unstable; urgency=medium
* Also add a Replaces: for -doc. *Sigh*.
-- Matthias Urlichs <smurf@debian.org> Tue, 5 Oct 2004 08:46:15 +0200
libgcrypt11 (1.2.0-8) unstable; urgency=medium
* Let libgcrypt11-doc onflict with libgcrypt-doc
- Closes: #274769
* Fix FTBFS in test, due to latest glibc headers
-- Matthias Urlichs <smurf@debian.org> Mon, 4 Oct 2004 09:01:53 +0200
libgcrypt11 (1.2.0-7) unstable; urgency=medium
* Added build-dep on binutils (>= 2.14.90.0.7)
- Closes: #265255
* Merged latest Upstream maintainance changes.
-- Matthias Urlichs <smurf@debian.org> Sun, 12 Sep 2004 01:26:41 +0200
libgcrypt11 (1.2.0-6) unstable; urgency=medium
* Memory leak found by Modestas Vainius <modax@zveryno.mooo.com>.
- Closes: #264428.
* Revert hppa assembly code to old version;
Upstream's new code isn't relocatable on Linux.
(This change was included in the manually-built 1.2.0-4 on hppa.)
-- Matthias Urlichs <smurf@debian.org> Sun, 8 Aug 2004 23:32:53 +0200
libgcrypt11 (1.2.0-5) unstable; urgency=low
* Include debugging package.
-- Matthias Urlichs <smurf@debian.org> Sun, 8 Aug 2004 23:12:16 +0200
libgcrypt11 (1.2.0-4) unstable; urgency=medium
* Ported rijndael.c alignment patches from gcrypt7.
-- Matthias Urlichs <smurf@debian.org> Thu, 15 Jul 2004 23:40:56 +0200
libgcrypt11 (1.2.0-3) unstable; urgency=low
* Fix AC_DEFUN name quoting.
* Disable maintainer mode.
-- Matthias Urlichs <smurf@debian.org> Wed, 14 Jul 2004 09:43:56 +0200
libgcrypt11 (1.2.0-2) experimental; urgency=low
* Taken over the package from Ivo Timmerman
* run those tests which don't read /dev/random
-- Matthias Urlichs <smurf@debian.org> Mon, 14 Jun 2004 17:06:35 +0200
libgcrypt11 (1.2.0-1) experimental; urgency=low
* New upstream version.
* README.Debian: removed.
* control: Removed warning about usability from the package
descriptions.
-- Ivo Timmermans <ivo@debian.org> Thu, 15 Apr 2004 12:33:56 +0200
libgcrypt11 (1.1.93-0.1) experimental; urgency=low
* new Upstream version
-- Matthias Urlichs <smurf@debian.org> Mon, 8 Mar 2004 11:59:32 +0100
libgcrypt7 (1.1.90-1.1) unstable; urgency=high
* NMU
* [debian/control] Duplicate Build-Depends-Indep into Build-Depends as the
buildds ignore Build-Depends-Indep. (Closes: #224588)
-- J.H.M. Dassen (Ray) <jdassen@debian.org> Mon, 29 Dec 2003 11:44:14 +0100
libgcrypt7 (1.1.90-1) unstable; urgency=low
* New upstream version.
-- Ivo Timmermans <ivo@debian.org> Thu, 4 Dec 2003 13:36:02 +0100
libgcrypt7 (1.1.44-1) experimental; urgency=low
* New upstream version.
-- Ivo Timmermans <ivo@debian.org> Fri, 31 Oct 2003 18:12:19 +0100
libgcrypt7 (1.1.43-1) experimental; urgency=low
* New upstream version (Closes: #205081); renamed source to libgcrypt7.
* debian/rules:
* Rewritten to use CDBS;
* Install HTML documentation (generated with texi2html);
* Don't install the DVI version of the manual.
* debian/control:
* Added build dependencies on cdbs, libgpg-error-dev, auto*,
libtool, texi2html;
* Updated Standards-Version.
-- Ivo Timmermans <ivo@debian.org> Thu, 30 Oct 2003 23:59:54 +0100
libgcrypt (1.1.12-4) unstable; urgency=low
* debian/libgcrypt-doc.info: Remove everything except gcrypt.info.
(Closes: #213743)
-- Ivo Timmermans <ivo@debian.org> Fri, 3 Oct 2003 12:35:53 +0200
libgcrypt (1.1.12-3) unstable; urgency=high
* src/Makefile.am: Revert Robert Millan's patch (thanks Marcus).
It appears libgcrypt can adapt itself to any threading environment
by using weak symbols, so explicit linking to pthread will break
things. (Closes: #193097)
-- Ivo Timmermans <ivo@debian.org> Tue, 27 May 2003 10:43:03 +0200
libgcrypt (1.1.12-2) unstable; urgency=low
* src/Makefile.am: Apply patch by Robert Millan to fix build
problems on hurd. (Closes: 187309)
* debian/control: Change section of libgcrypt-dev to libdevel.
-- Ivo Timmermans <ivo@debian.org> Sun, 4 May 2003 16:54:35 +0200
libgcrypt (1.1.12-1) unstable; urgency=low
* New upstream release.
-- Ivo Timmermans <ivo@debian.org> Mon, 20 Jan 2003 13:59:54 +0100
libgcrypt (1.1.11-4) unstable; urgency=low
* src/libgcrypt.vers: Fix typo (doh!)
-- Ivo Timmermans <ivo@debian.org> Tue, 7 Jan 2003 00:06:34 +0100
libgcrypt (1.1.11-3) unstable; urgency=low
* src/libgcrypt.vers: Applied a workaround for GNUTLS by Werner Koch.
-- Ivo Timmermans <ivo@debian.org> Mon, 6 Jan 2003 21:16:29 +0100
libgcrypt (1.1.11-2) unstable; urgency=low
* debian/rules: Eh, undo silliness.
-- Ivo Timmermans <ivo@debian.org> Mon, 6 Jan 2003 19:02:05 +0100
libgcrypt (1.1.11-1) unstable; urgency=low
* New upstream release.
* debian/libgcrypt1.shlibs: Updated.
-- Ivo Timmermans <ivo@debian.org> Mon, 6 Jan 2003 17:18:34 +0100
libgcrypt (1.1.10-2) unstable; urgency=low
* debian/control: libgcrypt-doc changed section to doc.
* debian/libgcrypt-doc.files: New file; install info pages.
* debian/libgcrypt-doc.dirs: Added usr/share/info.
-- Ivo Timmermans <ivo@debian.org> Thu, 31 Oct 2002 00:07:39 +0100
libgcrypt (1.1.10-1) unstable; urgency=low
* New upstream release. (Closes: #167077)
* debian/libgcrypt1.dirs: Remove empty dir /usr/lib/libgcrypt.
(Closes: #156117)
-- Ivo Timmermans <ivo@debian.org> Wed, 30 Oct 2002 19:26:51 +0100
libgcrypt (1.1.8-2) unstable; urgency=low
* Fixing build/upload screwups.
-- Ivo Timmermans <ivo@debian.org> Fri, 9 Aug 2002 14:55:39 +0200
libgcrypt (1.1.8-1) unstable; urgency=low
* New upstream release.
* Changes from Ray Dassen:
- debian/libgcrypt1.shlibs: Depend on libgcrypt1 >> 1.1.8-0
- debian/rules: Removed bashism in install target.
- scripts/autogen.sh: invoke automake --copy --add-missing.
-- Ivo Timmermans <ivo@debian.org> Thu, 8 Aug 2002 10:15:42 +0200
libgcrypt (1.1.7-3) unstable; urgency=low
* Updated debian/copyright to contain the copyright and license
information about the GPL, LGPL and FDL. (Closes: #150011)
* Package descriptions changed to "LGPL Crypto library".
* libgcrypt1.shlibs: Depend on libgcrypt1 >> 1.1.7-0
* Fix @direntry in gcrypt.texi. (Closes: #150010)
-- Ivo Timmermans <ivo@debian.org> Sat, 15 Jun 2002 14:52:55 +0200
libgcrypt (1.1.7-2) unstable; urgency=low
* Moved libgcrypt-dev to devel.
* New upload with correct Maintainer field in .changes :-)
* Closes: #126368, #135514, #127863, #130642, #133978
-- Ivo Timmermans <ivo@debian.org> Fri, 14 Jun 2002 11:33:30 +0200
libgcrypt (1.1.7-1) unstable; urgency=low
* New upstream release. (Closes: #126368)
* Changed description of -doc, -dev packages to mention differences.
(Closes: #135514)
* NMU ACK; Closes: #127863, #130642, #133978)
* Cleaned up debian/rules:-
* Don't call autoconf or automake. As a result, the build
dependencies are much lighter.
* Support DEB_BUILD_OPTIONS and cross compilation.
* Updated shlibs file.
-- Ivo Timmermans <ivo@debian.org> Fri, 14 Jun 2002 09:37:59 +0200
libgcrypt (1.1.5-4) unstable; urgency=low
* Old maintainer. Yay.
-- Ivo Timmermans <ivo@debian.org> Sat, 25 May 2002 20:35:58 +0200
libgcrypt (1.1.5-3.4) unstable; urgency=low
* NMU
* Reapply hppa patch that has gone missing. (Closes: #127863)
-- Randolph Chung <tausq@debian.org> Tue, 16 Apr 2002 22:31:34 -0700
libgcrypt (1.1.5-3.3) unstable; urgency=low
* NMU
* move from non-US to main.
-- LaMont Jones <lamont@debian.org> Fri, 29 Mar 2002 17:41:18 -0700
libgcrypt (1.1.5-3.2) unstable; urgency=low
* Non-Maintainer Upload, during BSP #7.
* configure.ac: applied patch from James Troup to fix build
problems on Sparc (closes: #133978).
* Ran autoconf; automake on the source tree.
-- Jordi Mallach <jordi@debian.org> Sun, 17 Feb 2002 22:23:59 +0100
libgcrypt (1.1.5-3.1) unstable; urgency=medium
* NMU
* Fixes compile problems on powerpc/alpha/m68k (Closes: #130642)
* Fixes compile problems on Hurd (Closes: #126368)
-- Randolph Chung <tausq@debian.org> Tue, 5 Feb 2002 04:46:43 +0000
libgcrypt (1.1.5-3) unstable; urgency=medium
* Applied patch from LaMont Jones to not build documentation in
binary-arch (closes: #129286).
* debian/control:
+ removed Build-Depends which should be in B-D-Indep (closes: #128743).
+ fixed typos in descriptions (closes: #125622, #125623, #125624).
* debian/copyright: fixed lintian warning.
* debian/docs: removed BUGS (empty) and INSTALL (unneeded);
added THANKS and TODO.
* debian/libgcrypt1.shlibs: updated for 1.1.5 (related to #129103).
* debian/rules: fixed clean target.
* Above fixes by Jordi Mallach <jordi@debian.org>
-- Robert van der Meulen <rvdm@debian.org> Fri, 18 Jan 2002 20:09:05 +0100
libgcrypt (1.1.5-2) unstable; urgency=low
* Changed Maintainer: address
* Fixed build depends (Closes: #128743)
-- Robert van der Meulen <rvdm@debian.org> Sun, 13 Jan 2002 19:44:11 +0100
libgcrypt (1.1.5-1) unstable; urgency=low
* New upstream release
* New maintainer
* Fixed hppa build problems (Closes: #127863)
* Fixed HURD build problems (Closes: #126368)
-- Robert van der Meulen <rvdm@debian.org> Thu, 10 Jan 2002 12:37:50 +0100
libgcrypt (1.1.4-4) unstable; urgency=medium
* sexp.c: Fix build problem op ppc et al. (Closes: #119592)
-- Ivo Timmermans <ivo@debian.org> Wed, 14 Nov 2001 17:06:48 +0100
libgcrypt (1.1.4-3) unstable; urgency=low
* Change build system so that binary-arch and binary-indep can be built
independently; update dependencies to include docbook-utils
(Closes: 116515)
* Update src/sexp.c to cvs version. (Closes: 118896)
-- Ivo Timmermans <ivo@debian.org> Sat, 10 Nov 2001 20:03:17 +0100
libgcrypt (1.1.4-2) unstable; urgency=low
* Split off documentation to a separate package.
* Explicitly strip /usr/lib/libgcrypt/*.
-- Ivo Timmermans <ivo@debian.org> Thu, 9 Aug 2001 23:26:59 +0200
libgcrypt (1.1.4-1) unstable; urgency=low
* Initial Release. (Closes: #107498)
-- Ivo Timmermans <ivo@debian.org> Sat, 4 Aug 2001 11:22:10 +0200
|