File: control

package info (click to toggle)
libcatalyst-plugin-authentication-perl 0.10023-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 604 kB
  • ctags: 307
  • sloc: perl: 3,672; makefile: 2
file content (54 lines) | stat: -rw-r--r-- 2,288 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
Source: libcatalyst-plugin-authentication-perl
Section: perl
Priority: optional
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Damyan Ivanov <dmn@debian.org>
Build-Depends: debhelper (>= 8)
Build-Depends-Indep: libcatalyst-perl,
 libcatalyst-plugin-session-perl (>= 0.10),
 libclass-inspector-perl,
 libmoose-perl,
 libmoosex-emulate-class-accessor-fast-perl,
 libmro-compat-perl,
 libnamespace-autoclean-perl,
 libstring-rewriteprefix-perl,
 libtest-exception-perl,
 libtry-tiny-perl,
 perl (>= 5.15.2)
Standards-Version: 3.9.5
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libcatalyst-plugin-authentication-perl.git
Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libcatalyst-plugin-authentication-perl.git
Homepage: https://metacpan.org/release/Catalyst-Plugin-Authentication

Package: libcatalyst-plugin-authentication-perl
Architecture: all
Depends: ${misc:Depends}, ${perl:Depends},
 libcatalyst-perl,
 libcatalyst-plugin-session-perl (>= 0.10),
 libclass-inspector-perl,
 libmoose-perl,
 libmoosex-emulate-class-accessor-fast-perl,
 libmro-compat-perl,
 libnamespace-autoclean-perl,
 libstring-rewriteprefix-perl,
 libtry-tiny-perl
Replaces: libcatalyst-modules-perl (<< 48~)
Breaks: libcatalyst-modules-perl (<< 48~)
Description: Infrastructure plugin for the Catalyst authentication framework
 Catalyst::Plugin::Authentication provides generic user support for Catalyst
 apps. It is the basis for both authentication (checking the user is who they
 claim to be), and authorization (allowing the user to do what the system
 authorises them to do).
 .
 Using authentication is split into two parts. A Store is used to actually
 store the user information, and can store any amount of data related to the
 user. Credentials are used to verify users, using information from the store,
 given data from the frontend. A Credential and a Store are paired to form a
 'Realm'. A Catalyst application using the authentication framework must have
 at least one realm, and may have several.
 .
 To implement authentication in a Catalyst application you need to add this
 module, and specify at least one realm in the configuration.
 .
 Catalyst is an elegant Model-View-Controller web application framework
 written in Perl.