summaryrefslogtreecommitdiff
path: root/debian/control
diff options
context:
space:
mode:
Diffstat (limited to 'debian/control')
-rw-r--r--debian/control24
1 files changed, 24 insertions, 0 deletions
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..f291305
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,24 @@
+Source: libdbix-profile-perl
+Section: interpreters
+Priority: optional
+Build-Depends: debhelper (>= 3.0.5), perl (>= 5.6.0-17)
+Maintainer: Ivan Kohler <ivan-debian@420.am>
+Standards-Version: 3.5.1
+
+Package: libdbix-profile-perl
+Architecture: all
+Depends: ${perl:Depends}, libtime-hires-perl, libdbi-perl
+Description: DBI query profiler
+ DBIx::Profile is a quick and easy, and mostly transparent, profiler
+ for scripts using DBI. It collects information on the query
+ level, and keeps track of first, failed, normal, and total amounts
+ (count, wall clock, CPU time) for each function on the query.
+ .
+ NOTE: DBIx::Profile use Time::HiRes to clock the wall time and
+ the old standby times() to clock the CPU time. The CPU time is
+ pretty coarse.
+ .
+ DBIx::Profile can also trace the execution of queries. It will print
+ a timestamp and the query that was called. This is optional, and
+ occurs only when the environment variable DBIXPROFILETRACE is set
+ to 1. (ex: (bash) export DBIXPROFILETRACE=1).