Net-INET6Glue

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
0.604 2021/02/26
- change bugtracker in Makefile.PL to github
0.603 2014/09/07
- mark Net::FTP 2.79 as a valid base too, based on patch from
0.602 2014/01/17
- fix t/01_inet_is_inet6.t
0.601 2014/01/14
- add support for IO::Socket::IP instead of IO::Socket::INET6 and prefer it
0.600_1 2013/05/31
- set AUTHOR in Makefile.PL back from array to string, because array is
  only supported in newer ExtUtils::MakeMaker versions
0.6 2013/05/30
- add more meta information to Makefile.PL, based on patch from ktdreyer
 
0.5 2011/02/25
- fix for IO::Socket::INET6 >=2.67

MANIFEST  view on Meta::CPAN

1
2
3
4
5
6
7
8
9
10
11
12
13
COPYRIGHT
lib/Net/INET6Glue.pm
lib/Net/INET6Glue/FTP.pm
lib/Net/INET6Glue/INET_is_INET6.pm
Makefile.PL
MANIFEST
Changes
README
t/01_inet_is_inet6.t
t/02_ftp_load.t
t/external/03_ftp6.t
META.yml                                 Module YAML meta-data (added by MakeMaker)
META.json                                Module JSON meta-data (added by MakeMaker)

META.json  view on Meta::CPAN

33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
      "runtime" : {
         "requires" : {
            "IO::Socket::IP" : "0.25",
            "Net::FTP" : "2.75"
         }
      }
   },
   "release_status" : "stable",
   "resources" : {
      "bugtracker" : {
      },
      "homepage" : "https://github.com/noxxi/p5-net-inet6glue",
      "license" : [
         "http://dev.perl.org/licenses/"
      ],
      "repository" : {
         "url" : "https://github.com/noxxi/p5-net-inet6glue"
      }
   },
   "version" : "0.604",
   "x_serialization_backend" : "JSON::PP version 4.02"
}

META.yml  view on Meta::CPAN

14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
  version: '1.4'
name: Net-INET6Glue
no_index:
  directory:
    - t
    - inc
requires:
  IO::Socket::IP: '0.25'
  Net::FTP: '2.75'
resources:
version: '0.604'
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'

Makefile.PL  view on Meta::CPAN

21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
    AUTHOR => "Steffen Ullrich <sullr@cpan.org>",
    LICENSE => 'perl',
    VERSION_FROM => 'lib/Net/INET6Glue.pm',
    PREREQ_PM => {
        %INET6,
        'Net::FTP' => 2.75,
    },
    META_MERGE => {
        resources => {
            license     => 'http://dev.perl.org/licenses/',
            homepage    => 'https://github.com/noxxi/p5-net-inet6glue',
            bugtracker  => 'https://github.com/noxxi/p5-net-inet6glue/issues',
            repository  => 'https://github.com/noxxi/p5-net-inet6glue',
        },
    },
    $xt =~m{^y}i ? ( test => { TESTS => 't/*.t t/external/*.t' }):(),
);



( run in 0.282 second using v1.01-cache-2.11-cpan-1dc43b0fbd2 )