From: Stevan Little Date: Sun, 25 May 2008 03:26:38 +0000 (+0000) Subject: 0.07 X-Git-Tag: 0.15~19 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=df3c463b810bb63cbf295a8e822dc887844b9a0b;p=gitmo%2FMooseX-Daemonize.git 0.07 --- diff --git a/Build.PL b/Build.PL deleted file mode 100644 index 0f28d97..0000000 --- a/Build.PL +++ /dev/null @@ -1,3 +0,0 @@ -# Dear Distribution Packager. This use of require is intentional. -# Module::Install detects Build.PL usage and acts accordingly. -require 'Makefile.PL'; diff --git a/Changes b/Changes index 3493290..6e8d11b 100644 --- a/Changes +++ b/Changes @@ -1,8 +1,16 @@ Revision history for MooseX-Daemonize +0.07 Saturday, May 24, 2008 * MooseX::Daemonize - - Made default pidbase '/var/run' rather than './var/run' - - Small fixups to pidfile testing in t/31.with_pid_file_and_poe.t + - Made default pidbase '/var/run' rather + than './var/run' + + * t/ + - Small fixups to pidfile testing in + t/31.with_pid_file_and_poe.t + + ~ Removed the Build.PL since Module::Install + has removed their support 0.06 Fri. Dec. 21, 2007 * MooseX::Daemonize diff --git a/README b/README index c994046..ab8ad53 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -MooseX-Daemonize version 0.06 +MooseX-Daemonize version 0.07 INSTALLATION @@ -9,14 +9,6 @@ To install this module, run the following commands: make test make install - -Alternatively, to install with Module::Build, you can use the following commands: - - perl Build.PL - ./Build - ./Build test - ./Build install - DEPENDENCIES Moose @@ -25,7 +17,7 @@ DEPENDENCIES COPYRIGHT AND LICENCE -Copyright (C) 2007, Chris Prather +Copyright (C) 2007-2008, Chris Prather This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. diff --git a/lib/MooseX/Daemonize.pm b/lib/MooseX/Daemonize.pm index 8e87a0d..3f39763 100644 --- a/lib/MooseX/Daemonize.pm +++ b/lib/MooseX/Daemonize.pm @@ -3,13 +3,13 @@ use strict; # because Kwalitee is pedantic use Moose::Role; use MooseX::Types::Path::Class; -our $VERSION = 0.06; +our $VERSION = 0.07; with 'MooseX::Daemonize::WithPidFile', 'MooseX::Getopt'; -use constant OK => 0; -use constant ERROR => 1; +sub OK () { 0 } +sub ERROR () { 1 } has progname => ( metaclass => 'Getopt', @@ -537,7 +537,7 @@ Some bug fixes sponsored by Takkle Inc. =head1 LICENCE AND COPYRIGHT -Copyright (c) 2007, Chris Prather C<< >>. All rights +Copyright (c) 2007-2008, Chris Prather C<< >>. All rights reserved. This module is free software; you can redistribute it and/or diff --git a/lib/MooseX/Daemonize/Core.pm b/lib/MooseX/Daemonize/Core.pm index 3b76782..6c3e07a 100644 --- a/lib/MooseX/Daemonize/Core.pm +++ b/lib/MooseX/Daemonize/Core.pm @@ -347,7 +347,7 @@ Stevan Little C<< >> =head1 LICENCE AND COPYRIGHT -Copyright (c) 2007, Chris Prather C<< >>. All rights +Copyright (c) 2007-2008, Chris Prather C<< >>. All rights reserved. Portions heavily borrowed from L which is copyright Earl Hood. diff --git a/lib/MooseX/Daemonize/Pid.pm b/lib/MooseX/Daemonize/Pid.pm index 67d8d88..3426985 100644 --- a/lib/MooseX/Daemonize/Pid.pm +++ b/lib/MooseX/Daemonize/Pid.pm @@ -89,7 +89,7 @@ Stevan Little C<< >> =head1 LICENCE AND COPYRIGHT -Copyright (c) 2007, Chris Prather C<< >>. All rights +Copyright (c) 2007-2008, Chris Prather C<< >>. All rights reserved. This module is free software; you can redistribute it and/or diff --git a/lib/MooseX/Daemonize/Pid/File.pm b/lib/MooseX/Daemonize/Pid/File.pm index 29ddd1f..ca2107f 100644 --- a/lib/MooseX/Daemonize/Pid/File.pm +++ b/lib/MooseX/Daemonize/Pid/File.pm @@ -152,7 +152,7 @@ Stevan Little C<< >> =head1 LICENCE AND COPYRIGHT -Copyright (c) 2007, Chris Prather C<< >>. All rights +Copyright (c) 2007-2008, Chris Prather C<< >>. All rights reserved. This module is free software; you can redistribute it and/or diff --git a/lib/MooseX/Daemonize/WithPidFile.pm b/lib/MooseX/Daemonize/WithPidFile.pm index 65df993..0df7738 100644 --- a/lib/MooseX/Daemonize/WithPidFile.pm +++ b/lib/MooseX/Daemonize/WithPidFile.pm @@ -134,7 +134,7 @@ Stevan Little C<< >> =head1 LICENCE AND COPYRIGHT -Copyright (c) 2007, Chris Prather C<< >>. All rights +Copyright (c) 2007-2008, Chris Prather C<< >>. All rights reserved. Portions heavily borrowed from L which is copyright Earl Hood. diff --git a/lib/Test/MooseX/Daemonize.pm b/lib/Test/MooseX/Daemonize.pm index c5efab6..ec42672 100644 --- a/lib/Test/MooseX/Daemonize.pm +++ b/lib/Test/MooseX/Daemonize.pm @@ -165,7 +165,7 @@ Chris Prather C<< >> =head1 LICENCE AND COPYRIGHT -Copyright (c) 2007, Chris Prather C<< >>. All rights reserved. +Copyright (c) 2007-2008, Chris Prather C<< >>. All rights reserved. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See L.