[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
SF.net SVN: ledger-smb: [1645] trunk
- Subject: SF.net SVN: ledger-smb: [1645] trunk
- From: ..hidden..
- Date: Sat, 22 Sep 2007 08:59:00 -0700
Revision: 1645
http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=1645&view=rev
Author: tetragon
Date: 2007-09-22 08:59:00 -0700 (Sat, 22 Sep 2007)
Log Message:
-----------
Actually committing the switch away from Moduel::Build
Modified Paths:
--------------
trunk/Build.PL
trunk/INSTALL
Modified: trunk/Build.PL
===================================================================
--- trunk/Build.PL 2007-09-22 15:34:16 UTC (rev 1644)
+++ trunk/Build.PL 2007-09-22 15:59:00 UTC (rev 1645)
@@ -1,45 +1,2 @@
-use strict;
-use warnings;
-
-use Module::Build;
-
-my $build = Module::Build->new (
- dist_name => 'LedgerSMB',
- dist_version => '1.2.99',
- license => 'GPL',
- requires => {
- 'perl' => '>= 5.8.1',
- 'Data::Dumper' => 0,
- 'Locale::Maketext' => 0,
- 'Locale::Maketext::Lexicon' => '>= 0.56',
- 'MIME::Base64' => 0,
- 'Digest::MD5' => 0,
- 'HTML::Entities' => 0,
- 'DBI' => '>= 0.48',
- 'DBD::Pg' => 0,
- 'Math::BigFloat' => 0,
- 'IO::File' => 0,
- 'Encode' => 0,
- 'Locale::Country' => 0,
- 'Locale::Language' => 0,
- 'Time::Local' => 0,
- 'Cwd' => 0,
- 'Config::Std' => 0,
- 'MIME::Lite' => 0,
- 'Error' => 0,
- 'Template' => '>= 2.14',
- 'Template::Latex' => 0,
- 'Test::More' => 0,
- 'Test::Trap' => 0,
- 'Test::Exception' => 0,
- },
- recommends => {
- 'HTML::LinkExtor' => 0,
- 'FileHandle' => 0,
- 'Getopt::Long' => 0,
- 'Net::TCLink' => 0,
- 'Parse::RecDescent' => 0,
- },
-);
-
-$build->create_build_script;
+# Keeping this file for nicer coverage test interface
+require 'Makefile.PL';
Modified: trunk/INSTALL
===================================================================
--- trunk/INSTALL 2007-09-22 15:34:16 UTC (rev 1644)
+++ trunk/INSTALL 2007-09-22 15:59:00 UTC (rev 1645)
@@ -16,15 +16,15 @@
2) Check Dependencies
-The Build.PL script can be used to test for unmet dependencies and run other
+The Makefile.PL script can be used to test for unmet dependencies and run other
tests. It doesn't install anything yet, but it will tell you what you are
-missing. To check for dependencies, run "perl Build.PL" from the command line.
-Missing dependencies can generally be installed via a Linux distributor's
-package manager or by CPAN. (Build.PL itself uses Module::Build, which is
-available in packages like perl-Module-Build or libmodule-build-perl.)
+missing. To check for dependencies, run "perl Makefile.PL" from the command
+line. Missing dependencies can generally be installed via a Linux distributor's
+package manager or by CPAN. (Makefile.PL itself uses Module::Install, which is
+available in packages like perl-Module-Install or libmodule-install-perl.)
Once this is done and dependencies are satisfied, you can check to see whether
-the installation nominally works by running "./Build test" from the command
+the installation nominally works by running "make test" from the command
line. The test suites currently check to make sure all the perl modules load
and that a number of numeric tests are passed.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.