diff options
author | Karl Berry <karl@freefriends.org> | 2014-04-23 21:46:20 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2014-04-23 21:46:20 +0000 |
commit | 300c1eb6d37d46078d448d6d58938d5a80cd68ff (patch) | |
tree | 23a0a8b9f8f5460b405119c4d3c163d2d488ca5e /Master/tlpkg/tlperl/lib/Perl | |
parent | ed55d86b7c5e18f6eccce80a1fb1423ca40a23b5 (diff) |
(tl)perl 5.18.2 for windows from siep
git-svn-id: svn://tug.org/texlive/trunk@33648 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/tlperl/lib/Perl')
-rw-r--r-- | Master/tlpkg/tlperl/lib/Perl/OSType.pm | 57 |
1 files changed, 38 insertions, 19 deletions
diff --git a/Master/tlpkg/tlperl/lib/Perl/OSType.pm b/Master/tlpkg/tlperl/lib/Perl/OSType.pm index 6c2cf127e99..a79426d56c2 100644 --- a/Master/tlpkg/tlperl/lib/Perl/OSType.pm +++ b/Master/tlpkg/tlperl/lib/Perl/OSType.pm @@ -1,18 +1,8 @@ -# -# This file is part of Perl-OSType -# -# This software is copyright (c) 2010 by David Golden. -# -# This is free software; you can redistribute it and/or modify it under -# the same terms as the Perl 5 programming language system itself. -# use strict; use warnings; package Perl::OSType; -BEGIN { - $Perl::OSType::VERSION = '1.002'; -} # ABSTRACT: Map Perl operating system names to generic types +our $VERSION = '1.003'; # VERSION require Exporter; our @ISA = qw(Exporter); @@ -71,7 +61,7 @@ my %OSTYPES = qw( MacOS MacOS VMS VMS - VOS VOS + vos VOS riscos RiscOS amigaos Amiga mpeix MPEiX @@ -92,6 +82,7 @@ sub is_os_type { 1; +__END__ =pod @@ -101,7 +92,7 @@ Perl::OSType - Map Perl operating system names to generic types =head1 VERSION -version 1.002 +version 1.003 =head1 SYNOPSIS @@ -155,20 +146,48 @@ L<Devel::CheckOS> =back +=for :stopwords cpan testmatrix url annocpan anno bugtracker rt cpants kwalitee diff irc mailto metadata placeholders metacpan + +=head1 SUPPORT + +=head2 Bugs / Feature Requests + +Please report any bugs or feature requests through the issue tracker +at L<https://github.com/dagolden/perl-ostype/issues>. +You will be notified automatically of any progress on your issue. + +=head2 Source Code + +This is open source software. The code repository is available for +public review and contribution under the terms of the license. + +L<https://github.com/dagolden/perl-ostype> + + git clone git://github.com/dagolden/perl-ostype.git + =head1 AUTHOR David Golden <dagolden@cpan.org> -=head1 COPYRIGHT AND LICENSE +=head1 CONTRIBUTORS -This software is copyright (c) 2010 by David Golden. +=over 4 -This is free software; you can redistribute it and/or modify it under -the same terms as the Perl 5 programming language system itself. +=item * -=cut +Jonas B. Nielsen <jonasbn@hoarfrost.local> +=item * -__END__ +Paul Green <Paul.Green@stratus.com> +=back +=head1 COPYRIGHT AND LICENSE + +This software is copyright (c) 2013 by David Golden. + +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 |