[libref-util-perl] branch master updated (10a40cc -> f964298)

gregor herrmann gregoa at debian.org
Wed Nov 15 20:06:32 UTC 2017


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

gregoa pushed a change to branch master
in repository libref-util-perl.

      from  10a40cc   releasing package libref-util-perl version 0.113-1
      adds  7142eb8   We already have this
      adds  6a5e57e   do not move xt/foo/* to xt/foo_*
      adds  1fb4fb6   do not prune dist.ini from the shipped dist
      adds  54adb7d   there is no script/ or share/ in this distribution
      adds  868c8cb   include current dzil config in META.*, for ease in debugging
      adds  77beebe   automatically calculate the version from latest git tag; bumps version to 0.114
      adds  70c2e7b   support running the code locally, without $VERSION
      adds  0a40185   bring back [MakeMaker] (for TestRunner etc)
      adds  b244cff   ignore this build artifact too
      adds  1d0c41b   Merge branch 'topic/fix-dzil' from karenetheridge/ref-util
      adds  92dded3   Add a Pure-Perl implementation
      adds  c96d3ac   It's ok to use CORE::ref on unblessed values
      adds  bf0458d   Remove needless 'no warnings' declarations
      adds  6fdb0b9   Ref::Util::PP: prepare to pass toomany.t
      adds  ede0f9a   t/all-permutations.t: use done_testing() not test counts
      adds  1eed74e   t/all-permutations.t: ensure non-references are false everywhere
      adds  23c888a   t/all-permutations.t: test values blessed into "0"
      adds  1ce4b1b   PP is_ref(): handle refs blessed into "0"
      adds  1c1e03e   Remove XS implementation
      adds  6928062   Dynamic prereq to use Ref::Util::XS when possible
      adds  f787112   Uninstall older Ref::Util on upgrade
      adds  cc17bce   Add ether++ to the authors list
      adds  d2179aa   Fix tests when running against an installed Ref::Util::XS
      adds  20a66a9   v0.200
      adds  db70834   fix whitespace in Makefile snippet (issue #39)
      adds  9ef2352   remove misuse of DynamicPrereqs for unrelated makefile snippet
      adds  25d9134   Ref::Util::PP: move misplaced sub definition
      adds  f4996c4   v0.201
      adds  39d69ec   Fix typo in Changes (sorry, ether!)
      adds  09a08ff   Add author dep on ExtUtils::HasCompiler
      adds  594963e   Fix is_plain_formatref(), is_blessed_formatref() error messages
      adds  e3cc40a   Ref::Util::PP: make is_*_formatref() faster
      adds  1e40311   you need to be this -- high to go on this ride
      adds  0d47807   ensure the perl prereq stays at 5.6
      adds  ebb0005   Allow forcing use of the PP backend
      adds  76bbf4d   Always run pure-Perl tests, even if XS backend is available
      adds  248c298   Don't use Devel::PPPort in dev-only Makefile.PL
      adds  1291c82   t/all-permutations.t: ignore format refs on 5.6
      adds  25530ef   Add more Perl versions to Travis test runs
      adds  09354dd   Depend on Test::More new enough for subtest()
      adds  c8ce1b7   Fix regexps on 5.8 and 5.10
      adds  300a853   Fix regexps on post-5.10
      adds  989f5d0   t/all-permutations.t: remove more format-ref tests on 5.6
      adds  9c11401   Install Readonly in Travis builds
      adds  7416098   Don't bother testing threaded Perls under Travis
      adds  e367bf4   Don't run author/release tests on Travis 5.6.2 builds
      adds  f066d68   Match XS behaviour for \v1.2.3 and \sub{}
      adds  d43aae9   Ref::Util::PP: use re::is_regexp() where possible
      adds  52c7740   Update documentation for PP/XS split
      adds  c32433d   v0.202
      adds  fdf63db   Rename implementation-selection environment variable
      adds  58f48fe   v0.203
      adds  66389a0   New upstream version 0.203
       new  8890ac4   Update upstream source from tag 'upstream/0.203'
       new  e2c5162   Update debian/changelog
       new  e1773a8   Change architecture to all, this is pure perl now.
       new  b020879   Update copyright/license information about third-party files.
       new  6a87b16   Reformat debian/control with cme
       new  0b6e80b   Declare compliance with Debian Policy 4.1.1.
       new  1d26fc1   Update Build-Depends-Indep and Recommends.
       new  8d9fdd1   Split Build-Depends and Build-Depends-Indep.
       new  f964298   update changelog

The 9 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                                         |   27 +
 MANIFEST                                        |   18 +-
 META.json                                       |  551 +-
 META.yml                                        |  419 +-
 Makefile.PL                                     |  149 +-
 README                                          |    4 +-
 Util.xs                                         |  260 -
 cpanfile                                        |    4 +-
 debian/changelog                                |   14 +
 debian/control                                  |   20 +-
 debian/copyright                                |   10 +-
 debian/rules                                    |    2 -
 dist.ini                                        |   89 +
 inc/ExtUtils/HasCompiler.pm                     |  217 +
 inc/ExtUtils/MakeMaker/Dist/Zilla/Develop.pm    |  189 +
 lib/Ref/Util.pm                                 |  214 +-
 lib/Ref/Util/PP.pm                              |  310 +
 ppport.h                                        | 7908 -----------------------
 t/00-report-prereqs.dd                          |   15 +-
 t/00-report-prereqs.t                           |   18 +-
 t/all-permutations.t                            |  180 +-
 t/pureperl.t                                    |   37 +
 t/release-distmeta.t                            |   14 -
 t/toomany.t                                     |   10 +-
 t/author-00-compile.t => xt/author/00-compile.t |   15 +-
 t/author-no-tabs.t => xt/author/no-tabs.t       |   10 +-
 t/author-pod-syntax.t => xt/author/pod-syntax.t |    8 -
 xt/release/distmeta.t                           |    6 +
 xt/release/minimum-version.t                    |    8 +
 29 files changed, 2255 insertions(+), 8471 deletions(-)
 delete mode 100644 Util.xs
 create mode 100644 dist.ini
 create mode 100644 inc/ExtUtils/HasCompiler.pm
 create mode 100644 inc/ExtUtils/MakeMaker/Dist/Zilla/Develop.pm
 create mode 100644 lib/Ref/Util/PP.pm
 delete mode 100644 ppport.h
 create mode 100644 t/pureperl.t
 delete mode 100644 t/release-distmeta.t
 rename t/author-00-compile.t => xt/author/00-compile.t (89%)
 rename t/author-no-tabs.t => xt/author/no-tabs.t (78%)
 rename t/author-pod-syntax.t => xt/author/pod-syntax.t (56%)
 create mode 100644 xt/release/distmeta.t
 create mode 100644 xt/release/minimum-version.t

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



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