File: control

package info (click to toggle)
libdbix-class-optimisticlocking-perl 0.02-5
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 220 kB
  • sloc: perl: 270; sql: 51; makefile: 2
file content (27 lines) | stat: -rw-r--r-- 1,332 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
Source: libdbix-class-optimisticlocking-perl
Section: perl
Priority: optional
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Hideki Yamane <henrich@debian.org>
Build-Depends: debhelper-compat (= 13),
Build-Depends-Indep: libdbix-class-perl (>= 0.08195),
 perl
Standards-Version: 4.5.0
Homepage: https://metacpan.org/release/DBIx-Class-OptimisticLocking
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libdbix-class-optimisticlocking-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libdbix-class-optimisticlocking-perl.git
Testsuite: autopkgtest-pkg-perl
Rules-Requires-Root: no

Package: libdbix-class-optimisticlocking-perl
Architecture: all
Depends: ${misc:Depends}, ${perl:Depends},
 libdbix-class-perl (>= 0.08195)
Description: Optimistic locking support for DBIx::Class
 Optimistic locking is an alternative to using exclusive locks when you
 have the possibility of concurrent, conflicting updates in your database.
 The basic principle is you allow any and all clients to issue updates and
 rather than preemptively synchronizing all data  modifications (which is
 what happens with exclusive locks) you are "optimistic" that updates won't
 interfere with one another and the updates will only fail when they do
 in fact interfere with one another.