/usr/share/perl5/Catmandu/Sane.pm is in libcatmandu-perl 0.9505-1.
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 | package Catmandu::Sane;
use strict;
use warnings;
our $VERSION = '0.9505';
use feature ();
use utf8;
use IO::File ();
use IO::Handle ();
use Try::Tiny::ByClass;
use Catmandu::Error;
sub import {
my $pkg = caller;
strict->import;
warnings->import;
feature->import(qw(:5.10));
utf8->import;
Try::Tiny::ByClass->export_to_level(1, $pkg);
}
1;
__END__
=pod
=head1 NAME
Catmandu::Sane - Package boilerplate
=head1 SYNOPSIS
use Catmandu::Sane;
# Provides all the 5.10 features.
say("what");
given($foo) {
when(1) { say "1" }
when([2,3]) { say "2 or 3" }
when(/abc/) { say "has abc" }
default { none of the above }
}
sub next_id{
state $id;
++$id;
}
# Provides try/catch[/finally] try/catch_case[/finally]
try {
} catch {};
# Provides
Catmandu::Error->throw("error");
Catmandu::BadVal->throw("eek val");
Catmandu::BadArg->throw("eek arg");
Catmandu::NotImplemented->throw("cant do that!");
=head1 DESCRIPTION
Package boilerplate equivalent to:
use strict;
use warnings;
use feature qw(:5.10);
use utf8;
use IO::File ();
use IO::Handle ();
use Try::Tiny::ByClass;
use Catmandu::Error;
=cut
|