summaryrefslogtreecommitdiff
path: root/debian/control
diff options
context:
space:
mode:
authorivan <ivan>2004-09-28 01:23:28 +0000
committerivan <ivan>2004-09-28 01:23:28 +0000
commit2b1b66f063003f81852be6481910d0211dfe72aa (patch)
treeb6b2d5e5f2edb7ac05c1ca8ef001c29de1f0a6c1 /debian/control
parentc2fa076a4e7ba0dcad67d8781921fc49ba46eda4 (diff)
sprintf patch and alternate root class kludge, MANIFEST and Changes files...HEADmaster
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).