Acme-CPANModules-RsyncWrappers

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "Test::Perl::Critic" : "0",
            "Test::Pod" : "1.41",
            "Test::Pod::Coverage" : "1.08"
         },
         "x_spec" : {
            "Acme::CPANModules" : "v0.1.7"
         }
      },
      "runtime" : {
         "requires" : {
            "Acme::CPANModules::CLI::Wrapper::UnixCommand" : "0.006",
            "strict" : "0"
         }
      },
      "test" : {
         "requires" : {
            "File::Spec" : "0",
            "IO::Handle" : "0",
            "IPC::Open3" : "0",
            "Test::More" : "0"
         }

META.yml  view on Meta::CPAN

license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: '1.4'
name: Acme-CPANModules-RsyncWrappers
provides:
  Acme::CPANModules::RsyncWrappers:
    file: lib/Acme/CPANModules/RsyncWrappers.pm
    version: '0.002'
requires:
  Acme::CPANModules::CLI::Wrapper::UnixCommand: '0.006'
  strict: '0'
resources:
  bugtracker: https://rt.cpan.org/Public/Dist/Display.html?Name=Acme-CPANModules-RsyncWrappers
  homepage: https://metacpan.org/release/Acme-CPANModules-RsyncWrappers
  repository: git://github.com/perlancar/perl-Acme-CPANModules-RsyncWrappers.git
version: '0.002'
x_Dist_Zilla:
  perl:
    version: '5.038000'
  plugins:

Makefile.PL  view on Meta::CPAN

my %WriteMakefileArgs = (
  "ABSTRACT" => "List of wrappers for the rsync command",
  "AUTHOR" => "perlancar <perlancar\@cpan.org>",
  "CONFIGURE_REQUIRES" => {
    "ExtUtils::MakeMaker" => 0
  },
  "DISTNAME" => "Acme-CPANModules-RsyncWrappers",
  "LICENSE" => "perl",
  "NAME" => "Acme::CPANModules::RsyncWrappers",
  "PREREQ_PM" => {
    "Acme::CPANModules::CLI::Wrapper::UnixCommand" => "0.006",
    "strict" => 0
  },
  "TEST_REQUIRES" => {
    "File::Spec" => 0,
    "IO::Handle" => 0,
    "IPC::Open3" => 0,
    "Test::More" => 0
  },
  "VERSION" => "0.002",
  "test" => {
    "TESTS" => "t/*.t"
  }
);


my %FallbackPrereqs = (
  "Acme::CPANModules::CLI::Wrapper::UnixCommand" => "0.006",
  "File::Spec" => 0,
  "IO::Handle" => 0,
  "IPC::Open3" => 0,
  "Test::More" => 0,
  "strict" => 0
);


unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
  delete $WriteMakefileArgs{TEST_REQUIRES};

README  view on Meta::CPAN


HOMEPAGE
    Please visit the project's homepage at
    <https://metacpan.org/release/Acme-CPANModules-RsyncWrappers>.

SOURCE
    Source repository is at
    <https://github.com/perlancar/perl-Acme-CPANModules-RsyncWrappers>.

SEE ALSO
    Acme::CPANModules::CLI::Wrapper::UnixCommand, from which this list is
    derived.

    Acme::CPANModules - about the Acme::CPANModules namespace

    cpanmodules - CLI tool to let you browse/view the lists

AUTHOR
    perlancar <perlancar@cpan.org>

CONTRIBUTING

dist.ini  view on Meta::CPAN


name=Acme-CPANModules-RsyncWrappers

[Acme::CPANModules]

[@Author::PERLANCAR]
:version=0.608

[Prereqs]
strict=0
Acme::CPANModules::CLI::Wrapper::UnixCommand=0.006

[Prereqs / DevelopX_spec]
-phase=develop
-relationship=x_spec
Acme::CPANModules=0.1.7

lib/Acme/CPANModules/RsyncWrappers.pm  view on Meta::CPAN

package Acme::CPANModules::RsyncWrappers;

use strict;

our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
our $DATE = '2023-10-31'; # DATE
our $DIST = 'Acme-CPANModules-RsyncWrappers'; # DIST
our $VERSION = '0.002'; # VERSION

require Acme::CPANModules::CLI::Wrapper::UnixCommand;
my $srclist = $Acme::CPANModules::CLI::Wrapper::UnixCommand::LIST;

sub _include {
    my ($list, $item) = @_;
    ref $list eq 'ARRAY' ? ((grep {$_ eq $item} @$list) ? 1:0) : ($list eq $item);
}

our $LIST = {
    summary => "List of wrappers for the rsync command",
    entries => [
        grep { _include($_->{'x.command'}, 'rsync') } @{ $srclist->{entries} }

lib/Acme/CPANModules/RsyncWrappers.pm  view on Meta::CPAN

=head1 HOMEPAGE

Please visit the project's homepage at L<https://metacpan.org/release/Acme-CPANModules-RsyncWrappers>.

=head1 SOURCE

Source repository is at L<https://github.com/perlancar/perl-Acme-CPANModules-RsyncWrappers>.

=head1 SEE ALSO

L<Acme::CPANModules::CLI::Wrapper::UnixCommand>, from which this list is
derived.

L<Acme::CPANModules> - about the Acme::CPANModules namespace

L<cpanmodules> - CLI tool to let you browse/view the lists

=head1 AUTHOR

perlancar <perlancar@cpan.org>



( run in 1.671 second using v1.01-cache-2.11-cpan-df04353d9ac )