Skip to content

Commit

Permalink
dist housekeeping
Browse files Browse the repository at this point in the history
  • Loading branch information
domm committed May 13, 2009
1 parent ed5e50d commit 3039994
Show file tree
Hide file tree
Showing 7 changed files with 107 additions and 46 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -12,6 +12,8 @@ pm_to_blib
*.swp
tmp/*
cover_db
LICENSE
README
MANIFEST.bak
Acme-ReturnValue-*
META.yml
Expand Down
33 changes: 22 additions & 11 deletions Build.PL
Expand Up @@ -3,20 +3,31 @@ use warnings;
use Module::Build;

my $builder = Module::Build->new(
module_name => 'Acme::ReturnValue',
license => 'perl',
dist_author => 'Thomas Klausner <domm@cpan.at>',
dist_version_from => 'lib/Acme/ReturnValue.pm',
requires => {
'PPI' => '1.118',
'Archive::Any' => '0.093',
module_name => 'Acme::ReturnValue',
license => 'perl',
dist_author => 'Thomas Klausner <domm@cpan.at>',
dist_version_from => 'lib/Acme/ReturnValue.pm',
requires => {
'PPI' => '1.118',
'Archive::Any' => '0.093',
'Parse::CPAN::Packages' => '2.31',
'Class::Accessor' => '0.31',
'Moose' => '0.77',
'MooseX::Getopt' => '0.18',
'Path::Class' => '0.16',
'YAML::Any' => '0.67',
},
build_requires => {
'Test::Pod' => '1.14',
'Test::Pod::Coverage' => '1.04',
build_requires => { 'Test::Most' => '0.21', },
create_readme => 1,
create_license => 1,
meta_merge => {
resources => {
homepage => 'http://returnvalues.useperl.at',
bugtracker =>
'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Acme-ReturnValue',
repository => 'http://github.com/domm/Acme-ReturnValue',
}
},

);

$builder->create_build_script();
22 changes: 19 additions & 3 deletions MANIFEST
@@ -1,9 +1,25 @@
.gitignore
bin/acme_returnvalue.pl
bin/acme_returnvalue_makesite.pl
Build.PL
Changes
htdocs/acme_returnvalue.css
htdocs/jquery-1.3.2.min.js
lib/Acme/ReturnValue.pm
lib/Acme/ReturnValue/MakeSite.pm
LICENSE
MANIFEST This list of files
META.yml
t/99_pod.t
t/99_pod_coverage.t
README
t/00_load.t
t/boring.t
t/interesting.t
t/pms/Boring.pm
t/pms/Interesting.pm
t/pms/MockTime.pm
t/pms/RayApp.pm
t/pms/UseUninstalled.pm
xt/critic.t
xt/meta.t
xt/minimumversion.t
xt/pod.t
xt/pod_coverage.t
52 changes: 52 additions & 0 deletions MANIFEST.SKIP
@@ -0,0 +1,52 @@
# Avoid version control files.
\bRCS\b
\bCVS\b
,v$
\B\.svn\b
\B\.git\b
\B\.cvsignore$

# Avoid Makemaker generated and utility files.
\bMakefile$
\bblib
\bMakeMaker-\d
\bpm_to_blib$
\bblibdirs$
^MANIFEST\.SKIP$

# Avoid VMS specific Makmaker generated files
\bDescrip.MMS$
\bDESCRIP.MMS$
\bdescrip.mms$

# Avoid Module::Build generated and utility files.
\bBuild$
\bBuild.bat$
\b_build
\bBuild.COM$
\bBUILD.COM$
\bbuild.com$

# Avoid Devel::Cover generated files
\bcover_db

# Avoid temp and backup files.
~$
\.tmp$
\.old$
\.bak$
\#$
\.#
\.rej$

# Avoid OS-specific files/dirs
# Mac OSX metadata
\B\.DS_Store
# Mac OSX SMB mount metadata files
\B\._
# Avoid archives of this distribution
\bAcme-ReturnValue-[\d\.\_]+

htdocs/.*.html
returnvalues
allrvs
25 changes: 0 additions & 25 deletions META.yml

This file was deleted.

12 changes: 12 additions & 0 deletions t/00-load.t
@@ -0,0 +1,12 @@
#!/opt/perl5.10/bin/perl
# generated with /opt/perl5.10/bin/generate_00-load_t.pl
use Test::More tests => 2;


BEGIN {
use_ok( 'Acme::ReturnValue' );
}

diag( "Testing Acme::ReturnValue Acme::ReturnValue->VERSION, Perl $], $^X" );

use_ok( 'Acme::ReturnValue::MakeSite' );
7 changes: 0 additions & 7 deletions t/00_load.t

This file was deleted.

0 comments on commit 3039994

Please sign in to comment.