File: control

package info (click to toggle)
libcatalyst-model-dbic-schema-perl 0.66-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 368 kB
  • sloc: perl: 2,984; makefile: 2
file content (81 lines) | stat: -rw-r--r-- 3,830 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
Source: libcatalyst-model-dbic-schema-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Damyan Ivanov <dmn@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper-compat (= 13)
Build-Depends-Indep: libcarp-clan-perl <!nocheck>,
                     libcatalyst-component-instancepercontext-perl <!nocheck>,
                     libcatalyst-devel-perl,
                     libcatalyst-perl <!nocheck>,
                     libcatalystx-component-traits-perl <!nocheck>,
                     libdbd-sqlite3-perl <!nocheck>,
                     libdbix-class-cursor-cached-perl <!nocheck>,
                     libdbix-class-perl <!nocheck>,
                     libdbix-class-schema-loader-perl <!nocheck>,
                     libhash-merge-perl <!nocheck>,
                     liblist-moreutils-perl <!nocheck>,
                     libmodule-install-perl,
                     libmodule-runtime-perl <!nocheck>,
                     libmoose-perl <!nocheck>,
                     libmoosex-markasmethods-perl <!nocheck>,
                     libmoosex-nonmoose-perl <!nocheck>,
                     libmoosex-types-loadableclass-perl <!nocheck>,
                     libmoosex-types-perl <!nocheck>,
                     libnamespace-autoclean-perl <!nocheck>,
                     libnamespace-clean-perl <!nocheck>,
                     libtest-exception-perl <!nocheck>,
                     libtest-requires-perl <!nocheck>,
                     libtie-ixhash-perl <!nocheck>,
                     libtry-tiny-perl <!nocheck>,
                     perl
Standards-Version: 4.6.2
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libcatalyst-model-dbic-schema-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libcatalyst-model-dbic-schema-perl.git
Homepage: https://metacpan.org/release/Catalyst-Model-DBIC-Schema
Rules-Requires-Root: no

Package: libcatalyst-model-dbic-schema-perl
Architecture: all
Depends: ${misc:Depends},
         ${perl:Depends},
         libcarp-clan-perl,
         libcatalyst-component-instancepercontext-perl,
         libcatalyst-devel-perl,
         libcatalyst-perl,
         libcatalystx-component-traits-perl,
         libdbix-class-cursor-cached-perl,
         libdbix-class-perl,
         libdbix-class-schema-loader-perl,
         libhash-merge-perl,
         liblist-moreutils-perl,
         libmodule-runtime-perl,
         libmoose-perl,
         libmoosex-markasmethods-perl,
         libmoosex-nonmoose-perl,
         libmoosex-types-loadableclass-perl,
         libmoosex-types-perl,
         libnamespace-autoclean-perl,
         libnamespace-clean-perl,
         libtie-ixhash-perl,
         libtry-tiny-perl
Description: DBIx::Class::Schema-based database model for Catalyst
 Catalyst::Model::DBIC::Schema is a Catalyst database model class for
 DBIx::Class::Schema-based Models. See the documentation for
 Catalyst::Helper::Model::DBIC::Schema for information on generating these
 Models via Helper scripts.
 .
 When a Catalyst app starts up, a thin Model layer is created as an interface
 to the DBIC Schema. It should be clearly noted that the model object returned
 by $c->model('FilmDB') is NOT itself a DBIC schema or resultset object, but
 merely a wrapper proving methods to access the underlying schema.
 .
 In addition to this model class, a shortcut class is generated for each
 source in the schema, allowing easy and direct access to a resultset of the
 corresponding type. These generated classes are even thinner than the model
 class, providing no public methods but simply hooking into Catalyst's model()
 accessor via the ACCEPT_CONTEXT mechanism.
 .
 Catalyst is an elegant Model-View-Controller web application framework
 written in Perl.