Acme-CPANAuthors-Austrian

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

Revision history for Perl extension Acme-CPANAuthors-Austrian

1.131810 2013-06-30 21:30:00 Europe/Vienna
    - added author GORTAN
    - added "use utf8" to fix #60407

1.100770  2010-03-18 11:39:27 Europe/Vienna
    - added author OPITZ

1.100710  2010-03-12 15:00:38 Europe/Vienna
    - converted distribution to Dist::Zilla style

0.10 Tue 2010.02.09 23:54:50 CET (Marcel Gruenauer <marcel@cpan.org>)
     - releng

META.json  view on Meta::CPAN

            "Test::CPAN::Meta" : "0",
            "Test::Pod" : "1.41",
            "Test::Pod::Coverage" : "1.08"
         }
      },
      "runtime" : {
         "requires" : {
            "Acme::CPANAuthors::Register" : "0",
            "perl" : "5.008",
            "strict" : "0",
            "utf8" : "0",
            "warnings" : "0"
         }
      },
      "test" : {
         "requires" : {
            "Acme::CPANAuthors" : "0",
            "Carp" : "0",
            "File::Find" : "0",
            "File::Temp" : "0",
            "Scalar::Util" : "0",

META.yml  view on Meta::CPAN

  version: 1.4
name: Acme-CPANAuthors-Austrian
provides:
  Acme::CPANAuthors::Austrian:
    file: lib/Acme/CPANAuthors/Austrian.pm
    version: 1.131810
requires:
  Acme::CPANAuthors::Register: 0
  perl: 5.008
  strict: 0
  utf8: 0
  warnings: 0
resources:
  bugtracker: http://rt.cpan.org/Public/Dist/Display.html?Name=Acme-CPANAuthors-Austrian
  homepage: http://search.cpan.org/dist/Acme-CPANAuthors-Austrian/
  repository: git://github.com/mephinet/Acme-CPANAuthors-Austrian.git
version: 1.131810

Makefile.PL  view on Meta::CPAN

  "CONFIGURE_REQUIRES" => {
    "ExtUtils::MakeMaker" => "6.30"
  },
  "DISTNAME" => "Acme-CPANAuthors-Austrian",
  "EXE_FILES" => [],
  "LICENSE" => "perl",
  "NAME" => "Acme::CPANAuthors::Austrian",
  "PREREQ_PM" => {
    "Acme::CPANAuthors::Register" => 0,
    "strict" => 0,
    "utf8" => 0,
    "warnings" => 0
  },
  "TEST_REQUIRES" => {
    "Acme::CPANAuthors" => 0,
    "Carp" => 0,
    "File::Find" => 0,
    "File::Temp" => 0,
    "Scalar::Util" => 0,
    "Test::Differences" => 0,
    "Test::More" => "0.94"

lib/Acme/CPANAuthors/Austrian.pm  view on Meta::CPAN

use 5.008;
use strict;
use warnings;
use utf8;

package Acme::CPANAuthors::Austrian;
our $VERSION = 1.131810;
# ABSTRACT: We are Austrian CPAN authors

use Acme::CPANAuthors::Register (
    ANDK     => 'Andreas J. König',
    AREIBENS => 'Alfred Reibenschuh',
    DOMM     => 'Thomas Klausner',
    DRRHO    => 'Robert Barta',

t/000-report-versions.t  view on Meta::CPAN

package Local::YAML::Tiny;

use strict;
use Carp 'croak';

# UTF Support?
sub HAVE_UTF8 () { $] >= 5.007003 }
BEGIN {
    if ( HAVE_UTF8 ) {
        # The string eval helps hide this from Test::MinimumVersion
        eval "require utf8;";
        die "Failed to load UTF-8 support" if $@;
    }

    # Class structure
    require 5.004;
    $YAML::Tiny::VERSION   = '1.40';

    # Error storage
    $YAML::Tiny::errstr    = '';
}

t/000-report-versions.t  view on Meta::CPAN

    #     "\377\376\0\0" => 'UTF-32LE'
    #     "\0\0\376\377" => 'UTF-32BE',
    # );
    if ( $string =~ /^(?:\376\377|\377\376|\377\376\0\0|\0\0\376\377)/ ) {
        return $self->_error("Stream has a non UTF-8 BOM");
    } else {
        # Strip UTF-8 bom if found, we'll just ignore it
        $string =~ s/^\357\273\277//;
    }

    # Try to decode as utf8
    utf8::decode($string) if HAVE_UTF8;

    # Check for some special cases
    return $self unless length $string;
    unless ( $string =~ /[\012\015]+\z/ ) {
        return $self->_error("Stream does not end with newline character");
    }

    # Split the file into lines
    my @lines = grep { ! /^\s*(?:\#.*)?\z/ }
                split /(?:\015{1,2}\012|\015|\012)/, $string;



( run in 1.207 second using v1.01-cache-2.11-cpan-49f99fa48dc )