[libparanoid-perl] branch master updated (4583c80 -> d575462)

Lucas Kanashiro kanashiro at moszumanska.debian.org
Wed Jun 29 17:56:52 UTC 2016


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

kanashiro pushed a change to branch master
in repository libparanoid-perl.

      from  4583c80   update changelog
       new  ba5f3f7   Add debian/upstream/metadata
       new  abf2d86   Update debian/changelog
      adds  15ae523   Imported Upstream version 2.01
       new  14b229b   Merge tag 'upstream/2.01'
       new  bfb3695   Update debian/changelog
       new  458f538   Remove patches, the patched files does not exist in latest release
       new  0015e8d   debian/tests: remove unexistent files from syntax-skip
       new  865631c   Update years of upstream copyright
       new  36c8fdc   Update Debian packaging copyright
       new  b642aad   Bump debhelper compatibility level to 9
       new  6dd2a5e   Declare compliance with Debian policy 3.9.8
       new  4bfe6f0   debian/control: update build and runtime dependencies, thanks cme
       new  b1c5046   Create patch to fix typo in manpage
       new  d575462   release libparanoid-perl version 2.01-1

The 13 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:
 CHANGELOG                                          |   48 +
 MANIFEST                                           |   58 +-
 META.json                                          |   48 +
 META.yml                                           |   49 +-
 Makefile.PL                                        |   80 +-
 README                                             |   54 +-
 debian/changelog                                   |   18 +-
 debian/compat                                      |    2 +-
 debian/control                                     |   16 +-
 debian/copyright                                   |    3 +-
 debian/patches/0001_fix-typo-in-manpage.patch      |  150 +++
 debian/patches/dont-use-DB_CDB_ALLDB.patch         |   19 -
 debian/patches/series                              |    3 +-
 debian/patches/stop-emailing-in-tests.patch        |   20 -
 debian/tests/pkg-perl/syntax-skip                  |    2 -
 debian/upstream/metadata                           |    4 +
 lib/Paranoid.pm                                    |   50 +-
 lib/Paranoid/Args.pm                               |  212 ++--
 lib/Paranoid/BerkeleyDB.pm                         | 1048 ------------------
 lib/Paranoid/Data.pm                               |  237 ++++-
 lib/Paranoid/Debug.pm                              |  157 +--
 lib/Paranoid/Filesystem.pm                         | 1058 ++++++++----------
 lib/Paranoid/Glob.pm                               |  112 +-
 lib/Paranoid/IO.pm                                 | 1121 ++++++++++++++++++++
 lib/Paranoid/IO/Line.pm                            |  685 ++++++++++++
 lib/Paranoid/IO/Lockfile.pm                        |  249 +++++
 lib/Paranoid/Input.pm                              |  982 +++++------------
 lib/Paranoid/Lockfile.pm                           |  302 ------
 lib/Paranoid/Log.pm                                |  769 +++++---------
 lib/Paranoid/Log/Buffer.pm                         |  193 ++--
 lib/Paranoid/Log/Email.pm                          |  281 -----
 lib/Paranoid/Log/File.pm                           |  297 +++---
 lib/Paranoid/Log/Syslog.pm                         |  317 ------
 lib/Paranoid/Module.pm                             |   48 +-
 lib/Paranoid/Network.pm                            |  185 ++--
 lib/Paranoid/Network/IPv4.pm                       |   69 +-
 lib/Paranoid/Network/IPv6.pm                       |   96 +-
 lib/Paranoid/Network/Socket.pm                     |   18 +-
 lib/Paranoid/Process.pm                            |  262 +++--
 t/01_init_core.t                                   |   44 +-
 t/02_input.t                                       |  167 ---
 t/02_pdebug.t                                      |   27 +
 t/03_io.t                                          |  154 +++
 t/04_berkeleydb.t                                  |  103 --
 t/04_input.t                                       |  178 ++++
 t/05_data.t                                        |  123 +++
 t/06_log.t                                         |   26 -
 t/06_module.t                                      |   28 +
 t/07_glob.t                                        |   80 ++
 t/07_log_buffer.t                                  |   28 -
 t/08_log_file.t                                    |   40 -
 t/09_log_syslog.t                                  |   20 -
 t/10_io_line.t                                     |  157 +++
 t/10_log_email.t                                   |   93 --
 t/{03_args.t => 11_args.t}                         |   57 +-
 t/11_module.t                                      |   33 -
 t/12_lockfile.t                                    |   22 +
 t/14_data.t                                        |   75 --
 t/15_glob.t                                        |   88 --
 t/16_filesystem_pglob.t                            |   43 -
 t/17_filesystem_pmkdir.t                           |   55 -
 t/20_filesystem_pmkdir.t                           |   56 +
 t/20_filesystem_ptouch.t                           |   55 -
 ...esystem_preadDir.t => 21_filesystem_preadDir.t} |   21 +-
 t/{18_filesystem_prm.t => 22_filesystem_prm.t}     |   54 +-
 t/23_filesystem_ptouch.t                           |   54 +
 t/{23_filesystem_misc.t => 24_filesystem_misc.t}   |    4 +-
 ..._filesystem_pchmod.t => 25_filesystem_pchmod.t} |   56 +-
 ..._filesystem_pchown.t => 26_filesystem_pchown.t} |   41 +-
 t/30_log.t                                         |   25 +
 t/31_log_buffer.t                                  |   44 +
 t/32_log_file.t                                    |   77 ++
 t/{30_socket.t => 40_socket.t}                     |    8 +-
 t/{31_ipv4.t => 41_ipv4.t}                         |   72 +-
 t/{32_ipv6.t => 42_ipv6.t}                         |   32 +-
 t/{13_network.t => 43_network.t}                   |   81 +-
 t/{12_process.t => 50_process.t}                   |   44 +-
 t/98_pod_coverage.t                                |    8 +-
 78 files changed, 5747 insertions(+), 5948 deletions(-)
 create mode 100644 META.json
 create mode 100644 debian/patches/0001_fix-typo-in-manpage.patch
 delete mode 100644 debian/patches/dont-use-DB_CDB_ALLDB.patch
 delete mode 100644 debian/patches/stop-emailing-in-tests.patch
 create mode 100644 debian/upstream/metadata
 delete mode 100644 lib/Paranoid/BerkeleyDB.pm
 create mode 100644 lib/Paranoid/IO.pm
 create mode 100644 lib/Paranoid/IO/Line.pm
 create mode 100644 lib/Paranoid/IO/Lockfile.pm
 delete mode 100644 lib/Paranoid/Lockfile.pm
 delete mode 100644 lib/Paranoid/Log/Email.pm
 delete mode 100644 lib/Paranoid/Log/Syslog.pm
 delete mode 100644 t/02_input.t
 create mode 100644 t/02_pdebug.t
 create mode 100644 t/03_io.t
 delete mode 100644 t/04_berkeleydb.t
 create mode 100644 t/04_input.t
 create mode 100644 t/05_data.t
 delete mode 100644 t/06_log.t
 create mode 100644 t/06_module.t
 create mode 100644 t/07_glob.t
 delete mode 100644 t/07_log_buffer.t
 delete mode 100644 t/08_log_file.t
 delete mode 100644 t/09_log_syslog.t
 create mode 100644 t/10_io_line.t
 delete mode 100644 t/10_log_email.t
 rename t/{03_args.t => 11_args.t} (67%)
 delete mode 100644 t/11_module.t
 create mode 100644 t/12_lockfile.t
 delete mode 100644 t/14_data.t
 delete mode 100644 t/15_glob.t
 delete mode 100644 t/16_filesystem_pglob.t
 delete mode 100644 t/17_filesystem_pmkdir.t
 create mode 100644 t/20_filesystem_pmkdir.t
 delete mode 100644 t/20_filesystem_ptouch.t
 rename t/{19_filesystem_preadDir.t => 21_filesystem_preadDir.t} (69%)
 rename t/{18_filesystem_prm.t => 22_filesystem_prm.t} (51%)
 create mode 100644 t/23_filesystem_ptouch.t
 rename t/{23_filesystem_misc.t => 24_filesystem_misc.t} (94%)
 rename t/{21_filesystem_pchmod.t => 25_filesystem_pchmod.t} (56%)
 rename t/{22_filesystem_pchown.t => 26_filesystem_pchown.t} (60%)
 create mode 100644 t/30_log.t
 create mode 100644 t/31_log_buffer.t
 create mode 100644 t/32_log_file.t
 rename t/{30_socket.t => 40_socket.t} (75%)
 rename t/{31_ipv4.t => 41_ipv4.t} (51%)
 rename t/{32_ipv6.t => 42_ipv6.t} (79%)
 rename t/{13_network.t => 43_network.t} (52%)
 rename t/{12_process.t => 50_process.t} (82%)

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



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