libdbix-class-perl 0.082841-1 source package in Ubuntu

Changelog

libdbix-class-perl (0.082841-1) unstable; urgency=medium

  [ gregor herrmann ]
  * Drop debian/tests/pkg-perl/smoke-tests, handled by pkg-perl-
    autopkgtest now.

  [ Alex Muntada ]
  * Remove inactive pkg-perl members from Uploaders.

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

  [ gregor herrmann ]
  * Import upstream version 0.082841.
  * Update debian/upstream/metadata.
  * Update years of upstream and packaging copyright.
  * debian/copyright: update upstream email address.
  * Drop patches which were both provided by upstream.
  * Declare compliance with Debian Policy 4.1.4.
  * Bump debhelper compatibility level to 10.

 -- gregor herrmann <email address hidden>  Thu, 19 Apr 2018 21:41:55 +0200

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Focal release universe perl

Builds

Cosmic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libdbix-class-perl_0.082841-1.dsc 3.3 KiB f44d94cd0774318f758cd1037e0e0449687835c8681f9172126f51ae8e611ceb
libdbix-class-perl_0.082841.orig.tar.gz 841.2 KiB d705f85825aced299020534349778537524526d64f524217ca362787f683c3bd
libdbix-class-perl_0.082841-1.debian.tar.xz 13.5 KiB 7a89cd5108b5cdf12443250978fc708d8f521f547bad3f951f560cc82c38f506

Available diffs

No changes file available.

Binary packages built by this source

libdbix-class-perl: extensible and flexible object <-> relational mapper

 DBIx::Class is an SQL to OO mapper with an object API inspired by Class::DBI
 (and a compatibility layer as a springboard for porting) and a resultset API
 that allows abstract encapsulation of database operations. It aims to make
 representing queries in your code as perl-ish as possible while still
 providing access to as many of the capabilities of the database as possible,
 including retrieving related records from multiple tables in a single query,
 JOIN, LEFT JOIN, COUNT, DISTINCT, GROUP BY and HAVING support.
 .
 DBIx::Class can handle multi-column primary and foreign keys, complex queries
 and database-level paging, and does its best to only query the database in
 order to return something you've directly asked for. If a resultset is used
 as an iterator it only fetches rows off the statement handle as requested
 in order to minimise memory usage. It has auto-increment support for SQLite,
 MySQL, PostgreSQL, Oracle, SQL Server and DB2 and is known to be used in
 production on at least the first four, and is fork- and thread-safe out of
 the box (although your DBD may not be).