Skip to content

Commit

Permalink
Final changes to introduce standard make functionality [openmelody#208
Browse files Browse the repository at this point in the history
…state:resolved]
  • Loading branch information
tima committed Nov 23, 2009
1 parent 364a37b commit 0524ae5
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 226 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Expand Up @@ -14,6 +14,11 @@
pod2htm*
*.ORIG
*.tmproj
*.bak
*.old
*.swp
*.tmp
._*

#####################################################
## Perltidy-generated files ##
Expand Down
3 changes: 3 additions & 0 deletions MANIFEST.SKIP
@@ -1,3 +1,6 @@
# This MANIFEST.SKIP is setup for creating a standard distribution like those MTOS has produced.
# TODO use different MANIFEST.SKIP rules based on distribution being built.

# MT::App::Viewer
lib/MT/App/Viewer.pm
mt-view.cgi
Expand Down
210 changes: 0 additions & 210 deletions Makefile

This file was deleted.

39 changes: 23 additions & 16 deletions Makefile.PL
@@ -1,6 +1,9 @@
use ExtUtils::MakeMaker;
use strict;

use lib 'lib';
use lib 'extlib';

WriteMakefile(
'NAME' => 'Melody',
'VERSION_FROM' => 'lib/MT.pm',
Expand All @@ -11,14 +14,14 @@ WriteMakefile(
'PREREQ_PM' => {
# From Bundle::Melody::extlib (please keep in sync)
'Archive::Extract' => 0.08,
'Attribute::Params::Validate' => 1.7,
'Attribute::Params::Validate' => 1.07,
'bignum' => 0.23,
'Cache' => 0,
'CGI' => 3.45,
'CGI' => 3.43,
'Class::Accessor' => 0.22,
'Class::Data::Inheritable' => 0.06,
'Class::ErrorHandler' => 0.01,
'Class::Trigger' =>0.10_1,
'Class::Trigger' =>0.1001,
'Crypt::DH' => 0.06,
'Data::ObjectDriver' => 0.06,
'File::Copy::Recursive' => 0.23,
Expand All @@ -31,21 +34,23 @@ WriteMakefile(
'IPC::Cmd' => 0.24,
'Jcode' => 0.88,
'JSON' => 2.12,
'Locale::Maketest' => 1.13,
'Log4Perl' => 0,
'Locale::Maketext' => 1.13,
'Log::Log4perl' => 0,
'Log::Dispatch' => 0,
'Lucene::QueryParser' => 1.04,
'LWP' => 5.831,
'LWP' => 5.829,
'Math::BigInt' => 1.63,
'MIME::Charset' => 0.044,
'MIME::EncWords' => 0.040,
'Module::Load' => 0.10,
'Module::Load::Conditional' => 0.08,
'Net::OAuth' => 0.11,
'Net::OpenID' => 1.03,
'Net::OpenID::Consumer' => 1.03,
'Params::Check' => 0.24,
'Params::Validate' => 0.73,
'Sub::Install' => 0,
'SOAP::Lite' => 0.710.08,
'TheSchwartz' => 1.07,
'TheSchwartz' => 1.07, # CPAN is having an issue with this one.
'UNIVERSAL' => 0.11,
'URI' => 1.36,
'URI::Fetch' => 0.08,
Expand All @@ -61,17 +66,19 @@ WriteMakefile(
'Test::Class' => 0,
'Test::Deep' => 0,
'Test::Manifest' => 0,
'Test::More' => 0,
'Test::PerlTidy' => 0,
'Test::Pod' => 0,
'Test::PodCoverage' => 0,
'Test::Strict' => 0,
'Test::More' => 0,
'Test::PerlTidy' => 0,
'Test::Pod' => 0,
'Test::Pod::Coverage' => 0,
'Test::Strict' => 0,
},
'META_MERGE' => {
'resources' => {
'license' => 'http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt',
'repository' => 'http://github.com/openmelody/melody',
'bugtracker' => 'https://openmelody.lighthouseapp.com/projects/26604-melody',
'license' => 'http://dev.perl.org/licenses/',
'repository' => 'http://github.com/tima/perl-amazon-ec2',

#'bugtracker' =>
# 'http://rt.cpan.org/Public/Dist/Display.html?Name=Module-Name',
},
},
);
6 changes: 6 additions & 0 deletions t/sqlite-test.cfg
@@ -0,0 +1,6 @@
Database db/mt.db
ObjectDriver DBI::sqlite
# PluginPath ../plugins
# PluginPath plugins
TemplatePath ../tmpl
DisableObjectCache 1

0 comments on commit 0524ae5

Please sign in to comment.