Subject: | Updated Changes and Makefile.PL |
Hi,
Attached are a new version of Changes file and Makefile.PL
* Made Changes confirm to CPAN::Changes::Spec, mainly by putting dates in ISO 8601 date format
* Added github repo and bugtracker details to metadata in Makefile.PL
I tried forking, then updating my copy, but kept getting some git error that I haven't had on the 50 or so similar pull requests I've done. So here are the files :-)
Cheers,
Neil
Subject: | Changes |
Message body not shown because it is not plain text.
Subject: | Makefile.PL |
use strict;
use warnings;
use ExtUtils::MakeMaker;
my $mm_ver = $ExtUtils::MakeMaker::VERSION;
if ($mm_ver =~ /_/) { # dev version
$mm_ver = eval $mm_ver;
die $@ if $@;
}
WriteMakefile(
NAME => 'AnyEvent::STOMP::Client',
AUTHOR => 'Raphael Seebacher <raphael@seebachers.ch>',
LICENSE => 'perl',
ABSTRACT => 'An event-based non-blocking STOMP 1.2 client based on AnyEvent and Object::Event.',
VERSION_FROM => 'lib/AnyEvent/STOMP/Client.pm',
PREREQ_PM => {
'AnyEvent' => 7.04,
'Object::Event' => 1.23,
},
($mm_ver <= 6.45 ? () : (META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
bugtracker => 'http://rt.cpan.org/Public/Dist/Display.html?Name=AnyEvent-STOMP-Client',
repository => {
type => 'git',
web => 'https://github.com/raphiniert/AnyEvent-STOMP-Client',
url => 'git://github.com/raphiniert/AnyEvent-STOMP-Client.git',
},
},
})),
);