0.07
Stevan Little [Sun, 25 May 2008 03:26:38 +0000 (03:26 +0000)]
Build.PL [deleted file]
Changes
README
lib/MooseX/Daemonize.pm
lib/MooseX/Daemonize/Core.pm
lib/MooseX/Daemonize/Pid.pm
lib/MooseX/Daemonize/Pid/File.pm
lib/MooseX/Daemonize/WithPidFile.pm
lib/Test/MooseX/Daemonize.pm

diff --git a/Build.PL b/Build.PL
deleted file mode 100644 (file)
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 (file)
--- 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 (file)
--- 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.
index 8e87a0d..3f39763 100644 (file)
@@ -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<< <perigrin@cpan.org> >>. All rights
+Copyright (c) 2007-2008, Chris Prather C<< <perigrin@cpan.org> >>. All rights
 reserved.
 
 This module is free software; you can redistribute it and/or
index 3b76782..6c3e07a 100644 (file)
@@ -347,7 +347,7 @@ Stevan Little  C<< <stevan.little@iinteractive.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Copyright (c) 2007, Chris Prather C<< <perigrin@cpan.org> >>. All rights
+Copyright (c) 2007-2008, Chris Prather C<< <perigrin@cpan.org> >>. All rights
 reserved.
 
 Portions heavily borrowed from L<Proc::Daemon> which is copyright Earl Hood.
index 67d8d88..3426985 100644 (file)
@@ -89,7 +89,7 @@ Stevan Little  C<< <stevan.little@iinteractive.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Copyright (c) 2007, Chris Prather C<< <perigrin@cpan.org> >>. All rights 
+Copyright (c) 2007-2008, Chris Prather C<< <perigrin@cpan.org> >>. All rights 
 reserved.
 
 This module is free software; you can redistribute it and/or
index 29ddd1f..ca2107f 100644 (file)
@@ -152,7 +152,7 @@ Stevan Little  C<< <stevan.little@iinteractive.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Copyright (c) 2007, Chris Prather C<< <perigrin@cpan.org> >>. All rights 
+Copyright (c) 2007-2008, Chris Prather C<< <perigrin@cpan.org> >>. All rights 
 reserved.
 
 This module is free software; you can redistribute it and/or
index 65df993..0df7738 100644 (file)
@@ -134,7 +134,7 @@ Stevan Little  C<< <stevan.little@iinteractive.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Copyright (c) 2007, Chris Prather C<< <perigrin@cpan.org> >>. All rights
+Copyright (c) 2007-2008, Chris Prather C<< <perigrin@cpan.org> >>. All rights
 reserved.
 
 Portions heavily borrowed from L<Proc::Daemon> which is copyright Earl Hood.
index c5efab6..ec42672 100644 (file)
@@ -165,7 +165,7 @@ Chris Prather  C<< <perigrin@cpan.org> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Copyright (c) 2007, Chris Prather C<< <perigrin@cpan.org> >>. All rights reserved.
+Copyright (c) 2007-2008, Chris Prather C<< <perigrin@cpan.org> >>. 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<perlartistic>.