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
|
gnupg2 (2.0.14-2+squeeze2) squeeze-security; urgency=low
* debian/patches/{05-cve-2013-4402_p1.diff,06-cve-2013-4402_p2.diff}:
Fix for CVE-2013-4402, "infinite recursion in the compressed packet
parser". (Closes: #725433)
* debian/patches/07-cve-2013-4351.diff: Fix for CVE-2013-4351, "treats
no-usage-permitted keys as all-usages-permitted". (Closes: #722724)
-- Eric Dorland <eric@debian.org> Tue, 08 Oct 2013 18:27:16 -0400
gnupg2 (2.0.14-2+squeeze1) stable-security; urgency=high
* debian/patches/04-cve-2012-6085.diff: Patch from upstream to fix
CVE-2012-6085, "gnupg key import memory corruption". (Closes: #697251)
* debian/rules: Remove linking of config.{guess,sub} and creation of the
version file on clean that breaks newer dpkg-source.
-- Eric Dorland <eric@debian.org> Sat, 05 Jan 2013 00:28:47 -0500
gnupg2 (2.0.14-2) unstable; urgency=low
* debian/*.lintian, debian/*.lintian-overrides, debian/rules: Rename
lintian files and use dh_lintian instead of shell snippets.
* debian/source/patch-header, debian/source/options: Delete patch header
and remove single-debian-patch option.
* debian/patches/01-gnupg2-rename.diff: Move patch to do the necessary
renaming of gnupg -> gnupg2 in a quilt patch.
* debian/patches/02-encode-s2k.diff: Added patch to fix passphrase
problem in gpgsm. Thanks Martijn van Brummelen for the NMU to fix this
problem in 2.0.14-1.1.
* debian/patches/03-gpgsm-realloc.diff: Fix for "Realloc Bug with X.509
certificates" for gpgsm. (Closes: #590122)
* debian/rules, debian/control: Use dh-autoreconf and autopoint to
regenerate autotools files at build time.
-- Eric Dorland <eric@debian.org> Sun, 25 Jul 2010 02:16:42 -0400
gnupg2 (2.0.14-1) unstable; urgency=low
* New upstream release.
* debian/control: Build depend on libreadline-dev instead of
libreadline5-dev, since libreadline6-dev is out. (Closes: #548922)
* debian/source/format, debian/source/options,
debian/source/patch-header: Convert to v3 quilt format, with
single-debian-patch.
* debian/control: Tighten dependency on gnupg-agent. (Closes: #551792)
-- Eric Dorland <eric@debian.org> Sat, 09 Jan 2010 21:15:18 -0500
gnupg2 (2.0.13-1) unstable; urgency=low
* New upstream release.
* debian/control: Depend instead of Recommend gnupg-agent. (Closes:
#538947)
-- Eric Dorland <eric@debian.org> Mon, 07 Sep 2009 20:38:23 -0400
gnupg2 (2.0.12-1) unstable; urgency=low
* New upstream release. (Closes: #499569, #463270, #446494, #314068,
#519375, #514587)
* debian/control: Change build dependency on gs to ghoscript, since
ghoscript has been replaced.
* debian/compat: Use debhelper v7.
* debian/control: Update Standards-Version to 3.8.2.
* debian/control: Use ${misc:Depends}.
* configure.ac: Override pkgdatadir so that it points to
/usr/share/gnupg2. (Closes: #528734)
* debian/rules: No longer need to specify pkgdatadir at make install
time.
-- Eric Dorland <eric@debian.org> Sun, 23 Aug 2009 20:48:11 -0400
gnupg2 (2.0.11-1) unstable; urgency=low
* New upstream release. (Closes: #496663)
* debian/control: Make the description a little more distinctive than
gnupg v1's. Thanks Jari Aalto. (Closes: #496323)
-- Eric Dorland <eric@debian.org> Sun, 08 Mar 2009 22:46:47 -0400
gnupg2 (2.0.9-3) unstable; urgency=medium
* Urgency medium to try to beat the release.
* tools/gpgkey2ssh.c: Patch from Daniel Kahn Gillmor to fix broken ssh
key generation. (Closes: #473841)
-- Eric Dorland <eric@debian.org> Mon, 21 Jul 2008 03:48:11 -0400
gnupg2 (2.0.9-2) unstable; urgency=low
* The "I've neglected you too long" release.
* debian/control:
- Add recommends on gnupg-agent for gpgsm and gnupg2, since they need
it under most circumstances. (Closes: #459462, #477691)
- Depend on pinentry instead of recommend, and move pinentry-gtk2 to the
front of the alternatives list. (Closes: #462951)
* keyserver/gpgkeys_curl.c, keyserver/gpgkeys_hkp.c: Fix FTBFS with gcc
4.3 strictness on bitfields combined with curl. (Closes: #476999)
-- Eric Dorland <eric@debian.org> Mon, 28 Apr 2008 03:22:20 -0400
gnupg2 (2.0.9-1) unstable; urgency=low
* New upstream release. Fixes CVE-2008-1530, Key import memory corruption.
(Closes: #472928)
* debian/rules: Don't ignore status of make distclean, just check for
the existance of the Makefile.
-- Eric Dorland <eric@debian.org> Sat, 29 Mar 2008 03:21:21 -0400
gnupg2 (2.0.8-1) unstable; urgency=low
* New upstream release. (Closes: #428635)
* debian/watch: Use passive ftp, ftp.gnupg.org doesn't seem happy
otherwise. (Closes: #456467)
* debian/control:
- Requires libassuan >= 1.0.4 now.
- Remove the XS- prefix from the Vcs-* headers.
- Add Homepage header.
- Upgrade Standards-Version to 3.7.3.0.
- Make gnupg2 optional rather than extra.
- Remove unnecessary conflict on suidmanager.
-- Eric Dorland <eric@debian.org> Sat, 22 Dec 2007 02:06:42 -0500
gnupg2 (2.0.7-1) unstable; urgency=low
* New upstream release.
* debian/rules:
- Remove unnecessary deletion of the .gmo files. (Closes: #442583)
- Clean out some old comments
* gnupg-agent.xsession: Remove the quotes around --write-env-file
argument. Not ideal, but fine for now. Thanks Luis Rodrigo Gallardo
Cruz. (Closes: #443580)
-- Eric Dorland <eric@debian.org> Sun, 30 Sep 2007 02:50:40 -0400
gnupg2 (2.0.6-1) unstable; urgency=low
* New upstream release. (Closes: #437289)
* debian/gnupg-agent.xsession: Run the Xsession under the gpg-agent, so
it exits properly when the session dies. (Closes: #401843)
* debian/control: Add XS-Vcs headers for its new git home.
-- Eric Dorland <eric@debian.org> Mon, 03 Sep 2007 23:29:11 -0400
gnupg2 (2.0.5-2) unstable; urgency=low
* The "Ubuntu, I would have done it had you only asked" release.
* debian/copyright: Fix download location. Thanks Ubuntu.
* debian/README.Debian: Remove, doesn't contain any relevant info.
* debian/rules:
- Build with --sysconfdir=/etc, thanks Bernhard Herzog. (Closes: #434790)
- Run dh_installexamples.
- Don't list the docs to install in here.
* debian/gnupg2.examples: New file, install gpgconf.conf as an example
into /usr/share/doc. Hope this is a good compromise Bernhard. (Closes:
#434878)
* debian/control:
- Remove opensc and pcsc-lite build dependencies, they're not used anymore.
- Add libcurl4-gnutls-dev build dep, to use the real curl.
* g10/call-agent.c: set DBG_ASSUAN to 0 to suppress a debug
message. Thanks Ubuntu.
* debian/gnupg2.docs, debian/gpgsm.docs: Move installed docs in here,
add some new docs. Thanks Ubuntu.
* debian/rules, debian/gnupg-agent.install: Build symcryptrun and install it
in the gnupg-agent package. Thanks Bernhard Herzog. (Closes: #434787)
* debian/rules, debian/control: Only recommend libldap, don't depend on
it.Thanks Riku. (Closes: #435138)
-- Eric Dorland <eric@debian.org> Thu, 16 Aug 2007 22:24:16 -0400
gnupg2 (2.0.5-1) unstable; urgency=low
* New upstream release.
* debian/watch: Add watch file.
* debian/control:
- Require libassuan 1.0.2 or greater.
- Require libksba 1.0.2 or greater.
- Don't recommend plain gpg anymore.
* debian/copyright: Update copyright text for GPL v3 relicensing.
* docs/scdaemon.texi: Remove old --print-atr documentation. Thanks
Ludovic Rousseau. (Closes: #404128)
-- Eric Dorland <eric@debian.org> Sun, 22 Jul 2007 16:03:32 -0400
gnupg2 (2.0.4-1) unstable; urgency=low
* New upstream release.
-- Eric Dorland <eric@debian.org> Fri, 11 May 2007 00:41:01 -0400
gnupg2 (2.0.3-1) unstable; urgency=high
* New upstream release.
- Fixes multoiple messages problem aka CVE-2007-1263.
-- Eric Dorland <eric@debian.org> Fri, 9 Mar 2007 03:28:53 -0500
gnupg2 (2.0.2-1) unstable; urgency=high
* New upstream release. (Closes: #409559)
* Thanks Andreas Barth for NMUs. (Closes: #400777, #401895, #401913)
* debian/gpgsm.install: pcsc-wrapper renamed to gnupg-pcsc-wrapper.
-- Eric Dorland <eric@debian.org> Mon, 19 Feb 2007 20:34:52 -0500
gnupg2 (2.0.0-5) unstable; urgency=high
* debian/control: Remove unnecessary dependencies on makedev and
udev. Thanks Marco d'Itri.
* doc/gnupg.texi, debian/gnupg2.info, debian/rules: Set the output file
to gnupg2.info, and use that for the index. (Closes: #398493)
-- Eric Dorland <eric@debian.org> Fri, 24 Nov 2006 02:23:35 -0500
gnupg2 (2.0.0-4) unstable; urgency=medium
* debian/control: Update forgotten replaces for pcsc-wrapper move.
-- Eric Dorland <eric@debian.org> Mon, 20 Nov 2006 23:02:25 -0500
gnupg2 (2.0.0-3) unstable; urgency=medium
* debian/control: Remove warning about development, thanks Gonzalo
HIGUERA DIAZ. (Closes: #399551)
-- Eric Dorland <eric@debian.org> Mon, 20 Nov 2006 14:32:33 -0500
gnupg2 (2.0.0-2) unstable; urgency=medium
* All packaging fixes, so urgency medium to beat the freeze.
* debian/distfiles, debian/lintian.override, debian/point-to-info.1:
Remove unused files.
* debian/gnupg2.info, debian/rules, gnupg2.files: Install all the info
files properly. (Closes: #398493)
* debian/rules:
- Remove some unnecessary autotools build rules.
- Move some of make install targets more correctly to the
configure line.
* debian/*.files, debian/rules: Rename *.files to .install and use
dh_install nstead of dh_movefiles.
* debian/gnupg-agent.xsession: Account for spaces in the configuration
file, thanks Artem Zolochevskiy. (Closes: #352326)
* debian/control:
- Adjust build-dependency versions slightly to match what the
configure scipt requires.
- Update Standards-Version to 3.7.2.2.
* debian/gpgsm.install, debian/gnupg2.install: Install the pcsc-wrapper
in gpgsm. (Closes: #353232)
* debian/gpgsm.install, debian/rules: Install gpg-protect-tool into
/usr/libb/gnupg2.
-- Eric Dorland <eric@debian.org> Sun, 19 Nov 2006 18:03:39 -0500
gnupg2 (2.0.0-1) unstable; urgency=medium
* New upstream release. (Closes: #398215)
* common/estream.c: #define PTH_SYSCALL_SOFT 0 as suggested by Daniel Hess.
-- Eric Dorland <eric@debian.org> Sun, 12 Nov 2006 23:52:59 -0500
gnupg2 (1.9.94-1) unstable; urgency=low
* New upstream release.
-- Eric Dorland <eric@debian.org> Thu, 2 Nov 2006 16:06:30 -0500
gnupg2 (1.9.93-1) unstable; urgency=medium
* New upstream release. Urgency medium to try to beat the freeze. Thanks
to Andreas Metzler for getting this package into shape.
-- Eric Dorland <eric@debian.org> Wed, 25 Oct 2006 00:41:15 -0400
gnupg2 (1.9.91-0.1) unstable; urgency=low
* New upstream version, built against clean upstream tarball.
(Closes: #378489,#388257)
* bump Build-Depends:
- libgpg-error-dev 0.6 -> 1.4
- libassuan-dev 0.6.10 -> 0.9.1
- libksba-dev 0.9.13 -> 1.0.0 (closes: #368552)
* Add libreadline5-dev to Build-Depends.
* Pass proper --build and --host args to ./configure.
* configure with --mandir='$${prefix}/share/man'.
* Add $(LIBINTL) to gpgsplit_LDADD in tools/Makefile.am.
* New upstream includes a lot more manpages, ship them.
(Closes: #300129,#300677)
gpg-agent(1) documents ~/gpg-agent.conf. (Closes: #300676)
* Update debian/copyright.
* Drop gnupg2.postinst gnupg2.postrm postinst postrm. They all only consited
of calls to suidregister for /usr/bin/gpg" or "chmod 4755 /usr/bin/gpg".
suidregister has been obsolete for a long time and /usr/bin/gpg is not
part of these packages. - If /usr/bin/gpg(v)2 was supposed to be installed
suid it should be shipped with these permissions in the deb instead
using chmod in postinst anyway.
* Drop preinst (ending up as gnupg-agent's preinst), which only showed
a warning on upgrades from <<0.3.2-1. - There never was a gnupg-agent
0.3.2-1.
* Add (noop) binary-indep target as required by policy 4.9.
-- Andreas Metzler <ametzler@debian.org> Sun, 8 Oct 2006 07:51:44 +0000
gnupg2 (1.9.20-2) unstable; urgency=high
* debian/control: Make myself the maintainer with Matthias' permission.
* Acknowledge NMU. (Closes: #375053, #376755)
* g10/parse-packet.c: Patch from Martin Schulze to backport security fix
for CVE-2006-3746, crash when receiving overly long comments.
-- Eric Dorland <eric@debian.org> Fri, 4 Aug 2006 18:11:43 -0400
gnupg2 (1.9.20-1.1) unstable; urgency=high
* Non-maintainer upload.
* Adapt patch from upstream CVS, fixing buffer overflow leading to remote
DoS/crash (CVE-2006-3082). (Closes: #375053)
-- Steinar H. Gunderson <sesse@debian.org> Tue, 4 Jul 2006 20:37:43 +0200
gnupg2 (1.9.20-1) unstable; urgency=low
* New Upstream version. Closes:#306890,#344530
* Closes:#320490: gpg-protect-tool fails to decrypt PKCS-12 files
* Depend on libopensc2-dev, not -1-. Closes:#348106
-- Matthias Urlichs <smurf@debian.org> Tue, 24 Jan 2006 04:31:42 +0100
gnupg2 (1.9.19-2) unstable; urgency=low
* Convert debian/changelog to UTF-8.
* Put gnupg-agent and gpgsm lintian overrides in the respectively
right package. Closes: #335066
* Added debhelper tokens to maintainer scripts.
* xsession fixes:
o Added host name to gpg-agent PID file name. Closes: #312717
o Fixed xsession script to be able to run under zsh. Closes: #308516
o Don't run gpg-agent if one is already running. Closes: #336480
* debian/control:
o Fixed package description of gpgsm package. Closes: #299842
o Added mention of gpg-agent to description of gnupg-agent package.
Closes: #304355
* Thanks to Peter Eisentraut <petere@debian.org> for all of the above.
-- Matthias Urlichs <smurf@debian.org> Thu, 8 Dec 2005 22:13:21 +0100
gnupg2 (1.9.19-1) unstable; urgency=low
* Merged with 1.9.19.
* Re-enable gpgv2 package.
-- Matthias Urlichs <smurf@debian.org> Sat, 22 Oct 2005 14:33:33 +0200
gnupg2 (1.9.17-1) unstable; urgency=low
* Merged with Upstream 1.9.17.
-- Matthias Urlichs <smurf@debian.org> Mon, 4 Jul 2005 01:56:43 +0200
gnupg2 (1.9.15-6) unstable; urgency=high
* Move gpg-protect-tool to the gpgsm package.
Closes: #303492.
High urgency because this renders gpgsm unuseable for some people.
* gpg-agent: Override max-cache-ttl if a higher default is set.
Closes: #302692.
-- Matthias Urlichs <smurf@debian.org> Thu, 7 Apr 2005 10:13:19 +0200
gnupg2 (1.9.15-5) unstable; urgency=low
* Add /etc/X11/Xsession.d/90gpg-agent script. Closes: #300128.
* Emphasize that gnupg2 is NOT useful at the moment.
* Conflict+replace gpg-agent with newpg.
-- Matthias Urlichs <smurf@debian.org> Thu, 10 Mar 2005 22:46:10 +0100
gnupg2 (1.9.15-4) unstable; urgency=low
* Incorporated Ubuntu changes from Andreas Mueller.
-- Matthias Urlichs <smurf@debian.org> Thu, 10 Mar 2005 21:41:59 +0100
gnupg2 (1.9.15-3ubuntu3) hoary; urgency=low
* removed info file
-- Andreas Mueller <amu@ubuntu.com> Tue, 8 Mar 2005 01:58:39 +0100
gnupg2 (1.9.15-3ubuntu2) hoary; urgency=low
* changed rules file, part cp gnupg.info to mv
and added dh_installinfo.
* changed Standards Version to 3.6.1
-- Andreas Mueller <amu@ubuntu.com> Tue, 8 Mar 2005 00:53:31 +0100
gnupg2 (1.9.15-3ubuntu1) hoary; urgency=low
* added missing build depends texinfo
-- Andreas Mueller <amu@ubuntu.com> Mon, 7 Mar 2005 22:47:56 +0100
gnupg2 (1.9.15-2) hoary; urgency=low
* Initial checkin
-- Andreas Mueller <amu@ubuntu.com> Mon, 7 Mar 2005 21:13:32 +0100
gnupg2 (1.9.15-1) experimental; urgency=low
* New Upstream release.
* Removed -doc package:
- The package itself is too smal to merit being packaged separately.
- Interim solution: Documentation is included in the gnupg2 package.
- Goal: ask Upstream to split the .info file.
* Removed suidness.
* Update debian/copyright.
* Require libassuan >= 0.6.9.
-- Matthias Urlichs <smurf@debian.org> Tue, 25 Jan 2005 08:19:15 +0100
gnupg2 (1.9.11+cvs20040924-5) experimental; urgency=low
* Rebuild to depend on opensc1.
* Split -doc into its own package.
-- Matthias Urlichs <smurf@debian.org> Thu, 16 Dec 2004 10:30:44 +0100
gnupg2 (1.9.11+cvs20040924-4) experimental; urgency=low
* Turn on setuid-ness.
- Added Lintian overrides.
* Install all "standard" message files.
- Makefile.in: The package name for gettext is in the macro PACKAGE_GT,
not PACKAGE.
* Fix shebang line of addgnupghome script.
* Install info file in the correct place.
* Build cleanups.
-- Matthias Urlichs <smurf@debian.org> Tue, 5 Oct 2004 10:59:56 +0200
gnupg2 (1.9.11+cvs20040924-3) experimental; urgency=low
* rename gnupg-agent's changelog file
* Fix gnupg-agent's dependencies
-- Matthias Urlichs <smurf@debian.org> Sun, 3 Oct 2004 20:14:30 +0200
gnupg2 (1.9.11+cvs20040924-2) experimental; urgency=low
* Shipped a /usr/share/locale.alias file. Ouch.
* Split off gpgsm.
-- Matthias Urlichs <smurf@debian.org> Wed, 29 Sep 2004 10:25:51 +0200
gnupg2 (1.9.11+cvs20040924-1) experimental; urgency=low
* New Upstream.
-- Matthias Urlichs <smurf@debian.org> Sat, 25 Sep 2004 11:05:44 +0200
gnupg2 (1.9.10+cvs-1) experimental; urgency=low
* Packaged latest Upstream version.
* Split gpg-agent into its own .deb.
* Bit the bullet and started using debhelper.
-- Matthias Urlichs <smurf@debian.org> Thu, 19 Aug 2004 11:43:34 +0200
gnupg2 (1.9.9-1) experimental; urgency=low
* Packaged latest Upstream version.
-- Matthias Urlichs <smurf@debian.org> Mon, 14 Jun 2004 17:18:18 +0200
gnupg2 (1.9.5-1) experimental; urgency=low
* Packaged Upstream development version.
Closes:#187548
-- Matthias Urlichs <smurf@debian.org> Mon, 8 Mar 2004 05:30:35 +0100
gnupg (1.2.4-4) unstable; urgency=low
* 12_zero_length_header.dpatch: update patch from David Shaw
<dshaw@jabberwocky.com> to fix the fix of crashing on certain
keys. Closes: #234289
-- James Troup <james@nocrew.org> Mon, 23 Feb 2004 18:02:20 +0000
gnupg (1.2.4-3) unstable; urgency=low
* Move to dpatch; existing non-debian/ change split into
10_hppa_unaligned_constant.dpatch.
* debian/rules: include /usr/share/dpatch/dpatch.make.
* debian/rules (build): depend on patch-stamp.
* debian/rules (clean): depend on unpatch. Remove debian/patched.
* debian/control (Build-Depends): add dpatch.
* debian/rules: update version number and use install_foo convenience
variables.
* debian/rules (clean): remove emacs backup files from any directory.
* 11_fi_po_update.dpatch: new patch from Tommi Vainikainen
<thv+debian@iki.fi> to update Finnish translation as the current one
renders gnupg unusable. Closes: #232030, #222951, #192582
* debian/rules (clean): remove po/fi.gmo to avoid dpkg-source errors
over unrepresentable changes to source.
* 12_zero_length_header.dpatch: new patch from David Shaw
<dshaw@jabberwocky.com> to fix cases where importing certain keys
makes the keyring unuseable. Closes: #232714
* 13_revoked_keys.dpatch: new patch from David Shaw
<dshaw@jabberwocky.com> to list revoked keys as revoked. Closes: #231814
* 14_getkey_not_found_fix.dpatch: new patch from David Shaw
<dshaw@jabberwocky.com> to fix --list-sigs incorrectly claiming "User
id not found". Closes: #229549
-- James Troup <james@nocrew.org> Fri, 20 Feb 2004 16:38:12 +0000
gnupg (1.2.4-2) unstable; urgency=low
* mpi/hppa1.1/udiv-qrnnd.S: patch from LaMont Jones <lamont@debian.org>
to fix unaligned constant. Closes: #228456
* debian/copyright: update year and version number.
-- James Troup <james@nocrew.org> Tue, 20 Jan 2004 17:19:58 +0000
gnupg (1.2.4-1) unstable; urgency=medium
* New upstream release.
* Most support for ElGamal Sign+Encrypt keys has been removed. Closes: #222293
* No longer miss-identifies GNU/KFreeBSD as GNU/Hurd. Closes: #216957
* Fixes build error on GNU/KFreeBSD (and Glibc-based GNU/KNetBSD). Closes: #221079
* Fixes segmentation fault in prime generator. Closes: #213989
* Fixes trustdb not updating without ultimately trusted keys. Closes: #222368
* debian/control (Build-Depends): add libbz2-dev.
-- James Troup <james@nocrew.org> Wed, 31 Dec 2003 17:57:52 +0000
gnupg (1.2.3-1) unstable; urgency=low
* New upstream release (Closes: #207340).
* gpg no longer kills keyrings by importing broken keys. Closes: #196505
* options.skel uses subkeys.pgp.net instead of pgp.mit.edu. Closes: #206092
* --import now closes files when it's done. Closes: #196643
* A key listing speed regression has been fixed. Closes: #192083
* debian/copyright: update URL and date.
* debian/rules: update dates and version.
* debian/control (Standards-Version): bump to 3.6.0.
* debian/Upgrading_From_PGP.txt: new file from to Richard Braakman
<dark@xs4all.nl>. Closes: #173233
* debian/rules (binary-arch): install it.
* debian/rules (build): correct libexecdir passed to configure; patch
from Matthias Cramer <cramer@freestone.net>. Fixes invocation of
gpgkeys_ldap. Closes: #168486
-- James Troup <james@nocrew.org> Thu, 28 Aug 2003 14:08:50 +0100
gnupg (1.2.2-1) unstable; urgency=low
* New upstream release.
* debian/control (Standards-Version): bump to 3.5.9.0.
* debian/rules (binary-arch): install convert-from-106 as
gpg-convert-from-106 and fix the path to gpg.
* debian/control: remove trailing full stop from short description.
* debian/control: remove out-dated and contradictory information about
RSA.
-- James Troup <james@nocrew.org> Mon, 5 May 2003 03:08:58 +0100
gnupg (1.2.1-2) unstable; urgency=low
* Update config.guess (to 2002-10-21) and config.sub (to 2002-09-05).
Thanks to Ryan Murray. Closes: #166696
-- James Troup <james@nocrew.org> Mon, 28 Oct 2002 01:47:26 +0000
gnupg (1.2.1-1) unstable; urgency=low
* New upstream version.
* An inifinte loop in --update-trustdb has been fixed. Closes: #162039
* The polish translation is now correctly specified as UTF-8. Closes: #162885
* --refresh-keys is now documented in the manpage. Closes: #165566
* debian/control (Conflicts): add gpg-idea <= 2.2 since gnupg >= 1.2 is
incompatible with that version of gpg-idea. Closes: #162314
-- James Troup <james@nocrew.org> Fri, 25 Oct 2002 18:18:43 +0100
gnupg (1.2.0-1) unstable; urgency=low
* New upstream version. Closes: #161817.
* --options no longer mis-handles a directory as an argument. Closes: #151973
* gpg now prompts before sending all keys to the keyserver. Closes: #64607
* There is now a gnupg(7) manpage. Closes: #157750
* The permission checking has been sanitized and handles non-home-dir
keyrings better. Closes: #147760
* notation data longer than 5 characters is now handled. Closes: #156871
* an abort when setting trust levels in a czech locale has been fixed.
Closes: #149212
* debian/rules (binary-arch): there are no more modules, adjust
accordingly.
* debian/postinst, debian/prerm: remove; no longer do /usr/doc symlinks.
* debian/rules (binary-arch): don't install obsolete postinst or prerm.
* debian/rules (binary-arch): gzip gnupg.7 too.
* debian/rules (build): pass --libexecdir=/usr/lib/gnupg to configure.
* debian/rules (binary-arch): likewise, pass suitable libexcedir
argument to make install.
* debian/control (Standards-Version): update to 3.5.7.0.
* debian/copyright: update URL and date.
* debian/rules: update dates and version.
-- James Troup <james@nocrew.org> Sun, 22 Sep 2002 22:26:25 +0100
gnupg (1.0.7-2) unstable; urgency=low
* debian/control (Suggests): add xloadimage since that's what gpg uses
by default to view photo IDs. Thanks to Julien Danjou
<acid@debian.org> for the suggestion. Closes: #156245
* debian/control (Depends): add "hurd" to the alternatives to
makedev. Thanks to Michal Suchanek <hramrach_l@centrum.cz> for
noticing. Closes: #158492
* po/it.po: patch to fix typos from Marco Bodrato
<bodrato@gulp.linux.it. Closes: #149462
* g10/g10.c (main): remove the bogus undef of USE_SHM_COPROCESSING to
match upstream and fix gabber and libgnupg-perl. Closes: #147679, #151969
-- James Troup <james@nocrew.org> Thu, 29 Aug 2002 01:42:58 +0100
gnupg (1.0.7-1) unstable; urgency=low
* New upstream version. Closes: #145477.
* GDBM support has been removed. Closes: #33009.
* Now adds the default keyring when a keyring is specified.
Closes: #50616, #65260.
* Now does the Right Thing when receiving a key from the keyserver and
the key in question is in both a read-only and writable keyring.
Closes: #63297.
* Automatic key retrieval is now configurable. Closes: #64940.
* --no-options supresses ~/.gnupg creation again. Closes: #95486.
* duplicate trust entries are no longer treated as an error. Closes: #96480.
* There's now no comment line in ascii armours. Closes: #100088.
* Handle secret keyring given as keyring better. Closes: #100581, #106670.
* It's now documented that --with-colons unconditionally uses UTF8.
Closes: #101446, 101454.
* s/now/knows/ typo in manpage fixed. Closes: #107471.
* There's now support for a primary UID. Closes: #106567, #108155.
* Handles errors in uncompression layer beter. Closes: #112392.
* Key selection has been entirely revamped. Closes: #136170.
* Handles empty encrypt-to. Closes: #138378
* debian/rules (binary-arch): remove empty /usr/info directory, thanks
to Joey Hess <joeyh@debian.org>. Closes: #121864.
* debian/control: remove duplicated word from long description, thanks
to Nicolas Boulenguez <nicolas.boulenguez@free.fr>. Closes: #144786.
* README: correct URL to GPH and other docs, thanks to Mark Brown
<broonie@sirena.org.uk>. Closes: #100277.
* debian/control (Standards-Version): updated to 3.5.6.1.
* debian/rules (binary-arch): only strip ELF binaries. es_ES -> es hack
no longer needed as fixed upstream.
* debian/control (Build-Depends): remove libgdbmg1-dev; no longer used.
* debian/README.Debian: remove note about gdbm support which was finally
removed. Update note on old versions of gnupg to reflect the
pre-historic nature of those versions.
* debian/control (Build-Depends): add libldap2-dev.
* debian/rules (binary-arch): call dpkg-shlibdeps for all ELF binaries.
* debian/control (Build-Depends): add file.
* debian/control (Priority): increase to standard to match overrides.
-- James Troup <james@nocrew.org> Sat, 11 May 2002 15:08:02 +0100
gnupg (1.0.6-3) unstable; urgency=low
* moved into main.
-- James Troup <james@nocrew.org> Tue, 19 Mar 2002 16:17:09 +0000
gnupg (1.0.6-2) unstable; urgency=high
* debian/rules (binary-arch): remove the erroneous
/usr/share/locale/locale.alias that 'make install' adds; closes:
#99293.
-- James Troup <james@nocrew.org> Wed, 30 May 2001 20:40:59 +0100
gnupg (1.0.6-1) unstable; urgency=low
* New upstream version.
-- James Troup <james@nocrew.org> Tue, 29 May 2001 20:59:49 +0100
gnupg (1.0.5-4) unstable; urgency=low
* Patch from Werner.
-- James Troup <james@nocrew.org> Sun, 27 May 2001 09:34:50 +0100
gnupg (1.0.5-3) unstable; urgency=low
* Apply patch from Matthew Wilcox <matthew@wil.cx> to fix assembly on
hppa.
-- James Troup <james@nocrew.org> Sun, 13 May 2001 02:36:45 +0100
gnupg (1.0.5-2) unstable; urgency=medium
* util/http.c: patch from Werner that fixes --send-key, closes: #96277.
* debian/control (Depends): accept devfsd in place of makedev, closes:
#96307.
-- James Troup <james@nocrew.org> Mon, 7 May 2001 00:13:51 +0100
gnupg (1.0.5-1) unstable; urgency=low
* New upstream version.
* debian/README.Debian: fix spelling and update URL.
* debian/rules (binary): remove the new info files.
* scripts/config.{guess,sub}: sync with subversions, closes: #95729.
-- James Troup <james@nocrew.org> Mon, 30 Apr 2001 02:12:38 +0100
gnupg (1.0.4-4) unstable; urgency=low
* po/ru.po: patch by Ilya Martynov <m_ilya@agava.com> to replace German
entries and add missing translations, closes: #93987.
* g10/revoke.c (ask_revocation_reason): typo fix (s/non longer/no
longer/g); noticed by Colin Watson <cjw44@flatline.org.uk>, closes:
#93664.
* Deprecated depreciated; noticed by Vincent Broman
<broman@spawar.navy.mil>.
* Following two patches are from Vincent Broman.
* g10/mainproc.c (proc_tree): use iobuf_get_real_fname() in preference
to iobuf_get_fname().
* g10/openfile.c (open_sigfile): handle .sign prefixed files correctly.
-- James Troup <james@nocrew.org> Fri, 20 Apr 2001 23:32:44 +0100
gnupg (1.0.4-3) unstable; urgency=medium
* debian/rules (binary): make gpg binary suid, closes: #86433.
* debian/postinst: don't use suidregister.
* debian/postrm: removed (only called suidunregister).
* debian/control: conflict with suidmanager << 0.50.
* mpi/longlong.h: apply fix for ARM long long artimetic from Philip
Blundell <philb@gnu.org>, closes: #87487.
* debian/preinst: the old GnuPG debs have moved to people.debian.org.
* cipher/random.c: #include <time.h> as well as <sys/time.h>
* g10/misc.c: likewise.
* debian/rules: define a strip alias which removes the .comment and
.note sections.
* debian/rules (binary-arch): use it.
* debian/lintian.override: new file; override the SUID warning from
lintian.
* debian/rules (binary-arch): install it.
-- James Troup <james@nocrew.org> Sun, 25 Feb 2001 05:24:58 +0000
gnupg (1.0.4-2) stable unstable; urgency=high
* Apply security fix patch from Werner.
* Apply another patch from Werner to fix bogus warning on Rijndael
usage.
* Change section to 'non-US'.
-- James Troup <james@nocrew.org> Mon, 12 Feb 2001 07:47:02 +0000
gnupg (1.0.4-1) stable unstable; urgency=high
* New upstream version.
* Fixes a serious bug which could lead to false signature verification
results when more than one signature is fed to gpg.
-- James Troup <james@nocrew.org> Tue, 17 Oct 2000 17:26:17 +0100
gnupg (1.0.3b-1) unstable; urgency=low
* New upstream snapshot version.
-- James Troup <james@nocrew.org> Fri, 13 Oct 2000 18:08:14 +0100
gnupg (1.0.3-2) unstable; urgency=low
* debian/control: Conflict, Replace and Provide gpg-rsa & gpg-rsaref.
Fix long description to reflect the fact that RSA is no longer
patented and now included. [#72177]
* debian/rules: move faq.html to /usr/share/doc/gnupg/ and remove FAQ
from /usr/share/gnupg/. Thanks to Robert Luberda
<robert@pingu.ii.uj.edu.pl> for noticing. [#72151]
* debian/control: Suggest new package gnupg-doc. [#64323, #65560]
* utils/secmem.c (lock_pool): don't bomb out if mlock() returns ENOMEM,
as Linux will do this if resource limits (or other reasons) prevent
memory from being locked, instead treat it like permission was denied
and warn but continue. Thanks to Topi Miettinen
<Topi.Miettinen@nic.fi>. [#70446]
* g10/hkp.c (not_implemented): s/ist/is/ in error message.
* debian/README.Debian: add a note about GDBM support and why it is
disabled. Upstream already fixed the manpage. [#65913]
* debian/rules (binary-arch): fix the Spanish translation to be 'es' not
'es_ES' at Nicolás Lichtmaier <nick@debian.org>'s request. [#57314]
-- James Troup <james@nocrew.org> Sun, 1 Oct 2000 14:55:03 +0100
gnupg (1.0.3-1) unstable; urgency=low
* New upstream version.
-- James Troup <james@nocrew.org> Mon, 18 Sep 2000 15:56:54 +0100
gnupg (1.0.2-1) unstable; urgency=low
* New upstream version.
-- James Troup <james@nocrew.org> Thu, 13 Jul 2000 20:26:50 +0100
gnupg (1.0.1-2) unstable; urgency=low
* debian/control (Build-Depends): added.
* debian/copyright: corrected location of copyright file. Removed
references to Linux. Removed warnings about beta nature of GnuPG.
* debian/rules (binary-arch): install documentation into
/usr/share/doc/gnupg/ and pass mandir to make install to ensure the
manpages go to /usr/share/man/.
* debian/postinst: create /usr/doc/gnupg symlink.
* debian/prerm: new file; remove /usr/doc/gnupg symlink.
* debian/rules (binary-arch): install prerm.
* debian/control (Standards-Version): updated to 3.1.1.1.
-- James Troup <james@nocrew.org> Thu, 30 Dec 1999 16:16:49 +0000
gnupg (1.0.1-1) unstable; urgency=low
* New upstream version.
* doc/gpg.1: updated to something usable from
ftp://ftp.gnupg.org/pub/gcrypt/gnupg/gpg.1.gz.
-- James Troup <james@nocrew.org> Sun, 19 Dec 1999 23:47:10 +0000
gnupg (1.0.0-3) unstable; urgency=low
* debian/rules (build): remove the stunningly ill-advised --host option
to configure. [#44698, #48212, #48281]
-- James Troup <james@nocrew.org> Tue, 26 Oct 1999 01:12:59 +0100
gnupg (1.0.0-2) unstable; urgency=low
* debian/rules (binary-arch): fix the permissions on the
modules. [#47280]
* debian/postinst, debian/postrm: fix the package name passed to
suidregister. [#45013]
* debian/control: update long description. [#44636]
* debian/rules (build): pass the host explicitly to configure to avoid
problems on sparc64. [(Should fix) #44698].
-- James Troup <james@nocrew.org> Wed, 20 Oct 1999 23:39:05 +0100
gnupg (1.0.0-1) unstable; urgency=low
* New upstream release. [#44545]
-- James Troup <james@nocrew.org> Wed, 8 Sep 1999 00:53:02 +0100
gnupg (0.9.10-2) unstable; urgency=low
* debian/rules (binary-arch): install lspgpot. Requested by Kai
Henningsen <kai@khms.westfalen.de>. [#42288]
* debian/rules (binary-arch): correct the path where modules are looked
for. Reported by Karl M. Hegbloom <karlheg@odin.cc.pdx.edu>. [#40881]
* debian/postinst, debian/postrm: under protest, register gpg the
package with suidmanager and make it suid by default.
[#29780,#32590,#40391]
-- James Troup <james@nocrew.org> Tue, 10 Aug 1999 00:12:40 +0100
gnupg (0.9.10-1) unstable; urgency=low
* New upstream version.
-- James Troup <james@nocrew.org> Fri, 6 Aug 1999 01:16:21 +0100
gnupg (0.9.9-1) unstable; urgency=low
* New upstream version.
-- James Troup <james@nocrew.org> Sun, 25 Jul 1999 01:06:31 +0100
gnupg (0.9.8-1) unstable; urgency=low
* New upstream version.
* debian/rules (binary-arch): don't create a gpgm manpage as the binary
no longer exists. Noticed by Wichert Akkerman
<wichert@cs.leidenuniv.nl>. [#38864]
-- James Troup <james@nocrew.org> Sun, 27 Jun 1999 01:07:58 +0100
gnupg (0.9.7-1) unstable; urgency=low
* New upstream version.
-- James Troup <james@nocrew.org> Tue, 25 May 1999 13:23:24 +0100
gnupg (0.9.6-1) unstable; urgency=low
* New upstream version.
* debian/copyright: update version number, noticed by Lazarus Long
<lazarus@frontiernet.net>.
* debian/control (Depends): depend on makedev (>= 2.3.1-13) to ensure
that /dev/urandom exists; reported by Steffen Markert
<smort@rz.tu-ilmenau.de>. [#32076]
-- James Troup <james@nocrew.org> Tue, 11 May 1999 21:06:27 +0100
gnupg (0.9.5-1) unstable; urgency=low
* New upstream version.
* debian/control (Description): no tabs. [Lintian]
-- James Troup <james@nocrew.org> Wed, 24 Mar 1999 22:37:40 +0000
gnupg (0.9.4-1) unstable; urgency=low
* New version.
* debian/control: s/GNUPG/GnuPG/
-- Werner Koch <wk@isil.d.suttle.de> Mon, 8 Mar 1999 19:58:28 +0100
gnupg (0.9.3-1) unstable; urgency=low
* New upstream version.
-- James Troup <james@nocrew.org> Mon, 22 Feb 1999 22:55:04 +0000
gnupg (0.9.2-1) unstable; urgency=low
* New version.
* debian/rules (build): Removed CFLAGS as the default is now sufficient.
* debian/rules (clean): remove special handling cleanup in intl.
-- Werner Koch <wk@isil.d.suttle.de> Wed, 20 Jan 1999 21:23:11 +0100
gnupg (0.9.1-1) unstable; urgency=low
* New upstream version.
-- James Troup <james@nocrew.org> Sat, 9 Jan 1999 22:29:11 +0000
gnupg (0.9.0-1) unstable; urgency=low
* New upstream version.
* g10/armor.c (armor_filter): add missing new line in comment string; as
noticed by Stainless Steel Rat <ratinox@peorth.gweep.net>.
-- James Troup <james@nocrew.org> Tue, 29 Dec 1998 20:22:43 +0000
gnupg (0.4.5-1) unstable; urgency=low
* New upstream version.
* debian/rules (clean): force removal of intl/libintl.h which the
Makefiles fail to remove properly.
-- James Troup <james@nocrew.org> Tue, 8 Dec 1998 22:40:23 +0000
gnupg (0.4.4-1) unstable; urgency=low
* New upstream version.
-- James Troup <james@nocrew.org> Sat, 21 Nov 1998 01:34:29 +0000
gnupg (0.4.3-1) unstable; urgency=low
* New upstream version.
* debian/README.Debian: new file; contains same information as is in the
preinst. Suggested by Wichert Akkerman <wichert@cs.leidenuniv.nl>.
* debian/rules (binary-arch): install `README.Debian'
* debian/control (Standards-Version): updated to 2.5.0.0.
-- James Troup <james@nocrew.org> Sun, 8 Nov 1998 19:08:12 +0000
gnupg (0.4.2-1) unstable; urgency=low
* New upstream version.
* debian/preinst: improve message about the NEWS file which isn't
actually installed when it's referred to, thanks to Martin Mitchell
<martin@debian.org>.
* debian/rules (binary-arch): don't install the now non-existent `rfcs',
but do install `OpenPGP'.
-- James Troup <james@nocrew.org> Sun, 18 Oct 1998 22:48:34 +0100
gnupg (0.4.1-1) unstable; urgency=low
* New upstream version.
* debian/rules (binary-arch): fix the gpgm manpage symlink now installed
by `make install'.
-- James Troup <james@nocrew.org> Sun, 11 Oct 1998 17:01:21 +0100
gnupg (0.4.0-1) unstable; urgency=high
* New upstream version. [#26717]
* debian/copyright: tone down warning about alpha nature of gnupg.
* debian/copyright: new maintainer address.
* debian/control: update extended description.
* debian/rules (binary-arch): install FAQ and all ChangeLogs.
* debian/preinst: new; check for upgrade from (<= 0.3.2-1) and warn about
incompatibilities in keyring format and offer to move old copy out of
gpg out of the way for transition strategy and inform the user about
the old copies of gnupg available on my web page.
* debian/rules (binary-arch) install preinst.
* debian/rules (binary-arch): don't depend on the test target as it is
now partially interactive (tries to generate a key, which requires
someone else to be using the computer).
-- James Troup <james@nocrew.org> Thu, 8 Oct 1998 00:47:07 +0100
gnupg (0.3.2-1) unstable; urgency=low
* New upstream version.
* debian/control (Maintainer): new address.
* debian/copyright: updated list of changes.
-- James Troup <james@nocrew.org> Thu, 9 Jul 1998 21:06:07 +0200
gnupg (0.3.1-1) unstable; urgency=low
* New upstream version.
-- James Troup <james@nocrew.org> Tue, 7 Jul 1998 00:26:21 +0200
gnupg (0.3.0-2) unstable; urgency=low
* Applied bug-fix patch from Werner.
-- James Troup <jjtroup@comp.brad.ac.uk> Fri, 26 Jun 1998 12:18:29 +0200
gnupg (0.3.0-1) unstable; urgency=low
* New upstream version.
* debian/control: rewrote short and long description.
* cipher/Makefile.am: link tiger with -lc.
* debian/rules (binary-arch): strip loadable modules.
* util/secmem.c (lock_pool): get rid of errant test code; fix from
Werner Koch <wk@isil.d.shuttle.de>.
* debian/rules (test): new target which runs gnupg's test suite.
binary-arch depends on it, to ensure it's run whenever the package is
built.
-- James Troup <jjtroup@comp.brad.ac.uk> Thu, 25 Jun 1998 16:04:57 +0200
gnupg (0.2.19-1) unstable; urgency=low
* New upstream version.
* debian/control: Updated long description.
-- James Troup <jjtroup@comp.brad.ac.uk> Sat, 30 May 1998 12:12:35 +0200
gnupg (0.2.18-1) unstable; urgency=low
* New upstream version.
-- James Troup <J.J.Troup@comp.brad.ac.uk> Sat, 16 May 1998 11:52:47 +0200
gnupg (0.2.17-1) unstable; urgency=high
* New upstream version.
* debian/control (Standards-Version): updated to 2.4.1.0.
* debian/control: tone down warning about alpha nature of gnupg, as per
README.
* debian/copyright: ditto.
-- James Troup <jjtroup@comp.brad.ac.uk> Mon, 4 May 1998 22:36:51 +0200
gnupg (0.2.15-1) unstable; urgency=high
* New upstream version.
-- James Troup <jjtroup@comp.brad.ac.uk> Fri, 10 Apr 1998 01:12:20 +0100
gnupg (0.2.13-1) unstable; urgency=high
* New upstream version.
-- James Troup <jjtroup@comp.brad.ac.uk> Wed, 11 Mar 1998 01:52:51 +0000
gnupg (0.2.12-1) unstable; urgency=low
* New upstream version.
-- James Troup <jjtroup@comp.brad.ac.uk> Sat, 7 Mar 1998 13:52:40 +0000
gnupg (0.2.11-1) unstable; urgency=low
* New upstream version.
-- James Troup <jjtroup@comp.brad.ac.uk> Wed, 4 Mar 1998 01:32:12 +0000
gnupg (0.2.10-1) unstable; urgency=low
* New upstream version.
* Name changed upstream.
-- James Troup <jjtroup@comp.brad.ac.uk> Mon, 2 Mar 1998 07:32:05 +0000
g10 (0.2.7-1) unstable; urgency=low
* Initial release.
-- James Troup <jjtroup@comp.brad.ac.uk> Fri, 20 Feb 1998 02:05:34 +0000
|