--- /dev/null
+cil (0.1.0) unstable; urgency=low
+
+ * Ready for 0.1 release
+
+ -- Andrew Chilton <andychilton@gmail.com> Sun, 04 May 2008 16:17:17 +1200
--- /dev/null
+Source: cil
+Section: perl
+Priority: optional
+Maintainer: Andrew Chilton <andychilton@gmail.com>
+Uploaders: Andrew Chilton <andychilton@gmail.com>
+Standards-Version: 3.6.1
+Build-Depends-Indep: debhelper (>= 4.1), perl
+
+Package: cil
+Section: perl
+Priority: optional
+Architecture: all
+Depends: ${perl:Depends}, libterm-calleditor-perl, libfile-touch-perl
+Description: command line issue tracker
+ 'cil' allows easy command-line creation of an issue tracker. It saves each
+ issue locally and in plain text. Commands are given such that these issues can
+ be added, edited and listed easily.
--- /dev/null
+This package is a Debian native package.
+
+Author and Copyright:
+
+ (c) 2008 Andrew Chilton <andychilton@gmail.com>
+
+ All rights reserved.
+
+License:
+
+This program is free software; you can redistribute it and/or modify it under
+the following terms:
+
+ cil is free software: you can redistribute it and/or modify it under the
+ terms of the GNU General Public License as published by the Free Software
+ Foundation, either version 3 of the License, or (at your option) any later
+ version.
+
+ This program is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
+ more details.
+
+ You should have received a copy of the GNU General Public License along
+ with this program. If not, see <http://www.gnu.org/licenses/>.
--- /dev/null
+lib/* usr/share/perl5
+bin/cil usr/bin
--- /dev/null
+#!/usr/bin/make -f
+## ----------------------------------------------------------------------------
+
+## ----------------------------------------------------------------------------
+## uncomment this to turn on verbose mode
+
+# export DH_VERBOSE=1
+
+## ----------------------------------------------------------------------------
+
+clean:
+ dh_testdir
+ dh_testroot
+ dh_clean
+
+binary:
+ dh_testdir
+ dh_testroot
+
+ dh_install
+ dh_installdirs
+ dh_installdocs
+ dh_installdebconf
+ dh_installman
+ dh_installchangelogs
+ dh_compress
+ dh_fixperms
+ dh_installdeb
+
+ dh_perl
+
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+binary-arch:
+
+binary: binary-indep binary-arch
+
+.PHONY: clean build install binary-indep binary-arch binary
+
+## ----------------------------------------------------------------------------