[libio-all-perl] branch master updated (505ddff -> 19b4b48)

Damyan Ivanov dmn at alioth.debian.org
Sat Oct 19 14:17:45 UTC 2013


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

dmn pushed a change to branch master
in repository libio-all-perl.

      from  505ddff   update changelog
      adds  79d9f97   Imported Upstream version 0.50
       new  a7cbd98   Merge tag 'upstream/0.50'
       new  2b528f6   Imported Upstream version 0.50
       new  af4f854   drop inc/Module/Install stanca, not present in the source any more
       new  a86d39c   bump years of Ingy döt Net copyright
       new  47aa1d2   change Homepage following upstream
       new  3668c37   drop dirname.patch, not applicable anymore
       new  2589cab   claim conformance with Policy 3.9.4
       new  19b4b48   releasing package libio-all-perl version 0.50-1

The 8 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:
 Changes                          |   24 +
 LICENSE                          |    6 +-
 MANIFEST                         |   49 +-
 META.json                        |   47 ++
 META.yml                         |   27 +-
 Makefile.PL                      |   67 +-
 README                           |   89 +-
 README.md                        | 1676 ++++++++++++++++++++++++++++++++++++++
 ToDo                             |   48 ++
 cpanfile                         |    2 +
 debian/changelog                 |   16 +-
 debian/control                   |    4 +-
 debian/copyright                 |    8 +-
 debian/patches/dirname.patch     |   14 -
 debian/patches/series            |    1 -
 dist.ini                         |   18 +
 inc/Module/Install.pm            |  470 -----------
 inc/Module/Install/Base.pm       |   83 --
 inc/Module/Install/Can.pm        |  154 ----
 inc/Module/Install/Fetch.pm      |   93 ---
 inc/Module/Install/GithubMeta.pm |   57 --
 inc/Module/Install/Makefile.pm   |  418 ----------
 inc/Module/Install/Metadata.pm   |  722 ----------------
 inc/Module/Install/Package.pm    |  323 --------
 inc/Module/Install/Win32.pm      |   64 --
 inc/Module/Install/WriteAll.pm   |   63 --
 inc/Module/Package.pm            |   71 --
 lib/IO/All.pm                    |   23 +-
 lib/IO/All.pod                   |   72 +-
 lib/IO/All/Dir.pm                |   23 +-
 lib/IO/All/File.pm               |    3 +-
 lib/IO/All/Filesys.pm            |   35 +
 method_list                      |  163 ++++
 pkg/manifest.skip                |    3 +
 t/IO_All_Test.pm                 |   40 +-
 t/absolute.t                     |    2 +
 t/accept.t                       |    5 +-
 t/all.t                          |    2 +
 t/all2.t                         |    2 +
 t/append.t                       |   13 +-
 t/assert.t                       |   13 +-
 t/assert2.t                      |    9 +-
 t/autotie.t                      |   10 +-
 t/backwards.t                    |    2 +
 t/chdir.t                        |    5 +-
 t/chomp.t                        |    2 +
 t/construct.t                    |    2 +
 t/dbm.t                          |    5 +-
 t/devnull.t                      |    2 +
 t/empty.t                        |    7 +-
 t/encoding.t                     |    2 +
 t/file_spec.t                    |    9 +-
 t/file_subclass.t                |   10 +-
 t/fileno.t                       |    5 +-
 t/glob.t                         |   11 +
 t/import_flags.t                 |    2 +
 t/inline_subclass.t              |   12 +-
 t/input.t                        |    2 +
 t/link.t                         |   13 +-
 t/link2.t                        |    5 +-
 t/lock.t                         |   11 +-
 t/mimetype.t                     |   13 +
 t/mldbm.t                        |    7 +-
 t/new.t                          |    4 +-
 t/os.t                           |   23 +
 t/overload.t                     |   61 +-
 t/print.t                        |    7 +-
 t/println.t                      |    2 +
 t/read.t                         |    2 +
 t/read_write.t                   |    2 +
 t/release-pod-syntax.t           |   15 +
 t/scalar.t                       |    2 +
 t/seek.t                         |    7 +-
 t/separator.t                    |    7 +-
 t/stat.t                         |    2 +
 t/string_open.t                  |    2 +
 t/subtleties.t                   |    9 +-
 t/synopsis1.t                    |    2 +
 t/synopsis2.t                    |    2 +
 t/synopsis3.t                    |    2 +
 t/tie.t                          |    2 +
 t/tie_file.t                     |    9 +-
 unit/append.pl                   |   10 +
 unit/client.pl                   |    5 +
 unit/println.pl                  |    8 +
 unit/server.pl                   |   11 +
 unit/stdio.pl                    |    6 +
 unit/test.pl                     |    5 +
 unit/xxx.pl                      |   12 +
 89 files changed, 2636 insertions(+), 2742 deletions(-)
 create mode 100644 META.json
 create mode 100644 README.md
 create mode 100644 ToDo
 create mode 100644 cpanfile
 delete mode 100644 debian/patches/dirname.patch
 delete mode 100644 debian/patches/series
 create mode 100644 dist.ini
 delete mode 100644 inc/Module/Install.pm
 delete mode 100644 inc/Module/Install/Base.pm
 delete mode 100644 inc/Module/Install/Can.pm
 delete mode 100644 inc/Module/Install/Fetch.pm
 delete mode 100644 inc/Module/Install/GithubMeta.pm
 delete mode 100644 inc/Module/Install/Makefile.pm
 delete mode 100644 inc/Module/Install/Metadata.pm
 delete mode 100644 inc/Module/Install/Package.pm
 delete mode 100644 inc/Module/Install/Win32.pm
 delete mode 100644 inc/Module/Install/WriteAll.pm
 delete mode 100644 inc/Module/Package.pm
 create mode 100644 method_list
 create mode 100644 pkg/manifest.skip
 create mode 100644 t/glob.t
 create mode 100644 t/mimetype.t
 create mode 100644 t/os.t
 create mode 100644 t/release-pod-syntax.t
 create mode 100644 unit/append.pl
 create mode 100644 unit/client.pl
 create mode 100644 unit/println.pl
 create mode 100644 unit/server.pl
 create mode 100644 unit/stdio.pl
 create mode 100644 unit/test.pl
 create mode 100644 unit/xxx.pl

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



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