From 42280f662d3ce4affb00eb68a22a081dfb951395 Mon Sep 17 00:00:00 2001 From: Francois Marier Date: Mon, 23 Jun 2008 23:47:09 +1200 Subject: Imported Upstream version 0.2.1 --- debian-lenny/.gitignore | 3 +++ debian-lenny/changelog | 17 ++++++++++++++++ debian-lenny/compat | 1 + debian-lenny/control | 18 +++++++++++++++++ debian-lenny/copyright | 25 +++++++++++++++++++++++ debian-lenny/docs | 1 + debian-lenny/install | 2 ++ debian-lenny/manpages | 1 + debian-lenny/rules | 53 +++++++++++++++++++++++++++++++++++++++++++++++++ 9 files changed, 121 insertions(+) create mode 100644 debian-lenny/.gitignore create mode 100644 debian-lenny/changelog create mode 100644 debian-lenny/compat create mode 100644 debian-lenny/control create mode 100644 debian-lenny/copyright create mode 100644 debian-lenny/docs create mode 100644 debian-lenny/install create mode 100644 debian-lenny/manpages create mode 100755 debian-lenny/rules (limited to 'debian-lenny') 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 Mon, 23 Jun 2008 22:32:18 +1200 + +cil (0.2.0) unstable; urgency=low + + * Ready for 0.2 release + + -- Andrew Chilton Sun, 22 Jun 2008 16:17:18 +1200 + +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-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 +Uploaders: Andrew Chilton +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 on +Sun, 22 Jun 2008 17:48:00 +1200 + +Upstream Author: Andrew Chilton + +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 . + +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 + +## ---------------------------------------------------------------------------- -- cgit v1.2.3