* libclass-accessor-perl
* libdatetime-perl
-When inside the main cil directory, you can type the following to create a
+Out of the box, cil provides two debian directories depending on which version
+of Debian you wish to use. Currently, there isn't much difference but choose
+which distro you want and link that to 'debian/'. e.g. for Etch, run:
+
+ $ ln -s debian-etch debian
+
+Then inside the main cil directory, you can type the following to create a
Debian paackage:
$ dpkg-buildpackage -tc -us -uc -rfakeroot
--- /dev/null
+/files
+/cil
+*.substvars
--- /dev/null
+cil (0.2.0) unstable; urgency=low
+
+ * Ready for 0.2 release
+
+ -- Andrew Chilton <andychilton@gmail.com> Sun, 22 Jun 2008 16:17:18 +1200
+
+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: debhelper (>= 5)
+Build-Depends-Indep: perl
+
+Package: cil
+Section: perl
+Priority: optional
+Architecture: all
+Depends: ${perl:Depends}, libgetopt-mixed-perl, libfile-touch-perl, libfile-slurp-perl, libclass-accessor-perl, libdatetime-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 was debianized by Andrew Chilton <andychilton@gmail.com> on
+Sun, 22 Jun 2008 17:48:00 +1200
+
+Upstream Author: Andrew Chilton <andychilton@gmail.com>
+
+Copyright: (C) 2008 Andrew Chilton
+
+License:
+
+ 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/>.
+
+You are free to distribute this software under the terms of the GNU General
+Public License. On Debian systems, the complete text of the GNU General Public
+License can be found in /usr/share/common-licenses/GPL file.
--- /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
+ rm -f build-stamp install-stamp
+ [ ! -f Makefile ] || $(MAKE) clean
+ rm -f $(CURDIR)/cil.1
+ dh_clean
+
+build: build-stamp
+build-stamp:
+ dh_testdir
+ [ ! -f Makefile ] || $(MAKE)
+ echo Doing MAN...
+ pod2man $(CURDIR)/bin/cil > $(CURDIR)/cil.1
+ touch build-stamp
+
+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 install binary-indep binary-arch binary
+
+## ----------------------------------------------------------------------------