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

Changelog

libdbix-class-perl (0.08250-1) unstable; urgency=low


  [ gregor herrmann ]
  * debian/control: update {versioned,alternative} (build) dependencies.

  [ Salvatore Bonaccorso ]
  * Change Vcs-Git to canonical URI (git://anonscm.debian.org)
  * Change search.cpan.org based URIs to metacpan.org based URIs

  [ gregor herrmann ]
  * New upstream release. Closes: #708407
  * debian/copyright: switch formatting to Copyright-Format 1.0. Update
    list of copyright holders. Update copyright years for Module::Install
    and debian/*.
  * Refresh fix-doc-typos.patch.
  * Update build and runtime dependencies.
  * Set Standards-Version to 3.9.4 (no changes).
  * fix-doc-typos.patch: add more fixes and forward upstream.

 -- gregor herrmann <email address hidden>  Fri, 17 May 2013 20:17:30 +0200

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Saucy: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
libdbix-class-perl_0.08250-1.dsc 3.5 KiB 1d28ca5923705b5e10bd676037675eb360eb64ead4efb0acdfba0ccbdedae066
libdbix-class-perl_0.08250.orig.tar.gz 758.1 KiB a6a925fb3b8e2b00420981681f82d5eba98327b643ce4289bb89d14986dc585b
libdbix-class-perl_0.08250-1.debian.tar.gz 12.5 KiB 235bb6446badd03a18753cb7f822016e98098a2f5405517288e190cf75094b3f

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).