File: control

package info (click to toggle)
libpgobject-simple-perl 3.000002-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 136 kB
  • ctags: 12
  • sloc: perl: 166; makefile: 2
file content (36 lines) | stat: -rw-r--r-- 1,750 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
Source: libpgobject-simple-perl
Section: perl
Priority: optional
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Robert James Clay <jame@rocasa.us>
Build-Depends: debhelper (>= 10)
Build-Depends-Indep: libpgobject-perl (>= 1.403.2),
 perl,
 libtest-pod-perl,
 libtest-pod-coverage-perl
Standards-Version: 4.0.0
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libpgobject-simple-perl.git
Vcs-Git: https://anonscm.debian.org/git/pkg-perl/packages/libpgobject-simple-perl.git
Homepage: https://metacpan.org/release/PGObject-Simple
Testsuite: autopkgtest-pkg-perl

Package: libpgobject-simple-perl
Architecture: all
Depends: ${misc:Depends}, ${perl:Depends},
 libpgobject-perl (>= 1.403.2)
Description: 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.