From: Karen Etheridge Date: Tue, 15 Mar 2016 22:31:30 +0000 (-0700) Subject: Sub-Name-0.15 X-Git-Tag: v0.15^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=71457ae8accd102468a378cc0415cd5a910760d4;p=p5sagit%2FSub-Name.git Sub-Name-0.15 - fix uninitialized warning in test on perls < 5.8.6 (RT#104510) - repository moved to the github p5sagit organization (the primary is on shadowcat, mirrored to github) --- diff --git a/CONTRIBUTING b/CONTRIBUTING index 21a5f47..adbedb9 100644 --- a/CONTRIBUTING +++ b/CONTRIBUTING @@ -11,6 +11,9 @@ follow any of the steps in this document to submit a patch or bug report; these are just recommendations, intended to help you (and help us help you faster). +This distribution has a TODO file in the repository; you may want to check +there to see if your issue or patch idea is mentioned. + The distribution is managed with Dist::Zilla (https://metacpan.org/release/Dist-Zilla). However, you can still compile and test the code with a small Makefile.PL specifically for use in the repository. You can do: @@ -27,7 +30,7 @@ or You may need to satisfy some dependencies. The easiest way to satisfy dependencies is to install the last release -- this is available at -https://metacpan.org/release/Sub-Name. +https://metacpan.org/release/Sub-Name If you use cpanminus, you can do it without downloading the tarball first: @@ -73,7 +76,7 @@ Once installed, here are some dzil commands you might try: You can learn more about Dist::Zilla at http://dzil.org/. The code for this distribution is hosted at GitHub. The repository is: -https://github.com/karenetheridge/Sub-Name +https://github.com/p5sagit/Sub-Name You can submit code changes by forking the repository, pushing your code changes to your clone, and then submitting a pull request. Detailed instructions for doing that is available here: @@ -83,8 +86,10 @@ https://help.github.com/articles/creating-a-pull-request If you have found a bug, but do not have an accompanying patch to fix it, you can submit an issue report here: https://rt.cpan.org/Public/Dist/Display.html?Name=Sub-Name -or via bug-Sub-Name@rt.cpan.org. -This is a good place to send your questions about the usage of this distribution. +or via email: bug-Sub-Name@rt.cpan.org + +There is also an irc channel available for users of this distribution, at +irc://irc.perl.org/#toolchain If you send me a patch or pull request, your name and email address will be included in the documentation as a contributor (using the attribution on the @@ -93,5 +98,5 @@ wish to be listed under a different name or address, you should submit a pull request to the .mailmap file to contain the correct mapping. -This file was generated via Dist::Zilla::Plugin::GenerateFile::ShareDir 0.005 from a -template file originating in Dist-Zilla-PluginBundle-Author-ETHER-0.092. +This file was generated via Dist::Zilla::Plugin::GenerateFile::FromShareDir 0.009 from a +template file originating in Dist-Zilla-PluginBundle-Author-ETHER-0.112. diff --git a/Changes b/Changes index ef28f8a..aba87ce 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,6 @@ Revision history for Sub-Name -{{$NEXT}} +0.15 2016-03-15 22:17:38Z - fix uninitialized warning in test on perls < 5.8.6 (RT#104510) - repository moved to the github p5sagit organization (the primary is on shadowcat, mirrored to github) diff --git a/INSTALL b/INSTALL new file mode 100644 index 0000000..8008a6e --- /dev/null +++ b/INSTALL @@ -0,0 +1,43 @@ +This is the Perl distribution Sub-Name. + +Installing Sub-Name is straightforward. + +## Installation with cpanm + +If you have cpanm, you only need one line: + + % cpanm Sub::Name + +If you are installing into a system-wide directory, you may need to pass the +"-S" flag to cpanm, which uses sudo to install the module: + + % cpanm -S Sub::Name + +## Installing with the CPAN shell + +Alternatively, if your CPAN shell is set up, you should just be able to do: + + % cpan Sub::Name + +## Manual installation + +As a last resort, you can manually install it. Download the tarball, untar it, +then build it: + + % perl Makefile.PL + % make && make test + +Then install it: + + % make install + +If you are installing into a system-wide directory, you may need to run: + + % sudo make install + +## Documentation + +Sub-Name documentation is available as POD. +You can run perldoc from a shell to read the documentation: + + % perldoc Sub::Name diff --git a/LICENSE b/LICENCE similarity index 99% rename from LICENSE rename to LICENCE index 37f5379..f755d72 100644 --- a/LICENSE +++ b/LICENCE @@ -1,4 +1,4 @@ -This software is copyright (c) 2004 by Matthijs van Duin and cPanel Inc.. +This software is copyright (c) 2004 by Matthijs van Duin and cPanel Inc. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. @@ -12,7 +12,7 @@ b) the "Artistic License" --- The GNU General Public License, Version 1, February 1989 --- -This software is Copyright (c) 2004 by Matthijs van Duin and cPanel Inc.. +This software is Copyright (c) 2004 by Matthijs van Duin and cPanel Inc. This is free software, licensed under: @@ -272,7 +272,7 @@ That's all there is to it! --- The Artistic License 1.0 --- -This software is Copyright (c) 2004 by Matthijs van Duin and cPanel Inc.. +This software is Copyright (c) 2004 by Matthijs van Duin and cPanel Inc. This is free software, licensed under: diff --git a/README.pod b/README.pod index d0c9192..e6c32a8 100644 --- a/README.pod +++ b/README.pod @@ -8,7 +8,7 @@ Sub::Name - (re)name a sub =head1 VERSION -version 0.14 +version 0.15 =head1 SYNOPSIS @@ -53,6 +53,14 @@ L - set_subname is another implementation of C =for stopwords cPanel +=head1 SUPPORT + +Bugs may be submitted through L +(or L). + +There is also an irc channel available for users of this distribution, at +L on C|irc://irc.perl.org/#toolchain>. + =head1 AUTHOR Matthijs van Duin diff --git a/ppport.h b/ppport.h index be00753..a886f5c 100644 --- a/ppport.h +++ b/ppport.h @@ -4,9 +4,9 @@ /* ---------------------------------------------------------------------- - ppport.h -- Perl/Pollution/Portability Version 3.31 + ppport.h -- Perl/Pollution/Portability Version 3.32 - Automatically created by Devel::PPPort running under perl 5.021011. + Automatically created by Devel::PPPort running under perl 5.023008. Do NOT edit this file directly! -- Edit PPPort_pm.PL and the includes in parts/inc/ instead. @@ -21,7 +21,7 @@ SKIP =head1 NAME -ppport.h - Perl/Pollution/Portability version 3.31 +ppport.h - Perl/Pollution/Portability version 3.32 =head1 SYNOPSIS @@ -381,7 +381,7 @@ use strict; # Disable broken TRIE-optimization BEGIN { eval '${^RE_TRIE_MAXBUF} = -1' if $] >= 5.009004 && $] <= 5.009005 } -my $VERSION = 3.31; +my $VERSION = 3.32; my %opt = ( quiet => 0,