File: control

package info (click to toggle)
libpgobject-type-datetime-perl 2.000001-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 136 kB
  • ctags: 12
  • sloc: perl: 225; makefile: 2
file content (43 lines) | stat: -rw-r--r-- 1,971 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
Source: libpgobject-type-datetime-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Robert James Clay <jame@rocasa.us>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper (>= 9)
Build-Depends-Indep: libdatetime-perl,
                     libdatetime-timezone-perl,
                     libpgobject-perl,
                     perl
Standards-Version: 4.1.1
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libpgobject-type-datetime-perl.git
Vcs-Git: https://anonscm.debian.org/git/pkg-perl/packages/libpgobject-type-datetime-perl.git
Homepage: https://metacpan.org/release/PGObject-Type-DateTime

Package: libpgobject-type-datetime-perl
Architecture: all
Depends: libdatetime-perl,
         libdatetime-timezone-perl,
         libpgobject-perl,
         ${misc:Depends},
         ${perl:Depends}
Description: DateTime Wrappers for PGObject
 PGObject::Type::DateTime provides a basic wrapper around DateTime to allow
 PGObject-framework types to automatically tie date/time related objects, but
 date and timestamp formats are handled in the 'from_db' routines.
 .
 This specific module only supports the ISO YMD datestyle. The MDY or DMY
 datestyles may be usable in future versions but datestyles other than ISO
 raise ambiguity issues, sufficient that they cannot always even be used in
 PostgreSQL as input.
 .
 This module also provides basic default handling. Times are assigned a date
 of '0001-01-01' and dates are assigned a time of midnight. Whether this is
 set is persisted, along with whether timezones are set, and these are
 returned to a valid ISO YMD format on export, if a date component was
 initially set.
 .
 This means you can use this for general math without worrying about many of
 the other nicities. Parsing ISO YMD dates and standard times (24 hr format)
 is supported via the from_db interface, which also provides a useful way of
 handing dates in.