• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

examples/H04-Mar-2018-10865

lib/Any/H04-Mar-2018-423285

scripts/H04-Mar-2018-3827

t/H04-Mar-2018-84

ChangeLogH A D04-Mar-20182 KiB6950

MANIFESTH A D04-Mar-2018305 1312

META.jsonH A D04-Mar-20181.3 KiB5756

META.ymlH A D04-Mar-2018755 3130

Makefile.PLH A D04-Mar-20181.2 KiB5036

READMEH A D04-Mar-2018788 2618

README.mdH A D04-Mar-20182.2 KiB6344

README

1=== README for Any-Daemon version 0.95
2=   Generated on Sun Mar  4 11:59:55 2018 by OODoc 2.02
3
4There are various ways to install this module:
5
6 (1) if you have a command-line, you can do:
7       perl -MCPAN -e 'install <any package from this distribution>'
8
9 (2) if you use Windows, have a look at http://ppm.activestate.com/
10
11 (3) if you have downloaded this module manually (as root/administrator)
12       gzip -d Any-Daemon-0.95.tar.gz
13       tar -xf Any-Daemon-0.95.tar
14       cd Any-Daemon-0.95
15       perl Makefile.PL
16       make          # optional
17       make test     # optional
18       make install
19
20For usage, see the included manual-pages or
21    http://search.cpan.org/dist/Any-Daemon-0.95/
22
23Please report problems to
24    http://rt.cpan.org/Dist/Display.html?Queue=Any-Daemon
25
26

README.md

1# distribution Any-Daemon
2
3  * My extended documentation: <http://perl.overmeer.net/CPAN/>
4  * Development via GitHub: <https://github.com/markov2/perl5-Any-Daemon>
5  * Download from CPAN: <ftp://ftp.cpan.org/pub/CPAN/authors/id/M/MA/MARKOV/>
6  * Indexed from CPAN: <http://search.cpan.org/~markov/Any-Daemon/>
7    and <https://metacpan.org/release/Any-Daemon>
8
9This is a general daemon classe, optionally supporting Log-Report for
10logging.
11
12Perl provides all (Unix/Linux) operating system features to create
13daemons, but it is not easy to get them in the right order.  This
14module offers all you need, and has seen serious application.
15
16## Development &rarr; Release
17
18Important to know, is that I use an extension on POD to write the manuals.
19The "raw" unprocessed version is visible on GitHub.  It will run without
20problems, but does not contain manual-pages.
21
22Releases to CPAN are different: "raw" documentation gets removed from
23the code and translated into real POD and clean HTML.  This reformatting
24is implemented with the OODoc distribution (A name I chose before OpenOffice
25existed, sorry for the confusion)
26
27Clone from github for the "raw" version.  For instance, when you want
28to contribute a new feature.
29
30On github, you can find the processed version for each release.  But the
31better source is CPAN; to get it installed simply run:
32
33```sh
34   cpan -i Any::Daemon
35```
36
37## Contributing
38
39When you want to contribute to this module, you do not need to provide
40a perfect patch... actually: it is nearly impossible to create a patch
41which I will merge without modification.  Usually, I need to adapt the
42style of code and documentation to my own strict rules.
43
44When you submit an extension, please contribute a set with
45
461. code
47
482. code documentation
49
503. regression tests in t/
51
52**Please note:**
53When you contribute in any way, you agree to transfer the copyrights to
54Mark Overmeer (you will get the honors in the code and/or ChangeLog).
55You also automatically agree that your contribution is released under
56the same license as this project: licensed as perl itself.
57
58## Copyright and License
59
60This project is free software; you can redistribute it and/or modify it
61under the same terms as Perl itself.
62See <http://dev.perl.org/licenses/>
63