CPANPLUS

 view release on metacpan or  search on metacpan

ChangeLog  view on Meta::CPAN

* Always use INSTALLER_MM for Module-Build

0.9107      Tue Jul 12 15:22:14 2011

* Add support for v-strings and x.y.z versions, using the version module.
* Resolve [rt.cpan.org #69420] "type checking for CPANPLUS::Backend::RV::new is incorrect"
* Resolve [rt.cpan.org #69203] "custom sources ignores timeout config option"

0.9106      Wed Jul  6 09:53:44 2011

* synchronisation with blead to remove profanity
  from the source. No other changes.

0.9105      Thu May  5 21:47:45 2011

* remove any pointers to the sourceforge mailing list
* point to the github repo instead
* Only enable custom sources in the tests where it is actually
  required for testing
* Added support to parse_module() for 'Module/Type.pm' parsing

inc/Module/Install.pm  view on Meta::CPAN

# }

use 5.006;
use strict 'vars';
use Cwd        ();
use File::Find ();
use File::Path ();

use vars qw{$VERSION $MAIN};
BEGIN {
	# All Module::Install core packages now require synchronised versions.
	# This will be used to ensure we don't accidentally load old or
	# different versions of modules.
	# 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.18';

	# Storage for the pseudo-singleton
	$MAIN    = undef;

lib/CPANPLUS/Internals/Source/SQLite.pm  view on Meta::CPAN

    sub __sqlite_dbh {
        return $Dbh if $Dbh;

        my $self = shift;
        $Dbh     = DBIx::Simple->connect(
                        "dbi:SQLite:dbname=" . $self->__sqlite_file,
                        '', '',
                        { AutoCommit => 1 }
                    );
        #$Dbh->dbh->trace(1);
        $Dbh->query(qq{PRAGMA synchronous = OFF});

        return $Dbh;
    };

    sub __sqlite_disconnect {
      return unless $Dbh;
      $Dbh->disconnect;
      $Dbh = undef;
      return;
    }



( run in 0.698 second using v1.01-cache-2.11-cpan-0d8aa00de5b )