[prev] [thread] [next] [lurker] [Date index for 2003/10/17]
Author: richardc Date: 2003-10-17 14:35:50 +0100 (Fri, 17 Oct 2003) New Revision: 1435 Modified: branches/Siesta-0.6x/Build.PL branches/Siesta-0.6x/Changes branches/Siesta-0.6x/lib/Siesta.pm Log: svn merge -r 1432:HEAD https://siesta.unixbeard.net/svn/trunk/siesta Modified: branches/Siesta-0.6x/Build.PL =================================================================== --- branches/Siesta-0.6x/Build.PL 2003-10-17 13:29:29 UTC (rev 1434) +++ branches/Siesta-0.6x/Build.PL 2003-10-17 13:35:50 UTC (rev 1435) @@ -2,41 +2,43 @@ use lib qw(lib); use Siesta::Build; -my $build = Siesta::Build - ->new( module_name => "Siesta", - license => 'perl', - scripts => [ 'bin/tequila', 'bin/nacho', 'bin/bandito' ], - requires => { 'Test::More' => 0, - 'Apache::Session::SharedMem' => 0, - 'Class::Accessor::Fast' => 0, - 'Class::DBI' => '0.93', # older versions don't do TEMP properly - 'Class::DBI::BaseDSN' => 0, - 'Class::DBI::SQLite' => 0, - 'Digest::MD5' => 0, - 'Email::Folder' => 0, - 'Email::Simple' => '1.4', - 'Email::LocalDelivery' => '0.05', - 'File::Path' => 0, - 'File::Basename' => 0, - 'File::Find::Rule' => 0, - 'Mail::Address' => 0, - 'Mail::DeliveryStatus::BounceParser' => 0, - # Module::Build 0.18 is the first release with - # working scripts shebang rewriting - 'Module::Build' => '0.18', - 'Python::Serialise::Marshal' => 0, - 'Storable' => 0, - 'String::Random' => 0, - 'String::ShellQuote' => 0, - 'Sys::Hostname' => 0, - 'Tie::IxHash' => 0, - 'Template' => 0, - 'UNIVERSAL::require' => 0, - 'YAML' => 0, - }, - create_makefile_pl => 'passthrough', - dynamic_config => 1, - ); +my $build = Siesta::Build->new( + module_name => "Siesta", + license => 'perl', + scripts => [ 'bin/tequila', 'bin/nacho', 'bin/bandito' ], + requires => { + 'perl' => '5.006', + 'Apache::Session::SharedMem' => 0, + 'Class::Accessor::Fast' => 0, + 'Class::DBI' => '0.93', # older versions don't do TEMP properly + 'Class::DBI::BaseDSN' => 0, + 'Class::DBI::SQLite' => 0, + 'Digest::MD5' => 0, + 'Email::Folder' => 0, + 'Email::Simple' => '1.4', + 'Email::LocalDelivery' => '0.05', + 'File::Path' => 0, + 'File::Basename' => 0, + 'File::Find::Rule' => 0, + 'Mail::Address' => 0, + 'Mail::DeliveryStatus::BounceParser' => 0, + # Module::Build 0.18 is the first release with + # working scripts shebang rewriting + 'Module::Build' => '0.18', + 'Python::Serialise::Marshal' => 0, + 'Storable' => 0, + 'String::Random' => 0, + 'String::ShellQuote' => 0, + 'Sys::Hostname' => 0, + 'Test::More' => 0, + 'Tie::IxHash' => 0, + 'Template' => 0, + 'UNIVERSAL::require' => 0, + 'YAML' => 0, + }, + create_makefile_pl => 'passthrough', + dynamic_config => 1, + ); $build->{config}{__extras_from} = [ 'messages', 'web-frontend' ]; Modified: branches/Siesta-0.6x/Changes =================================================================== --- branches/Siesta-0.6x/Changes 2003-10-17 13:29:29 UTC (rev 1434) +++ branches/Siesta-0.6x/Changes 2003-10-17 13:35:50 UTC (rev 1435) @@ -1,45 +1,54 @@ -cvn - Made Siesta::Test a released file (will help with testing third party - Plugins) +0.66 2003-10-17 + Made Siesta::Test a released file (will help with testing third party + Plugins) + Documentation fixes. -0.65 2003-09-01 (#1383) - Stealth dependency on YAML made clear. spotted by Nick Cleaton + Security fix for Siesta::Send::Sendmail - bandito no longer tries to import a users nomail attribute (it's a - TODO to have this a property of subscription) + Quick hack around an issue in Siesta::Config + Now we depend on perl 5.6 or newer. Hacking around 5.005 was + getting painful. -0.64 2003-09-01 (#1376) - nacho {show,resume,delete}-deferred - Siesta::Plugin::Archive now allows you to configure its output path +0.65 2003-09-01 (#1383) + Stealth dependency on YAML made clear. spotted by Nick Cleaton - Colobus HOWTO + bandito no longer tries to import a users nomail attribute (it's a + TODO to have this a property of subscription) - Challenge/Subscribe plugins now auto-generate passwords correctly - Fixes to Personal Plugin handling in List->set_plugins +0.64 2003-09-01 (#1376) + nacho {show,resume,delete}-deferred - Changes to the behaviour of Siesta::Message->reply so that it's - not a sticky about it's state + Siesta::Plugin::Archive now allows you to configure its output path + Colobus HOWTO -0.63 2003-08-09 (#1298) - improvements to Siesta::UserGuide - big bug in List->set_plugins fixed (thanks Jody) - -f switch - many many more + Challenge/Subscribe plugins now auto-generate passwords correctly + Fixes to Personal Plugin handling in List->set_plugins + + Changes to the behaviour of Siesta::Message->reply so that it's + not a sticky about it's state + + +0.63 2003-08-09 (#1298) + improvements to Siesta::UserGuide + big bug in List->set_plugins fixed (thanks Jody) + -f switch + many many more + 0.62 2003-07-28 - fixed a syntax error in Siesta::Web (I be slack) + fixed a syntax error in Siesta::Web (I be slack) 0.61 2003-07-28 - Fix MANIFEST, ship Siesta::Build - Have Siesta::Web point within Config('root')/web-frontend + Fix MANIFEST, ship Siesta::Build + Have Siesta::Web point within Config('root')/web-frontend -0.6 2003-07-24 - Initial release +0.6 2003-07-24 + Initial release for full change history consult the siesta-commit archives: http://siesta.unixbeard.net/siesta/archive/siesta-commit/ Modified: branches/Siesta-0.6x/lib/Siesta.pm =================================================================== --- branches/Siesta-0.6x/lib/Siesta.pm 2003-10-17 13:29:29 UTC (rev 1434) +++ branches/Siesta-0.6x/lib/Siesta.pm 2003-10-17 13:35:50 UTC (rev 1435) @@ -2,7 +2,7 @@ package Siesta; use strict; use vars qw/$VERSION $tt/; -$VERSION = '0.65'; +$VERSION = '0.66'; use Siesta::List; use Siesta::Message;
Generated at 13:57 on 01 Jul 2004 by mariachi 0.52