Skip Menu |

This queue is for tickets about the Text-Similarity CPAN distribution.

Report information
The Basics
Id: 107728
Status: open
Priority: 0/
Queue: Text-Similarity

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

Bug Information
Severity: (no value)
Broken in: 0.13
Fixed in: (no value)



Subject: Add CVS repo in Makefile.PL to show it on MetaCPAN
Please find below a patch to add the URL to the Sourceforge website to the Makefile.PL. This way, it will be shown on the left panel on MetaCPAN, too. The code was inspired by http://perlmaven.com/add-meta-data-to-cpan-distribution (2015-10-12). --- D:\zwischen\cpan\Text-Similarity-0.13\Makefile.PL +++ D:\zwischen\cpan\Text-Similarity-0.13\Makefile-0.14.PL @@ -19,4 +19,19 @@ # allows for automatic creation of META.yml ($ExtUtils::MakeMaker::VERSION ge '6.30_00'? ('LICENSE' => 'gpl', ) : ()), -); + (eval { ExtUtils::MakeMaker->VERSION(6.46) } ? ( + META_MERGE => { + 'meta-spec' => { version => 2 }, + resources => { + repository => { + type => 'csv', + url => 'http://sourceforge.net/p/text-similarity/code/', + web => 'http://sourceforge.net/p/text-similarity/code/', + }, + homepage => 'http://text-similarity.sourceforge.net', + }, + } ) : ()), +); \ No newline at end of file
Subject: Re: [rt.cpan.org #107728] Add CVS repo in Makefile.PL to show it on MetaCPAN
Date: Tue, 13 Oct 2015 05:11:35 -0500
To: bug-Text-Similarity [...] rt.cpan.org
From: Ted Pedersen <duluthted [...] gmail.com>
Great idea, we'll include this in our next release. On Mon, Oct 12, 2015 at 3:48 PM, Alexander Becker via RT < bug-Text-Similarity@rt.cpan.org> wrote: Show quoted text
> Mon Oct 12 16:48:47 2015: Request 107728 was acted upon. > Transaction: Ticket created by ASB > Queue: Text-Similarity > Subject: Add CVS repo in Makefile.PL to show it on MetaCPAN > Broken in: 0.13 > Severity: (no value) > Owner: Nobody > Requestors: ASB@cpan.org > Status: new > Ticket <URL: https://rt.cpan.org/Ticket/Display.html?id=107728 > > > > Please find below a patch to add the URL to the Sourceforge website to the > Makefile.PL. This way, it will be shown on the left panel on MetaCPAN, too. > > The code was inspired by > http://perlmaven.com/add-meta-data-to-cpan-distribution (2015-10-12). > > --- D:\zwischen\cpan\Text-Similarity-0.13\Makefile.PL > +++ D:\zwischen\cpan\Text-Similarity-0.13\Makefile-0.14.PL > @@ -19,4 +19,19 @@ > # allows for automatic creation of META.yml > ($ExtUtils::MakeMaker::VERSION ge '6.30_00'? > ('LICENSE' => 'gpl', ) : ()), > -); > + (eval { ExtUtils::MakeMaker->VERSION(6.46) } ? ( > + META_MERGE => { > + 'meta-spec' => { version => 2 }, > + resources => { > + repository => { > + type => 'csv', > + url => ' > http://sourceforge.net/p/text-similarity/code/', > + web => ' > http://sourceforge.net/p/text-similarity/code/', > + }, > + homepage => 'http://text-similarity.sourceforge.net', > + }, > + } ) : ()), > +); > \ No newline at end of file > >