--- asql-1.0.orig/debian/changelog +++ asql-1.0/debian/changelog @@ -0,0 +1,90 @@ +asql (1.0-1) unstable; urgency=low + + * New upstream release: + - Correctly identifies December in dates. (Long story.) + + -- Steve Kemp Tue, 21 Oct 2008 18:55:18 +0000 + +asql (0.9-1) unstable; urgency=low + + * New upstream release: + - Adds support for the --execute flag. + - Updated standards version to 3.8.0. + * Updated copyright file to be correct. + + -- Steve Kemp Fri, 4 Jul 2008 12:55:21 +0000 + +asql (0.8-1) unstable; urgency=low + + * New upstream release: + - Adds support for both "common" and "combined" format. + - Adds support for the "user" field. + + -- Steve Kemp Tue, 15 Jan 2007 18:43:32 +0000 + +asql (0.7-1) unstable; urgency=low + + * New upstream release: + - Adds missing 'date' filed to the tables (Closes: #456974) + - Adds optional label to imports. + - Adds init-file support. + + -- Steve Kemp Wednesday, 2 Jan 2007 11:22:33 +0000 + +asql (0.6-1) stable; urgency=low + + * New upstream release: + - Adds new SQL commands: create, drop, delete, update + - Adds persistent aliases. + - Adds 'save' & 'restore' commands. + - Fixes command line completion. + + -- Steve Kemp Friday, 30 Nov 2007 22:24:21 +0000 + +asql (0.5-3) stable; urgency=low + + * Applied patch from Andrew Pollock: + - Add support for reading .bz2 compressed logfiles. + + -- Steve Kemp Wednesday, 28 Nov 2007 09:57:01 +0000 + +asql (0.5-2) stable; urgency=low + + * Correctly parse HEAD lines. + * Added a new field to the database for the HTTP version. + + -- Steve Kemp Tuesday, 27 Nov 2007 21:05:10 +0000 + +asql (0.5-1) stable; urgency=low + + * Minor pod updates. + * Updated version number in the script. + + -- Steve Kemp Tuesday, 27 Nov 2007 21:02:10 +0000 + +asql (0.1-4) stable; urgency=low + + * Added completion on arguments to 'load'. + * Understand gzip compressed logfiles. + + -- Steve Kemp Tuesday, 27 Nov 2007 20:32:33 +0000 + +asql (0.1-3) stable; urgency=low + + * Remove the temporary database file upon cleanup/close + + -- Steve Kemp Tuesday, 27 Nov 2007 20:32:33 +0000 + +asql (0.1-2) stable; urgency=low + + * Cleanup of code with drop of Term::Shell since it breaks quotes. + * Added more examples. + * Added a stub manpage. + + -- Steve Kemp Tuesday, 27 Nov 2007 20:32:33 +0000 + +asql (0.1-1) unstable; urgency=low + + * Initial release + + -- Steve Kemp Tuesday, 27 Nov 2007 11:35:03 +0000 --- asql-1.0.orig/debian/control +++ asql-1.0/debian/control @@ -0,0 +1,15 @@ +Source: asql +Section: admin +Priority: optional +Maintainer: Steve Kemp +Build-Depends: debhelper (>> 4.0.0) +Standards-Version: 3.8.0 + +Package: asql +Architecture: all +Depends: ${misc:Depends}, libdbd-sqlite3-perl, libterm-readline-gnu-perl +Description: Run SQL queries against apache logs + This package contains a simple tool which allows you to easily run + SQL queries against apache common logfiles. + . + This can be more illuminating than viewing static logfile analysis. --- asql-1.0.orig/debian/compat +++ asql-1.0/debian/compat @@ -0,0 +1 @@ +4 --- asql-1.0.orig/debian/copyright +++ asql-1.0/debian/copyright @@ -0,0 +1,25 @@ + +This package was debianized by Steve Kemp on +Tuesday, 27th November 2006. + +It was downloaded from http://xen-tools.org/software/asql/ + +Copyright 2007-2008 Steve Kemp + +License: + +This program is free software, you can redistribute it and/or modify it under +the same terms as Perl itself. + +Perl is distributed under licenses: + + a) the GNU General Public License as published by the Free Software + Foundation; either version 1, or (at your option) any later + version, or + + b) the "Artistic License" which comes with Perl. + + 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'. + --- asql-1.0.orig/debian/rules +++ asql-1.0/debian/rules @@ -0,0 +1,54 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +# export DH_VERBOSE=1 + + +build: build-stamp + +build-stamp: + dh_testdir + + # Add here commands to compile the package. + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + # Add here commands to clean up after the build process. + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + make install PREFIX=`pwd`/debian/asql + mkdir -p `pwd`/debian/asql/usr/share/man/man8/ + pod2man ./bin/asql --official --section=8 `pwd`/debian/asql/usr/share/man/man8/asql.8 + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_installdebconf + dh_installdocs + dh_installexamples + dh_installchangelogs + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +# Build architecture-dependent files here. +binary-arch: build install +# We have nothing to do here + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- asql-1.0.orig/debian/docs +++ asql-1.0/debian/docs @@ -0,0 +1,2 @@ +COMMANDS +README