libpgobject-simple-perl 3.000002-2 source package in Ubuntu

Changelog

libpgobject-simple-perl (3.000002-2) unstable; urgency=medium

  [ 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 ]
  * Use secure URI in debian/watch.
  * Bump debhelper from old 10 to 12.
  * Set debhelper-compat version in Build-Depends.

  [ gregor herrmann ]
  * debian/copyright: replace tabs with spaces / remove trailing
    whitespace.
  * debian/watch: use uscan version 4.

 -- Jelmer Vernooij <email address hidden>  Fri, 17 Jun 2022 00:06:21 +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
libpgobject-simple-perl_3.000002-2.dsc 2.2 KiB 1ad2d4c49f5286b8a323b8e1086a3cc31c6961ad170751194eb57964a7c3f726
libpgobject-simple-perl_3.000002.orig.tar.gz 10.5 KiB 92f34215a0008e94611decdf26b3c0d546bea83d86e3fc548cc5da631228450a
libpgobject-simple-perl_3.000002-2.debian.tar.xz 3.1 KiB 5c84c5329b4464c6ddb396e5b18e2e903bbb64e014470c6aa8f11607b4455e9b

Available diffs

No changes file available.

Binary packages built by this source

libpgobject-simple-perl: minimalist stored procedure mapper based on LedgerSMB's DBObject

 PGObject::Simple is a minimalist framework for mapping stored procedures in
 PostgreSQL to object methods. The framework is truly minimalist and hence the
 "Simple" designation (in fact the module contains less than 50 lines of code,
 and the code is dwarfed by both POD and test cases). It is intended to be of
 use for developers wishing for such a minimalist framework and those who may
 want to have a reference for how to build such a mapping framework themselves.
 .
 The framework lends itself to a few specific antipatterns. Objects can become
 ill-formed, overly nebulous, or the like. It is thus very important when using
 this for actual development to ensure that acceptable data structures are well
 documented and that these are adhered to.
 .
 This module is based on a simple idea, namely that stored procedures can tell
 application classes how to call them. See the POD for specific information and
 guidelines.