libcatalyst-plugin-authentication-perl 0.10023-4 source package in Ubuntu

Changelog

libcatalyst-plugin-authentication-perl (0.10023-4) unstable; urgency=medium

  * Team upload.

  [ Damyan Ivanov ]
  * declare conformance with Policy 4.1.3 (no changes needed)

  [ Salvatore Bonaccorso ]
  * Update Vcs-* headers for switch to salsa.debian.org

  [ Debian Janitor ]
  * Bump debhelper from old 9 to 12.
  * Set debhelper-compat version in Build-Depends.
  * Add missing build dependency on libmodule-install-perl.

  [ gregor herrmann ]
  * debian/watch: use uscan version 4.
  * Declare compliance with Debian Policy 4.6.2.
  * Set Rules-Requires-Root: no.
  * Annotate test-only build dependencies with <!nocheck>.

 -- gregor herrmann <email address hidden>  Mon, 23 Jan 2023 00:31:42 +0100

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-authentication-perl_0.10023-4.dsc 2.8 KiB 014a2470ec6b3beca5ff80a2a5bf44a73ceb6dd22ee925c52348887ef75cb6bf
libcatalyst-plugin-authentication-perl_0.10023.orig.tar.gz 78.2 KiB 36039aabdacb07e6687a4d7a8bfac78fe9d0fbb04cda8d6d966d6c1e3259d06c
libcatalyst-plugin-authentication-perl_0.10023-4.debian.tar.xz 3.4 KiB c3e02c21658632b1c7af6aa86fa0c0fef366d123c0c65acf5a15df614878486f

Available diffs

No changes file available.

Binary packages built by this source

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