/usr/share/perl5/Pinto/Config.pm is in pinto 0.97+dfsg-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 | # ABSTRACT: Internal configuration for a Pinto repository
package Pinto::Config;
use Moose;
use MooseX::StrictConstructor;
use MooseX::Types::Moose qw(Str Bool Int ArrayRef);
use MooseX::MarkAsMethods ( autoclean => 1 );
use MooseX::Configuration;
use MooseX::Aliases;
use URI;
use Pinto::Types qw(Dir File Username PerlVersion);
use Pinto::Util qw(current_username current_time_offset);
#------------------------------------------------------------------------------
our $VERSION = '0.097'; # VERSION
#------------------------------------------------------------------------------
# Moose attributes
has root => (
is => 'ro',
isa => Dir,
alias => 'root_dir',
required => 1,
coerce => 1,
);
has username => (
is => 'ro',
isa => Username,
default => sub { return current_username },
lazy => 1,
);
has time_offset => (
is => 'ro',
isa => Int,
default => sub { return current_time_offset },
lazy => 1,
);
has stacks_dir => (
is => 'ro',
isa => Dir,
init_arg => undef,
default => sub { return $_[0]->root_dir->subdir('stacks') },
lazy => 1,
);
has authors_dir => (
is => 'ro',
isa => Dir,
init_arg => undef,
default => sub { return $_[0]->root_dir->subdir('authors') },
lazy => 1,
);
has authors_id_dir => (
is => 'ro',
isa => Dir,
init_arg => undef,
default => sub { return $_[0]->authors_dir->subdir('id') },
lazy => 1,
);
has modules_dir => (
is => 'ro',
isa => Dir,
init_arg => undef,
default => sub { return $_[0]->root_dir->subdir('modules') },
lazy => 1,
);
has mailrc_file => (
is => 'ro',
isa => File,
init_arg => undef,
default => sub { return $_[0]->authors_dir->file('01mailrc.txt.gz') },
lazy => 1,
);
has db_dir => (
is => 'ro',
isa => Dir,
init_arg => undef,
default => sub { return $_[0]->pinto_dir->subdir('db') },
lazy => 1,
);
has db_file => (
is => 'ro',
isa => File,
init_arg => undef,
default => sub { return $_[0]->db_dir->file('pinto.db') },
lazy => 1,
);
has pinto_dir => (
is => 'ro',
isa => Dir,
init_arg => undef,
default => sub { return $_[0]->root_dir->subdir('.pinto') },
lazy => 1,
);
has config_dir => (
is => 'ro',
isa => Dir,
init_arg => undef,
default => sub { return $_[0]->pinto_dir->subdir('config') },
lazy => 1,
);
has cache_dir => (
is => 'ro',
isa => Dir,
init_arg => undef,
default => sub { return $_[0]->pinto_dir->subdir('cache') },
lazy => 1,
);
has log_dir => (
is => 'ro',
isa => Dir,
init_arg => undef,
default => sub { return $_[0]->pinto_dir->subdir('log') },
lazy => 1,
);
has version_file => (
is => 'ro',
isa => File,
init_arg => undef,
default => sub { return $_[0]->pinto_dir->file('version') },
lazy => 1,
);
has basename => (
is => 'ro',
isa => Str,
init_arg => undef,
default => 'pinto.ini',
);
#------------------------------------------------------------------------------
# Actual configurable attributes
has sources => (
is => 'ro',
isa => Str,
key => 'sources',
default => 'http://cpan.perl.org http://backpan.perl.org',
documentation => 'URLs of upstream repositories (space delimited)',
);
has target_perl_version => (
is => 'ro',
isa => PerlVersion,
key => 'target_perl_version',
documentation => 'Default target perl version for new stacks',
default => $], # Note: $PERL_VERSION is broken on old perls
coerce => 1,
);
has recurse => (
is => 'ro',
isa => Bool,
key => 'recurse',
documentation => 'Default recursive behavior',
default => 1,
);
#------------------------------------------------------------------------------
sub _build_config_file {
my ($self) = @_;
my $config_file = $self->config_dir->file( $self->basename );
return -e $config_file ? $config_file : ();
}
#------------------------------------------------------------------------------
sub sources_list {
my ($self) = @_;
# Some folks tend to put quotes around multi-value configuration
# parameters, even though they shouldn't. Be kind and remove them.
my $sources = $self->sources;
$sources =~ s/ ['"] //gx;
return map { URI->new($_) } split m{ \s+ }mx, $sources;
}
#------------------------------------------------------------------------------
sub directories {
my ($self) = @_;
return ( $self->root_dir, $self->config_dir, $self->cache_dir, $self->authors_dir, $self->log_dir, $self->db_dir );
}
#------------------------------------------------------------------------------
__PACKAGE__->meta->make_immutable;
#------------------------------------------------------------------------------
1;
__END__
=pod
=encoding UTF-8
=for :stopwords Jeffrey Ryan Thalhammer BenRifkah Fowler Jakob Voss Karen Etheridge Michael
G. Bergsten-Buret Schwern Oleg Gashev Steffen Schwigon Tommy Stanton
Wolfgang Kinkeldei Yanick Boris Champoux hesco popl Däppen Cory G Watson
David Steinbrunner Glenn
=head1 NAME
Pinto::Config - Internal configuration for a Pinto repository
=head1 VERSION
version 0.097
=head1 DESCRIPTION
This is a private module for internal use only. There is nothing for
you to see here (yet).
=head1 AUTHOR
Jeffrey Ryan Thalhammer <jeff@stratopan.com>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2013 by Jeffrey Ryan Thalhammer.
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
|