diff options
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 30 | ||||
-rw-r--r-- | debian/control | 24 | ||||
-rw-r--r-- | debian/copyright | 13 | ||||
-rwxr-xr-x | debian/rules | 88 |
4 files changed, 155 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..b5fe637 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,30 @@ +libdbix-profile-perl (1.01-1) unstable; urgency=low + + * New upstream, new upstream release. + + -- Ivan Kohler <ivan-debian@420.am> Mon, 27 Sep 2004 05:25:02 -0700 + +libdbix-profile-perl (1.0-3) unstable; urgency=low + + * debian/copyright pedantry (closes: Bug#153331, Bug#153392) + * binary-arch vs. binary-indep (closes: Bug#153353) + * updated description from ddtp (closes: Bug#156303) + * remove spurious files in .diff (closes: Bug#153395) + + -- Ivan Kohler <ivan-debian@420.am> Sat, 7 Sep 2002 05:07:05 -0700 + +libdbix-profile-perl (1.0-2) unstable; urgency=low + + * corrected spelling in description and manpage (closes: Bug#124932) + + -- Ivan Kohler <ivan-debian@420.am> Mon, 17 Dec 2001 15:27:35 -0800 + +libdbix-profile-perl (1.0-1) unstable; urgency=low + + * Initial Release (closes: Bug#103669) + + -- Ivan Kohler <ivan-debian@420.am> Sun, 8 Jul 2001 15:59:58 -0700 + +Local variables: +mode: debian-changelog +End: 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). diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..b1cb494 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,13 @@ +This is the debian package for the DBIx::Profile module. +It was created by Ivan Kohler <ivan-debian@420.am> using dh-make-perl. + +Copyright (c) 1999,2000 Jeff Lathan, Kerry Clendinning. All rights reserved. + +This program is free software; you can redistribute it and/or modify it +under the same terms as Perl itself. + +Perl is distributed under your choice of the GNU General Public License or +the Artistic License. On Debian GNU/Linux systems, the complete text of the +GNU General Public License can be found in `/usr/share/common-licenses/GPL' +and the Artistic Licence in `/usr/share/common-licenses/Artistic'. + diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..6acde0d --- /dev/null +++ b/debian/rules @@ -0,0 +1,88 @@ +#!/usr/bin/make -f +#-*- makefile -*- +# Made with the aid of dh_make, by Craig Small +# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess. +# Some lines taken from debmake, by Christoph Lameter. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 +export DH_COMPAT=3 + +PACKAGE=$(shell dh_listpackages) + +ifndef PERL +PERL = /usr/bin/perl +endif + +ifndef DESTDIR +DESTDIR=.. +endif +TMP =`pwd`/debian/$(PACKAGE) + +build: build-stamp +build-stamp: + dh_testdir + + + # Add here commands to compile the package. + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) OPTIMIZE="-O2 -g -Wall" + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + # Add here commands to clean up after the build process. + -$(MAKE) realclean + + dh_clean + +install: + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/tmp. + #$(MAKE) install DESTDIR=`pwd`/debian/tmp + $(MAKE) install PREFIX=$(TMP)/usr + + +# Build architecture-dependent files here. +binary-arch: build install +# We have nothing to do by default. + +# Build architecture-independent files here. +binary-indep: build install +# dh_testversion + dh_testdir + dh_testroot + dh_installdocs README + dh_installexamples + dh_installmenu +# dh_installemacsen +# dh_installinit + dh_installcron + dh_installmanpages +# dh_undocumented + dh_installchangelogs + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_makeshlibs + dh_installdeb + dh_perl + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb --destdir=$(DESTDIR) + +source diff: + @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary |