~ubuntu-branches/ubuntu/utopic/signing-party/utopic

« back to all changes in this revision

Viewing changes to caff/pgp-fixkey

  • Committer: Package Import Robot
  • Author(s): Guilhem Moulin, Guilhem Moulin, Peter Palfrader
  • Date: 2014-05-11 14:49:43 UTC
  • mfrom: (0.1.19)
  • Revision ID: package-import@ubuntu.com-20140511144943-1ufh3s2d4egdo6nw
Tags: 1.1.7-1
[ Guilhem Moulin ]
* caff:
  + Give an example of 'mailer-send' with a custom envelope sender address.
  + Document a possible workflow in README.many-keys, when working with an
    annotated gpgparticipants(1) list.
  + Document a possible workflow for offline signing.
* gpgparticipants:
  + Escape hyphen-minuses (-) in the documentation, as groff may interpret
    them as hyphens (U+2010).
  + Use gpg's --display-charset to force the output to be UTF-8 encoded, as
    the C.UTF-8 locale isn't installed on all platforms. Patch from Stefan
    Huber. (Closes: #747296).
  + Prefix gpg with LANGUAGE=en to force the output to be in English.
    (Other tools in signing-party parse this output.)
  + Prefix date(1) with LC_ALL=C to prevent its output to be localized.
* gpgwrap:
  + Import the default Debian CPPFLAGS defined by dpkg-buildflags, which
    makes lintian stop emitting the 'hardening-no-fortify-functions' tag.
* debian.control:
  + Update the Vcs-Svn and Vcs-Browser to canonical URIs.

[ Peter Palfrader ]
* gpgparticipants-prefill:
  + add --max-length and --prefix options.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/perl -w
2
2
 
3
3
# pgp-fixkey  --  remove broken packets from keys
4
 
# $Id: caff 588 2014-03-24 01:15:29 +0100 guilhem-guest $
 
4
# $Id: pgp-fixkey 518 2014-02-27 00:09:55Z guilhem-guest $
5
5
#
6
6
# Copyright (c) 2004, 2005 Peter Palfrader <peter@palfrader.org>
7
7
#
85
85
use IO::Select;
86
86
use GnuPG::Interface;
87
87
 
88
 
my $REVISION = '$Rev: 588 $';
 
88
my $REVISION = '$Rev: 518 $';
89
89
my ($REVISION_NUMER) = $REVISION =~ /(\d+)/;
90
90
my $VERSION = "0.0.0.$REVISION_NUMER";
91
91