Archive-BagIt
view release on metacpan - search on metacpan
view release on metacpan or search on metacpan
"IO::Async::Loop" : "0",
"IO::Async::Stream" : "0",
"Parallel::parallel_map" : "0"
},
"requires" : {
"Class::Load" : "0",
"File::Find" : "0",
"List::Util" : "1.450",
"Moo" : "0",
"Net::SSLeay" : "1.43",
"namespace::autoclean" : "0",
"perl" : "5.010"
},
"suggests" : {
"Archive::BagIt::App" : "0",
"Archive::BagIt::Fast" : "0"
}
},
"test" : {
"recommends" : {
"IO::Async" : "0",
IO::Async: '0'
IO::Async::Loop: '0'
IO::Async::Stream: '0'
Parallel::parallel_map: '0'
requires:
Class::Load: '0'
File::Find: '0'
List::Util: '1.450'
Moo: '0'
Net::SSLeay: '1.43'
namespace::autoclean: '0'
perl: '5.010'
resources:
repository: https://git.fsfe.org/art1pirat/Archive-BagIt.git
version: '0.100'
x_contributors:
- 'Andreas Romeyke <art1@andreas-romeyke.de>'
- 'art1@andreas-romeyke.de <art1pirat@fsfe.org>'
- 'Michiel Beijen <michiel.beijen@gmail.com>'
- 'Patrick Hochstenbach <patrick.hochstenbach@ugent.be>'
- 'Robert Schmidt <rjeschmi@gmail.com>'
Makefile.PL view on Meta::CPAN
"DISTNAME" => "Archive-BagIt",
"LICENSE" => "perl",
"MIN_PERL_VERSION" => "5.010",
"NAME" => "Archive::BagIt",
"PREREQ_PM" => {
"Class::Load" => 0,
"File::Find" => 0,
"List::Util" => "1.450",
"Moo" => 0,
"Net::SSLeay" => "1.43",
"namespace::autoclean" => 0
},
"TEST_REQUIRES" => {
"File::Slurp" => 0,
"File::Spec" => 0,
"IO::Handle" => 0,
"IPC::Open3" => 0,
"Test::Exception" => 0,
"Test::File" => 0,
"Test::More" => 0,
"Test::Warnings" => 0
lib/Archive/BagIt/Plugin/Algorithm/MD5.pm view on Meta::CPAN
package Archive::BagIt::Plugin::Algorithm::MD5;
use strict;
use warnings;
use Carp qw( croak );
use Moo;
use namespace::autoclean;
with 'Archive::BagIt::Role::Algorithm', 'Archive::BagIt::Role::OpenSSL';
our $VERSION = '0.100'; # VERSION
# ABSTRACT: The MD5 algorithm plugin (default for v0.97)
has '+plugin_name' => (
is => 'ro',
default => 'Archive::BagIt::Plugin::Algorithm::MD5',
);
has '+name' => (
lib/Archive/BagIt/Plugin/Algorithm/SHA512.pm view on Meta::CPAN
package Archive::BagIt::Plugin::Algorithm::SHA512;
use strict;
use warnings;
use Carp qw( croak );
use Moo;
use namespace::autoclean;
with 'Archive::BagIt::Role::Algorithm';
with 'Archive::BagIt::Role::OpenSSL';
our $VERSION = '0.100'; # VERSION
# ABSTRACT: The default SHA algorithms plugin (default for v1.0)
has '+plugin_name' => (
is => 'ro',
default => 'Archive::BagIt::Plugin::Algorithm::SHA512',
);
lib/Archive/BagIt/Role/Manifest.pm view on Meta::CPAN
package Archive::BagIt::Role::Manifest;
use strict;
use warnings;
use namespace::autoclean;
use Carp qw( croak carp );
use File::Spec ();
use Moo::Role;
with 'Archive::BagIt::Role::Plugin';
with 'Archive::BagIt::Role::Portability';
# ABSTRACT: A role that handles all manifest files for a specific Algorithm
our $VERSION = '0.100'; # VERSION
has 'algorithm' => (
is => 'rw',
lib/Archive/BagIt/Role/OpenSSL.pm view on Meta::CPAN
package Archive::BagIt::Role::OpenSSL;
use strict;
use warnings;
use Archive::BagIt::Role::OpenSSL::Sync;
use Class::Load qw(load_class);
use Carp qw(carp);
use Moo::Role;
use namespace::autoclean;
# ABSTRACT: A role that handles plugin loading
our $VERSION = '0.100'; # VERSION
has 'async_support' => (
is => 'ro',
builder => '_check_async_support',
predicate => 1,
lazy => 1,
);
lib/Archive/BagIt/Role/OpenSSL/Async.pm view on Meta::CPAN
package Archive::BagIt::Role::OpenSSL::Async;
use strict;
use warnings;
use Moo;
use namespace::autoclean;
use IO::Async::Loop;
use IO::Async::Stream;
use Net::SSLeay ();
our $VERSION = '0.100'; # VERSION
# ABSTRACT: handles asynchronous digest calculation using openssl
sub BEGIN {
Net::SSLeay::OpenSSL_add_all_digests();
is => 'rw',
lib/Archive/BagIt/Role/OpenSSL/Sync.pm view on Meta::CPAN
package Archive::BagIt::Role::OpenSSL::Sync;
use strict;
use warnings FATAL => 'all';
use Moo;
use namespace::autoclean;
use Net::SSLeay ();
our $VERSION = '0.100'; # VERSION
# ABSTRACT: handles synchronous digest calculation using openssl
sub BEGIN {
Net::SSLeay::OpenSSL_add_all_digests();
}
has 'name' => (
required => 1,
lib/Archive/BagIt/Role/Plugin.pm view on Meta::CPAN
package Archive::BagIt::Role::Plugin;
use strict;
use warnings;
use Moo::Role;
use namespace::autoclean;
# ABSTRACT: A role that handles plugin loading
our $VERSION = '0.100'; # VERSION
has plugin_name => (
is => 'ro',
#isa => 'Str',
default => __PACKAGE__,
);
lib/Archive/BagIt/Role/Portability.pm view on Meta::CPAN
package Archive::BagIt::Role::Portability;
use strict;
use warnings;
use namespace::autoclean;
use Carp ();
use File::Spec ();
use Moo::Role;
# ABSTRACT: A role that handles filepaths for improved portability
our $VERSION = '0.100'; # VERSION
sub chomp_portable {
my ($line) = @_;
$line =~ s#\x{0d}?\x{0a}?\Z##s; # replace CR|CRNL with empty
view all matches for this distributionview release on metacpan - search on metacpan
( run in 0.602 second using v1.00-cache-2.02-grep-82fe00e-cpan-c98054f2a92 )