[libdevel-stacktrace-withlexicals-perl] branch master updated (f401ee0 -> 06ce008)

Lucas Kanashiro kanashiro-guest at moszumanska.debian.org
Wed Aug 5 04:00:51 UTC 2015


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

kanashiro-guest pushed a change to branch master
in repository libdevel-stacktrace-withlexicals-perl.

      from  f401ee0   update changelog
       new  365a93a   Add debian/upstream/metadata
       new  f5ec205   Update debian/changelog
      adds  c299446   Initial import of Devel::StackTrace::WithLexicals
      adds  bf63533   Extends Devel::StackTrace
      adds  f59d123   We're going to be using PadWalker
      adds  b37cc04   Extend _record_caller_data to add lexical data
      adds  20b5f47   crap
      adds  0746873   Whitespace fix
      adds  956f831   Add some tests
      adds  20f4205   Tests for nested lexicals
      adds  96ce3dd   Make sure eval is handled sanely
      adds  dcc8d21   Let people know who wrote those tests
      adds  a7bd17e   Add a synopsis and synopsis test file
      adds  052d69b   why we skip (eval)
      adds  30e5121   some doc
      adds  3cbb16c   METHODS
      adds  ad4f0cc   Depend on the latest D:ST
      adds  279c80e   Begin bumping to 0.02
      adds  f2b72bd   Tweaks to better test the module
      adds  4e7a6d8   Add a lexical method
      adds  0cee4b6   Grammar fix
      adds  fbb17e5   old tag: 0.02
      adds  4ab3487   Bump to 0.03
      adds  699c5f7   Changes 0.03
      adds  7b89e2f   TAG 0.03
      adds  6b46fe4   Bump to 0.04
      adds  64d76e4   githubmeta
      adds  1904dd5   Don't depend on core modules
      adds  82f9f8d   gitignore
      adds  842d568   Don't version inc
      adds  c09ab8f   No shebang
      adds  273467c   Remove pod boilerplate
      adds  f3b3cc1   Copyright
      adds  f8a7d91   author tweak
      adds  65e620b   Respect no_refs in WithLexicals
      adds  5f895d4   Make sure no_refs works for non-scalars
      adds  20bd94d   Extend basic's tests similarly
      adds  543d1a1   Doc use of no_refs
      adds  2b4b967   5.8.1 dep
      adds  639fea9   Bump to 0.05
      adds  85a5592   Devel::StackTrace renamed _ref_as_string to _ref_to_string
      adds  c8e771d   Bump to 0.06
      adds  fbbb3c7   Depend on PadWalker 1.92
      adds  0d0be86   Depend on Devel::StackTrace 1.25 [rt.cpan.org #61715]
      adds  99a58d8   0.07 Changes
      adds  7bcaa56   Bump to 0.07
      adds  34dd86f   Pass message and indent to Frames
      adds  1e66124   0.08 and its Changes
      adds  7e08ef7   Remove 991-bad-utf8 test, it was removed upstream too
      adds  8311613   gitignore MYMETA.yml
      adds  6347e7a   0.09 and its changes
      adds  49a5ec5   0.10 and its Changes
      adds  01c4006   typo fix
      adds  5ccb4ce   Merge pull request #2 from dsteinbrunner/patch-1
      adds  46eb5db   make it work (only) with Devel::StackTrace 2.00
      adds  860974d   Merge pull request #3 from NET-A-PORTER/master
      adds  d11fc8f   actually fix walker offset calculation
      adds  0d8a94d   Merge pull request #4 from NET-A-PORTER/master
      adds  03bd270   ignore MYMETA.json
      adds  ae53f84   2.00 and its changes
      adds  af252dc   update POD documentation with full working example
      adds  423a8cd   Merge pull request #5 from tinypigdotcom/synopsis_update
      adds  d0ea35b   2.01 and its Changes
      adds  e268b7f   Imported Upstream version 2.01
       new  33ff267   Merge tag 'upstream/2.01'
       new  2af5264   Update debian/changelog
       new  48d5ea9   Update changelog info generated by dpt
       new  e91ce95   Set debhelper >= 9
       new  25cfb92   Declare compliance with Debian policy 3.9.6
       new  8587c3a   Add autopkgtest-pkg-perl
       new  6f42d8c   Update version of dependencies
       new  06ce008   Release libdevel-stacktrace-withlexicals-perl 2.01-1 to unstable

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:
 Changes                                    |   7 +
 MANIFEST                                   |   9 +-
 META.yml                                   |  15 +-
 Makefile.PL                                |   4 +-
 debian/changelog                           |  14 +-
 debian/compat                              |   2 +-
 debian/control                             |  13 +-
 debian/upstream/metadata                   |   5 +
 inc/Module/Install.pm                      |   6 +-
 inc/Module/Install/Base.pm                 |   2 +-
 inc/Module/Install/Can.pm                  |  85 ++++-
 inc/Module/Install/Fetch.pm                |   2 +-
 inc/Module/Install/GithubMeta.pm           |  10 +-
 inc/Module/Install/Makefile.pm             |  27 +-
 inc/Module/Install/Metadata.pm             |  29 +-
 inc/Module/Install/Win32.pm                |   2 +-
 inc/Module/Install/WriteAll.pm             |   2 +-
 lib/Devel/StackTrace/WithLexicals.pm       | 191 ++++------
 lib/Devel/StackTrace/WithLexicals/Frame.pm |  18 +-
 t/000-synopsis.t                           |   2 +-
 t/001-basic.t                              |   4 +-
 t/002-nested.t                             |   2 +-
 t/003-eval.t                               |   2 +-
 t/990-basic.t                              | 390 --------------------
 t/from-devel-stacktrace/01basic.t          | 573 +++++++++++++++++++++++++++++
 t/from-devel-stacktrace/02-bad-utf8.t      |  40 ++
 t/from-devel-stacktrace/03-message.t       |  34 ++
 t/from-devel-stacktrace/04-indent.t        |  35 ++
 t/from-devel-stacktrace/06-dollar-at.t     |  24 ++
 t/from-devel-stacktrace/07-no-args.t       |  45 +++
 t/from-devel-stacktrace/08-filter-early.t  |  33 ++
 t/from-devel-stacktrace/09-skip-frames.t   |  52 +++
 32 files changed, 1102 insertions(+), 577 deletions(-)
 create mode 100644 debian/upstream/metadata
 delete mode 100644 t/990-basic.t
 create mode 100644 t/from-devel-stacktrace/01basic.t
 create mode 100644 t/from-devel-stacktrace/02-bad-utf8.t
 create mode 100644 t/from-devel-stacktrace/03-message.t
 create mode 100644 t/from-devel-stacktrace/04-indent.t
 create mode 100644 t/from-devel-stacktrace/06-dollar-at.t
 create mode 100644 t/from-devel-stacktrace/07-no-args.t
 create mode 100644 t/from-devel-stacktrace/08-filter-early.t
 create mode 100644 t/from-devel-stacktrace/09-skip-frames.t

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



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