AnyEvent-I3X-Workspace-OnDemand
view release on metacpan or search on metacpan
"runtime" : {
"requires" : {
"AnyEvent" : "0",
"AnyEvent::I3" : "0.19",
"Carp" : "0",
"Data::Compare" : "0",
"EV" : "0",
"File::Spec::Functions" : "0",
"Getopt::Long" : "0",
"IO::Select" : "0",
"JSON::XS" : "0",
"List::Util" : "0",
"Object::Pad" : "0",
"Pod::Usage" : "0",
"Proc::Find" : "0",
"Proc::ProcessTable" : "0",
"X11::Protocol" : "0",
"YAML::XS" : "0",
"perl" : "v5.26.0"
}
},
"type" : "git",
"url" : "git://gitlab.com/waterkip/anyevent-i3x-workspace-ondemand.git",
"web" : "https://gitlab.com/waterkip/anyevent-i3x-workspace-ondemand"
}
},
"version" : "0.011",
"x_contributors" : [
"Wesley Schwengle <waterkip@cpan.org>"
],
"x_generated_by_perl" : "v5.40.1",
"x_serialization_backend" : "Cpanel::JSON::XS version 4.40",
"x_spdx_expression" : "BSD-3-Clause"
}
version: '0.011'
requires:
AnyEvent: '0'
AnyEvent::I3: '0.19'
Carp: '0'
Data::Compare: '0'
EV: '0'
File::Spec::Functions: '0'
Getopt::Long: '0'
IO::Select: '0'
JSON::XS: '0'
List::Util: '0'
Object::Pad: '0'
Pod::Usage: '0'
Proc::Find: '0'
Proc::ProcessTable: '0'
X11::Protocol: '0'
YAML::XS: '0'
perl: v5.26.0
resources:
repository: git://gitlab.com/waterkip/anyevent-i3x-workspace-ondemand.git
Makefile.PL view on Meta::CPAN
"NAME" => "AnyEvent::I3X::Workspace::OnDemand",
"PREREQ_PM" => {
"AnyEvent" => 0,
"AnyEvent::I3" => "0.19",
"Carp" => 0,
"Data::Compare" => 0,
"EV" => 0,
"File::Spec::Functions" => 0,
"Getopt::Long" => 0,
"IO::Select" => 0,
"JSON::XS" => 0,
"List::Util" => 0,
"Object::Pad" => 0,
"Pod::Usage" => 0,
"Proc::Find" => 0,
"Proc::ProcessTable" => 0,
"X11::Protocol" => 0,
"YAML::XS" => 0
},
"TEST_REQUIRES" => {
"File::Spec" => 0,
Makefile.PL view on Meta::CPAN
"AnyEvent::I3" => "0.19",
"Carp" => 0,
"Data::Compare" => 0,
"EV" => 0,
"File::Spec" => 0,
"File::Spec::Functions" => 0,
"Getopt::Long" => 0,
"IO::Handle" => 0,
"IO::Select" => 0,
"IPC::Open3" => 0,
"JSON::XS" => 0,
"List::Util" => 0,
"Object::Pad" => 0,
"Pod::Usage" => 0,
"Proc::Find" => 0,
"Proc::ProcessTable" => 0,
"Test::More" => "0.96",
"X11::Protocol" => 0,
"YAML::XS" => 0
);
# inserted by Dist::Zilla::Plugin::DynamicPrereqs 0.040
requires('JSON::XS', '4.02') if has_module('JSON::XS', '4.01') or !defined has_module('JSON::XS', '4.01');
unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
delete $WriteMakefileArgs{TEST_REQUIRES};
delete $WriteMakefileArgs{BUILD_REQUIRES};
$WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
}
delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
unless eval { ExtUtils::MakeMaker->VERSION(6.52) };
bin/i3-status view on Meta::CPAN
#!/usr/bin/env perl
use strict;
use warnings;
# PODNAME: i3-status
# ABSTRACT: i3 status - plugin on demand
use JSON::XS;
use AnyEvent::I3X::Workspace::OnDemand;
use Pod::Usage;
use Getopt::Long;
my %options = ();
GetOptions(\%options, qw(help man));
if ($options{help}) {
pod2usage(-verbose => 1);
# Do not edit this file directly. To change prereqs, edit the `dist.ini` file.
requires "AnyEvent" => "0";
requires "AnyEvent::I3" => "0.19";
requires "Carp" => "0";
requires "Data::Compare" => "0";
requires "EV" => "0";
requires "File::Spec::Functions" => "0";
requires "Getopt::Long" => "0";
requires "IO::Select" => "0";
requires "JSON::XS" => "0";
requires "List::Util" => "0";
requires "Object::Pad" => "0";
requires "Pod::Usage" => "0";
requires "Proc::Find" => "0";
requires "Proc::ProcessTable" => "0";
requires "X11::Protocol" => "0";
requires "YAML::XS" => "0";
requires "perl" => "v5.26.0";
on 'test' => sub {
( run in 2.137 seconds using v1.01-cache-2.11-cpan-39bf76dae61 )