Module-Install-Copyright
view release on metacpan or search on metacpan
lib/Module/Install/Admin/Copyright.pm view on Meta::CPAN
],
LicenseSection => [
qw/ $license $body /,
to_string => \&_serialize_stanza,
],
;
use Module::Install::Admin::RDF 0.003;
use Module::Manifest;
use List::MoreUtils qw( uniq );
use RDF::Trine qw( iri literal statement variable );
use Software::License;
use Software::LicenseUtils;
use Path::Class qw( file dir );
sub _serialize_file
{
my $self = shift;
return join "\n",
map $_->to_string,
(
$self->header,
@{ $self->files },
@{ $self->license },
);
}
sub _serialize_stanza
{
my $self = shift;
my $str;
for my $f ($self->FIELDS)
{
my $F = join "-", map ucfirst, split "_", $f;
my $v = $self->$f;
if ($f eq 'body') {
$v =~ s{^}" "mg;
$str .= "$v\n";
}
elsif (ref $v eq "ARRAY") {
$v = join "\n " => @$v;
$str .= "$F: $v\n";
}
elsif (defined $v and length $v) {
$v =~ s{^}" "mg;
$str .= "$F:$v\n";
}
}
return $str;
}
our $AUTHOR_ONLY = 1;
our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.009';
use RDF::Trine::Namespace qw[RDF RDFS OWL XSD];
my $CPAN = RDF::Trine::Namespace->new('http://purl.org/NET/cpan-uri/terms#');
my $DC = RDF::Trine::Namespace->new('http://purl.org/dc/terms/');
my $DOAP = RDF::Trine::Namespace->new('http://usefulinc.com/ns/doap#');
my $FOAF = RDF::Trine::Namespace->new('http://xmlns.com/foaf/0.1/');
my $NFO = RDF::Trine::Namespace->new('http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#');
my $SKOS = RDF::Trine::Namespace->new('http://www.w3.org/2004/02/skos/core#');
my %DEB = qw(
Software::License::Apache_1_1 Apache-1.1
Software::License::Apache_2_0 Apache-2.0
Software::License::Artistic_1_0 Artistic-1.0
Software::License::Artistic_2_0 Artistic-2.0
Software::License::BSD BSD-3-clause
Software::License::CC0_1_0 CC0
Software::License::GFDL_1_2 GFDL-1.2
Software::License::GFDL_1_3 GFDL-1.3
Software::License::GPL_1 GPL-1.0
Software::License::GPL_2 GPL-2.0
Software::License::GPL_3 GPL-3.0
Software::License::LGPL_2_1 LGPL-2.1
Software::License::LGPL_3_0 GPL-3.0
Software::License::MIT Expat
Software::License::Mozilla_1_0 MPL-1.0
Software::License::Mozilla_1_1 MPL-1.1
Software::License::QPL_1_0 QPL-1.0
Software::License::Zlib Zlib
);
my %URIS = (
'http://www.gnu.org/licenses/agpl-3.0.txt' => 'AGPL_3',
'http://www.apache.org/licenses/LICENSE-1.1' => 'Apache_1_1',
'http://www.apache.org/licenses/LICENSE-2.0' => 'Apache_2_0',
'http://www.apache.org/licenses/LICENSE-2.0.txt' => 'Apache_2_0',
'http://www.perlfoundation.org/artistic_license_1_0' => 'Artistic_1_0',
'http://opensource.org/licenses/artistic-license.php' => 'Artistic_1_0',
'http://www.perlfoundation.org/artistic_license_2_0' => 'Artistic_2_0',
'http://opensource.org/licenses/artistic-license-2.0.php' => 'Artistic_2_0',
'http://www.opensource.org/licenses/bsd-license.php' => 'BSD',
'http://creativecommons.org/publicdomain/zero/1.0/' => 'CC0_1_0',
'http://www.freebsd.org/copyright/freebsd-license.html' => 'FreeBSD',
'http://www.gnu.org/copyleft/fdl.html' => 'GFDL_1_3',
'http://www.opensource.org/licenses/gpl-license.php' => 'GPL_1',
'http://www.gnu.org/licenses/old-licenses/gpl-1.0.txt' => 'GPL_1',
'http://www.opensource.org/licenses/gpl-2.0.php' => 'GPL_2',
'http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt' => 'GPL_2',
'http://www.opensource.org/licenses/gpl-3.0.html' => 'GPL_3',
'http://www.gnu.org/licenses/gpl-3.0.txt' => 'GPL_3',
'http://www.opensource.org/licenses/lgpl-2.1.php' => 'LGPL_2_1',
'http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt' => 'LGPL_2_1',
'http://www.opensource.org/licenses/lgpl-3.0.html' => 'LGPL_3_0',
'http://www.gnu.org/licenses/lgpl-3.0.txt' => 'LGPL_3_0',
'http://www.opensource.org/licenses/mit-license.php' => 'MIT',
'http://www.mozilla.org/MPL/MPL-1.0.txt' => 'Mozilla_1_0',
'http://www.mozilla.org/MPL/MPL-1.1.txt' => 'Mozilla_1_1',
'http://opensource.org/licenses/mozilla1.1.php' => 'Mozilla_1_1',
'http://www.openssl.org/source/license.html' => 'OpenSSL',
'http://dev.perl.org/licenses/' => 'Perl_5',
'http://www.opensource.org/licenses/postgresql' => 'PostgreSQL',
'http://trolltech.com/products/qt/licenses/licensing/qpl' => 'QPL_1_0',
'http://h71000.www7.hp.com/doc/83final/BA554_90007/apcs02.html' => 'SSLeay',
'http://www.openoffice.org/licenses/sissl_license.html' => 'Sun',
'http://www.zlib.net/zlib_license.html' => 'Zlib',
);
eval("require Software::License::$_") for uniq values %URIS;
( run in 2.003 seconds using v1.01-cache-2.11-cpan-5a3173703d6 )