sprintf patch and alternate root class kludge, MANIFEST and Changes files...
[DBIx-Profile.git] / debian / control
1 Source: libdbix-profile-perl
2 Section: interpreters
3 Priority: optional
4 Build-Depends: debhelper (>= 3.0.5), perl (>= 5.6.0-17)
5 Maintainer: Ivan Kohler <ivan-debian@420.am>
6 Standards-Version: 3.5.1
7
8 Package: libdbix-profile-perl
9 Architecture: all
10 Depends: ${perl:Depends}, libtime-hires-perl, libdbi-perl
11 Description:  DBI query profiler
12  DBIx::Profile is a quick and easy, and mostly transparent, profiler
13  for scripts using DBI.  It collects information on the query 
14  level, and keeps track of first, failed, normal, and total amounts
15  (count, wall clock, CPU time) for each function on the query.
16  .
17  NOTE: DBIx::Profile use Time::HiRes to clock the wall time and
18        the old standby times() to clock the CPU time.  The CPU time is
19        pretty coarse.
20  .
21  DBIx::Profile can also trace the execution of queries.  It will print 
22  a timestamp and the query that was called.  This is optional, and 
23  occurs only when the environment variable DBIXPROFILETRACE is set 
24  to 1. (ex: (bash) export DBIXPROFILETRACE=1).