—package
Dist::Zilla::Plugin::GatherFile 6.032;
# ABSTRACT: gather individual file(s)
use
Moose;
use
Dist::Zilla::Pragmas;
use
Path::Tiny;
use
Dist::Zilla::Util;
use
namespace::autoclean;
#pod =head1 SYNOPSIS
#pod
#pod [GatherFile]
#pod filename = examples/file.txt
#pod
#pod =head1 DESCRIPTION
#pod
#pod This is a very, very simple L<FileGatherer|Dist::Zilla::Role::FileGatherer>
#pod plugin. It adds all the files referenced by the C<filename> option that are
#pod found in the directory named in the L</root> attribute. If the root begins
#pod with a tilde, the tilde is passed through C<glob()> first.
#pod
#pod Since normally every distribution will use a GatherDir plugin, you would only
#pod need to use the GatherFile plugin if the file was already being excluded (e.g.
#pod from an C<exclude_match> configuration).
#pod
#pod =cut
#pod =attr root
#pod
#pod This is the directory in which to look for files. If not given, it defaults to
#pod the dist root -- generally, the place where your F<dist.ini> or other
#pod configuration file is located.
#pod
#pod =cut
has
root
=> (
is
=>
'ro'
,
isa
=> Path,
lazy
=> 1,
coerce
=> 1,
required
=> 1,
default
=>
sub
{
shift
->zilla->root },
);
#pod =attr prefix
#pod
#pod This parameter can be set to place the gathered files under a particular
#pod directory. See the L<description|DESCRIPTION> above for an example.
#pod
#pod =cut
has
prefix
=> (
is
=>
'ro'
,
isa
=>
'Str'
,
default
=>
''
,
);
#pod =attr filename
#pod
#pod The name of the file to gather, relative to the C<root>.
#pod Can be used more than once.
#pod
#pod =cut
has
filenames
=> (
is
=>
'ro'
,
isa
=> ArrayRefOfPaths,
lazy
=> 1,
coerce
=> 1,
default
=>
sub
{ [] },
);
sub
mvp_aliases { +{
filename
=>
'filenames'
} }
sub
mvp_multivalue_args {
qw(filenames)
}
around
dump_config
=>
sub
{
my
$orig
=
shift
;
my
$self
=
shift
;
my
$config
=
$self
->
$orig
;
$config
->{+__PACKAGE__} = {
prefix
=>
$self
->prefix,
# only report relative to dist root to avoid leaking private info
root
=> path(
$self
->root)->relative(
$self
->zilla->root),
filenames
=> [
sort
@{
$self
->filenames } ],
};
return
$config
;
};
sub
gather_files {
my
(
$self
) =
@_
;
my
$repo_root
=
$self
->zilla->root;
my
$root
=
""
.
$self
->root;
$root
=~ s{^~([\\/])}{ Dist::Zilla::Util->homedir . $1 }e;
$root
= path(
$root
);
$root
=
$root
->absolute(
$repo_root
)
if
path(
$root
)->is_relative;
for
my
$filename
(@{
$self
->filenames })
{
$filename
=
$root
->child(
$filename
);
$self
->log_fatal(
"$filename is a directory! Use [GatherDir] instead?"
)
if
-d
$filename
;
my
$fileobj
=
$self
->_file_from_filename(
$filename
->stringify);
$filename
=
$fileobj
->name;
my
$file
= path(
$filename
)->relative(
$root
);
$file
= path(
$self
->prefix,
$file
)
if
$self
->prefix;
$fileobj
->name(
$file
->stringify);
$self
->add_file(
$fileobj
);
}
return
;
}
# as in GatherDir
sub
_file_from_filename {
my
(
$self
,
$filename
) =
@_
;
my
@stat
=
stat
$filename
or
$self
->log_fatal(
"$filename does not exist!"
);
return
Dist::Zilla::File::OnDisk->new({
name
=>
$filename
,
mode
=>
$stat
[2] & 0755,
# kill world-writeability
});
}
__PACKAGE__->meta->make_immutable;
__END__
=pod
=encoding UTF-8
=head1 NAME
Dist::Zilla::Plugin::GatherFile - gather individual file(s)
=head1 VERSION
version 6.032
=head1 SYNOPSIS
[GatherFile]
filename = examples/file.txt
=head1 DESCRIPTION
This is a very, very simple L<FileGatherer|Dist::Zilla::Role::FileGatherer>
plugin. It adds all the files referenced by the C<filename> option that are
found in the directory named in the L</root> attribute. If the root begins
with a tilde, the tilde is passed through C<glob()> first.
Since normally every distribution will use a GatherDir plugin, you would only
need to use the GatherFile plugin if the file was already being excluded (e.g.
from an C<exclude_match> configuration).
=head1 PERL VERSION
This module should work on any version of perl still receiving updates from
the Perl 5 Porters. This means it should work on any version of perl
released in the last two to three years. (That is, if the most recently
released version is v5.40, then this module should work on both v5.40 and
v5.38.)
Although it may work on older versions of perl, no guarantee is made that the
minimum required version will not be increased. The version may be increased
for any reason, and there is no promise that patches will be accepted to
lower the minimum required perl.
=head1 ATTRIBUTES
=head2 root
This is the directory in which to look for files. If not given, it defaults to
the dist root -- generally, the place where your F<dist.ini> or other
configuration file is located.
=head2 prefix
This parameter can be set to place the gathered files under a particular
directory. See the L<description|DESCRIPTION> above for an example.
=head2 filename
The name of the file to gather, relative to the C<root>.
Can be used more than once.
=head1 AUTHOR
Ricardo SIGNES 😏 <cpan@semiotic.systems>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2024 by Ricardo SIGNES.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut