FFI-Platypus-Type-PtrObject

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "Test::Pod::Coverage" : "0",
            "Test::Pod::Spelling::CommonMistakes" : "0",
            "Test::Spelling" : "0",
            "Test::Strict" : "0",
            "YAML" : "0"
         }
      },
      "runtime" : {
         "requires" : {
            "FFI::Platypus" : "1.11",
            "Ref::Util" : "0",
            "perl" : "5.008001"
         }
      },
      "test" : {
         "requires" : {
            "FFI::Platypus::Memory" : "0",
            "Test2::Tools::FFI" : "0",
            "Test2::V0" : "0.000060",
            "perl" : "5.008001"
         }

META.yml  view on Meta::CPAN

  perl: '5.008001'
dynamic_config: 1
generated_by: 'Dist::Zilla version 6.017, CPAN::Meta::Converter version 2.150010'
license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: '1.4'
name: FFI-Platypus-Type-PtrObject
requires:
  FFI::Platypus: '1.11'
  Ref::Util: '0'
  perl: '5.008001'
resources:
  IRC: irc://irc.perl.org/#native
  bugtracker: https://github.com/PerlFFI/FFI-Platypus-Type-PtrObject/issues
  homepage: https://metacpan.org/pod/FFI::Platypus::Type::PtrObject
  repository: git://github.com/PerlFFI/FFI-Platypus-Type-PtrObject.git
version: '0.03'
x_generated_by_perl: v5.33.8
x_serialization_backend: 'YAML::Tiny version 1.73'
x_spdx_expression: 'Artistic-1.0-Perl OR GPL-1.0-or-later'

Makefile.PL  view on Meta::CPAN

  },
  "DISTNAME"         => "FFI-Platypus-Type-PtrObject",
  "LICENSE"          => "perl",
  "MIN_PERL_VERSION" => "5.008001",
  "NAME"             => "FFI::Platypus::Type::PtrObject",
  "PM"               => {
    "lib/FFI/Platypus/Type/PtrObject.pm" => "\$(INST_LIB)/FFI/Platypus/Type/PtrObject.pm"
  },
  "PREREQ_PM" => {
    "FFI::Platypus" => "1.11",
    "Ref::Util"     => 0
  },
  "TEST_REQUIRES" => {
    "FFI::Platypus::Memory" => 0,
    "Test2::Tools::FFI"     => 0,
    "Test2::V0"             => "0.000060"
  },
  "VERSION" => "0.03",
  "test"    => {
    "TESTS" => "t/*.t"
  }
);

my %FallbackPrereqs = (
  "FFI::Platypus"         => "1.11",
  "FFI::Platypus::Memory" => 0,
  "Ref::Util"             => 0,
  "Test2::Tools::FFI"     => 0,
  "Test2::V0"             => "0.000060"
);

# BEGIN code inserted by Dist::Zilla::Plugin::FFI::Build
use FFI::Build::MM 0.83;
my $fbmm = FFI::Build::MM->new;
%WriteMakefileArgs = $fbmm->mm_args(%WriteMakefileArgs);

# END code inserted by Dist::Zilla::Plugin::FFI::Build

lib/FFI/Platypus/Type/PtrObject.pm  view on Meta::CPAN

package FFI::Platypus::Type::PtrObject;

use strict;
use warnings;
use FFI::Platypus 1.11;
use Ref::Util qw( is_blessed_hashref );
use Carp ();
use 5.008001;

# ABSTRACT: Platypus custom type for an object wrapped around an opaque pointer
our $VERSION = '0.03'; # VERSION


push @FFI::Platypus::CARP_NOT, __PACKAGE__;

sub ffi_custom_type_api_1

t/00_diag.t  view on Meta::CPAN

# make changes instead to dist.ini

my %modules;
my $post_diag;

$modules{$_} = $_ for qw(
  ExtUtils::MakeMaker
  FFI::Build::MM
  FFI::Platypus
  FFI::Platypus::Memory
  Ref::Util
  Test2::Tools::FFI
  Test2::V0
);



my @modules = sort keys %modules;

sub spacer ()
{



( run in 0.831 second using v1.01-cache-2.11-cpan-39bf76dae61 )