Skip to content

Commit

Permalink
Merge pull request #1 from dylanwh/master
Browse files Browse the repository at this point in the history
running-from-dist changes and a working Dist::Zilla config
  • Loading branch information
vatral committed Apr 1, 2013
2 parents cb27507 + fbf24ac commit ecd3e0d
Show file tree
Hide file tree
Showing 7 changed files with 44 additions and 38 deletions.
17 changes: 0 additions & 17 deletions Build.PL

This file was deleted.

15 changes: 0 additions & 15 deletions MANIFEST

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -18,6 +18,6 @@ Running

Programs can be run in place, like this:

perl -Ilib bin/ksp-makelist
perl ./bin/ksp-makelist


3 changes: 2 additions & 1 deletion bin/ksp-import-keys
@@ -1,4 +1,4 @@
#!/usr/bin/perl -w
#!/usr/bin/env perl
# Key signature mass importer
# Copyright (C) 2013 Vadim Troshchinskiy <me@vadim.ws>
#
Expand All @@ -17,6 +17,7 @@


use strict;
use warnings;
use Mail::Box::Manager;
use Crypt::GPG;
use File::Temp;
Expand Down
7 changes: 5 additions & 2 deletions bin/ksp-makelist
@@ -1,4 +1,4 @@
#!/usr/bin/perl -w
#!/usr/bin/env perl
# Key signing party list generator
# Copyright (C) 2013 Vadim Troshchinskiy <me@vadim.ws>
#
Expand All @@ -16,6 +16,9 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.

use strict;
use warnings;
use FindBin;
use lib "$FindBin::Bin/../lib";
use KeySigningParty::KeyList::FOSDEM;
use KeySigningParty::Output::PDF;
use KeySigningParty::VisualHash::QRCode;
Expand Down Expand Up @@ -74,4 +77,4 @@ sub status {
}

$prev_length = length($text);
}
}
35 changes: 35 additions & 0 deletions dist.ini
@@ -0,0 +1,35 @@
name = KeySigningPartyTools
author = Vadim Troshchinskiy <me@vadim.ws>
license = GPL_2

[Authority]
authority = cpan:VADIMT
do_metadata = 1

[Prereqs]
; manual prereqs go here

[AutoPrereqs]

[GatherDir]
[PruneCruft]
[ManifestSkip]
[MetaYAML]
[License]
[Readme]
[PkgVersion]
[PodCoverageTests]
[PodSyntaxTests]
[ExtraTests]
[ExecDir]
[ShareDir]
[MakeMaker]
[Manifest]
[ConfirmRelease]
[UploadToCPAN]
[VersionFromModule]

[GithubMeta]
user = vatral
remote = github
remote = origin
3 changes: 1 addition & 2 deletions lib/KeySigningParty.pm
Expand Up @@ -36,8 +36,7 @@ __END__
=head1 NAME
KeySigningParty - [One line description of module's purpose here]
KeySigningParty - Key signing party list generator
=head1 VERSION
Expand Down

0 comments on commit ecd3e0d

Please sign in to comment.