Config-UCL

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "ExtUtils::MakeMaker" : "0"
         }
      },
      "runtime" : {
         "requires" : {
            "JSON::PP" : "2.00"
         }
      },
      "test" : {
         "requires" : {
            "Sort::Naturally" : "0",
            "Test::Differences" : "0",
            "Test::Exception" : "0",
            "Test::LeakTrace" : "0",
            "Test::Most" : "0"
         }
      }
   },
   "release_status" : "stable",
   "version" : "0.05",
   "x_generated_by_perl" : "v5.28.2",

META.yml  view on Meta::CPAN

---
abstract: 'Perl bindings for libucl'
author:
  - 'Tomohiro Hosaka <bokutin@bokut.in>'
build_requires:
  Sort::Naturally: '0'
  Test::Differences: '0'
  Test::Exception: '0'
  Test::LeakTrace: '0'
  Test::Most: '0'
configure_requires:
  ExtUtils::Constant: '0'
  ExtUtils::MakeMaker: '0'
dynamic_config: 0
generated_by: 'Dist::Zilla version 6.012, CPAN::Meta::Converter version 2.150010'
license: perl

Makefile.PL  view on Meta::CPAN

  "DISTNAME" => "Config-UCL",
  "LIBS" => [
    "-lucl"
  ],
  "LICENSE" => "perl",
  "NAME" => "Config::UCL",
  "PREREQ_PM" => {
    "JSON::PP" => "2.00"
  },
  "TEST_REQUIRES" => {
    "Sort::Naturally" => 0,
    "Test::Differences" => 0,
    "Test::Exception" => 0,
    "Test::LeakTrace" => 0,
    "Test::Most" => 0
  },
  "VERSION" => "0.05",
  "test" => {
    "TESTS" => "t/*.t"
  }
);

my %FallbackPrereqs = (
  "JSON::PP" => "2.00",
  "Sort::Naturally" => 0,
  "Test::Differences" => 0,
  "Test::Exception" => 0,
  "Test::LeakTrace" => 0,
  "Test::Most" => 0
);

unless ( eval { ExtUtils::MakeMaker->VERSION('6.63_03') } ) {
  delete $WriteMakefileArgs{TEST_REQUIRES};
  delete $WriteMakefileArgs{BUILD_REQUIRES};
  $WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;

dist.ini  view on Meta::CPAN

[Manifest]
[License]
[UploadToCPAN]
[ConfirmRelease]

[Prereqs / ConfigureRequires]
ExtUtils::Constant = 0
[Prereqs / RuntimeRequires]
JSON::PP = 2.00
[Prereqs / TestRequires]
Sort::Naturally = 0
Test::Differences = 0
Test::Exception = 0
Test::LeakTrace = 0
Test::Most = 0

[=inc::MyMakeMaker]

t/40-conv.t  view on Meta::CPAN

#!perl

use strict;
use warnings;
use Test::More;
use Test::Exception;
use Test::Differences;
use Sort::Naturally;
use Config::UCL;

# libucl-0.8.1/tests/test_basic.c
my $opt = {
    ucl_parser_flags => UCL_PARSER_KEY_LOWERCASE,
    ucl_parser_register_variables => [ ABI => "unknown" ],
};

#chdir "libucl-0.8.1/tests/basic" or die;
my @in = nsort glob "libucl-0.8.1/tests/basic/*.in";



( run in 5.470 seconds using v1.01-cache-2.11-cpan-e93a5daba3e )