view release on metacpan or search on metacpan
"Try::Tiny" => 0,
"Type::Library" => "0.040",
"Type::Utils" => 0,
"Types::Standard" => 0,
"URI" => 0,
"URI::QueryParam" => 0,
"URI::db" => "0.20",
"User::pwent" => 0,
"constant" => 0,
"locale" => 0,
"namespace::autoclean" => "0.16",
"overload" => 0,
"parent" => 0,
"perl" => "5.010",
"strict" => 0,
"utf8" => 0,
"warnings" => 0
},
"script_files" => [
"bin/sqitch"
],
"Try::Tiny" : "0",
"Type::Library" : "0.040",
"Type::Utils" : "0",
"Types::Standard" : "0",
"URI" : "0",
"URI::QueryParam" : "0",
"URI::db" : "0.20",
"User::pwent" : "0",
"constant" : "0",
"locale" : "0",
"namespace::autoclean" : "0.16",
"overload" : "0",
"parent" : "0",
"perl" : "5.010",
"strict" : "0",
"utf8" : "0",
"warnings" : "0"
},
"suggests" : {
"DBD::Firebird" : "1.11",
"DBD::MariaDB" : "1.0",
Try::Tiny: '0'
Type::Library: '0.040'
Type::Utils: '0'
Types::Standard: '0'
URI: '0'
URI::QueryParam: '0'
URI::db: '0.20'
User::pwent: '0'
constant: '0'
locale: '0'
namespace::autoclean: '0.16'
overload: '0'
parent: '0'
perl: '5.010'
strict: '0'
utf8: '0'
warnings: '0'
resources:
bugtracker: https://github.com/sqitchers/sqitch/issues/
homepage: https://sqitch.org/
repository: https://github.com/sqitchers/sqitch/
dist/cpanfile view on Meta::CPAN
requires "Try::Tiny" => "0";
requires "Type::Library" => "0.040";
requires "Type::Utils" => "0";
requires "Types::Standard" => "0";
requires "URI" => "0";
requires "URI::QueryParam" => "0";
requires "URI::db" => "0.20";
requires "User::pwent" => "0";
requires "constant" => "0";
requires "locale" => "0";
requires "namespace::autoclean" => "0.16";
requires "overload" => "0";
requires "parent" => "0";
requires "perl" => "5.010";
requires "strict" => "0";
requires "utf8" => "0";
requires "warnings" => "0";
recommends "Class::XSAccessor" => "1.18";
recommends "Pod::Simple" => "1.41";
recommends "Template" => "0";
recommends "Type::Tiny::XS" => "0.010";
dist/sqitch.spec view on Meta::CPAN
BuildRequires: perl(IPC::Run3)
BuildRequires: perl(IPC::System::Simple) >= 1.17
BuildRequires: perl(List::Util)
BuildRequires: perl(List::MoreUtils)
BuildRequires: perl(Locale::Messages)
BuildRequires: perl(Locale::TextDomain) >= 1.20
BuildRequires: perl(Module::Build) >= 0.35
BuildRequires: perl(Module::Runtime)
BuildRequires: perl(Moo) >= 1.002000
BuildRequires: perl(Moo::Role)
BuildRequires: perl(namespace::autoclean) >= 0.16
BuildRequires: perl(parent)
BuildRequires: perl(overload)
BuildRequires: perl(Path::Class) >= 0.33
BuildRequires: perl(PerlIO::utf8_strict)
BuildRequires: perl(Pod::Escapes)
BuildRequires: perl(Pod::Find)
BuildRequires: perl(Pod::Usage)
BuildRequires: perl(POSIX)
BuildRequires: perl(Scalar::Util)
BuildRequires: perl(StackTrace::Auto)
lib/App/Sqitch/Command/add.pm view on Meta::CPAN
use warnings;
use utf8;
use Locale::TextDomain qw(App-Sqitch);
use App::Sqitch::X qw(hurl);
use Moo;
use App::Sqitch::Types qw(Str Int ArrayRef HashRef Dir Bool Maybe);
use Path::Class;
use Try::Tiny;
use Clone qw(clone);
use List::Util qw(first);
use namespace::autoclean;
extends 'App::Sqitch::Command';
with 'App::Sqitch::Role::ContextCommand';
our $VERSION = 'v1.5.1'; # VERSION
has change_name => (
is => 'ro',
isa => Maybe[Str],
);
lib/App/Sqitch/Command/bundle.pm view on Meta::CPAN
use warnings;
use utf8;
use Moo;
use App::Sqitch::Types qw(Str Dir Maybe Bool);
use File::Path qw(make_path);
use Path::Class;
use Locale::TextDomain qw(App-Sqitch);
use App::Sqitch::X qw(hurl);
use File::Copy ();
use List::Util qw(first);
use namespace::autoclean;
extends 'App::Sqitch::Command';
with 'App::Sqitch::Role::ContextCommand';
our $VERSION = 'v1.5.1'; # VERSION
has from => (
is => 'ro',
isa => Maybe[Str],
);
lib/App/Sqitch/Command/check.pm view on Meta::CPAN
use 5.010;
use strict;
use warnings;
use utf8;
use Moo;
use Types::Standard qw(Str HashRef);
use App::Sqitch::X qw(hurl);
use Locale::TextDomain qw(App-Sqitch);
use List::Util qw(first);
use namespace::autoclean;
extends 'App::Sqitch::Command';
with 'App::Sqitch::Role::ContextCommand';
with 'App::Sqitch::Role::ConnectingCommand';
our $VERSION = 'v1.5.1'; # VERSION
has target => (
is => 'ro',
isa => Str,
lib/App/Sqitch/Command/checkout.pm view on Meta::CPAN
use strict;
use warnings;
use utf8;
use Moo;
use App::Sqitch::Types qw(Str);
use Locale::TextDomain qw(App-Sqitch);
use App::Sqitch::X qw(hurl);
use App::Sqitch::Plan;
use Path::Class qw(dir);
use Try::Tiny;
use namespace::autoclean;
extends 'App::Sqitch::Command';
with 'App::Sqitch::Role::RevertDeployCommand';
our $VERSION = 'v1.5.1'; # VERSION
has client => (
is => 'ro',
isa => Str,
lazy => 1,
lib/App/Sqitch/Command/config.pm view on Meta::CPAN
use warnings;
use utf8;
use Path::Class ();
use Try::Tiny;
use Locale::TextDomain qw(App-Sqitch);
use App::Sqitch::X qw(hurl);
use List::Util qw(first);
use Moo;
use App::Sqitch::Types qw(Str Dir Maybe);
use Type::Utils qw(enum);
use namespace::autoclean;
extends 'App::Sqitch::Command';
our $VERSION = 'v1.5.1'; # VERSION
has file => (
is => 'ro',
lazy => 1,
default => sub {
my $self = shift;
my $meth = ( $self->context || 'local' ) . '_file';
lib/App/Sqitch/Command/deploy.pm view on Meta::CPAN
use 5.010;
use strict;
use warnings;
use utf8;
use Moo;
use App::Sqitch::Types qw(Int URI Str Bool HashRef);
use Locale::TextDomain qw(App-Sqitch);
use Type::Utils qw(enum);
use App::Sqitch::X qw(hurl);
use List::Util qw(first);
use namespace::autoclean;
extends 'App::Sqitch::Command';
with 'App::Sqitch::Role::ContextCommand';
with 'App::Sqitch::Role::ConnectingCommand';
our $VERSION = 'v1.5.1'; # VERSION
has target => (
is => 'ro',
isa => Str,
lib/App/Sqitch/Command/engine.pm view on Meta::CPAN
use warnings;
use utf8;
use Moo;
use Types::Standard qw(Str Int HashRef);
use Locale::TextDomain qw(App-Sqitch);
use App::Sqitch::X qw(hurl);
use Try::Tiny;
use URI::db;
use Path::Class qw(file dir);
use List::Util qw(max first);
use namespace::autoclean;
use constant extra_target_keys => qw(target);
extends 'App::Sqitch::Command';
with 'App::Sqitch::Role::TargetConfigCommand';
our $VERSION = 'v1.5.1'; # VERSION
sub _chk_engine($) {
my $engine = shift;
hurl engine => __x(
lib/App/Sqitch/Command/init.pm view on Meta::CPAN
use strict;
use warnings;
use utf8;
use Moo;
use App::Sqitch::Types qw(URI Maybe);
use Locale::TextDomain qw(App-Sqitch);
use App::Sqitch::X qw(hurl);
use List::MoreUtils qw(natatime);
use Path::Class;
use App::Sqitch::Plan;
use namespace::autoclean;
use constant extra_target_keys => qw(engine target);
extends 'App::Sqitch::Command';
with 'App::Sqitch::Role::TargetConfigCommand';
our $VERSION = 'v1.5.1'; # VERSION
sub execute {
my ( $self, $project ) = @_;
$self->_validate_project($project);
lib/App/Sqitch/Command/log.pm view on Meta::CPAN
use 5.010;
use strict;
use warnings;
use utf8;
use Locale::TextDomain qw(App-Sqitch);
use App::Sqitch::X qw(hurl);
use Moo;
use Types::Standard qw(Str Int ArrayRef Bool);
use Type::Utils qw(class_type);
use App::Sqitch::ItemFormatter;
use namespace::autoclean;
use Try::Tiny;
extends 'App::Sqitch::Command';
with 'App::Sqitch::Role::ConnectingCommand';
our $VERSION = 'v1.5.1'; # VERSION
my %FORMATS;
$FORMATS{raw} = <<EOF;
%{:event}C%e %H%{reset}C%T
lib/App/Sqitch/Command/plan.pm view on Meta::CPAN
use 5.010;
use strict;
use warnings;
use utf8;
use Locale::TextDomain qw(App-Sqitch);
use App::Sqitch::X qw(hurl);
use Moo;
use Types::Standard qw(Str Int ArrayRef Bool);
use Type::Utils qw(class_type);
use App::Sqitch::ItemFormatter;
use namespace::autoclean;
use Try::Tiny;
extends 'App::Sqitch::Command';
our $VERSION = 'v1.5.1'; # VERSION
my %FORMATS;
$FORMATS{raw} = <<EOF;
%{:event}C%e %H%{reset}C%T
name %n
project %o
lib/App/Sqitch/Command/rebase.pm view on Meta::CPAN
use 5.010;
use strict;
use warnings;
use utf8;
use Moo;
use Types::Standard qw(Str Bool);
use Locale::TextDomain qw(App-Sqitch);
use App::Sqitch::X qw(hurl);
use List::Util qw(first);
use Try::Tiny;
use namespace::autoclean;
extends 'App::Sqitch::Command';
with 'App::Sqitch::Role::RevertDeployCommand';
our $VERSION = 'v1.5.1'; # VERSION
has onto_change => (
is => 'ro',
isa => Str,
);
lib/App/Sqitch/Command/revert.pm view on Meta::CPAN
use 5.010;
use strict;
use warnings;
use utf8;
use Moo;
use Types::Standard qw(Int Str Bool HashRef);
use List::Util qw(first);
use App::Sqitch::X qw(hurl);
use Locale::TextDomain qw(App-Sqitch);
use namespace::autoclean;
extends 'App::Sqitch::Command';
with 'App::Sqitch::Role::ContextCommand';
with 'App::Sqitch::Role::ConnectingCommand';
our $VERSION = 'v1.5.1'; # VERSION
has target => (
is => 'ro',
isa => Str,
lib/App/Sqitch/Command/rework.pm view on Meta::CPAN
use 5.010;
use strict;
use warnings;
use utf8;
use Locale::TextDomain qw(App-Sqitch);
use App::Sqitch::X qw(hurl);
use File::Copy;
use Moo;
use App::Sqitch::Types qw(Str ArrayRef Bool Maybe);
use namespace::autoclean;
extends 'App::Sqitch::Command';
with 'App::Sqitch::Role::ContextCommand';
our $VERSION = 'v1.5.1'; # VERSION
has change_name => (
is => 'ro',
isa => Maybe[Str],
);
lib/App/Sqitch/Command/status.pm view on Meta::CPAN
use 5.010;
use strict;
use warnings;
use utf8;
use Locale::TextDomain qw(App-Sqitch);
use App::Sqitch::X qw(hurl);
use Moo;
use App::Sqitch::Types qw(Str Bool Target);
use List::Util qw(max);
use Try::Tiny;
use namespace::autoclean;
extends 'App::Sqitch::Command';
with 'App::Sqitch::Role::ContextCommand';
with 'App::Sqitch::Role::ConnectingCommand';
our $VERSION = 'v1.5.1'; # VERSION
has target_name => (
is => 'ro',
isa => Str,
lib/App/Sqitch/Command/tag.pm view on Meta::CPAN
use 5.010;
use strict;
use warnings;
use utf8;
use Moo;
use App::Sqitch::X qw(hurl);
use Types::Standard qw(Str ArrayRef Maybe Bool);
use Locale::TextDomain qw(App-Sqitch);
use List::Util qw(first);
use namespace::autoclean;
extends 'App::Sqitch::Command';
with 'App::Sqitch::Role::ContextCommand';
our $VERSION = 'v1.5.1'; # VERSION
has tag_name => (
is => 'ro',
isa => Maybe[Str],
);
lib/App/Sqitch/Command/target.pm view on Meta::CPAN
use warnings;
use utf8;
use Moo;
use Types::Standard qw(Str Int HashRef);
use Locale::TextDomain qw(App-Sqitch);
use App::Sqitch::X qw(hurl);
use URI::db;
use Try::Tiny;
use Path::Class qw(file dir);
use List::Util qw(max);
use namespace::autoclean;
use constant extra_target_keys => qw(uri);
extends 'App::Sqitch::Command';
with 'App::Sqitch::Role::TargetConfigCommand';
our $VERSION = 'v1.5.1'; # VERSION
sub configure {
# No config; target config is actually targets.
return {};
lib/App/Sqitch/Command/upgrade.pm view on Meta::CPAN
use 5.010;
use strict;
use warnings;
use utf8;
use Moo;
use App::Sqitch::Types qw(URI Maybe Str Bool HashRef);
use Locale::TextDomain qw(App-Sqitch);
use App::Sqitch::X qw(hurl);
use List::Util qw(first);
use namespace::autoclean;
extends 'App::Sqitch::Command';
with 'App::Sqitch::Role::ConnectingCommand';
our $VERSION = 'v1.5.1'; # VERSION
has target => (
is => 'ro',
isa => Str,
);
lib/App/Sqitch/Command/verify.pm view on Meta::CPAN
use 5.010;
use strict;
use warnings;
use utf8;
use Moo;
use Types::Standard qw(Str HashRef);
use App::Sqitch::X qw(hurl);
use Locale::TextDomain qw(App-Sqitch);
use List::Util qw(first);
use namespace::autoclean;
extends 'App::Sqitch::Command';
with 'App::Sqitch::Role::ContextCommand';
with 'App::Sqitch::Role::ConnectingCommand';
our $VERSION = 'v1.5.1'; # VERSION
has target => (
is => 'ro',
isa => Str,
lib/App/Sqitch/Engine.pm view on Meta::CPAN
use Moo;
use strict;
use utf8;
use Try::Tiny;
use Locale::TextDomain qw(App-Sqitch);
use Path::Class qw(file);
use App::Sqitch::X qw(hurl);
use List::Util qw(first max);
use URI::db 0.20;
use App::Sqitch::Types qw(Str Int Num Sqitch Plan Bool HashRef URI Maybe Target);
use namespace::autoclean;
use constant registry_release => '1.1';
use constant default_lock_timeout => 60;
our $VERSION = 'v1.5.1'; # VERSION
has sqitch => (
is => 'ro',
isa => Sqitch,
required => 1,
weak_ref => 1,
lib/App/Sqitch/Engine/cockroach.pm view on Meta::CPAN
package App::Sqitch::Engine::cockroach;
use 5.010;
use Moo;
use namespace::autoclean;
extends 'App::Sqitch::Engine::pg';
our $VERSION = 'v1.5.1'; # VERSION
sub key { 'cockroach' }
sub name { 'CockroachDB' }
sub driver { 'DBD::Pg 2.0' }
sub _ts2char_format {
lib/App/Sqitch/Engine/exasol.pm view on Meta::CPAN
use Moo;
use utf8;
use Path::Class;
use DBI;
use Try::Tiny;
use App::Sqitch::X qw(hurl);
use Locale::TextDomain qw(App-Sqitch);
use App::Sqitch::Types qw(DBH Dir ArrayRef);
use App::Sqitch::Plan::Change;
use List::Util qw(first);
use namespace::autoclean;
extends 'App::Sqitch::Engine';
our $VERSION = 'v1.5.1'; # VERSION
sub _dt($) {
require App::Sqitch::DateTime;
return App::Sqitch::DateTime->new(split /:/ => shift);
}
lib/App/Sqitch/Engine/firebird.pm view on Meta::CPAN
use Try::Tiny;
use App::Sqitch::X qw(hurl);
use Locale::TextDomain qw(App-Sqitch);
use App::Sqitch::Plan::Change;
use Path::Class;
use File::Basename;
use Time::Local;
use Time::HiRes qw(sleep);
use Moo;
use App::Sqitch::Types qw(DBH URIDB ArrayRef Maybe Int);
use namespace::autoclean;
extends 'App::Sqitch::Engine';
our $VERSION = 'v1.5.1'; # VERSION
has registry_uri => (
is => 'ro',
isa => URIDB,
lazy => 1,
default => sub {
lib/App/Sqitch/Engine/mysql.pm view on Meta::CPAN
use strict;
use warnings;
use utf8;
use Try::Tiny;
use App::Sqitch::X qw(hurl);
use Locale::TextDomain qw(App-Sqitch);
use App::Sqitch::Plan::Change;
use Path::Class;
use Moo;
use App::Sqitch::Types qw(DBH URIDB ArrayRef Bool Str HashRef);
use namespace::autoclean;
use List::MoreUtils qw(firstidx);
extends 'App::Sqitch::Engine';
our $VERSION = 'v1.5.1'; # VERSION
has uri => (
is => 'ro',
isa => URIDB,
lazy => 1,
lib/App/Sqitch/Engine/oracle.pm view on Meta::CPAN
use Moo;
use utf8;
use Path::Class;
use DBI;
use Try::Tiny;
use App::Sqitch::X qw(hurl);
use Locale::TextDomain qw(App-Sqitch);
use App::Sqitch::Plan::Change;
use List::Util qw(first);
use App::Sqitch::Types qw(DBH Dir ArrayRef);
use namespace::autoclean;
extends 'App::Sqitch::Engine';
our $VERSION = 'v1.5.1'; # VERSION
BEGIN {
# We tell the Oracle connector which encoding to use. The last part of the
# environment variable NLS_LANG is relevant concerning data encoding.
$ENV{NLS_LANG} = 'AMERICAN_AMERICA.AL32UTF8';
view all matches for this distributionview release on metacpan - search on metacpan