File: control

package info (click to toggle)
libsql-abstract-perl 1.81-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 584 kB
  • ctags: 250
  • sloc: perl: 3,511; makefile: 11
file content (39 lines) | stat: -rw-r--r-- 1,886 bytes parent folder | download
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
37
38
39
Source: libsql-abstract-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Krzysztof Krzyżaniak (eloy) <eloy@debian.org>,
           gregor herrmann <gregoa@debian.org>,
           Ansgar Burchardt <ansgar@debian.org>,
           Jonathan Yu <jawnsy@cpan.org>,
           Xavier Guimard <x.guimard@free.fr>
Section: perl
Priority: optional
Build-Depends: debhelper (>= 8)
Build-Depends-Indep: libhash-merge-perl,
                     libmoo-perl (>= 1.004002),
                     libtest-deep-perl,
                     libtest-exception-perl (>= 0.31),
                     libtest-warn-perl,
                     perl
Standards-Version: 3.9.6
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libsql-abstract-perl.git
Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libsql-abstract-perl.git
Homepage: https://metacpan.org/release/SQL-Abstract

Package: libsql-abstract-perl
Architecture: all
Depends: ${misc:Depends},
         ${perl:Depends},
         libhash-merge-perl,
         libmoo-perl (>= 1.004002)
Description: module to generate SQL from Perl data structures
 SQL::Abstract is a Perl module that allows developers to generate SQL from
 Perl data strutures, inspired by DBIx::Abstract. The intent of this module
 is to provide abstract SQL generation methods, allowing one to generate SQL
 while retaining complete control over the statement handles.
 .
 There are many important differences between this module and DBIx::Abstract,
 especially when it comes to WHERE clauses. Chief among these changes is a
 new design to make it easier to generate SQL from Perl data structures and
 hopefully more intuitive. The underlying idea is that this module does what
 you mean, based on the data structures you provide it; the biggest advantage
 is that you don't have to modify your code every time your data changes.