Skip to content

Commit

Permalink
Initial version
Browse files Browse the repository at this point in the history
  • Loading branch information
vatral committed Mar 2, 2013
1 parent 32fe40e commit ae0e03d
Show file tree
Hide file tree
Showing 23 changed files with 2,846 additions and 1 deletion.
17 changes: 17 additions & 0 deletions Build.PL
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
use strict;
use warnings;
use Module::Build;

my $builder = Module::Build->new(
module_name => 'KeySigningParty',
license => 'gpl',
dist_author => 'Vadim Troshchinskiy <me@vadim.ws>',
dist_version_from => 'lib/KeySigningParty.pm',
requires => {
'Test::More' => 0,
'version' => 0,
},
add_to_cleanup => [ 'KeySigningParty-*' ],
);

$builder->create_build_script();
661 changes: 661 additions & 0 deletions COPYING.txt

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Revision history for KeySigningParty

0.0.1 Thu Feb 7 08:48:58 2013
Initial release.

15 changes: 15 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
Build.PL
Changes
lib/KeySigningParty.pm
lib/KeySigningParty/KeyList.pm
lib/KeySigningParty/KeyList/FOSDEM.pm
lib/KeySigningParty/VisualHash.pm
lib/KeySigningParty/VisualHash/QR.pm
lib/KeySigningParty/VisualHash/Vash.pm
Makefile.PL
MANIFEST This list of files
README
t/00.load.t
t/perlcritic.t
t/pod-coverage.t
t/pod.t
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
KeySigningPartyTools
====================

Tools for people who attend key signing parties
Tools for people who attend key signing parties.


List of tools
=============

ksp-makelist: create a better formatted list in PDF format by reading
a FOSDEM key list.


Running
=======

Programs can be run in place, like this:

perl -Ilib bin/ksp-makelist


48 changes: 48 additions & 0 deletions bin/ksp-makelist
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
#!/usr/bin/perl -w
# Key signing party list generator
# Copyright (C) 2013 Vadim Troshchinskiy <me@vadim.ws>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

use strict;
use KeySigningParty::KeyList::FOSDEM;
use KeySigningParty::Output::PDF;
use KeySigningParty::VisualHash::QRCode;
use KeySigningParty::VisualHash::Vash;
use Getopt::Long;

my $input_file;
my $output_file;

GetOptions(
"output|o=s" => \$output) or die "Getopt failed: $!";
$input_file = shift @ARGV;
die "Input file required" unless ($input_file);
die "Output file required" unless ($output_file);



$| = 1;
my $list = new KeySigningParty::KeyList::FOSDEM();
$list->load($input_file);

foreach my $ent (@{$list->entries}) {
print $ent->as_string . "\n";
}

my $qr = new KeySigningParty::VisualHash::QRCode();
my $vash = new KeySigningParty::VisualHash::Vash();

my $out = new KeySigningParty::Output::PDF( list => $list, visual_hashes => [ $qr, $vash ] );
$out->generate($output_file);
193 changes: 193 additions & 0 deletions lib/KeySigningParty.pm
Original file line number Diff line number Diff line change
@@ -0,0 +1,193 @@
package KeySigningParty;
# Key signing party list generator
# Copyright (C) 2013 Vadim Troshchinskiy <me@vadim.ws>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

use warnings;
use strict;
use Carp;

use version; $VERSION = qv('0.0.3');

# Other recommended modules (uncomment to use):
# use IO::Prompt;
# use Perl6::Export;
# use Perl6::Slurp;
# use Perl6::Say;


# Module implementation here


1; # Magic true value required at end of module
__END__
=head1 NAME
KeySigningParty - [One line description of module's purpose here]
=head1 VERSION
This document describes KeySigningParty version 0.0.1
=head1 SYNOPSIS
use KeySigningParty;
=for author to fill in:
Brief code example(s) here showing commonest usage(s).
This section will be as far as many users bother reading
so make it as educational and exeplary as possible.
=head1 DESCRIPTION
=for author to fill in:
Write a full description of the module and its features here.
Use subsections (=head2, =head3) as appropriate.
=head1 INTERFACE
=for author to fill in:
Write a separate section listing the public components of the modules
interface. These normally consist of either subroutines that may be
exported, or methods that may be called on objects belonging to the
classes provided by the module.
=head1 DIAGNOSTICS
=for author to fill in:
List every single error and warning message that the module can
generate (even the ones that will "never happen"), with a full
explanation of each problem, one or more likely causes, and any
suggested remedies.
=over
=item C<< Error message here, perhaps with %s placeholders >>
[Description of error here]
=item C<< Another error message here >>
[Description of error here]
[Et cetera, et cetera]
=back
=head1 CONFIGURATION AND ENVIRONMENT
=for author to fill in:
A full explanation of any configuration system(s) used by the
module, including the names and locations of any configuration
files, and the meaning of any environment variables or properties
that can be set. These descriptions must also include details of any
configuration language used.
KeySigningParty requires no configuration files or environment variables.
=head1 DEPENDENCIES
=for author to fill in:
A list of all the other modules that this module relies upon,
including any restrictions on versions, and an indication whether
the module is part of the standard Perl distribution, part of the
module's distribution, or must be installed separately. ]
None.
=head1 INCOMPATIBILITIES
=for author to fill in:
A list of any modules that this module cannot be used in conjunction
with. This may be due to name conflicts in the interface, or
competition for system or program resources, or due to internal
limitations of Perl (for example, many modules that use source code
filters are mutually incompatible).
None reported.
=head1 BUGS AND LIMITATIONS
=for author to fill in:
A list of known problems with the module, together with some
indication Whether they are likely to be fixed in an upcoming
release. Also a list of restrictions on the features the module
does provide: data types that cannot be handled, performance issues
and the circumstances in which they may arise, practical
limitations on the size of data sets, special cases that are not
(yet) handled, etc.
No bugs have been reported.
Please report any bugs or feature requests to
C<bug-keysigningparty@rt.cpan.org>, or through the web interface at
L<http://rt.cpan.org>.
=head1 AUTHOR
Vadim Troshchinskiy C<< <me@vadim.ws> >>
=head1 LICENCE AND COPYRIGHT
Copyright (c) 2013, Vadim Troshchinskiy C<< <me@vadim.ws> >>. All rights reserved.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
=head1 DISCLAIMER OF WARRANTY
BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
PROVIDE THE SOFTWARE "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER
EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE
ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH
YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL
NECESSARY SERVICING, REPAIR, OR CORRECTION.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENCE, BE
LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL,
OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE
THE SOFTWARE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
Loading

0 comments on commit ae0e03d

Please sign in to comment.