[libmoosex-daemonize-perl] branch master updated (23f6258 -> d314cbf)

gregor herrmann gregoa at debian.org
Wed May 7 19:37:18 UTC 2014


This is an automated email from the git hooks/post-receive script.

gregoa pushed a change to branch master
in repository libmoosex-daemonize-perl.

      from  23f6258   update changelog
      adds  2e24846   Imported Upstream version 0.18
       new  5940740   Merge tag 'upstream/0.18'
      adds  610f8c8   Imported Upstream version 0.19
       new  753349d   Merge tag 'upstream/0.19'
       new  3054e12   New upstream release.
       new  ce76792   Drop spelling.patch, merged upstream.
       new  f2791ec   Update debian/copyright.
       new  30b82e9   Update (build) dependencies.
       new  e80d779   Add patch to turn off check that the OS is not Windows.
       new  fe95b21   Install new upstream documentation.
       new  a4ae8bf   Add upstream recommendation to use Daemon::Control to long description.
       new  d314cbf   releasing package libmoosex-daemonize-perl version 0.19-1

The 10 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 Build.PL                                           |   5 +
 CONTRIBUTING                                       |  78 +++
 Changes                                            |   7 +-
 IDEAS                                              |  16 +
 INSTALL                                            |  44 ++
 LICENSE                                            |   6 +-
 MANIFEST                                           |  41 +-
 MANIFEST.SKIP                                      |  25 -
 META.json                                          | 608 +++++++++++++++++----
 META.yml                                           | 502 +++++++++++++----
 Makefile.PL                                        | 145 ++++-
 README                                             |   6 +-
 README.md                                          | 281 ++++++++++
 debian/changelog                                   |  17 +-
 debian/compat                                      |   2 +-
 debian/control                                     |  20 +-
 debian/copyright                                   |  18 +-
 debian/libmoosex-daemonize-perl.docs               |   2 +
 debian/patches/series                              |   2 +-
 debian/patches/spelling.patch                      |  47 --
 .../patches/we-know-that-we-are-not-windows.patch  |  21 +
 dist.ini                                           |  65 +--
 examples/moose_room.pl                             | 120 ++++
 inc/Devel/AssertOS.pm                              | 104 ----
 inc/Devel/AssertOS/MSWin32.pm                      |  29 -
 inc/Devel/CheckOS.pm                               | 335 ------------
 lab/dec.pl                                         |  29 +
 lib/MooseX/Daemonize.pm                            |  24 +-
 lib/MooseX/Daemonize/Core.pm                       |  25 +-
 lib/MooseX/Daemonize/Pid.pm                        |  12 +-
 lib/MooseX/Daemonize/Pid/File.pm                   |  11 +-
 lib/MooseX/Daemonize/WithPidFile.pm                |  13 +-
 lib/Test/MooseX/Daemonize.pm                       |  47 +-
 t/{00.load.t => 00-load.t}                         |   0
 t/00-report-prereqs.t                              | 212 +++++++
 t/{01.filecreate.t => 01-filecreate.t}             |  10 +-
 t/{02.stdout.t => 02-stdout.t}                     |   6 +-
 t/{10.pidfile.t => 10-pidfile.t}                   |  16 +-
 t/{20.core.t => 20-core.t}                         |   0
 t/{21.core-back-compat.t => 21-core-back-compat.t} |   0
 t/{30.with_pid_file.t => 30-with-pid-file.t}       |  26 +-
 xt/author/00-compile.t                             |  82 +++
 xt/release/changes_has_content.t                   |  41 ++
 xt/release/cpan-changes.t                          |  11 +
 xt/release/distmeta.t                              |   8 +
 xt/release/eol.t                                   |   8 +
 xt/release/kwalitee.t                              |   4 +
 xt/release/minimum-version.t                       |   8 +
 xt/release/mojibake.t                              |  12 +
 xt/release/no-tabs.t                               |  20 +
 xt/release/pod-coverage.t                          |  14 +
 xt/release/pod-syntax.t                            |   8 +
 xt/release/portability.t                           |  11 +
 xt/release/test-version.t                          |  22 +
 xt/release/unused-vars.t                           |   8 +
 55 files changed, 2273 insertions(+), 961 deletions(-)
 create mode 100644 Build.PL
 create mode 100644 CONTRIBUTING
 create mode 100644 IDEAS
 create mode 100644 INSTALL
 delete mode 100644 MANIFEST.SKIP
 create mode 100644 README.md
 create mode 100644 debian/libmoosex-daemonize-perl.docs
 delete mode 100644 debian/patches/spelling.patch
 create mode 100644 debian/patches/we-know-that-we-are-not-windows.patch
 create mode 100644 examples/moose_room.pl
 delete mode 100644 inc/Devel/AssertOS.pm
 delete mode 100644 inc/Devel/AssertOS/MSWin32.pm
 delete mode 100644 inc/Devel/CheckOS.pm
 create mode 100755 lab/dec.pl
 rename t/{00.load.t => 00-load.t} (100%)
 create mode 100644 t/00-report-prereqs.t
 rename t/{01.filecreate.t => 01-filecreate.t} (94%)
 rename t/{02.stdout.t => 02-stdout.t} (90%)
 rename t/{10.pidfile.t => 10-pidfile.t} (85%)
 rename t/{20.core.t => 20-core.t} (100%)
 rename t/{21.core-back-compat.t => 21-core-back-compat.t} (100%)
 rename t/{30.with_pid_file.t => 30-with-pid-file.t} (89%)
 create mode 100644 xt/author/00-compile.t
 create mode 100644 xt/release/changes_has_content.t
 create mode 100644 xt/release/cpan-changes.t
 create mode 100644 xt/release/distmeta.t
 create mode 100644 xt/release/eol.t
 create mode 100644 xt/release/kwalitee.t
 create mode 100644 xt/release/minimum-version.t
 create mode 100644 xt/release/mojibake.t
 create mode 100644 xt/release/no-tabs.t
 create mode 100644 xt/release/pod-coverage.t
 create mode 100644 xt/release/pod-syntax.t
 create mode 100644 xt/release/portability.t
 create mode 100644 xt/release/test-version.t
 create mode 100644 xt/release/unused-vars.t

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libmoosex-daemonize-perl.git



More information about the Pkg-perl-cvs-commits mailing list