--- taglog-0.2.3.orig/tag.3 +++ taglog-0.2.3/tag.3 @@ -1,4 +1,3 @@ -./" Manual page for tag.tcl .TH tag 3tcl "July 3, 2000 .SH NAME tag \- Manipulate tagged files --- taglog-0.2.3.orig/Makefile +++ taglog-0.2.3/Makefile @@ -26,3 +26,5 @@ taglog.vfs: taglog tclsh install.tcl -vfs +clean: +# Nothing to do --- taglog-0.2.3.orig/taglog.1 +++ taglog-0.2.3/taglog.1 @@ -1,4 +1,3 @@ -./" Manual page for taglog .TH tag 1 "2001-11-7" .SH NAME taglog \- Time Management and Recording system --- taglog-0.2.3.orig/debian/copyright +++ taglog-0.2.3/debian/copyright @@ -0,0 +1,12 @@ +This package was debianized by John Lines on +Tue Aug 26 21:22:36 BST 2003. + +It was downloaded from http://www.paladin.demon.co.uk/tag-types/taglog/ + +Upstream Author: + +Copyright: + +Taglog is Copyright John Lines Nov 1999 +and is released under the terms of the GNU Public Licence. + --- taglog-0.2.3.orig/debian/dirs +++ taglog-0.2.3/debian/dirs @@ -0,0 +1,5 @@ +usr/bin +usr/share/taglog +usr/share/doc/taglog +usr/share/man/man1 +usr/share/man/man3 --- taglog-0.2.3.orig/debian/docs +++ taglog-0.2.3/debian/docs @@ -0,0 +1 @@ +README --- taglog-0.2.3.orig/debian/changelog +++ taglog-0.2.3/debian/changelog @@ -0,0 +1,76 @@ +taglog (0.2.3-1) unstable; urgency=low + + * New upstream version. + + -- John Lines Sat, 26 Jul 2008 08:03:09 +0100 + +taglog (0.2.0-1) unstable; urgency=low + + * New upstream version - Closes: #324375 + + -- John Lines Wed, 28 Sep 2005 20:10:16 +0100 + +taglog (0.1.52-1) unstable; urgency=low + + * New upstream version. + + -- John Lines Thu, 23 Sep 2004 20:28:53 +0100 + +taglog (0.1.48-1) unstable; urgency=low + + * New upstream version, looks for help files in /usr/share/taglog and + other fixes. + * Closes: #236915: Talog does not start; incorrect path + + -- John Lines Wed, 5 May 2004 22:09:26 +0100 + +taglog (0.1.47-1) unstable; urgency=low + + * New upstream version Can save TimeBooking reports as CSV. + * Closes: #236915: Talog does not start; incorrect path + + -- John Lines Tue, 16 Mar 2004 08:47:04 +0000 + +taglog (0.1.43-1) unstable; urgency=low + + * New upstream - minor reporting improvements + + -- John Lines Thu, 20 Nov 2003 13:33:44 +0000 + +taglog (0.1.42-1) unstable; urgency=low + + * New upstream version - many changes detailed in the main changelog + * Projects are sorted in the Projects View listing - Closes: #206190 + * Install files into /usr/share/lib/taglog rather than /usr/lib/taglog + + -- John Lines Tue, 26 Aug 2003 21:32:42 +0100 + +taglog (0.1.32-1) unstable; urgency=low + + * New upstream version, several minor bugfixes + + -- John Lines Sat, 9 Mar 2002 11:27:49 +0000 + +taglog (0.1.29-1) unstable; urgency=low + + * New upstream version, has a year 2002 bug fix and improved German + translation + + -- John Lines Mon, 14 Jan 2002 22:22:06 +0000 + +taglog (0.1.28-1) unstable; urgency=low + + * New upstream version - minor bugfixes, plus projects now in their + own file, not in preferences. + + -- John Lines Tue, 27 Nov 2001 20:56:11 +0000 + +taglog (0.1.27-1) unstable; urgency=low + + * Initial Release, Closes: #118706 + + -- John Lines Sun, 11 Nov 2001 16:44:08 +0000 + +Local variables: +mode: debian-changelog +End: --- taglog-0.2.3.orig/debian/menu +++ taglog-0.2.3/debian/menu @@ -0,0 +1,2 @@ +?package(taglog):needs="X11" section="Applications/Project Management"\ + title="taglog" command="/usr/bin/taglog" --- taglog-0.2.3.orig/debian/postinst +++ taglog-0.2.3/debian/postinst @@ -0,0 +1,47 @@ +#! /bin/sh +# postinst script for taglog +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `configure' +# * `abort-upgrade' +# * `abort-remove' `in-favour' +# +# * `abort-deconfigure' `in-favour' +# `removing' +# +# for details, see /usr/share/doc/packaging-manual/ +# +# quoting from the policy: +# Any necessary prompting should almost always be confined to the +# post-installation script, and should be protected with a conditional +# so that unnecessary prompting doesn't happen if a package's +# installation fails and the `postinst' is called with `abort-upgrade', +# `abort-remove' or `abort-deconfigure'. + +case "$1" in + configure) + + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 0 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + + --- taglog-0.2.3.orig/debian/control +++ taglog-0.2.3/debian/control @@ -0,0 +1,23 @@ +Source: taglog +Section: utils +Priority: optional +Maintainer: John Lines +Build-Depends-Indep: tcl8.5 | tclsh +Build-Depends: debhelper (>> 3.0.0) +Standards-Version: 3.7.3.0 + +Package: taglog +Architecture: all +Depends: tk8.5 | wish +Description: Personal time management system + Taglog is designed for anyone who spends most of their day sitting + at a computer, working on various projects. You can make notes about + what you do, as you go along, associating them with the projects you + work on. At the end of the week you can produce a report of how your + time was spent, broken down by project for booking purposes. You can + view previous entries, by date, or by project. You can enter the + actions you intend to take, associate them with a project, and mark + them as active, or complete. + . +Homepage: http://www.paladin.demon.co.uk/tag-types/taglog/ + --- taglog-0.2.3.orig/debian/rules +++ taglog-0.2.3/debian/rules @@ -0,0 +1,81 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + + +configure: configure-stamp +configure-stamp: + dh_testdir + # Add here commands to configure the package. + + + touch configure-stamp + +build: configure-stamp build-stamp +build-stamp: + dh_testdir + + # Add here commands to compile the package. + $(MAKE) + #/usr/bin/docbook-to-man debian/taglog.sgml > taglog.1 + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + # Add here commands to clean up after the build process. + $(MAKE) clean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/taglog. +# $(MAKE) install DESTDIR=$(CURDIR)/debian/taglog + tclsh install.tcl -debian $(CURDIR)/debian/taglog + + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + dh_testdir + dh_testroot +# dh_installdebconf + dh_installdocs + dh_installexamples + dh_installmenu +# dh_installmime +# dh_installinit + dh_installcron + dh_installman + dh_installinfo +# dh_undocumented + dh_installchangelogs changelog + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_makeshlibs + dh_installdeb +# dh_perl + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + + +# Build architecture-dependent files here. +binary-arch: build install + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure --- taglog-0.2.3.orig/debian/compat +++ taglog-0.2.3/debian/compat @@ -0,0 +1 @@ +6