Arch
view release on metacpan or search on metacpan
perllib/Arch/Inventory.pm view on Meta::CPAN
$str .= "\n";
});
return $str;
}
sub annotate_fs ($;$) {
my $self = shift;
if (@_) {
$_[0]->{stat} = [ lstat("$self->{directory}/$_[0]->{path}") ];
$_[0]->{symlink} = readlink("$self->{directory}/$_[0]->{path}")
if $_[0]->{type} eq SYMLINK;
} else {
$self->foreach(sub { $self->annotate_fs($_[0]) });
}
}
*annotate_stat = *annotate_fs; *annotate_fs = *annotate_fs;
sub foreach ($$) {
perllib/Arch/Util.pm view on Meta::CPAN
}
sub setup_config_dir (;$@) {
my $dir = shift;
$dir ||= $ENV{ARCH_MAGIC_DIR};
$dir ||= ($ENV{HOME} || "/tmp") . "/.arch-magic";
foreach my $subdir ("", @_) {
next unless defined $subdir;
$dir .= "/$subdir" unless $subdir eq "";
stat($dir);
die "$dir exists, but it is not a writable directory\n"
if -e _ && !(-d _ && -w _);
unless (-e _) {
print STDERR "making dir: $dir\n"
if $ENV{DEBUG} && ("$ENV{DEBUG}" & "\2") ne "\0";
mkdir($dir, 0777) or die "Can't mkdir $dir: $!\n";
}
}
return $dir;
}
( run in 1.332 second using v1.01-cache-2.11-cpan-49f99fa48dc )