File: control

package info (click to toggle)
libcatalyst-plugin-authorization-roles-perl 0.09-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 160 kB
  • sloc: perl: 1,365; makefile: 2
file content (45 lines) | stat: -rw-r--r-- 1,939 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
Source: libcatalyst-plugin-authorization-roles-perl
Section: perl
Testsuite: autopkgtest-pkg-perl
Rules-Requires-Root: no
Priority: optional
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Damyan Ivanov <dmn@debian.org>
Build-Depends: debhelper (>= 10)
Build-Depends-Indep: libcatalyst-perl (>= 5.7),
 libcatalyst-plugin-authentication-perl (>= 0.10003),
 libset-object-perl (>= 1.14),
 libtest-exception-perl,
 libuniversal-isa-perl (>= 0.05),
 perl
Standards-Version: 4.1.4
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libcatalyst-plugin-authorization-roles-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libcatalyst-plugin-authorization-roles-perl.git
Homepage: https://metacpan.org/release/Catalyst-Plugin-Authorization-Roles

Package: libcatalyst-plugin-authorization-roles-perl
Architecture: all
Depends: ${misc:Depends}, ${perl:Depends},
 libcatalyst-plugin-authentication-perl (>= 0.10003),
 libcatalyst-perl (>= 5.7),
 libset-object-perl (>= 1.14),
 libuniversal-isa-perl (>= 0.05)
Replaces: libcatalyst-modules-perl (<< 48~)
Breaks: libcatalyst-modules-perl (<< 48~)
Description: Role based authorization plugin for Catalyst
 Catalyst::Plugin::Authorization::Roles provides role-based authorization
 (access control) for Catalyst applications.
 .
 Role based access control is very simple: every user has a list of roles,
 which that user is allowed to assume, and every restricted part of the app
 makes an assertion about the necessary roles.
 .
 With assert_user_roles, if the user is a member in all of the required roles
 access is granted. Otherwise, access is denied. With assert_any_user_role it
 is enough that the user is a member of one role.
 .
 There are alternative approaches to do this on a per action basis, see
 Catalyst::ActionRole::ACL.
 .
 Catalyst is an elegant Model-View-Controller web application framework
 written in Perl.