Skip Menu |

This queue is for tickets about the Socket CPAN distribution.

Report information
The Basics
Id: 75326
Status: resolved
Priority: 0/
Queue: Socket

People
Owner: Nobody in particular
Requestors: KENTNL [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Unimportant
Broken in: 1.99
Fixed in: 2.000



Subject: Missing ABSTRACT and LICENSE in META.yml

https://metacpan.org/source/PEVANS/Socket-1.99/META.yml

abstract:           ~
author: []
license:            unknown

 

Hi, this is just a request that these fields be populated in a future release.

This helps downstream tools work with your distribution as well as make its Metacpan.org integration much nicer =)

Thanks

--Kent.

Fixed in source. Will be in next release. -- Paul Evans
Subject: rt75326.patch
=== modified file 'Makefile.PL' --- Makefile.PL 2012-02-17 00:21:22 +0000 +++ Makefile.PL 2012-03-08 17:21:56 +0000 @@ -116,17 +116,20 @@ $makefile_args{INSTALLDIRS} = "perl" if $] < 5.012; WriteMakefile( - NAME => 'Socket', - VERSION_FROM => 'Socket.pm', + NAME => 'Socket', + VERSION_FROM => 'Socket.pm', + # ABSTRACT_FROM gets confused by C<Socket> + ABSTRACT => 'networking constants and support functions', ($Config{libs} =~ /(-lsocks\S*)/ ? (LIBS => [ "$1" ] ) : ()), - XSPROTOARG => '-noprototypes', # XXX remove later? - realclean => {FILES=> 'const-c.inc const-xs.inc'}, - DEFINE => join( " ", map { "-D$_" } @DEFINES ), + XSPROTOARG => '-noprototypes', # XXX remove later? + realclean => {FILES=> 'const-c.inc const-xs.inc'}, + DEFINE => join( " ", map { "-D$_" } @DEFINES ), CONFIGURE_REQUIRES => { 'ExtUtils::CBuilder' => 0, 'ExtUtils::Constant' => '0.23', }, MIN_PERL_VERSION => '5.006001', + LICENSE => 'perl', %makefile_args, ); my @names = (
Release as 2.000 -- Paul Evans