Codebase list libcatalyst-plugin-session-perl / HEAD debian / control
HEAD

Tree @HEAD (Download .tar.gz)

control @HEADraw · history · blame

Source: libcatalyst-plugin-session-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Damyan Ivanov <dmn@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper-compat (= 13)
Build-Depends-Indep: libcatalyst-perl <!nocheck>,
                     libhtml-parser-perl <!nocheck>,
                     libmoose-perl <!nocheck>,
                     libmoosex-emulate-class-accessor-fast-perl <!nocheck>,
                     libmro-compat-perl <!nocheck>,
                     libnamespace-clean-perl <!nocheck>,
                     libobject-signature-perl <!nocheck>,
                     libplack-perl <!nocheck>,
                     libscalar-list-utils-perl <!nocheck>,
                     libtest-deep-perl <!nocheck>,
                     libtest-needs-perl <!nocheck>,
                     libtest-simple-perl <!nocheck>,
                     libtest-www-mechanize-psgi-perl <!nocheck>,
                     perl
Standards-Version: 4.6.1
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libcatalyst-plugin-session-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libcatalyst-plugin-session-perl.git
Homepage: https://metacpan.org/release/Catalyst-Plugin-Session
Rules-Requires-Root: no

Package: libcatalyst-plugin-session-perl
Architecture: all
Depends: ${misc:Depends},
         ${perl:Depends},
         libcatalyst-perl,
         libhtml-parser-perl,
         libmoose-perl,
         libmoosex-emulate-class-accessor-fast-perl,
         libmro-compat-perl,
         libnamespace-clean-perl,
         libobject-signature-perl,
         libscalar-list-utils-perl
Description: generic Session plugin for Catalyst
 Catalyst::Plugin::Session is the base of two related parts of functionality
 required for session management in web applications.
 .
 The first part, the State, is getting the browser to repeat back a session
 key, so that the web application can identify the client and logically string
 several requests together into a session.
 .
 The second part, the Store, deals with the actual storage of information
 about the client. This data is stored so that the it may be revived for every
 request made by the same client.
 .
 This plugin links the two pieces together.
 .
 Catalyst is an elegant Model-View-Controller web application framework
 written in Perl.