[libtype-tiny-perl] branch master updated (dea8b0a -> 0c503d0)

Jonas Smedegaard dr at jones.dk
Wed Feb 1 01:57:07 UTC 2017


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

js pushed a change to branch master
in repository libtype-tiny-perl.

      from  dea8b0a   update changelog
      adds  fad45a0   Added tag 1.000005 for changeset e95ef88f9a67
      adds  e088912   fix for RT#114386 from ETHER
      adds  2e57e4e   bump version, update changelog
      adds  f41bf99   copyright dates
      adds  c1ac68f   update travis stuff
      adds  4187018   New upstream version 1.000006
       new  8fd982a   Merge tag 'upstream/1.000006'
       new  d6c54b9   Update watch file: Bump to version 4. Track only MetaCPAN URL. Mention gbp import-orig --uscan in usage comment. Tighten version regex.
       new  e3bd6f7   Update git-buildpage config: Avoid git- prefix. Filter any .git* file.
       new  fd4a712   Sync rules with control: Update Test::Tester build dependency.
       new  66eb3ac   Modernize Vcs-* fields: Use https protocol. Use git subdir (not cgit). Add .git suffix for Vcs-Git URL.
       new  a20476e   Declare compliance with Debian Policy 3.9.8.
       new  1e1b953   Bump debhelper compatibility level to 9.
       new  9411aae   Update copyright info: Use License-Grant and License-Reference fields. Thanks to Ben Finney.
       new  f1e58c8   Add lintian override regarding license in License-Reference field. See bug#786450.
       new  17f1327   Update copyright info: Extend coverage of Debian packaging.
       new  f410abd   Update copyright info: Extend coverage for upstream authors.
       new  9993167   Update package relations: Favor recent perl over (recent libtest-simple-perl over) libtest-tester-perl.
       new  0c503d0   Prepare for release: Update changelog, control file, and copyright hints.

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:
 COPYRIGHT                                          |  75 ++--
 CREDITS                                            |   1 +
 Changes                                            |   8 +
 LICENSE                                            |   6 +-
 META.json                                          |  70 ++--
 META.yml                                           |  70 ++--
 Makefile.PL                                        |  70 ++--
 README                                             |   2 +-
 SIGNATURE                                          | 428 ++++++++++----------
 debian/changelog                                   |  36 +-
 debian/compat                                      |   2 +-
 debian/control                                     |  10 +-
 debian/control.in                                  |   6 +-
 debian/copyright                                   | 145 +++----
 debian/copyright_hints                             | 184 +++++----
 debian/gbp.conf                                    |   4 +-
 debian/rules                                       |   5 +-
 debian/source/lintian-overrides                    |   5 +
 debian/watch                                       |   7 +-
 doap.ttl                                           | 448 +++++++++++----------
 examples/benchmark-coercions.pl                    |   2 +-
 examples/benchmark-constraints.pl                  |   2 +-
 examples/benchmark-param-validation.pl             |   2 +-
 lib/Devel/TypeTiny/Perl56Compat.pm                 |   4 +-
 lib/Devel/TypeTiny/Perl58Compat.pm                 |   4 +-
 lib/Error/TypeTiny.pm                              |   4 +-
 lib/Error/TypeTiny/Assertion.pm                    |   4 +-
 lib/Error/TypeTiny/Compilation.pm                  |   4 +-
 lib/Error/TypeTiny/WrongNumberOfParameters.pm      |   4 +-
 lib/Eval/TypeTiny.pm                               |   4 +-
 lib/Reply/Plugin/TypeTiny.pm                       |   4 +-
 lib/Test/TypeTiny.pm                               |   4 +-
 lib/Type/Coercion.pm                               |   4 +-
 lib/Type/Coercion/FromMoose.pm                     |   4 +-
 lib/Type/Coercion/Union.pm                         |   4 +-
 lib/Type/Library.pm                                |   4 +-
 lib/Type/Params.pm                                 |   4 +-
 lib/Type/Parser.pm                                 |   4 +-
 lib/Type/Registry.pm                               |   4 +-
 lib/Type/Tiny.pm                                   |   4 +-
 lib/Type/Tiny/Class.pm                             |   4 +-
 lib/Type/Tiny/Duck.pm                              |   4 +-
 lib/Type/Tiny/Enum.pm                              |   4 +-
 lib/Type/Tiny/Intersection.pm                      |   4 +-
 lib/Type/Tiny/Manual.pod                           |   2 +-
 lib/Type/Tiny/Manual/Coercions.pod                 |   2 +-
 lib/Type/Tiny/Manual/Libraries.pod                 |   2 +-
 lib/Type/Tiny/Manual/Optimization.pod              |   2 +-
 lib/Type/Tiny/Manual/Params.pod                    |   2 +-
 lib/Type/Tiny/Manual/Policies.pod                  |   2 +-
 lib/Type/Tiny/Manual/UsingWithMoo.pod              |   2 +-
 lib/Type/Tiny/Manual/UsingWithMoose.pod            |   2 +-
 lib/Type/Tiny/Manual/UsingWithMouse.pod            |   2 +-
 lib/Type/Tiny/Manual/UsingWithOther.pod            |   2 +-
 lib/Type/Tiny/Role.pm                              |   4 +-
 lib/Type/Tiny/Union.pm                             |   4 +-
 lib/Type/Tiny/_HalfOp.pm                           |   4 +-
 lib/Type/Utils.pm                                  |   4 +-
 lib/Types/Common/Numeric.pm                        |   4 +-
 lib/Types/Common/String.pm                         |   4 +-
 lib/Types/Standard.pm                              |   4 +-
 lib/Types/Standard/ArrayRef.pm                     |   4 +-
 lib/Types/Standard/Dict.pm                         |   4 +-
 lib/Types/Standard/HashRef.pm                      |   4 +-
 lib/Types/Standard/Map.pm                          |   4 +-
 lib/Types/Standard/ScalarRef.pm                    |   4 +-
 lib/Types/Standard/Tuple.pm                        |   4 +-
 lib/Types/TypeTiny.pm                              |   4 +-
 t/00-begin.t                                       |   2 +-
 t/01-compile.t                                     |   2 +-
 t/02-api.t                                         |   2 +-
 t/03-leak.t                                        |   2 +-
 t/20-unit/Devel-TypeTiny-Perl56Compat/basic.t      |   2 +-
 t/20-unit/Devel-TypeTiny-Perl58Compat/basic.t      |   2 +-
 t/20-unit/Error-TypeTiny-Assertion/basic.t         |   2 +-
 t/20-unit/Error-TypeTiny-Compilation/basic.t       |   2 +-
 .../Error-TypeTiny-WrongNumberOfParameters/basic.t |   2 +-
 t/20-unit/Error-TypeTiny/basic.t                   |   2 +-
 t/20-unit/Error-TypeTiny/stacktrace.t              |   2 +-
 t/20-unit/Eval-TypeTiny/basic.t                    |   2 +-
 t/20-unit/Eval-TypeTiny/fallback-aliases.t         |   2 +-
 t/20-unit/Eval-TypeTiny/lexical-subs.t             |   2 +-
 t/20-unit/Test-TypeTiny/basic.t                    |   2 +-
 t/20-unit/Test-TypeTiny/extended.t                 |   2 +-
 t/20-unit/Test-TypeTiny/matchfor.t                 |   2 +-
 t/20-unit/Type-Coercion-FromMoose/basic.t          |   2 +-
 t/20-unit/Type-Coercion-FromMoose/errors.t         |   2 +-
 t/20-unit/Type-Coercion-Union/basic.t              |   2 +-
 t/20-unit/Type-Coercion/basic.t                    |   2 +-
 t/20-unit/Type-Coercion/esoteric.t                 |   2 +-
 t/20-unit/Type-Coercion/frozen.t                   |   2 +-
 t/20-unit/Type-Coercion/inlining.t                 |   2 +-
 t/20-unit/Type-Coercion/parameterized.t            |   2 +-
 t/20-unit/Type-Coercion/smartmatch.t               |   2 +-
 t/20-unit/Type-Coercion/typetiny-constructor.t     |   2 +-
 t/20-unit/Type-Library/assert.t                    |   2 +-
 t/20-unit/Type-Library/errors.t                    |   2 +-
 t/20-unit/Type-Library/inheritance.t               |   2 +-
 t/20-unit/Type-Library/is.t                        |   2 +-
 t/20-unit/Type-Library/to.t                        |   2 +-
 t/20-unit/Type-Library/types.t                     |   2 +-
 t/20-unit/Type-Params/badsigs.t                    |   2 +-
 t/20-unit/Type-Params/carping.t                    |   2 +-
 t/20-unit/Type-Params/coerce.t                     |   2 +-
 t/20-unit/Type-Params/methods.t                    |   2 +-
 t/20-unit/Type-Params/mixednamed.t                 |   2 +-
 t/20-unit/Type-Params/multisig.t                   |   2 +-
 t/20-unit/Type-Params/named.t                      |   2 +-
 t/20-unit/Type-Params/noninline.t                  |   2 +-
 t/20-unit/Type-Params/optional.t                   |   4 +-
 t/20-unit/Type-Params/positional.t                 |   2 +-
 t/20-unit/Type-Params/slurpy.t                     |   2 +-
 t/20-unit/Type-Parser/basic.t                      |   2 +-
 t/20-unit/Type-Parser/moosextypes.t                |   2 +-
 t/20-unit/Type-Registry/automagic.t                |   2 +-
 t/20-unit/Type-Registry/basic.t                    |   2 +-
 t/20-unit/Type-Registry/methods.t                  |   2 +-
 t/20-unit/Type-Registry/moosextypes.t              |   2 +-
 t/20-unit/Type-Registry/mousextypes.t              |   2 +-
 t/20-unit/Type-Tiny-Class/basic.t                  |   2 +-
 t/20-unit/Type-Tiny-Class/errors.t                 |   2 +-
 t/20-unit/Type-Tiny-Class/plus-constructors.t      |   2 +-
 t/20-unit/Type-Tiny-Duck/basic.t                   |   2 +-
 t/20-unit/Type-Tiny-Duck/errors.t                  |   2 +-
 t/20-unit/Type-Tiny-Enum/basic.t                   |   2 +-
 t/20-unit/Type-Tiny-Enum/errors.t                  |   2 +-
 t/20-unit/Type-Tiny-Intersection/basic.t           |   2 +-
 t/20-unit/Type-Tiny-Intersection/errors.t          |   2 +-
 t/20-unit/Type-Tiny-Role/basic.t                   |   2 +-
 t/20-unit/Type-Tiny-Role/errors.t                  |   2 +-
 t/20-unit/Type-Tiny-Union/basic.t                  |   2 +-
 t/20-unit/Type-Tiny-Union/errors.t                 |   2 +-
 t/20-unit/Type-Tiny-_HalfOp/overload-precedence.t  |   2 +-
 t/20-unit/Type-Tiny/arithmetic.t                   |   2 +-
 t/20-unit/Type-Tiny/basic.t                        |   2 +-
 t/20-unit/Type-Tiny/coercion-modifiers.t           |   2 +-
 t/20-unit/Type-Tiny/esoteric.t                     |   2 +-
 t/20-unit/Type-Tiny/my-methods.t                   |   2 +-
 t/20-unit/Type-Tiny/parameterization.t             |   2 +-
 t/20-unit/Type-Tiny/shortcuts.t                    |   2 +-
 t/20-unit/Type-Tiny/smartmatch.t                   |   2 +-
 t/20-unit/Type-Tiny/syntax.t                       |   2 +-
 t/20-unit/Type-Tiny/to-moose.t                     |   2 +-
 t/20-unit/Type-Tiny/to-mouse.t                     |   2 +-
 t/20-unit/Type-Utils/classifier.t                  |   2 +-
 t/20-unit/Type-Utils/dwim-both.t                   |   2 +-
 t/20-unit/Type-Utils/dwim-moose.t                  |   2 +-
 t/20-unit/Type-Utils/dwim-mouse.t                  |   2 +-
 t/20-unit/Type-Utils/match-on-type.t               |   2 +-
 t/20-unit/Type-Utils/warnings.t                    |   2 +-
 t/20-unit/Types-Common-Numeric/basic.t             |   2 +-
 t/20-unit/Types-Common-String/basic.t              |   2 +-
 t/20-unit/Types-Common-String/coerce.t             |   2 +-
 t/20-unit/Types-Common-String/unicode.t            |   2 +-
 t/20-unit/Types-Standard/basic.t                   |   2 +-
 t/20-unit/Types-Standard/deep-coercions.t          |   2 +-
 t/20-unit/Types-Standard/lockdown.t                |   2 +-
 t/20-unit/Types-Standard/mxtmlb-alike.t            |   2 +-
 t/20-unit/Types-Standard/optlist.t                 |   2 +-
 t/20-unit/Types-Standard/overload.t                |   2 +-
 t/20-unit/Types-Standard/strmatch.t                |   2 +-
 t/20-unit/Types-Standard/structured.t              |   2 +-
 t/20-unit/Types-Standard/tied.t                    |   2 +-
 t/20-unit/Types-TypeTiny/basic.t                   |   2 +-
 t/20-unit/Types-TypeTiny/coercion.t                |   2 +-
 t/20-unit/Types-TypeTiny/meta.t                    |   2 +-
 t/30-integration/Class-InsideOut/basic.t           |   2 +-
 t/30-integration/Exporter-Tiny/basic.t             |   2 +-
 t/30-integration/Exporter-Tiny/installer.t         |   2 +-
 t/30-integration/Exporter-Tiny/role-conflict.t     |   2 +-
 t/30-integration/Function-Parameters/basic.t       |   2 +-
 t/30-integration/Kavorka/basic.t                   |   2 +-
 t/30-integration/Moo/basic.t                       |   2 +-
 t/30-integration/Moo/coercion-inlining-avoidance.t |   2 +-
 t/30-integration/Moo/coercion.t                    |   2 +-
 t/30-integration/Moo/exceptions.t                  |   2 +-
 t/30-integration/Moo/inflation.t                   |   2 +-
 t/30-integration/Moo/inflation2.t                  |   2 +-
 t/30-integration/Moops/basic.t                     |   2 +-
 t/30-integration/Moops/library-keyword.t           |   2 +-
 t/30-integration/Moose/accept-moose-types.t        |   2 +-
 t/30-integration/Moose/basic.t                     |   2 +-
 t/30-integration/Moose/coercion.t                  |   2 +-
 t/30-integration/Moose/inflate-then-inline.t       |   2 +-
 t/30-integration/Moose/native-attribute-traits.t   |   2 +-
 t/30-integration/MooseX-Getopt/coercion.t          |   2 +-
 t/30-integration/MooseX-Types/basic.t              |   2 +-
 t/30-integration/MooseX-Types/extending.t          |   2 +-
 t/30-integration/MooseX-Types/more.t               |   2 +-
 t/30-integration/Mouse/basic.t                     |   2 +-
 t/30-integration/Mouse/coercion.t                  |   2 +-
 t/30-integration/MouseX-Types/basic.t              |   2 +-
 t/30-integration/MouseX-Types/extending.t          |   2 +-
 t/30-integration/Object-Accessor/basic.t           |   2 +-
 t/30-integration/Return-Type/basic.t               |   2 +-
 t/30-integration/Sub-Quote/basic.t                 |   2 +-
 t/30-integration/Sub-Quote/unquote-coercions.t     |   2 +-
 t/30-integration/Sub-Quote/unquote-constraints.t   |   2 +-
 t/30-integration/Switcheroo/basic.t                |   2 +-
 t/30-integration/Type-Tie/basic.t                  |   2 +-
 t/30-integration/Validation-Class-Simple/archaic.t |   2 +-
 t/30-integration/Validation-Class-Simple/basic.t   |   2 +-
 t/30-integration/match-simple/basic.t              |   2 +-
 t/40-regression/73f51e2d.pl                        |   2 +-
 t/40-regression/73f51e2d.t                         |   2 +-
 t/40-regression/gh1.t                              |   2 +-
 t/40-regression/rt85911.t                          |   2 +-
 t/40-regression/rt86004.t                          |   2 +-
 t/40-regression/rt86233.t                          |   2 +-
 t/40-regression/rt86239.t                          |   2 +-
 t/40-regression/rt90096-2.t                        |   2 +-
 t/40-regression/rt90096.t                          |   2 +-
 t/40-regression/rt92571-2.t                        |   2 +-
 t/40-regression/rt92571.t                          |   2 +-
 t/40-regression/rt92591.t                          |   2 +-
 t/40-regression/rt94196.t                          |   2 +-
 t/40-regression/rt97684.t                          |   2 +-
 t/40-regression/rt98113.t                          |   2 +-
 t/40-regression/ttxs-gh1.t                         |   2 +-
 t/99-moose-std-types-test.t                        |   2 +-
 t/lib/BiggerLib.pm                                 |   2 +-
 t/lib/DemoLib.pm                                   |   2 +-
 222 files changed, 1051 insertions(+), 1007 deletions(-)
 create mode 100644 debian/source/lintian-overrides

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



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