]> git.mjollnir.org Git - cil.git/commitdiff
Add initial packaging for 'cil'
authorAndrew Chilton <andychilton@gmail.com>
Mon, 5 May 2008 12:10:22 +0000 (00:10 +1200)
committerAndrew Chilton <andychilton@gmail.com>
Mon, 5 May 2008 12:10:22 +0000 (00:10 +1200)
debian/changelog [new file with mode: 0644]
debian/compat [new file with mode: 0644]
debian/control [new file with mode: 0644]
debian/copyright [new file with mode: 0644]
debian/install [new file with mode: 0644]
debian/rules [new file with mode: 0755]

diff --git a/debian/changelog b/debian/changelog
new file mode 100644 (file)
index 0000000..a739c51
--- /dev/null
@@ -0,0 +1,5 @@
+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
diff --git a/debian/compat b/debian/compat
new file mode 100644 (file)
index 0000000..b8626c4
--- /dev/null
@@ -0,0 +1 @@
+4
diff --git a/debian/control b/debian/control
new file mode 100644 (file)
index 0000000..bf3ea5e
--- /dev/null
@@ -0,0 +1,17 @@
+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.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644 (file)
index 0000000..35650ae
--- /dev/null
@@ -0,0 +1,25 @@
+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/>.
diff --git a/debian/install b/debian/install
new file mode 100644 (file)
index 0000000..6d9e803
--- /dev/null
@@ -0,0 +1,2 @@
+lib/*               usr/share/perl5
+bin/cil             usr/bin
diff --git a/debian/rules b/debian/rules
new file mode 100755 (executable)
index 0000000..a321962
--- /dev/null
@@ -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
+
+## ----------------------------------------------------------------------------