summaryrefslogtreecommitdiff
path: root/debian-lenny
diff options
context:
space:
mode:
authorFrancois Marier <francois@debian.org>2008-06-23 23:47:09 +1200
committerFrancois Marier <francois@debian.org>2008-06-23 23:47:09 +1200
commit42280f662d3ce4affb00eb68a22a081dfb951395 (patch)
tree6fc148a570675adc70504d610cb2552b4ab3545e /debian-lenny
Imported Upstream version 0.2.1upstream/0.2.1
Diffstat (limited to 'debian-lenny')
-rw-r--r--debian-lenny/.gitignore3
-rw-r--r--debian-lenny/changelog17
-rw-r--r--debian-lenny/compat1
-rw-r--r--debian-lenny/control18
-rw-r--r--debian-lenny/copyright25
-rw-r--r--debian-lenny/docs1
-rw-r--r--debian-lenny/install2
-rw-r--r--debian-lenny/manpages1
-rwxr-xr-xdebian-lenny/rules53
9 files changed, 121 insertions, 0 deletions
diff --git a/debian-lenny/.gitignore b/debian-lenny/.gitignore
new file mode 100644
index 0000000..5aeeab2
--- /dev/null
+++ b/debian-lenny/.gitignore
@@ -0,0 +1,3 @@
+/files
+/cil
+*.substvars
diff --git a/debian-lenny/changelog b/debian-lenny/changelog
new file mode 100644
index 0000000..f42576f
--- /dev/null
+++ b/debian-lenny/changelog
@@ -0,0 +1,17 @@
+cil (0.2.1) unstable; urgency=low
+
+ * Ready for 0.2.1 release
+
+ -- Andrew Chilton <andychilton@gmail.com> Mon, 23 Jun 2008 22:32:18 +1200
+
+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
diff --git a/debian-lenny/compat b/debian-lenny/compat
new file mode 100644
index 0000000..7f8f011
--- /dev/null
+++ b/debian-lenny/compat
@@ -0,0 +1 @@
+7
diff --git a/debian-lenny/control b/debian-lenny/control
new file mode 100644
index 0000000..ebac134
--- /dev/null
+++ b/debian-lenny/control
@@ -0,0 +1,18 @@
+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.
diff --git a/debian-lenny/copyright b/debian-lenny/copyright
new file mode 100644
index 0000000..57ddd5f
--- /dev/null
+++ b/debian-lenny/copyright
@@ -0,0 +1,25 @@
+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.
diff --git a/debian-lenny/docs b/debian-lenny/docs
new file mode 100644
index 0000000..e845566
--- /dev/null
+++ b/debian-lenny/docs
@@ -0,0 +1 @@
+README
diff --git a/debian-lenny/install b/debian-lenny/install
new file mode 100644
index 0000000..6d9e803
--- /dev/null
+++ b/debian-lenny/install
@@ -0,0 +1,2 @@
+lib/* usr/share/perl5
+bin/cil usr/bin
diff --git a/debian-lenny/manpages b/debian-lenny/manpages
new file mode 100644
index 0000000..866347b
--- /dev/null
+++ b/debian-lenny/manpages
@@ -0,0 +1 @@
+cil.1
diff --git a/debian-lenny/rules b/debian-lenny/rules
new file mode 100755
index 0000000..b9873e2
--- /dev/null
+++ b/debian-lenny/rules
@@ -0,0 +1,53 @@
+#!/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
+
+## ----------------------------------------------------------------------------