libcatalyst-plugin-authorization-roles-perl 0.09-4 source package in Ubuntu

Changelog

libcatalyst-plugin-authorization-roles-perl (0.09-4) unstable; urgency=medium

  [ Debian Janitor ]
  * Bump debhelper from old 10 to 12.
  * Set debhelper-compat version in Build-Depends.
  * Set upstream metadata fields: Repository.
  * Add missing build dependency on libmodule-install-perl.

  [ gregor herrmann ]
  * debian/watch: use uscan version 4.

  [ Debian Janitor ]
  * Update standards version to 4.1.5, no changes needed.
  * Remove constraints unnecessary since buster
  * Bump debhelper from old 12 to 13.

 -- Jelmer Vernooij <email address hidden>  Tue, 06 Dec 2022 12:11:12 +0000

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libcatalyst-plugin-authorization-roles-perl_0.09-4.dsc 2.5 KiB 401ea2f6554cce61ffb9c350132987ce2b3d9e034c7e6af435a5183f41c4dec0
libcatalyst-plugin-authorization-roles-perl_0.09.orig.tar.gz 20.6 KiB ee4044e5e2a0d94c4ec512fad55ee0c8de144e1e3b8785207f96025cf9a40351
libcatalyst-plugin-authorization-roles-perl_0.09-4.debian.tar.xz 2.3 KiB 3193bd3d3382ae7373f3f28f5905297df1009a4d1bc0ea9be4dbe28a693c1c3c

Available diffs

No changes file available.

Binary packages built by this source

libcatalyst-plugin-authorization-roles-perl: 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.