From 9fcb3bc29dfd429f521c4e40452197dc364310c3 Mon Sep 17 00:00:00 2001 From: Francois Marier Date: Thu, 5 Aug 2010 20:52:16 -0400 Subject: Imported Upstream version 0.07.00 --- debian-etch/changelog | 69 +++++++++++++++++++++++++++++++++++++++++++++++++++ debian-etch/compat | 1 + debian-etch/control | 18 ++++++++++++++ debian-etch/copyright | 25 +++++++++++++++++++ debian-etch/docs | 1 + debian-etch/install | 3 +++ debian-etch/manpages | 1 + debian-etch/rules | 53 +++++++++++++++++++++++++++++++++++++++ 8 files changed, 171 insertions(+) create mode 100644 debian-etch/changelog create mode 100644 debian-etch/compat create mode 100644 debian-etch/control create mode 100644 debian-etch/copyright create mode 100644 debian-etch/docs create mode 100644 debian-etch/install create mode 100644 debian-etch/manpages create mode 100755 debian-etch/rules (limited to 'debian-etch') diff --git a/debian-etch/changelog b/debian-etch/changelog new file mode 100644 index 0000000..846e40d --- /dev/null +++ b/debian-etch/changelog @@ -0,0 +1,69 @@ +cil (0.5.1) unstable; urgency=low + + * New release minus all the cruft + + -- Andrew Chilton Sat, 05 Jul 2008 18:28:22 +1200 + +cil (0.5.0) unstable; urgency=low + + * Fix bug when running certain commands (inc. init) + * Added command 'steal' + * Added command 'track' + + -- Andrew Chilton Sat, 05 Jul 2008 15:36:22 +1200 + +cil (0.4.2) unstable; urgency=low + + * Fix bug where new issues are assigned to the reporter + * Fix bug where only one item in a config list breaks listings + * Ready for 0.4.2 release + + -- Andrew Chilton Thu, 03 Jul 2008 22:22:22 +1200 + +cil (0.4.1) unstable; urgency=low + + * Fix dependency on libemail-date-perl + * Ready for 0.4.1 release + + -- Andrew Chilton Thu, 03 Jul 2008 00:09:21 +1200 + +cil (0.4.0) unstable; urgency=low + + * Can now read a ~/.cilrc file for user defined options + * Added command 'am' which applies a mailbox + * Can now use shortened hash names to the commands + * Allows dependencies between issues + * New filter called --is-mine + * Ready for 0.4.0 release + + -- Andrew Chilton Wed, 02 Jul 2008 23:12:20 +1200 + +cil (0.3.0) unstable; urgency=low + + * Added filters for the listing commands + * Added ability to read .cil config file + * Can now set which Statuses are valid + * Can set which Labels are valid + * Added 'fsck' command + * Added bash completion for options, commands and entities + * Ready for 0.3.0 release + + -- Andrew Chilton Sat, 28 Jun 2008 12:06:19 +1200 + +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-etch/compat b/debian-etch/compat new file mode 100644 index 0000000..7ed6ff8 --- /dev/null +++ b/debian-etch/compat @@ -0,0 +1 @@ +5 diff --git a/debian-etch/control b/debian-etch/control new file mode 100644 index 0000000..8042cb9 --- /dev/null +++ b/debian-etch/control @@ -0,0 +1,18 @@ +Source: cil +Section: perl +Priority: extra +Maintainer: Andrew Chilton +Uploaders: Andrew Chilton +Standards-Version: 3.6.1 +Build-Depends: debhelper (>= 5) +Build-Depends-Indep: perl + +Package: cil +Section: perl +Priority: extra +Architecture: all +Depends: ${perl:Depends}, libgetopt-mixed-perl, libfile-touch-perl, libfile-slurp-perl, libclass-accessor-perl, libdatetime-perl, libemail-find-perl, libemail-date-perl, libfile-homedir-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-etch/copyright b/debian-etch/copyright new file mode 100644 index 0000000..57ddd5f --- /dev/null +++ b/debian-etch/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-etch/docs b/debian-etch/docs new file mode 100644 index 0000000..e845566 --- /dev/null +++ b/debian-etch/docs @@ -0,0 +1 @@ +README diff --git a/debian-etch/install b/debian-etch/install new file mode 100644 index 0000000..dc23abd --- /dev/null +++ b/debian-etch/install @@ -0,0 +1,3 @@ +lib/* usr/share/perl5 +bin/cil usr/bin +etc/bash_completion.d/cil etc/bash_completion.d diff --git a/debian-etch/manpages b/debian-etch/manpages new file mode 100644 index 0000000..866347b --- /dev/null +++ b/debian-etch/manpages @@ -0,0 +1 @@ +cil.1 diff --git a/debian-etch/rules b/debian-etch/rules new file mode 100755 index 0000000..c886698 --- /dev/null +++ b/debian-etch/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 Changes + 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