SQL-Translator-Producer-GraphQL v0.04 Perl 5 v5.28.0 x86_64-linux

Status
Fail
From
Slaven Rezić (SREZIC)
Dist
SQL-Translator-Producer-GraphQL v0.04
Platform
Perl 5 v5.28.0 x86_64-linux
Date
2018-12-04 22:10:12
ID
5f056ccc-f811-11e8-968b-a13d3f7f332c
This distribution has been tested as part of the CPAN Testers
project, supporting the Perl programming language.  See
http://wiki.cpantesters.org/ for more information or email
questions to cpan-testers-discuss@perl.org


--
Dear Ed J,

This is a computer-generated report for SQL-Translator-Producer-GraphQL-0.04
on perl 5.28.0, created by CPAN-Reporter-1.2018.

Thank you for uploading your work to CPAN.  However, there was a problem
testing your distribution.

If you think this report is invalid, please consult the CPAN Testers Wiki
for suggestions on how to avoid getting FAIL reports for missing library
or binary dependencies, unsupported operating systems, and so on:

http://wiki.cpantesters.org/wiki/CPANAuthorNotes

Sections of this report:

    * Tester comments
    * Program output
    * Prerequisites
    * Environment and other context

------------------------------
TESTER COMMENTS
------------------------------

Additional comments from tester:

none provided

------------------------------
PROGRAM OUTPUT
------------------------------

Output from '/usr/bin/make test':

PERL_DL_NONLAZY=1 "/opt/perl-5.28.0/bin/perl" "-MExtUtils::Command::MM" "-MTest::Harness" "-e" "undef *Test::Harness::Switches; test_harness(0, 'blib/lib', 'blib/arch')" t/*.t
t/00-compile.t ......... ok
# 
# Versions for all modules listed in MYMETA.json (including optional ones):
# 
# === Configure Requires ===
# 
#     Module              Want Have Where                       Howbig
#     ------------------- ---- ---- --------------------------- ------
#     ExtUtils::MakeMaker  any 7.34 /opt/perl-5.28.0/lib/5.28.0 108191
# 
# === Build Requires ===
# 
#     Module              Want Have Where                       Howbig
#     ------------------- ---- ---- --------------------------- ------
#     ExtUtils::MakeMaker  any 7.34 /opt/perl-5.28.0/lib/5.28.0 108191
# 
# === Test Requires ===
# 
#     Module     Want     Have Where                                 Howbig
#     ---------- ---- -------- ------------------------------------- ------
#     Test::More 0.98 1.302140 /opt/perl-5.28.0/lib/site_perl/5.28.0  52999
# 
# === Runtime Requires ===
# 
#     Module                                       Want    Have Where                                                                             Howbig
#     -------------------------------------------- ---- ------- --------------------------------------------------------------------------------- ------
#     GraphQL                                      0.21    0.31 /home/cpansand/.cpan/build/2018120422/GraphQL-0.31-0/blib/lib                       6103
#     GraphQL::Plugin::Convert::DBIC               0.03    0.07 /home/cpansand/.cpan/build/2018120422/GraphQL-Plugin-Convert-DBIC-0.07-0/blib/lib  18618
#     SQL::Translator                               any 0.11024 /home/cpansand/.cpan/build/2018120422/SQL-Translator-0.11024-0/blib/lib            34486
#     SQL::Translator::Producer::DBIx::Class::File  any     0.1 /home/cpansand/.cpan/build/2018120422/DBIx-Class-0.082841-0/blib/lib                5078
# 
t/00-report-prereqs.t .. ok
t/01-schema.t .......... ok

#   Failed test at t/02-dbicschema.t line 17.
#          got: 'type Blog {
#   content: String!
#   created_time: String!
#   get_blog_tags: [BlogTag]
#   id: Int!
#   location: String
#   subtitle: String
#   timestamp: DateTime!
#   title: String!
# }
# 
# input BlogCreateInput {
#   content: String!
#   created_time: String!
#   location: String
#   subtitle: String
#   timestamp: DateTime!
#   title: String!
# }
# 
# input BlogMutateInput {
#   content: String
#   created_time: String
#   id: Int!
#   location: String
#   subtitle: String
#   timestamp: DateTime
#   title: String
# }
# 
# input BlogSearchInput {
#   content: String
#   created_time: String
#   location: String
#   subtitle: String
#   timestamp: DateTime
#   title: String
# }
# 
# type BlogTag {
#   blog: Blog!
#   id: Int!
#   name: String!
# }
# 
# input BlogTagCreateInput {
#   blog: BlogMutateInput!
#   name: String!
# }
# 
# input BlogTagMutateInput {
#   id: Int!
#   name: String
# }
# 
# input BlogTagSearchInput {
#   name: String
# }
# 
# type Mutation {
#   createBlog(input: [BlogCreateInput!]!): [Blog]
#   createBlogTag(input: [BlogTagCreateInput!]!): [BlogTag]
#   createPhoto(input: [PhotoCreateInput!]!): [Photo]
#   createPhotoset(input: [PhotosetCreateInput!]!): [Photoset]
#   deleteBlog(input: [BlogMutateInput!]!): [Boolean]
#   deleteBlogTag(input: [BlogTagMutateInput!]!): [Boolean]
#   deletePhoto(input: [PhotoMutateInput!]!): [Boolean]
#   deletePhotoset(input: [PhotosetMutateInput!]!): [Boolean]
#   updateBlog(input: [BlogMutateInput!]!): [Blog]
#   updateBlogTag(input: [BlogTagMutateInput!]!): [BlogTag]
#   updatePhoto(input: [PhotoMutateInput!]!): [Photo]
#   updatePhotoset(input: [PhotosetMutateInput!]!): [Photoset]
# }
# 
# type Photo {
#   country: String
#   description: String
#   get_photosets: [Photoset]
#   id: String!
#   idx: Int
#   is_glen: String
#   isprimary: String
#   large: String
#   lat: String
#   locality: String
#   lon: String
#   medium: String
#   original: String
#   original_url: String
#   photoset: Photoset
#   region: String
#   small: String
#   square: String
#   taken: DateTime
#   thumbnail: String
# }
# 
# input PhotoCreateInput {
#   country: String
#   description: String
#   idx: Int
#   is_glen: String
#   isprimary: String
#   large: String
#   lat: String
#   locality: String
#   lon: String
#   medium: String
#   original: String
#   original_url: String
#   photoset: PhotosetMutateInput
#   region: String
#   small: String
#   square: String
#   taken: DateTime
#   thumbnail: String
# }
# 
# input PhotoMutateInput {
#   country: String
#   description: String
#   id: String!
#   idx: Int
#   is_glen: String
#   isprimary: String
#   large: String
#   lat: String
#   locality: String
#   lon: String
#   medium: String
#   original: String
#   original_url: String
#   region: String
#   small: String
#   square: String
#   taken: DateTime
#   thumbnail: String
# }
# 
# input PhotoSearchInput {
#   country: String
#   description: String
#   idx: Int
#   is_glen: String
#   isprimary: String
#   large: String
#   lat: String
#   locality: String
#   lon: String
#   medium: String
#   original: String
#   original_url: String
#   region: String
#   small: String
#   square: String
#   taken: DateTime
#   thumbnail: String
# }
# 
# type Photoset {
#   can_comment: Int
#   count_comments: Int
#   count_views: Int
#   date_create: Int
#   date_update: Int
#   description: String!
#   farm: Int!
#   get_photos: [Photo]
#   id: String!
#   idx: Int!
#   needs_interstitial: Int
#   photos: Int
#   primary_photo: Photo
#   secret: String!
#   server: String!
#   timestamp: DateTime!
#   title: String!
#   videos: Int
#   visibility_can_see_set: Int
# }
# 
# input PhotosetCreateInput {
#   can_comment: Int
#   count_comments: Int
#   count_views: Int
#   date_create: Int
#   date_update: Int
#   description: String!
#   farm: Int!
#   idx: Int!
#   needs_interstitial: Int
#   photos: Int
#   primary_photo: PhotoMutateInput
#   secret: String!
#   server: String!
#   timestamp: DateTime!
#   title: String!
#   videos: Int
#   visibility_can_see_set: Int
# }
# 
# input PhotosetMutateInput {
#   can_comment: Int
#   count_comments: Int
#   count_views: Int
#   date_create: Int
#   date_update: Int
#   description: String
#   farm: Int
#   id: String!
#   idx: Int
#   needs_interstitial: Int
#   photos: Int
#   secret: String
#   server: String
#   timestamp: DateTime
#   title: String
#   videos: Int
#   visibility_can_see_set: Int
# }
# 
# input PhotosetSearchInput {
#   can_comment: Int
#   count_comments: Int
#   count_views: Int
#   date_create: Int
#   date_update: Int
#   description: String
#   farm: Int
#   idx: Int
#   needs_interstitial: Int
#   photos: Int
#   secret: String
#   server: String
#   timestamp: DateTime
#   title: String
#   videos: Int
#   visibility_can_see_set: Int
# }
# 
# type Query {
#   blog(id: [Int!]!): [Blog]
#   blogTag(id: [Int!]!): [BlogTag]
#   photo(id: [String!]!): [Photo]
#   photoset(id: [String!]!): [Photoset]
#   # input to search
#   searchBlog(input: BlogSearchInput!): [Blog]
#   # input to search
#   searchBlogTag(input: BlogTagSearchInput!): [BlogTag]
#   # input to search
#   searchPhoto(input: PhotoSearchInput!): [Photo]
#   # input to search
#   searchPhotoset(input: PhotosetSearchInput!): [Photoset]
# }
# '
#     expected: 'type BlogTags {
#   blog: Blogs!
#   id: Int!
#   name: String!
# }
# 
# input BlogTagsCreateInput {
#   blog: BlogsMutateInput!
#   name: String!
# }
# 
# input BlogTagsMutateInput {
#   id: Int!
#   name: String
# }
# 
# input BlogTagsSearchInput {
#   name: String
# }
# 
# type Blogs {
#   content: String!
#   created_time: String!
#   get_blog_tags: [BlogTags]
#   id: Int!
#   location: String
#   subtitle: String
#   timestamp: DateTime!
#   title: String!
# }
# 
# input BlogsCreateInput {
#   content: String!
#   created_time: String!
#   location: String
#   subtitle: String
#   timestamp: DateTime!
#   title: String!
# }
# 
# input BlogsMutateInput {
#   content: String
#   created_time: String
#   id: Int!
#   location: String
#   subtitle: String
#   timestamp: DateTime
#   title: String
# }
# 
# input BlogsSearchInput {
#   content: String
#   created_time: String
#   location: String
#   subtitle: String
#   timestamp: DateTime
#   title: String
# }
# 
# type Mutation {
#   createBlogTags(input: [BlogTagsCreateInput!]!): [BlogTags]
#   createBlogs(input: [BlogsCreateInput!]!): [Blogs]
#   createPhotos(input: [PhotosCreateInput!]!): [Photos]
#   createPhotosets(input: [PhotosetsCreateInput!]!): [Photosets]
#   deleteBlogTags(input: [BlogTagsMutateInput!]!): [Boolean]
#   deleteBlogs(input: [BlogsMutateInput!]!): [Boolean]
#   deletePhotos(input: [PhotosMutateInput!]!): [Boolean]
#   deletePhotosets(input: [PhotosetsMutateInput!]!): [Boolean]
#   updateBlogTags(input: [BlogTagsMutateInput!]!): [BlogTags]
#   updateBlogs(input: [BlogsMutateInput!]!): [Blogs]
#   updatePhotos(input: [PhotosMutateInput!]!): [Photos]
#   updatePhotosets(input: [PhotosetsMutateInput!]!): [Photosets]
# }
# 
# type Photos {
#   country: String
#   description: String
#   get_photosets: [Photosets]
#   id: String!
#   idx: Int
#   is_glen: String
#   isprimary: String
#   large: String
#   lat: String
#   locality: String
#   lon: String
#   medium: String
#   original: String
#   original_url: String
#   photoset: Photosets
#   region: String
#   small: String
#   square: String
#   taken: DateTime
#   thumbnail: String
# }
# 
# input PhotosCreateInput {
#   country: String
#   description: String
#   idx: Int
#   is_glen: String
#   isprimary: String
#   large: String
#   lat: String
#   locality: String
#   lon: String
#   medium: String
#   original: String
#   original_url: String
#   photoset: PhotosetsMutateInput
#   region: String
#   small: String
#   square: String
#   taken: DateTime
#   thumbnail: String
# }
# 
# input PhotosMutateInput {
#   country: String
#   description: String
#   id: String!
#   idx: Int
#   is_glen: String
#   isprimary: String
#   large: String
#   lat: String
#   locality: String
#   lon: String
#   medium: String
#   original: String
#   original_url: String
#   region: String
#   small: String
#   square: String
#   taken: DateTime
#   thumbnail: String
# }
# 
# input PhotosSearchInput {
#   country: String
#   description: String
#   idx: Int
#   is_glen: String
#   isprimary: String
#   large: String
#   lat: String
#   locality: String
#   lon: String
#   medium: String
#   original: String
#   original_url: String
#   region: String
#   small: String
#   square: String
#   taken: DateTime
#   thumbnail: String
# }
# 
# type Photosets {
#   can_comment: Int
#   count_comments: Int
#   count_views: Int
#   date_create: Int
#   date_update: Int
#   description: String!
#   farm: Int!
#   get_photos: [Photos]
#   id: String!
#   idx: Int!
#   needs_interstitial: Int
#   photos: Int
#   primary_photo: Photos
#   secret: String!
#   server: String!
#   timestamp: DateTime!
#   title: String!
#   videos: Int
#   visibility_can_see_set: Int
# }
# 
# input PhotosetsCreateInput {
#   can_comment: Int
#   count_comments: Int
#   count_views: Int
#   date_create: Int
#   date_update: Int
#   description: String!
#   farm: Int!
#   idx: Int!
#   needs_interstitial: Int
#   photos: Int
#   primary_photo: PhotosMutateInput
#   secret: String!
#   server: String!
#   timestamp: DateTime!
#   title: String!
#   videos: Int
#   visibility_can_see_set: Int
# }
# 
# input PhotosetsMutateInput {
#   can_comment: Int
#   count_comments: Int
#   count_views: Int
#   date_create: Int
#   date_update: Int
#   description: String
#   farm: Int
#   id: String!
#   idx: Int
#   needs_interstitial: Int
#   photos: Int
#   secret: String
#   server: String
#   timestamp: DateTime
#   title: String
#   videos: Int
#   visibility_can_see_set: Int
# }
# 
# input PhotosetsSearchInput {
#   can_comment: Int
#   count_comments: Int
#   count_views: Int
#   date_create: Int
#   date_update: Int
#   description: String
#   farm: Int
#   idx: Int
#   needs_interstitial: Int
#   photos: Int
#   secret: String
#   server: String
#   timestamp: DateTime
#   title: String
#   videos: Int
#   visibility_can_see_set: Int
# }
# 
# type Query {
#   blogTags(id: [Int!]!): [BlogTags]
#   blogs(id: [Int!]!): [Blogs]
#   photos(id: [String!]!): [Photos]
#   photosets(id: [String!]!): [Photosets]
#   # input to search
#   searchBlogTags(input: BlogTagsSearchInput!): [BlogTags]
#   # input to search
#   searchBlogs(input: BlogsSearchInput!): [Blogs]
#   # input to search
#   searchPhotos(input: PhotosSearchInput!): [Photos]
#   # input to search
#   searchPhotosets(input: PhotosetsSearchInput!): [Photosets]
# }
# '
# Looks like you failed 1 test of 1.
t/02-dbicschema.t ...... 
Dubious, test returned 1 (wstat 256, 0x100)
Failed 1/1 subtests 

Test Summary Report
-------------------
t/02-dbicschema.t    (Wstat: 256 Tests: 1 Failed: 1)
  Failed test:  1
  Non-zero exit status: 1
Files=4, Tests=5,  4 wallclock secs ( 0.03 usr  0.01 sys +  2.45 cusr  0.40 csys =  2.89 CPU)
Result: FAIL
Failed 1/4 test programs. 1/5 subtests failed.
make: *** [Makefile:883: test_dynamic] Error 1

------------------------------
PREREQUISITES
------------------------------

Prerequisite modules loaded:

requires:

    Module                                       Need  Have    
    -------------------------------------------- ----- --------
    GraphQL                                      0.21  0.31    
    GraphQL::Plugin::Convert::DBIC               0.03  0.07    
    perl                                         5.014 5.028000
    SQL::Translator                              0     0.11024 
    SQL::Translator::Producer::DBIx::Class::File 0     0.1     

build_requires:

    Module                                       Need  Have    
    -------------------------------------------- ----- --------
    ExtUtils::MakeMaker                          0     7.34    
    Test::More                                   0.98  1.302140

configure_requires:

    Module                                       Need  Have    
    -------------------------------------------- ----- --------
    ExtUtils::MakeMaker                          0     7.34    


------------------------------
ENVIRONMENT AND OTHER CONTEXT
------------------------------

Environment variables:

    LANG = en_US.UTF-8
    PATH = /usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/cpansand/bin/linux-gnu:/home/cpansand/bin/sh:/home/cpansand/bin:/usr/games:/home/cpansand/devel:/home/eserte/src/srezic-misc/scripts
    PERL = /opt/perl-5.28.0/bin/perl
    PERL5LIB = /home/cpansand/.cpan/build/2018120422/GraphQL-Plugin-Convert-DBIC-0.07-0/blib/arch:/home/cpansand/.cpan/build/2018120422/GraphQL-Plugin-Convert-DBIC-0.07-0/blib/lib:/home/cpansand/.cpan/build/2018120422/Test-Snapshot-0.06-0/blib/arch:/home/cpansand/.cpan/build/2018120422/Test-Snapshot-0.06-0/blib/lib:/home/cpansand/.cpan/build/2018120422/SQL-Translator-0.11024-0/blib/arch:/home/cpansand/.cpan/build/2018120422/SQL-Translator-0.11024-0/blib/lib:/home/cpansand/.cpan/build/2018120422/XML-Writer-0.625-0/blib/arch:/home/cpansand/.cpan/build/2018120422/XML-Writer-0.625-0/blib/lib:/home/cpansand/.cpan/build/2018120422/Package-Variant-1.003002-0/blib/arch:/home/cpansand/.cpan/build/2018120422/Package-Variant-1.003002-0/blib/lib:/home/cpansand/.cpan/build/2018120422/JSON-2.97001-4/blib/arch:/home/cpansand/.cpan/build/2018120422/JSON-2.97001-4/blib/lib:/home/cpansand/.cpan/build/2018120422/Lingua-EN-Inflect-Number-1.12-0/blib/arch:/home/cpansand/.cpan/build/2018120422/Lingua-EN-Inflect-Number-1.12-0/blib/lib:/home/cpansand/.cpan/build/2018120422/Lingua-EN-Inflect-1.903-0/blib/arch:/home/cpansand/.cpan/build/2018120422/Lingua-EN-Inflect-1.903-0/blib/lib:/home/cpansand/.cpan/build/2018120422/DBIx-Class-0.082841-0/blib/arch:/home/cpansand/.cpan/build/2018120422/DBIx-Class-0.082841-0/blib/lib:/home/cpansand/.cpan/build/2018120422/SQL-Abstract-1.86-0/blib/arch:/home/cpansand/.cpan/build/2018120422/SQL-Abstract-1.86-0/blib/lib:/home/cpansand/.cpan/build/2018120422/Module-Find-0.13-1/blib/arch:/home/cpansand/.cpan/build/2018120422/Module-Find-0.13-1/blib/lib:/home/cpansand/.cpan/build/2018120422/Data-Page-2.02-3/blib/arch:/home/cpansand/.cpan/build/2018120422/Data-Page-2.02-3/blib/lib:/home/cpansand/.cpan/build/2018120422/Data-Dumper-Concise-2.023-0/blib/arch:/home/cpansand/.cpan/build/2018120422/Data-Dumper-Concise-2.023-0/blib/lib:/home/cpansand/.cpan/build/2018120422/Context-Preserve-0.03-0/blib/arch:/home/cpansand/.cpan/build/2018120422/Context-Preserve-0.03-0/blib/lib:/home/cpansand/.cpan/build/2018120422/Config-Any-0.32-3/blib/arch:/home/cpansand/.cpan/build/2018120422/Config-Any-0.32-3/blib/lib:/home/cpansand/.cpan/build/2018120422/Class-C3-Componentised-1.001002-0/blib/arch:/home/cpansand/.cpan/build/2018120422/Class-C3-Componentised-1.001002-0/blib/lib:/home/cpansand/.cpan/build/2018120422/Class-C3-0.34-0/blib/arch:/home/cpansand/.cpan/build/2018120422/Class-C3-0.34-0/blib/lib:/home/cpansand/.cpan/build/2018120422/Algorithm-C3-0.10-0/blib/arch:/home/cpansand/.cpan/build/2018120422/Algorithm-C3-0.10-0/blib/lib:/home/cpansand/.cpan/build/2018120422/Class-Accessor-Grouped-0.10014-0/blib/arch:/home/cpansand/.cpan/build/2018120422/Class-Accessor-Grouped-0.10014-0/blib/lib:/home/cpansand/.cpan/build/2018120422/Class-XSAccessor-1.19-0/blib/arch:/home/cpansand/.cpan/build/2018120422/Class-XSAccessor-1.19-0/blib/lib:/home/cpansand/.cpan/build/2018120422/DBD-SQLite-1.60-4/blib/arch:/home/cpansand/.cpan/build/2018120422/DBD-SQLite-1.60-4/blib/lib:/home/cpansand/.cpan/build/2018120422/DBI-1.642-4/blib/arch:/home/cpansand/.cpan/build/2018120422/DBI-1.642-4/blib/lib:/home/cpansand/.cpan/build/2018120422/GraphQL-0.31-0/blib/arch:/home/cpansand/.cpan/build/2018120422/GraphQL-0.31-0/blib/lib:/home/cpansand/.cpan/build/2018120422/Return-Type-0.005-0/blib/arch:/home/cpansand/.cpan/build/2018120422/Return-Type-0.005-0/blib/lib:/home/cpansand/.cpan/build/2018120422/Pegex-0.70-0/blib/arch:/home/cpansand/.cpan/build/2018120422/Pegex-0.70-0/blib/lib:/home/cpansand/.cpan/build/2018120422/MooX-Thunking-0.08-0/blib/arch:/home/cpansand/.cpan/build/2018120422/MooX-Thunking-0.08-0/blib/lib:/home/cpansand/.cpan/build/2018120422/Import-Into-1.002005-0/blib/arch:/home/cpansand/.cpan/build/2018120422/Import-Into-1.002005-0/blib/lib:/home/cpansand/.cpan/build/2018120422/Function-Parameters-2.001003-0/blib/arch:/home/cpansand/.cpan/build/2018120422/Function-Parameters-2.001003-0/blib/lib:/home/cpansand/.cpan/build/2018120422/Dir-Self-0.11-0/blib/arch:/home/cpansand/.cpan/build/2018120422/Dir-Self-0.11-0/blib/lib:/home/cpansand/.cpan/build/2018120422/DateTime-Format-ISO8601-0.08-0/blib/arch:/home/cpansand/.cpan/build/2018120422/DateTime-Format-ISO8601-0.08-0/blib/lib:/home/cpansand/.cpan/build/2018120422/DateTime-Format-Builder-0.81-1/blib/arch:/home/cpansand/.cpan/build/2018120422/DateTime-Format-Builder-0.81-1/blib/lib:/home/cpansand/.cpan/build/2018120422/Class-Factory-Util-1.7-1/blib/arch:/home/cpansand/.cpan/build/2018120422/Class-Factory-Util-1.7-1/blib/lib
    PERL5OPT = 
    PERL5_CPANPLUS_IS_RUNNING = 8094
    PERL5_CPAN_IS_RUNNING = 8094
    PERL5_CPAN_IS_RUNNING_IN_RECURSION = 8078,8094
    PERLDOC = -MPod::Perldoc::ToTextOverstrike
    PERL_BATCH = yes
    PERL_CANARY_STABILITY_NOPROMPT = 1
    PERL_CPAN_REPORTER_CONFIG = /var/tmp/cpansmoker-1023/2018120422/cpanreporter_001_config.ini
    PERL_EXTUTILS_AUTOINSTALL = --defaultdeps
    PERL_USE_UNSAFE_INC = 1
    SHELL = /usr/bin/zsh
    TERM = screen
    TMPDIR = /var/tmp/cpansmoker-1023/2018120422

Perl special variables (and OS-specific diagnostics, for MSWin32):

    $^X = /opt/perl-5.28.0/bin/perl
    $UID/$EUID = 1023 / 1023
    $GID = 1023 1023
    $EGID = 1023 1023

Perl module toolchain versions installed:

    Module              Have    
    ------------------- --------
    CPAN                2.20    
    CPAN::Meta          2.150010
    Cwd                 3.74    
    ExtUtils::CBuilder  0.280230
    ExtUtils::Command   7.34    
    ExtUtils::Install   2.14    
    ExtUtils::MakeMaker 7.34    
    ExtUtils::Manifest  1.70    
    ExtUtils::ParseXS   3.39    
    File::Spec          3.74    
    JSON                2.97001 
    JSON::PP            2.97001 
    Module::Build       0.4224  
    Module::Signature   0.83    
    Parse::CPAN::Meta   2.150010
    Test::Harness       3.42    
    Test::More          1.302140
    YAML                1.26    
    YAML::Syck          1.31    
    version             0.9923  


--

Summary of my perl5 (revision 5 version 28 subversion 0) configuration:
   
  Platform:
    osname=linux
    osvers=4.18.16-200.fc28.x86_64
    archname=x86_64-linux
    uname='linux fedora-4gb-hel1-1 4.18.16-200.fc28.x86_64 #1 smp sat oct 20 23:53:47 utc 2018 x86_64 x86_64 x86_64 gnulinux '
    config_args='-ds -e -Dprefix=/opt/perl-5.28.0 -Dcf_email=srezic@cpan.org'
    hint=recommended
    useposix=true
    d_sigaction=define
    useithreads=undef
    usemultiplicity=undef
    use64bitint=define
    use64bitall=define
    uselongdouble=undef
    usemymalloc=n
    default_inc_excludes_dot=define
    bincompat5005=undef
  Compiler:
    cc='cc'
    ccflags ='-fwrapv -fno-strict-aliasing -pipe -fstack-protector-strong -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
    optimize='-O2'
    cppflags='-fwrapv -fno-strict-aliasing -pipe -fstack-protector-strong -I/usr/local/include'
    ccversion=''
    gccversion='8.2.1 20181011 (Red Hat 8.2.1-4)'
    gccosandvers=''
    intsize=4
    longsize=8
    ptrsize=8
    doublesize=8
    byteorder=12345678
    doublekind=3
    d_longlong=define
    longlongsize=8
    d_longdbl=define
    longdblsize=16
    longdblkind=3
    ivtype='long'
    ivsize=8
    nvtype='double'
    nvsize=8
    Off_t='off_t'
    lseeksize=8
    alignbytes=8
    prototype=define
  Linker and Libraries:
    ld='cc'
    ldflags =' -fstack-protector-strong -L/usr/local/lib'
    libpth=/usr/local/lib /usr/lib /lib/../lib64 /usr/lib/../lib64 /lib /lib64 /usr/lib64 /usr/local/lib64
    libs=-lpthread -ldl -lm -lcrypt -lutil -lc
    perllibs=-lpthread -ldl -lm -lcrypt -lutil -lc
    libc=libc-2.27.so
    so=so
    useshrplib=false
    libperl=libperl.a
    gnulibc_version='2.27'
  Dynamic Linking:
    dlsrc=dl_dlopen.xs
    dlext=so
    d_dlsymun=undef
    ccdlflags='-Wl,-E'
    cccdlflags='-fPIC'
    lddlflags='-shared -O2 -L/usr/local/lib -fstack-protector-strong'


Characteristics of this binary (from libperl): 
  Compile-time options:
    HAS_TIMES
    PERLIO_LAYERS
    PERL_COPY_ON_WRITE
    PERL_DONT_CREATE_GVSV
    PERL_MALLOC_WRAP
    PERL_OP_PARENT
    PERL_PRESERVE_IVUV
    USE_64_BIT_ALL
    USE_64_BIT_INT
    USE_LARGE_FILES
    USE_LOCALE
    USE_LOCALE_COLLATE
    USE_LOCALE_CTYPE
    USE_LOCALE_NUMERIC
    USE_LOCALE_TIME
    USE_PERLIO
    USE_PERL_ATOF
  Built under linux
  Compiled at Oct 30 2018 22:13:32
  %ENV:
    PERL="/opt/perl-5.28.0/bin/perl"
    PERL5LIB="/home/cpansand/.cpan/build/2018120422/GraphQL-Plugin-Convert-DBIC-0.07-0/blib/arch:/home/cpansand/.cpan/build/2018120422/GraphQL-Plugin-Convert-DBIC-0.07-0/blib/lib:/home/cpansand/.cpan/build/2018120422/Test-Snapshot-0.06-0/blib/arch:/home/cpansand/.cpan/build/2018120422/Test-Snapshot-0.06-0/blib/lib:/home/cpansand/.cpan/build/2018120422/SQL-Translator-0.11024-0/blib/arch:/home/cpansand/.cpan/build/2018120422/SQL-Translator-0.11024-0/blib/lib:/home/cpansand/.cpan/build/2018120422/XML-Writer-0.625-0/blib/arch:/home/cpansand/.cpan/build/2018120422/XML-Writer-0.625-0/blib/lib:/home/cpansand/.cpan/build/2018120422/Package-Variant-1.003002-0/blib/arch:/home/cpansand/.cpan/build/2018120422/Package-Variant-1.003002-0/blib/lib:/home/cpansand/.cpan/build/2018120422/JSON-2.97001-4/blib/arch:/home/cpansand/.cpan/build/2018120422/JSON-2.97001-4/blib/lib:/home/cpansand/.cpan/build/2018120422/Lingua-EN-Inflect-Number-1.12-0/blib/arch:/home/cpansand/.cpan/build/2018120422/Lingua-EN-Inflect-Number-1.12-0/blib/lib:/home/cpansand/.cpan/build/2018120422/Lingua-EN-Inflect-1.903-0/blib/arch:/home/cpansand/.cpan/build/2018120422/Lingua-EN-Inflect-1.903-0/blib/lib:/home/cpansand/.cpan/build/2018120422/DBIx-Class-0.082841-0/blib/arch:/home/cpansand/.cpan/build/2018120422/DBIx-Class-0.082841-0/blib/lib:/home/cpansand/.cpan/build/2018120422/SQL-Abstract-1.86-0/blib/arch:/home/cpansand/.cpan/build/2018120422/SQL-Abstract-1.86-0/blib/lib:/home/cpansand/.cpan/build/2018120422/Module-Find-0.13-1/blib/arch:/home/cpansand/.cpan/build/2018120422/Module-Find-0.13-1/blib/lib:/home/cpansand/.cpan/build/2018120422/Data-Page-2.02-3/blib/arch:/home/cpansand/.cpan/build/2018120422/Data-Page-2.02-3/blib/lib:/home/cpansand/.cpan/build/2018120422/Data-Dumper-Concise-2.023-0/blib/arch:/home/cpansand/.cpan/build/2018120422/Data-Dumper-Concise-2.023-0/blib/lib:/home/cpansand/.cpan/build/2018120422/Context-Preserve-0.03-0/blib/arch:/home/cpansand/.cpan/build/2018120422/Context-Preserve-0.03-0/blib/lib:/home/cpansand/.cpan/build/2018120422/Config-Any-0.32-3/blib/arch:/home/cpansand/.cpan/build/2018120422/Config-Any-0.32-3/blib/lib:/home/cpansand/.cpan/build/2018120422/Class-C3-Componentised-1.001002-0/blib/arch:/home/cpansand/.cpan/build/2018120422/Class-C3-Componentised-1.001002-0/blib/lib:/home/cpansand/.cpan/build/2018120422/Class-C3-0.34-0/blib/arch:/home/cpansand/.cpan/build/2018120422/Class-C3-0.34-0/blib/lib:/home/cpansand/.cpan/build/2018120422/Algorithm-C3-0.10-0/blib/arch:/home/cpansand/.cpan/build/2018120422/Algorithm-C3-0.10-0/blib/lib:/home/cpansand/.cpan/build/2018120422/Class-Accessor-Grouped-0.10014-0/blib/arch:/home/cpansand/.cpan/build/2018120422/Class-Accessor-Grouped-0.10014-0/blib/lib:/home/cpansand/.cpan/build/2018120422/Class-XSAccessor-1.19-0/blib/arch:/home/cpansand/.cpan/build/2018120422/Class-XSAccessor-1.19-0/blib/lib:/home/cpansand/.cpan/build/2018120422/DBD-SQLite-1.60-4/blib/arch:/home/cpansand/.cpan/build/2018120422/DBD-SQLite-1.60-4/blib/lib:/home/cpansand/.cpan/build/2018120422/DBI-1.642-4/blib/arch:/home/cpansand/.cpan/build/2018120422/DBI-1.642-4/blib/lib:/home/cpansand/.cpan/build/2018120422/GraphQL-0.31-0/blib/arch:/home/cpansand/.cpan/build/2018120422/GraphQL-0.31-0/blib/lib:/home/cpansand/.cpan/build/2018120422/Return-Type-0.005-0/blib/arch:/home/cpansand/.cpan/build/2018120422/Return-Type-0.005-0/blib/lib:/home/cpansand/.cpan/build/2018120422/Pegex-0.70-0/blib/arch:/home/cpansand/.cpan/build/2018120422/Pegex-0.70-0/blib/lib:/home/cpansand/.cpan/build/2018120422/MooX-Thunking-0.08-0/blib/arch:/home/cpansand/.cpan/build/2018120422/MooX-Thunking-0.08-0/blib/lib:/home/cpansand/.cpan/build/2018120422/Import-Into-1.002005-0/blib/arch:/home/cpansand/.cpan/build/2018120422/Import-Into-1.002005-0/blib/lib:/home/cpansand/.cpan/build/2018120422/Function-Parameters-2.001003-0/blib/arch:/home/cpansand/.cpan/build/2018120422/Function-Parameters-2.001003-0/blib/lib:/home/cpansand/.cpan/build/2018120422/Dir-Self-0.11-0/blib/arch:/home/cpansand/.cpan/build/2018120422/Dir-Self-0.11-0/blib/lib:/home/cpansand/.cpan/build/2018120422/DateTime-Format-ISO8601-0.08-0/blib/arch:/home/cpansand/.cpan/build/2018120422/DateTime-Format-ISO8601-0.08-0/blib/lib:/home/cpansand/.cpan/build/2018120422/DateTime-Format-Builder-0.81-1/blib/arch:/home/cpansand/.cpan/build/2018120422/DateTime-Format-Builder-0.81-1/blib/lib:/home/cpansand/.cpan/build/2018120422/Class-Factory-Util-1.7-1/blib/arch:/home/cpansand/.cpan/build/2018120422/Class-Factory-Util-1.7-1/blib/lib"
    PERL5OPT=""
    PERL5_CPANPLUS_IS_RUNNING="8094"
    PERL5_CPAN_IS_RUNNING="8094"
    PERL5_CPAN_IS_RUNNING_IN_RECURSION="8078,8094"
    PERLDOC="-MPod::Perldoc::ToTextOverstrike"
    PERL_BATCH="yes"
    PERL_CANARY_STABILITY_NOPROMPT="1"
    PERL_CPAN_REPORTER_CONFIG="/var/tmp/cpansmoker-1023/2018120422/cpanreporter_001_config.ini"
    PERL_EXTUTILS_AUTOINSTALL="--defaultdeps"
    PERL_USE_UNSAFE_INC="1"
  @INC:
    /home/cpansand/.cpan/build/2018120422/GraphQL-Plugin-Convert-DBIC-0.07-0/blib/arch
    /home/cpansand/.cpan/build/2018120422/GraphQL-Plugin-Convert-DBIC-0.07-0/blib/lib
    /home/cpansand/.cpan/build/2018120422/Test-Snapshot-0.06-0/blib/arch
    /home/cpansand/.cpan/build/2018120422/Test-Snapshot-0.06-0/blib/lib
    /home/cpansand/.cpan/build/2018120422/SQL-Translator-0.11024-0/blib/arch
    /home/cpansand/.cpan/build/2018120422/SQL-Translator-0.11024-0/blib/lib
    /home/cpansand/.cpan/build/2018120422/XML-Writer-0.625-0/blib/arch
    /home/cpansand/.cpan/build/2018120422/XML-Writer-0.625-0/blib/lib
    /home/cpansand/.cpan/build/2018120422/Package-Variant-1.003002-0/blib/arch
    /home/cpansand/.cpan/build/2018120422/Package-Variant-1.003002-0/blib/lib
    /home/cpansand/.cpan/build/2018120422/JSON-2.97001-4/blib/arch
    /home/cpansand/.cpan/build/2018120422/JSON-2.97001-4/blib/lib
    /home/cpansand/.cpan/build/2018120422/Lingua-EN-Inflect-Number-1.12-0/blib/arch
    /home/cpansand/.cpan/build/2018120422/Lingua-EN-Inflect-Number-1.12-0/blib/lib
    /home/cpansand/.cpan/build/2018120422/Lingua-EN-Inflect-1.903-0/blib/arch
    /home/cpansand/.cpan/build/2018120422/Lingua-EN-Inflect-1.903-0/blib/lib
    /home/cpansand/.cpan/build/2018120422/DBIx-Class-0.082841-0/blib/arch
    /home/cpansand/.cpan/build/2018120422/DBIx-Class-0.082841-0/blib/lib
    /home/cpansand/.cpan/build/2018120422/SQL-Abstract-1.86-0/blib/arch
    /home/cpansand/.cpan/build/2018120422/SQL-Abstract-1.86-0/blib/lib
    /home/cpansand/.cpan/build/2018120422/Module-Find-0.13-1/blib/arch
    /home/cpansand/.cpan/build/2018120422/Module-Find-0.13-1/blib/lib
    /home/cpansand/.cpan/build/2018120422/Data-Page-2.02-3/blib/arch
    /home/cpansand/.cpan/build/2018120422/Data-Page-2.02-3/blib/lib
    /home/cpansand/.cpan/build/2018120422/Data-Dumper-Concise-2.023-0/blib/arch
    /home/cpansand/.cpan/build/2018120422/Data-Dumper-Concise-2.023-0/blib/lib
    /home/cpansand/.cpan/build/2018120422/Context-Preserve-0.03-0/blib/arch
    /home/cpansand/.cpan/build/2018120422/Context-Preserve-0.03-0/blib/lib
    /home/cpansand/.cpan/build/2018120422/Config-Any-0.32-3/blib/arch
    /home/cpansand/.cpan/build/2018120422/Config-Any-0.32-3/blib/lib
    /home/cpansand/.cpan/build/2018120422/Class-C3-Componentised-1.001002-0/blib/arch
    /home/cpansand/.cpan/build/2018120422/Class-C3-Componentised-1.001002-0/blib/lib
    /home/cpansand/.cpan/build/2018120422/Class-C3-0.34-0/blib/arch
    /home/cpansand/.cpan/build/2018120422/Class-C3-0.34-0/blib/lib
    /home/cpansand/.cpan/build/2018120422/Algorithm-C3-0.10-0/blib/arch
    /home/cpansand/.cpan/build/2018120422/Algorithm-C3-0.10-0/blib/lib
    /home/cpansand/.cpan/build/2018120422/Class-Accessor-Grouped-0.10014-0/blib/arch
    /home/cpansand/.cpan/build/2018120422/Class-Accessor-Grouped-0.10014-0/blib/lib
    /home/cpansand/.cpan/build/2018120422/Class-XSAccessor-1.19-0/blib/arch
    /home/cpansand/.cpan/build/2018120422/Class-XSAccessor-1.19-0/blib/lib
    /home/cpansand/.cpan/build/2018120422/DBD-SQLite-1.60-4/blib/arch
    /home/cpansand/.cpan/build/2018120422/DBD-SQLite-1.60-4/blib/lib
    /home/cpansand/.cpan/build/2018120422/DBI-1.642-4/blib/arch
    /home/cpansand/.cpan/build/2018120422/DBI-1.642-4/blib/lib
    /home/cpansand/.cpan/build/2018120422/GraphQL-0.31-0/blib/arch
    /home/cpansand/.cpan/build/2018120422/GraphQL-0.31-0/blib/lib
    /home/cpansand/.cpan/build/2018120422/Return-Type-0.005-0/blib/arch
    /home/cpansand/.cpan/build/2018120422/Return-Type-0.005-0/blib/lib
    /home/cpansand/.cpan/build/2018120422/Pegex-0.70-0/blib/arch
    /home/cpansand/.cpan/build/2018120422/Pegex-0.70-0/blib/lib
    /home/cpansand/.cpan/build/2018120422/MooX-Thunking-0.08-0/blib/arch
    /home/cpansand/.cpan/build/2018120422/MooX-Thunking-0.08-0/blib/lib
    /home/cpansand/.cpan/build/2018120422/Import-Into-1.002005-0/blib/arch
    /home/cpansand/.cpan/build/2018120422/Import-Into-1.002005-0/blib/lib
    /home/cpansand/.cpan/build/2018120422/Function-Parameters-2.001003-0/blib/arch
    /home/cpansand/.cpan/build/2018120422/Function-Parameters-2.001003-0/blib/lib
    /home/cpansand/.cpan/build/2018120422/Dir-Self-0.11-0/blib/arch
    /home/cpansand/.cpan/build/2018120422/Dir-Self-0.11-0/blib/lib
    /home/cpansand/.cpan/build/2018120422/DateTime-Format-ISO8601-0.08-0/blib/arch
    /home/cpansand/.cpan/build/2018120422/DateTime-Format-ISO8601-0.08-0/blib/lib
    /home/cpansand/.cpan/build/2018120422/DateTime-Format-Builder-0.81-1/blib/arch
    /home/cpansand/.cpan/build/2018120422/DateTime-Format-Builder-0.81-1/blib/lib
    /home/cpansand/.cpan/build/2018120422/Class-Factory-Util-1.7-1/blib/arch
    /home/cpansand/.cpan/build/2018120422/Class-Factory-Util-1.7-1/blib/lib
    /opt/perl-5.28.0/lib/site_perl/5.28.0/x86_64-linux
    /opt/perl-5.28.0/lib/site_perl/5.28.0
    /opt/perl-5.28.0/lib/5.28.0/x86_64-linux
    /opt/perl-5.28.0/lib/5.28.0
    .