From: Andrew Chilton Date: Mon, 5 May 2008 12:10:22 +0000 (+1200) Subject: Add initial packaging for 'cil' X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=5aa05bb1c2fc166cf45d227b240a5e1bf4d8ac65;p=cil.git Add initial packaging for 'cil' --- diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..a739c51 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +cil (0.1.0) unstable; urgency=low + + * Ready for 0.1 release + + -- Andrew Chilton Sun, 04 May 2008 16:17:17 +1200 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..b8626c4 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +4 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..bf3ea5e --- /dev/null +++ b/debian/control @@ -0,0 +1,17 @@ +Source: cil +Section: perl +Priority: optional +Maintainer: Andrew Chilton +Uploaders: Andrew Chilton +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. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..35650ae --- /dev/null +++ b/debian/copyright @@ -0,0 +1,25 @@ +This package is a Debian native package. + +Author and Copyright: + + (c) 2008 Andrew Chilton + + 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 . diff --git a/debian/install b/debian/install new file mode 100644 index 0000000..6d9e803 --- /dev/null +++ b/debian/install @@ -0,0 +1,2 @@ +lib/* usr/share/perl5 +bin/cil usr/bin diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..a321962 --- /dev/null +++ b/debian/rules @@ -0,0 +1,42 @@ +#!/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 + +## ----------------------------------------------------------------------------