libdbix-introspector-perl 0.001005-2 source package in Ubuntu

Changelog

libdbix-introspector-perl (0.001005-2) unstable; urgency=medium

  [ Salvatore Bonaccorso ]
  * debian/control: Use HTTPS transport protocol for Vcs-Git URI

  [ gregor herrmann ]
  * debian/copyright: change Copyright-Format 1.0 URL to HTTPS.

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

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

  [ Debian Janitor ]
  * Bump debhelper from old 9 to 12.
  * Set debhelper-compat version in Build-Depends.
  * Set upstream metadata fields: Bug-Database, Bug-Submit.
  * Remove obsolete fields Contact, Name from debian/upstream/metadata
    (already present in machine-readable debian/copyright).
  * Remove constraints unnecessary since stretch:
    + Build-Depends-Indep: Drop versioned constraint on libdbd-sqlite3-perl,
      libdbi-perl, libmoo-perl, libtest-simple-perl and perl.
    + libdbix-introspector-perl: Drop versioned constraint on libdbi-perl and
      libmoo-perl in Depends.

 -- Jelmer Vernooij <email address hidden>  Mon, 13 Jun 2022 15:33:09 +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

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libdbix-introspector-perl_0.001005-2.dsc 2.2 KiB a830e64f2d56abddd69182a4f812419cfc7d6fe2dfc5b0ef295920086a401f9b
libdbix-introspector-perl_0.001005.orig.tar.gz 16.3 KiB 96a94d2cc690c1fa8fd34113e3b084bf2a469a323a9780285aef92ddc381e63a
libdbix-introspector-perl_0.001005-2.debian.tar.xz 2.3 KiB 8b8b1a8fc6257be8483b03ee9dc13ee28b3960ce58110ff0e6f6fa995f492e60

Available diffs

No changes file available.

Binary packages built by this source

libdbix-introspector-perl: module to detect what database code is connected to

 DBIx::Introspector is a module factored out of the DBIx::Class database
 detection code. Most code that needs to detect which database it is connected
 to assumes that there is a one-to-one mapping from database drivers to
 database engines. Unfortunately reality is rarely that simple. For instance,
 DBD::ODBC is typically used to connect to SQL Server, but ODBC can be used to
 connect to PostgreSQL, MySQL, and Oracle. Additionally, while ODBC is the
 most common way to connect to SQL Server, it is not the only option, as
 DBD::ADO can also be used.
 .
 DBIx::Introspector can correctly detect which database you are connected to,
 because it was factored out of a complex, working codebase. On top of that it
 has been written to be very extensible. So if you needed to detect which
 version of your given database you are connected to that would not be
 difficult.