Skip to content

Commit

Permalink
Make Marpa::R2::HTML fully part of distribution
Browse files Browse the repository at this point in the history
  • Loading branch information
- committed Sep 10, 2012
1 parent 5f716c9 commit 7e43b42
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
9 changes: 5 additions & 4 deletions r2/Build.PL
Expand Up @@ -128,22 +128,23 @@ my $build = Marpa::R2::Build_Me->new(
{ repository => 'git://github.com/jeffreykegler/Marpa-R2.git', },
no_index => {
directory => [
qw( pperl tool html libmarpa author.t
qw( pperl tool libmarpa author.t
html/etc html/sandbox html/script html/t
)
],
namespace => [
'Marpa::R2::Recognizer', 'Marpa::R2::Grammar',
'Marpa::R2::HTML', @no_index_namespace_inclusive
@no_index_namespace_inclusive
],
package => [@no_index_namespace_inclusive],
package =>
[ @no_index_namespace_inclusive, 'Marpa::R2::Thin::Trace' ],
}
},
pod_files => \%pod_files,
create_readme => 0,
create_makefile_pl => 'small',
test_files => [ map { glob $_ } qw(t/*.t html/t/*.t) ],
getoptions => { Dev => {}, 'Marpa-debug' => {} },
getoptions => { Dev => {}, 'Marpa-debug' => {} },
);

$build->create_build_script;
4 changes: 4 additions & 0 deletions r2/Changes
Expand Up @@ -15,10 +15,14 @@

Revision history for Marpa::R2

2.019_003 Sun Sep 9 18:57:07 PDT 2012
2.019_002 Sat Sep 8 20:10:12 PDT 2012
2.019_001 Thu Sep 6 19:11:09 PDT 2012
2.019_000 Wed Aug 22 21:33:38 PDT 2012

* Make Marpa::R2::HTML a fully visible part
of the distribution.

* Documentation changes and fixes

* New series of developer's releases
Expand Down
5 changes: 2 additions & 3 deletions r2/META.json
Expand Up @@ -17,7 +17,6 @@
"directory" : [
"pperl",
"tool",
"html",
"libmarpa",
"author.t",
"html/etc",
Expand All @@ -29,7 +28,6 @@
"Marpa::R2::Recognizer",
"Marpa::R2::Grammar",
"Marpa::R2::HTML",
"Marpa::R2::HTML",
"Marpa::R2::Value",
"Marpa::R2::Perl",
"Marpa::R2::Test",
Expand All @@ -42,7 +40,8 @@
"Marpa::R2::Perl",
"Marpa::R2::Test",
"Marpa::R2::Display",
"Marpa::R2::Internal"
"Marpa::R2::Internal",
"Marpa::R2::Thin::Trace"
]
},
"prereqs" : {
Expand Down
3 changes: 1 addition & 2 deletions r2/META.yml
Expand Up @@ -18,7 +18,6 @@ no_index:
directory:
- pperl
- tool
- html
- libmarpa
- author.t
- html/etc
Expand All @@ -29,7 +28,6 @@ no_index:
- Marpa::R2::Recognizer
- Marpa::R2::Grammar
- Marpa::R2::HTML
- Marpa::R2::HTML
- Marpa::R2::Value
- Marpa::R2::Perl
- Marpa::R2::Test
Expand All @@ -42,6 +40,7 @@ no_index:
- Marpa::R2::Test
- Marpa::R2::Display
- Marpa::R2::Internal
- Marpa::R2::Thin::Trace
provides:
Marpa::R2:
file: lib/Marpa/R2.pm
Expand Down

0 comments on commit 7e43b42

Please sign in to comment.