[libdancer2-perl] branch master updated (bfa1899 -> 606e7b1)

gregor herrmann gregoa at debian.org
Sun Dec 15 16:19:41 UTC 2013


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

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

      from  bfa1899   drop unused variables in debian/rules
       new  63ff610   Update repackaging framework.
      adds  39e6ba1   Imported Upstream version 0.11+dfsg
       new  2343519   Merge tag 'upstream/0.11+dfsg'
       new  b9a1dab   New upstream release.
       new  bb29cd3   Update (build) dependencies.
       new  b3471c7   Update debian/copyright.
       new  b39c6a1   Use the packaged jQuery instead of the removed convenience copy.
       new  641c1cf   Add patch to add encoding declaration to POD.
       new  14cc56d   Add lintian overrides for template scripts.
       new  df08473   Declare compliance with Debian Policy 3.9.5.
       new  606e7b1   releasing package libdancer2-perl version 0.11+dfsg-1

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:
 AUTHORS                                           |   51 +-
 Build.PL                                          |   56 +-
 Changes                                           |   38 +
 MANIFEST                                          |   61 +-
 META.json                                         |  154 +--
 META.yml                                          |  151 +--
 Makefile.PL                                       |  121 +-
 README.md                                         |    1 +
 debian/changelog                                  |   16 +
 debian/control                                    |   14 +-
 debian/copyright                                  |   14 +-
 debian/libdancer2-perl.links                      |    1 +
 debian/libdancer2-perl.lintian-overrides          |    5 +
 debian/patches/pod-encoding.patch                 |   23 +
 debian/patches/series                             |    1 +
 debian/prune.pl                                   |   33 -
 debian/repack.local                               |    5 +-
 lib/Dancer2.pm                                    |  114 +-
 lib/Dancer2/CLI.pm                                |   34 +
 lib/Dancer2/CLI/Command/gen.pm                    |  291 +++++
 lib/Dancer2/CLI/Command/version.pm                |   45 +
 lib/Dancer2/Config.pod                            |   59 +-
 lib/Dancer2/Cookbook.pod                          |   40 +-
 lib/Dancer2/Core.pm                               |    4 +-
 lib/Dancer2/Core/App.pm                           |   45 +-
 lib/Dancer2/Core/Context.pm                       |   73 +-
 lib/Dancer2/Core/Cookie.pm                        |   12 +-
 lib/Dancer2/Core/DSL.pm                           |   14 +-
 lib/Dancer2/Core/Dispatcher.pm                    |  150 +--
 lib/Dancer2/Core/Error.pm                         |   43 +-
 lib/Dancer2/Core/Factory.pm                       |    4 +-
 lib/Dancer2/Core/HTTP.pm                          |   31 +-
 lib/Dancer2/Core/Hook.pm                          |    4 +-
 lib/Dancer2/Core/MIME.pm                          |    8 +-
 lib/Dancer2/Core/Request.pm                       |   96 +-
 lib/Dancer2/Core/Request/Upload.pm                |   13 +-
 lib/Dancer2/Core/Response.pm                      |   29 +-
 lib/Dancer2/Core/Role/Config.pm                   |   53 +-
 lib/Dancer2/Core/Role/DSL.pm                      |   11 +-
 lib/Dancer2/Core/Role/Engine.pm                   |    4 +-
 lib/Dancer2/Core/Role/Handler.pm                  |    4 +-
 lib/Dancer2/Core/Role/Headers.pm                  |    4 +-
 lib/Dancer2/Core/Role/Hookable.pm                 |   14 +-
 lib/Dancer2/Core/Role/Logger.pm                   |   10 +-
 lib/Dancer2/Core/Role/Serializer.pm               |   15 +-
 lib/Dancer2/Core/Role/Server.pm                   |   17 +-
 lib/Dancer2/Core/Role/SessionFactory.pm           |   13 +-
 lib/Dancer2/Core/Role/SessionFactory/File.pm      |    4 +-
 lib/Dancer2/Core/Role/StandardResponses.pm        |    4 +-
 lib/Dancer2/Core/Role/Template.pm                 |   14 +-
 lib/Dancer2/Core/Route.pm                         |   24 +-
 lib/Dancer2/Core/Runner.pm                        |   24 +-
 lib/Dancer2/Core/Server/PSGI.pm                   |    4 +-
 lib/Dancer2/Core/Server/Standalone.pm             |    4 +-
 lib/Dancer2/Core/Session.pm                       |    7 +-
 lib/Dancer2/Core/Time.pm                          |   14 +-
 lib/Dancer2/Core/Types.pm                         |    8 +-
 lib/Dancer2/FileUtils.pm                          |    7 +-
 lib/Dancer2/Handler/AutoPage.pm                   |    8 +-
 lib/Dancer2/Handler/File.pm                       |   11 +-
 lib/Dancer2/Logger/Capture.pm                     |    5 +-
 lib/Dancer2/Logger/Capture/Trap.pm                |    8 +-
 lib/Dancer2/Logger/Console.pm                     |    8 +-
 lib/Dancer2/Logger/Diag.pm                        |    5 +-
 lib/Dancer2/Logger/File.pm                        |   14 +-
 lib/Dancer2/Logger/Note.pm                        |    4 +-
 lib/Dancer2/Logger/Null.pm                        |    4 +-
 lib/Dancer2/Manual.pod                            |   52 +-
 lib/Dancer2/Plugin.pm                             |   40 +-
 lib/Dancer2/Plugin/Ajax.pm                        |    6 +-
 lib/Dancer2/Plugins.pod                           |    5 +-
 lib/Dancer2/Serializer/Dumper.pm                  |   10 +-
 lib/Dancer2/Serializer/JSON.pm                    |   10 +-
 lib/Dancer2/Serializer/YAML.pm                    |   10 +-
 lib/Dancer2/Session/Simple.pm                     |    5 +-
 lib/Dancer2/Session/YAML.pm                       |    8 +-
 lib/Dancer2/Template/Implementation/ForkedTiny.pm |    8 +-
 lib/Dancer2/Template/Simple.pm                    |    8 +-
 lib/Dancer2/Template/TemplateToolkit.pm           |    5 +-
 lib/Dancer2/Template/Tiny.pm                      |   10 +-
 lib/Dancer2/Test.pm                               |   17 +-
 lib/Dancer2/Tutorial.pod                          |    9 +-
 script/dancer2                                    | 1243 +--------------------
 share/skel/MANIFEST.SKIP                          |   16 +
 share/skel/Makefile.PL                            |   26 +
 share/skel/bin/+app.pl                            |    7 +
 share/skel/config.yml                             |   29 +
 share/skel/environments/development.yml           |   21 +
 share/skel/environments/production.yml            |   17 +
 share/skel/lib/AppFile.pm                         |   10 +
 share/skel/public/+dispatch.cgi                   |   15 +
 share/skel/public/+dispatch.fcgi                  |   17 +
 share/skel/public/404.html                        |   18 +
 share/skel/public/500.html                        |   18 +
 share/skel/public/css/error.css                   |   70 ++
 share/skel/public/css/style.css                   |  189 ++++
 share/skel/public/favicon.ico                     |  Bin 0 -> 1406 bytes
 share/skel/public/images/perldancer-bg.jpg        |  Bin 0 -> 7125 bytes
 share/skel/public/images/perldancer.jpg           |  Bin 0 -> 2240 bytes
 share/skel/t/001_base.t                           |    5 +
 share/skel/t/002_index_route.t                    |   10 +
 share/skel/views/index.tt                         |  147 +++
 share/skel/views/layouts/main.tt                  |   22 +
 t/00-compile.t                                    |   95 +-
 t/00-report-prereqs.t                             |   67 +-
 t/ajax_plugin.t                                   |    8 +-
 t/app.t                                           |    2 +-
 t/auto_page.t                                     |    7 +-
 t/config_app1.t                                   |    5 +-
 t/config_app2.t                                   |    8 +-
 t/config_app3.t                                   |    5 +-
 t/dancer-test.t                                   |   28 +-
 t/deserialize.t                                   |   44 +-
 t/dsl/halt.t                                      |   54 +
 t/error.t                                         |    9 +-
 t/file_utils.t                                    |   10 +-
 t/forward_before_hook.t                           |    5 +-
 t/hooks.t                                         |   27 +-
 t/http_status.t                                   |   36 +-
 t/lib/MyDancerDSL.pm                              |   12 +-
 t/logger.t                                        |    8 +-
 t/plugin_import.t                                 |   21 +
 t/redirect.t                                      |   30 +
 t/release-distmeta.t                              |    9 +-
 t/release-no-tabs.t                               |    9 +-
 t/release-pod-syntax.t                            |    9 +-
 t/request.t                                       |    8 +-
 t/serializer.t                                    |   10 +-
 t/serializer_json.t                               |    2 +-
 t/session_forward.t                               |   17 +-
 t/session_hooks.t                                 |  136 +--
 t/session_object.t                                |   10 +-
 t/sessions/Uf-CrAAAdd2mP4pJAIBzc6YRqXnqeNUt.yml   |    2 +
 t/sessions/Uf-GsQAANz9OaEztWyuSfJKegUq3zD1V.yml   |    2 +
 t/sessions/Uf-HDgAAPPOeyDGX2_IgTLzBg6iBsFkk.yml   |    2 +
 t/sessions/Uf-HTQAAQOJeFHxmhw1aJKUgIkGseaAI.yml   |    2 +
 t/sessions/Uf-HZwAAQt4cqJPl7UTFUrFyY7yxYVj_.yml   |    2 +
 t/sessions/Uf-IdQAAVEongozIzRJZUxy_Q8DMaruI.yml   |    2 +
 t/sessions/Uf1awwAAXkpPhxmXEwjwLY6Oi5Dv7A8v.yml   |    2 +
 t/sessions/Uf1znwAABxlBOUOk04NfndOLhVZzIrnf.yml   |    2 +
 t/sessions/Uf61DgAAYKLILb8PdeeQV3tryrC08MvP.yml   |    2 +
 t/sessions/Uf6vLQAAA33ysk1AfxuFaITEMXY72bEI.yml   |    2 +
 t/sessions/Uf6vlwAACre4MIFKa-Jghj6q1OT9sQb_.yml   |    2 +
 t/sessions/Uf6xeQAAKIXcote58neJ3jjOIjbBlhKX.yml   |    2 +
 t/sessions/Uf6zmAAASb6UqmpBspaQIEzjLIs51E19.yml   |    2 +
 t/sessions/UfRHAQAAJsw_2oX_cvBqBtXlgre8vFiy.yml   |    2 +
 t/sessions/UfRXcwAAO8pp0bx4QwYmc73cP7UKMyY7.yml   |    2 +
 t/sessions/UfUFzgAAOBHtc6NRAKAH4xNgo-GIz8VA.yml   |    2 +
 t/sessions/Ufqu9QAAQfNUOjyt9fa2al5-bFlpbWfR.yml   |    2 +
 t/sessions/UgEFqgAAa4HX5JbR80YhN9rOBcGLG-zH.yml   |    2 +
 t/sessions/UgnzfAAAX0Gcwelnex1vHnakFt7dZMGb.yml   |    2 +
 t/sessions/UhC04wAAcgtUmse-OjZCvj1H0_I5z0pU.yml   |    2 +
 t/sessions/UhC_EwAAHS4yKDNKIO8DV-5B47BS6vWY.yml   |    2 +
 t/sessions/UhaF7gAAYpJSGqByK67_SB3A9mGE5l-s.yml   |    2 +
 t/sessions/UhaGNQAAaDVWUzXrQaDQAaQPzLEWV-4v.yml   |    2 +
 t/sessions/UiMfZwAAc4FCMkrxKK-kKyuTIDuVupPc.yml   |    2 +
 t/sessions/UiMnAgAAahCCdaVhPiVfrcwyo6sxcp7z.yml   |    2 +
 t/sessions/UiNDXgAAJ0mTXspthJgvbjShFZfcyPR3.yml   |    2 +
 t/sessions/UiNIAwAAbVyD4lIKW93APRO9IDd1K5BJ.yml   |    2 +
 t/sessions/UiNIHQAAb3tN7zHtZJRZY7ULJVTc4-bo.yml   |    2 +
 t/sessions/UjnvaAAAdx5B7BnSg2YxFz_25MpWqBwX.yml   |    2 +
 t/sessions/UjnwfgAACXJ9T98xUqd76qOfcABU4l0R.yml   |    2 +
 t/sessions/Uq2XMAAANZ8zV8FD1Emyu7XRdgIZekDJ.yml   |    2 +
 t/sessions/UqMKawAAe86AQqQeYQmzh8sUBp6GIdFY.yml   |    2 +
 t/sessions/UqMhtgAAbObthtU3fOj5q-ibplcfJI-A.yml   |    2 +
 t/sessions/UqMkygAAH92FRll2ucXas2hPHOmBwGxY.yml   |    2 +
 t/sessions/UqMo4AAAZlW25DoDlelvGZ9Mf1HPIxyI.yml   |    2 +
 t/sessions/UqMsHAAAHWKTi6hOv6wGnR-n8bIUQmYs.yml   |    2 +
 t/template_simple.t                               |   72 +-
 t/template_tiny/02_trivial.t                      |    3 +-
 t/time.t                                          |    2 +-
 tags                                              |  514 ---------
 xt/whitespace.t                                   |   16 +-
 173 files changed, 2686 insertions(+), 2947 deletions(-)
 create mode 100644 debian/libdancer2-perl.links
 create mode 100644 debian/libdancer2-perl.lintian-overrides
 create mode 100644 debian/patches/pod-encoding.patch
 create mode 100644 debian/patches/series
 delete mode 100644 debian/prune.pl
 create mode 100644 lib/Dancer2/CLI.pm
 create mode 100644 lib/Dancer2/CLI/Command/gen.pm
 create mode 100644 lib/Dancer2/CLI/Command/version.pm
 mode change 100644 => 100755 script/dancer2
 create mode 100644 share/skel/MANIFEST.SKIP
 create mode 100644 share/skel/Makefile.PL
 create mode 100644 share/skel/bin/+app.pl
 create mode 100644 share/skel/config.yml
 create mode 100644 share/skel/environments/development.yml
 create mode 100644 share/skel/environments/production.yml
 create mode 100644 share/skel/lib/AppFile.pm
 create mode 100755 share/skel/public/+dispatch.cgi
 create mode 100644 share/skel/public/+dispatch.fcgi
 create mode 100644 share/skel/public/404.html
 create mode 100644 share/skel/public/500.html
 create mode 100644 share/skel/public/css/error.css
 create mode 100644 share/skel/public/css/style.css
 create mode 100644 share/skel/public/favicon.ico
 create mode 100644 share/skel/public/images/perldancer-bg.jpg
 create mode 100644 share/skel/public/images/perldancer.jpg
 create mode 100644 share/skel/t/001_base.t
 create mode 100644 share/skel/t/002_index_route.t
 create mode 100644 share/skel/views/index.tt
 create mode 100644 share/skel/views/layouts/main.tt
 create mode 100644 t/dsl/halt.t
 create mode 100644 t/sessions/Uf-CrAAAdd2mP4pJAIBzc6YRqXnqeNUt.yml
 create mode 100644 t/sessions/Uf-GsQAANz9OaEztWyuSfJKegUq3zD1V.yml
 create mode 100644 t/sessions/Uf-HDgAAPPOeyDGX2_IgTLzBg6iBsFkk.yml
 create mode 100644 t/sessions/Uf-HTQAAQOJeFHxmhw1aJKUgIkGseaAI.yml
 create mode 100644 t/sessions/Uf-HZwAAQt4cqJPl7UTFUrFyY7yxYVj_.yml
 create mode 100644 t/sessions/Uf-IdQAAVEongozIzRJZUxy_Q8DMaruI.yml
 create mode 100644 t/sessions/Uf1awwAAXkpPhxmXEwjwLY6Oi5Dv7A8v.yml
 create mode 100644 t/sessions/Uf1znwAABxlBOUOk04NfndOLhVZzIrnf.yml
 create mode 100644 t/sessions/Uf61DgAAYKLILb8PdeeQV3tryrC08MvP.yml
 create mode 100644 t/sessions/Uf6vLQAAA33ysk1AfxuFaITEMXY72bEI.yml
 create mode 100644 t/sessions/Uf6vlwAACre4MIFKa-Jghj6q1OT9sQb_.yml
 create mode 100644 t/sessions/Uf6xeQAAKIXcote58neJ3jjOIjbBlhKX.yml
 create mode 100644 t/sessions/Uf6zmAAASb6UqmpBspaQIEzjLIs51E19.yml
 create mode 100644 t/sessions/UfRHAQAAJsw_2oX_cvBqBtXlgre8vFiy.yml
 create mode 100644 t/sessions/UfRXcwAAO8pp0bx4QwYmc73cP7UKMyY7.yml
 create mode 100644 t/sessions/UfUFzgAAOBHtc6NRAKAH4xNgo-GIz8VA.yml
 create mode 100644 t/sessions/Ufqu9QAAQfNUOjyt9fa2al5-bFlpbWfR.yml
 create mode 100644 t/sessions/UgEFqgAAa4HX5JbR80YhN9rOBcGLG-zH.yml
 create mode 100644 t/sessions/UgnzfAAAX0Gcwelnex1vHnakFt7dZMGb.yml
 create mode 100644 t/sessions/UhC04wAAcgtUmse-OjZCvj1H0_I5z0pU.yml
 create mode 100644 t/sessions/UhC_EwAAHS4yKDNKIO8DV-5B47BS6vWY.yml
 create mode 100644 t/sessions/UhaF7gAAYpJSGqByK67_SB3A9mGE5l-s.yml
 create mode 100644 t/sessions/UhaGNQAAaDVWUzXrQaDQAaQPzLEWV-4v.yml
 create mode 100644 t/sessions/UiMfZwAAc4FCMkrxKK-kKyuTIDuVupPc.yml
 create mode 100644 t/sessions/UiMnAgAAahCCdaVhPiVfrcwyo6sxcp7z.yml
 create mode 100644 t/sessions/UiNDXgAAJ0mTXspthJgvbjShFZfcyPR3.yml
 create mode 100644 t/sessions/UiNIAwAAbVyD4lIKW93APRO9IDd1K5BJ.yml
 create mode 100644 t/sessions/UiNIHQAAb3tN7zHtZJRZY7ULJVTc4-bo.yml
 create mode 100644 t/sessions/UjnvaAAAdx5B7BnSg2YxFz_25MpWqBwX.yml
 create mode 100644 t/sessions/UjnwfgAACXJ9T98xUqd76qOfcABU4l0R.yml
 create mode 100644 t/sessions/Uq2XMAAANZ8zV8FD1Emyu7XRdgIZekDJ.yml
 create mode 100644 t/sessions/UqMKawAAe86AQqQeYQmzh8sUBp6GIdFY.yml
 create mode 100644 t/sessions/UqMhtgAAbObthtU3fOj5q-ibplcfJI-A.yml
 create mode 100644 t/sessions/UqMkygAAH92FRll2ucXas2hPHOmBwGxY.yml
 create mode 100644 t/sessions/UqMo4AAAZlW25DoDlelvGZ9Mf1HPIxyI.yml
 create mode 100644 t/sessions/UqMsHAAAHWKTi6hOv6wGnR-n8bIUQmYs.yml
 delete mode 100644 tags

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



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