File: control

package info (click to toggle)
libdbix-class-perl 0.08196-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 4,424 kB
  • sloc: perl: 22,328; sql: 362; makefile: 10
file content (106 lines) | stat: -rw-r--r-- 4,272 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
Source: libdbix-class-perl
Section: perl
Priority: optional
Build-Depends: debhelper (>= 8)
Build-Depends-Indep: perl (>= 5.10.1),
 libclass-accessor-grouped-perl (>= 0.10000),
 libconfig-any-perl (>= 0.20),
 libclass-c3-componentised-perl (>= 1.0005),
 libclass-inspector-perl (>= 1.24),
 libclass-trigger-perl,
 libclass-unload-perl (>= 0.07),
 libclone-perl,
 libcontext-preserve-perl,
 libdata-compare-perl (>= 1.22),
 libdata-dumper-concise-perl (>= 2.020),
 libdata-page-perl,
 libdate-simple-perl (>= 3.03),
 libdatetime-format-mysql-perl,
 libdatetime-format-pg-perl,
 libdatetime-format-sqlite-perl,
 libdatetime-format-strptime-perl,
 libdbd-sqlite3-perl (>= 1.29),
 libdbi-perl (>= 1.570),
 libdbix-contextualfetch-perl,
 libdevel-cycle-perl (>= 1.10),
 libgetopt-long-descriptive-perl (>= 0.081),
 libhash-merge-perl (>= 0.12),
 libjson-any-perl (>= 1.22),
 libmath-base36-perl,
 libmodule-find-perl (>= 0.06),
 libmoose-perl (>= 0.98),
 libmoosex-types-json-perl,
 libmoosex-types-path-class-perl,
 libmoosex-types-perl (>= 0.21),
 libnamespace-autoclean-perl (>= 0.09),
 libnamespace-clean-perl (>= 0.14),
 libpackage-stash-perl (>= 0.28),
 libpath-class-perl (>= 0.18),
 libscope-guard-perl,
 libsql-abstract-perl (>= 1.72),
 libsql-translator-perl (>= 0.11006),
 libsub-name-perl,
 libtest-exception-perl (>= 0.31),
 libtest-memory-cycle-perl,
 perl (>= 5.11.1) | libtest-simple-perl (>= 0.94),
 libtest-warn-perl (>= 0.21),
 libtext-csv-perl (>= 1.16),
 libtime-piece-mysql-perl,
 libtry-tiny-perl (>= 0.04)
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Krzysztof Krzyżaniak (eloy) <eloy@debian.org>,
 gregor herrmann <gregoa@debian.org>, Jonathan Yu <jawnsy@cpan.org>,
 Ryan Niebur <ryan@debian.org>, Brian Cassidy <brian.cassidy@gmail.com>,
 Ansgar Burchardt <ansgar@debian.org>, Olly Betts <olly@survex.com>
Standards-Version: 3.9.2
Homepage: http://search.cpan.org/dist/DBIx-Class/
Vcs-Git: git://git.debian.org/pkg-perl/packages/libdbix-class-perl.git
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libdbix-class-perl.git

Package: libdbix-class-perl
Architecture: all
Depends: ${misc:Depends}, ${perl:Depends}, perl (>= 5.10.1),
 libclass-accessor-grouped-perl (>= 0.10000),
 libconfig-any-perl (>= 0.20),
 libclass-c3-componentised-perl (>= 1.0005),
 libclass-inspector-perl (>= 1.24),
 libcontext-preserve-perl,
 libdata-compare-perl (>= 1.22),
 libdata-dumper-concise-perl (>= 2.020),
 libdata-page-perl,
 libdbi-perl (>= 1.570),
 libmodule-find-perl (>= 0.06),
 libnamespace-clean-perl (>= 0.14),
 libpath-class-perl (>= 0.18),
 libscope-guard-perl,
 libsql-abstract-perl (>= 1.72),
 libsub-name-perl,
 libtry-tiny-perl (>= 0.04)
Recommends: libsql-translator-perl (>= 0.11006)
Suggests: libgetopt-long-descriptive-perl (>= 0.081),
 libhash-merge-perl (>= 0.12),
 libjson-any-perl (>= 1.22),
 libmath-base36-perl,
 libmoose-perl (>= 0.98),
 libmoosex-types-json-perl,
 libmoosex-types-path-class-perl,
 libmoosex-types-perl (>= 0.21),
 libnamespace-autoclean-perl (>= 0.09),
 libtext-csv-perl (>= 1.16)
Description: 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).