Skip to content

Commit

Permalink
Newer MIRTx for /static/ support
Browse files Browse the repository at this point in the history
  • Loading branch information
jibsheet committed Jul 11, 2014
1 parent 36b5e52 commit 14542cc
Show file tree
Hide file tree
Showing 17 changed files with 1,567 additions and 115 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -12,3 +12,4 @@ nytprof/
*.tar.gz
*.sw[po]
/inc/.author
MYMETA.*
4 changes: 4 additions & 0 deletions MANIFEST
Expand Up @@ -12,12 +12,16 @@ inc/Module/Install.pm
inc/Module/Install/Base.pm
inc/Module/Install/Can.pm
inc/Module/Install/Fetch.pm
inc/Module/Install/Include.pm
inc/Module/Install/Makefile.pm
inc/Module/Install/Metadata.pm
inc/Module/Install/ReadmeFromPod.pm
inc/Module/Install/RTx.pm
inc/Module/Install/RTx/Runtime.pm
inc/Module/Install/Win32.pm
inc/Module/Install/WriteAll.pm
inc/unicore/Name.pm
inc/YAML/Tiny.pm
lib/RT/Extension/ReportSpam.pm
Makefile.PL
MANIFEST This list of files
Expand Down
9 changes: 6 additions & 3 deletions META.yml
Expand Up @@ -8,7 +8,7 @@ configure_requires:
ExtUtils::MakeMaker: 6.59
distribution_type: module
dynamic_config: 1
generated_by: 'Module::Install version 1.06'
generated_by: 'Module::Install version 1.08'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
Expand All @@ -18,8 +18,11 @@ no_index:
directory:
- html
- inc
- static
requires:
perl: 5.8.0
perl: 5.8.3
resources:
license: http://dev.perl.org/licenses/
version: 0.12
version: '0.12'
x_module_install_rtx_version: 0.34_04
x_requires_rt: 4.0.0
2 changes: 1 addition & 1 deletion inc/Module/Install.pm
Expand Up @@ -31,7 +31,7 @@ BEGIN {
# This is not enforced yet, but will be some time in the next few
# releases once we can make sure it won't clash with custom
# Module::Install extensions.
$VERSION = '1.06';
$VERSION = '1.08';

# Storage for the pseudo-singleton
$MAIN = undef;
Expand Down
2 changes: 1 addition & 1 deletion inc/Module/Install/Base.pm
Expand Up @@ -4,7 +4,7 @@ package Module::Install::Base;
use strict 'vars';
use vars qw{$VERSION};
BEGIN {
$VERSION = '1.06';
$VERSION = '1.08';
}

# Suspend handler for "redefined" warnings
Expand Down
2 changes: 1 addition & 1 deletion inc/Module/Install/Can.pm
Expand Up @@ -8,7 +8,7 @@ use Module::Install::Base ();

use vars qw{$VERSION @ISA $ISCORE};
BEGIN {
$VERSION = '1.06';
$VERSION = '1.08';
@ISA = 'Module::Install::Base';
$ISCORE = 1;
}
Expand Down
2 changes: 1 addition & 1 deletion inc/Module/Install/Fetch.pm
Expand Up @@ -6,7 +6,7 @@ use Module::Install::Base ();

use vars qw{$VERSION @ISA $ISCORE};
BEGIN {
$VERSION = '1.06';
$VERSION = '1.08';
@ISA = 'Module::Install::Base';
$ISCORE = 1;
}
Expand Down
34 changes: 34 additions & 0 deletions inc/Module/Install/Include.pm
@@ -0,0 +1,34 @@
#line 1
package Module::Install::Include;

use strict;
use Module::Install::Base ();

use vars qw{$VERSION @ISA $ISCORE};
BEGIN {
$VERSION = '1.08';
@ISA = 'Module::Install::Base';
$ISCORE = 1;
}

sub include {
shift()->admin->include(@_);
}

sub include_deps {
shift()->admin->include_deps(@_);
}

sub auto_include {
shift()->admin->auto_include(@_);
}

sub auto_include_deps {
shift()->admin->auto_include_deps(@_);
}

sub auto_include_dependent_dists {
shift()->admin->auto_include_dependent_dists(@_);
}

1;
2 changes: 1 addition & 1 deletion inc/Module/Install/Makefile.pm
Expand Up @@ -8,7 +8,7 @@ use Fcntl qw/:flock :seek/;

use vars qw{$VERSION @ISA $ISCORE};
BEGIN {
$VERSION = '1.06';
$VERSION = '1.08';
@ISA = 'Module::Install::Base';
$ISCORE = 1;
}
Expand Down
2 changes: 1 addition & 1 deletion inc/Module/Install/Metadata.pm
Expand Up @@ -6,7 +6,7 @@ use Module::Install::Base ();

use vars qw{$VERSION @ISA $ISCORE};
BEGIN {
$VERSION = '1.06';
$VERSION = '1.08';
@ISA = 'Module::Install::Base';
$ISCORE = 1;
}
Expand Down

0 comments on commit 14542cc

Please sign in to comment.