Revision history for subs-auto
+0.08 2013-09-05 17:50 UTC
+ This is a maintenance release. The code contains no functional change.
+ Satisfied users of version 0.07 can skip this update.
+ + Doc : C++ compilers are officially NOT supported.
+ + Tst : Author tests are no longer bundled with this distribution.
+ They are only made available to authors in the git repository.
+
0.07 2011-02-27 15:45 UTC
+ Fix : Compatibility with perl 5.13.10.
Changes
MANIFEST
+META.json
META.yml
Makefile.PL
README
--- /dev/null
+{
+ "abstract" : "Read barewords as subroutine names.",
+ "author" : [
+ "Vincent Pit <perl@profvince.com>"
+ ],
+ "dynamic_config" : 1,
+ "generated_by" : "ExtUtils::MakeMaker version 6.74, CPAN::Meta::Converter version 2.132140",
+ "license" : [
+ "perl_5"
+ ],
+ "meta-spec" : {
+ "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
+ "version" : "2"
+ },
+ "name" : "subs-auto",
+ "no_index" : {
+ "directory" : [
+ "t",
+ "inc"
+ ]
+ },
+ "prereqs" : {
+ "build" : {
+ "requires" : {
+ "B::Keywords" : "0",
+ "Carp" : "0",
+ "ExtUtils::MakeMaker" : "0",
+ "Test::More" : "0",
+ "Variable::Magic" : "0.31",
+ "XSLoader" : "0"
+ }
+ },
+ "configure" : {
+ "requires" : {
+ "ExtUtils::MakeMaker" : "0"
+ }
+ },
+ "runtime" : {
+ "requires" : {
+ "B::Keywords" : "0",
+ "Carp" : "0",
+ "Variable::Magic" : "0.31",
+ "XSLoader" : "0",
+ "perl" : "5.010"
+ }
+ }
+ },
+ "release_status" : "stable",
+ "resources" : {
+ "bugtracker" : {
+ "web" : "http://rt.cpan.org/Dist/Display.html?Name=subs-auto"
+ },
+ "homepage" : "http://search.cpan.org/dist/subs-auto/",
+ "license" : [
+ "http://dev.perl.org/licenses/"
+ ],
+ "repository" : {
+ "url" : "http://git.profvince.com/?p=perl%2Fmodules%2Fsubs-auto.git"
+ }
+ },
+ "version" : "0.08"
+}
---- #YAML:1.0
-name: subs-auto
-version: 0.07
-abstract: Read barewords as subroutine names.
+---
+abstract: 'Read barewords as subroutine names.'
author:
- - Vincent Pit <perl@profvince.com>
-license: perl
-distribution_type: module
-configure_requires:
- ExtUtils::MakeMaker: 0
+ - 'Vincent Pit <perl@profvince.com>'
build_requires:
- B::Keywords: 0
- Carp: 0
- ExtUtils::MakeMaker: 0
- Test::More: 0
- Variable::Magic: 0.31
- XSLoader: 0
+ B::Keywords: 0
+ Carp: 0
+ ExtUtils::MakeMaker: 0
+ Test::More: 0
+ Variable::Magic: 0.31
+ XSLoader: 0
+configure_requires:
+ ExtUtils::MakeMaker: 0
+dynamic_config: 1
+generated_by: 'ExtUtils::MakeMaker version 6.74, CPAN::Meta::Converter version 2.132140'
+license: perl
+meta-spec:
+ url: http://module-build.sourceforge.net/META-spec-v1.4.html
+ version: 1.4
+name: subs-auto
+no_index:
+ directory:
+ - t
+ - inc
requires:
- B::Keywords: 0
- Carp: 0
- perl: 5.01
- Variable::Magic: 0.31
- XSLoader: 0
+ B::Keywords: 0
+ Carp: 0
+ Variable::Magic: 0.31
+ XSLoader: 0
+ perl: 5.010
resources:
- bugtracker: http://rt.cpan.org/NoAuth/ReportBug.html?Queue=subs-auto
- homepage: http://search.cpan.org/dist/subs-auto/
- license: http://dev.perl.org/licenses/
- repository: http://git.profvince.com/?p=perl%2Fmodules%2Fsubs-auto.git
-no_index:
- directory:
- - t
- - inc
-generated_by: ExtUtils::MakeMaker version 6.56
-meta-spec:
- url: http://module-build.sourceforge.net/META-spec-v1.4.html
- version: 1.4
-dynamic_config: 0
+ bugtracker: http://rt.cpan.org/Dist/Display.html?Name=subs-auto
+ homepage: http://search.cpan.org/dist/subs-auto/
+ license: http://dev.perl.org/licenses/
+ repository: http://git.profvince.com/?p=perl%2Fmodules%2Fsubs-auto.git
+version: 0.08
subs::auto - Read barewords as subroutine names.
VERSION
- Version 0.07
+ Version 0.08
SYNOPSIS
{
# or "print(foo('wut'))" otherwise
} # ... but function calls will fail at run-time if you don't
# actually define foo somewhere
-
+
foo; # BANG
DESCRIPTION
DEPENDENCIES
perl 5.10.0.
+ A C compiler. This module may happen to build with a C++ compiler as
+ well, but don't rely on it, as no guarantee is made in this regard.
+
Variable::Magic with "uvar" magic enabled (this should be assured by the
required perl version).
B::Keywords.
- Carp (standard since perl 5), XSLoader (since 5.006).
+ Carp (standard since perl 5), XSLoader (since 5.6.0).
AUTHOR
Vincent Pit, "<perl at profvince.com>", <http://www.profvince.com>.
Thanks to Sebastien Aperghis-Tramoni for helping to name this pragma.
COPYRIGHT & LICENSE
- Copyright 2008,2009,2010,2011 Vincent Pit, all rights reserved.
+ Copyright 2008,2009,2010,2011,2013 Vincent Pit, all rights reserved.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
=head1 VERSION
-Version 0.07
+Version 0.08
=cut
our $VERSION;
BEGIN {
- $VERSION = '0.07';
+ $VERSION = '0.08';
}
=head1 SYNOPSIS