[libhttp-throwable-perl] branch master updated (898019e -> 2517c28)

Jonas Smedegaard dr at jones.dk
Tue Aug 11 09:55:28 UTC 2015


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

js pushed a change to branch master
in repository libhttp-throwable-perl.

      from  898019e   update changelog
      adds  eda97f4   add a 308 Permanent Redirect
      adds  b7a1c8c   changelog for 308 status
      adds  7cd7290   make room for $VERSION
      adds  7b77be2   v0.019
      adds  cefa2e6   a 304 response does not need a Location header
      adds  7eac1d2   v0.020
      adds  721bd05   replace does_ok to remove Test::Moose dependency
      adds  159a49d   switch Moosey types to Types::Standard
      adds  40f654d   Factory: build packages w/ Package::Variant instead of Moose
      adds  41e4c0a   ::Role::Generic: explicitly declare confess
      adds  4595331   switch from Moose to Moo
      adds  2b280a0   use namespace::clean to clean ::Factory's imports
      adds  a970140   update required module list in README.md
      adds  e6f1be0   bump Moo dep to 1.004003 for proper stringifcation (haarg++)
      adds  ced58f3   Factory: don't use Moo::Object as default base
      adds  690fa12   Factory is never instantiated, no need to use Moo
      adds  3557c29   unimport Moo::Role when we are done with it
      adds  5a2bbfd   v0.021
      adds  4792d23   changelog for production release
      adds  3c6c7e5   Merge branch 'transmoogrification'
      adds  8795db9   v0.022
      adds  6acf52c   Imported Upstream version 0.022
       new  ea4fe59   Merge tag 'upstream/0.022'
       new  99fbb9b   Sync control.in with control: Update Vcs-Browser URL to use cgit web frontend.
       new  cffb793   Declare compliance with Debian Policy 3.9.6.
       new  09fc6e9   Bump debhelper compatibility level to 9.
       new  8f728ff   Tidy rules file: Suppress versioned debhelper build-dependency.
       new  a89244f   Update copyright info: Use License-Grant and License-Reference fields. Thanks to Ben Finney.
       new  d99e30a   Update copyright info: Extend coverage of packaging to include current year.
       new  28dee6e   Override lintian regarding license in License-Reference field. See bug#786450.
       new  42772d2   Override lintian regarding build-depending unversioned on debhelper.
       new  902831b   Update package relations: (Build-)depend on libmoox-strictconstructor-perl (not libmoosex-strictconstructor-perl). (Build-)depend on libmoo-perl. Relax to (build-)depend unversioned on libmoose-perl. Relax to (build-)depend unversioned on libplack-perl: Needed version satisfied even in oldstable. (Build-)depend on libpackage-variant-perl libsub-exporter-perl libtype-tiny-perl libnamespace-clean-perl. Stop (build-)depend on libscalar-list-utils-perl: Needed version pr [...]
       new  2517c28   Prepare for release: Update changelog, control file.

The 11 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                                            |  13 +
 LICENSE                                            |   2 +-
 MANIFEST                                           |   6 +-
 META.json                                          | 333 +++++++++++++++------
 META.yml                                           | 315 +++++++++++++------
 Makefile.PL                                        |  54 ++--
 README                                             |   4 +-
 README.md                                          |   8 +-
 debian/changelog                                   |  37 ++-
 debian/compat                                      |   2 +-
 debian/control                                     |  18 +-
 debian/control.in                                  |   4 +-
 debian/copyright                                   |  49 +--
 debian/rules                                       |  21 +-
 debian/source/lintian-overrides                    |   8 +
 dist.ini                                           |   8 +-
 lib/HTTP/Throwable.pm                              | 332 +++++++++++++++++++-
 lib/HTTP/Throwable/Factory.pm                      | 126 +++++++-
 lib/HTTP/Throwable/Role/BoringText.pm              |  27 +-
 lib/HTTP/Throwable/Role/Generic.pm                 |  23 +-
 lib/HTTP/Throwable/Role/NoBody.pm                  |  25 +-
 lib/HTTP/Throwable/Role/Redirect.pm                |  29 +-
 lib/HTTP/Throwable/Role/Status/BadGateway.pm       |  23 +-
 lib/HTTP/Throwable/Role/Status/BadRequest.pm       |  21 +-
 lib/HTTP/Throwable/Role/Status/Conflict.pm         |  37 ++-
 .../Throwable/Role/Status/ExpectationFailed.pm     |  23 +-
 lib/HTTP/Throwable/Role/Status/Forbidden.pm        |  27 +-
 lib/HTTP/Throwable/Role/Status/Found.pm            |  34 ++-
 lib/HTTP/Throwable/Role/Status/GatewayTimeout.pm   |  24 +-
 lib/HTTP/Throwable/Role/Status/Gone.pm             |  37 ++-
 .../Role/Status/HTTPVersionNotSupported.pm         |  26 +-
 lib/HTTP/Throwable/Role/Status/ImATeapot.pm        |  31 +-
 .../Throwable/Role/Status/InternalServerError.pm   |  31 +-
 lib/HTTP/Throwable/Role/Status/LengthRequired.pm   |  22 +-
 lib/HTTP/Throwable/Role/Status/MethodNotAllowed.pm |  49 ++-
 lib/HTTP/Throwable/Role/Status/MovedPermanently.pm |  30 +-
 lib/HTTP/Throwable/Role/Status/MultipleChoices.pm  |  47 ++-
 lib/HTTP/Throwable/Role/Status/NotAcceptable.pm    |  40 ++-
 lib/HTTP/Throwable/Role/Status/NotFound.pm         |  27 +-
 lib/HTTP/Throwable/Role/Status/NotImplemented.pm   |  24 +-
 lib/HTTP/Throwable/Role/Status/NotModified.pm      |  56 +++-
 .../Throwable/Role/Status/PermanentRedirect.pm     |  83 +++++
 .../Throwable/Role/Status/PreconditionFailed.pm    |  25 +-
 .../Role/Status/ProxyAuthenticationRequired.pm     |  38 ++-
 .../Throwable/Role/Status/RequestEntityTooLarge.pm |  35 ++-
 lib/HTTP/Throwable/Role/Status/RequestTimeout.pm   |  23 +-
 .../Throwable/Role/Status/RequestURITooLong.pm     |  29 +-
 .../Role/Status/RequestedRangeNotSatisfiable.pm    |  35 ++-
 lib/HTTP/Throwable/Role/Status/SeeOther.pm         |  31 +-
 .../Throwable/Role/Status/ServiceUnavailable.pm    |  35 ++-
 .../Throwable/Role/Status/TemporaryRedirect.pm     |  32 +-
 lib/HTTP/Throwable/Role/Status/Unauthorized.pm     |  43 ++-
 .../Throwable/Role/Status/UnsupportedMediaType.pm  |  22 +-
 lib/HTTP/Throwable/Role/Status/UseProxy.pm         |  24 +-
 lib/HTTP/Throwable/Role/TextBody.pm                |  29 +-
 lib/HTTP/Throwable/Variant.pm                      |  73 +++++
 t/00-report-prereqs.dd                             |  56 ++++
 t/00-report-prereqs.t                              | 183 +++++++++++
 t/000-report-versions-tiny.t                       |  95 ------
 t/001-basic.t                                      |   3 +-
 t/300-all.t                                        |   2 -
 t/400-all.t                                        |   5 +-
 t/500-all.t                                        |   1 -
 t/lib/Test/HT.pm                                   |   5 +-
 xt/release/changes_has_content.t                   |   2 +-
 xt/release/pod-syntax.t                            |   5 +-
 66 files changed, 2212 insertions(+), 755 deletions(-)
 create mode 100644 debian/source/lintian-overrides
 create mode 100644 lib/HTTP/Throwable/Role/Status/PermanentRedirect.pm
 create mode 100644 lib/HTTP/Throwable/Variant.pm
 create mode 100644 t/00-report-prereqs.dd
 create mode 100644 t/00-report-prereqs.t
 delete mode 100644 t/000-report-versions-tiny.t

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



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