--- since-0.5.orig/debian/compat +++ since-0.5/debian/compat @@ -0,0 +1 @@ +4 --- since-0.5.orig/debian/dirs +++ since-0.5/debian/dirs @@ -0,0 +1,2 @@ +usr/bin +usr/share/man/man1 --- since-0.5.orig/debian/docs +++ since-0.5/debian/docs @@ -0,0 +1 @@ +README --- since-0.5.orig/debian/changelog +++ since-0.5/debian/changelog @@ -0,0 +1,60 @@ +since (0.5-4) unstable; urgency=low + + * Adding a version to the debhelper depends (debian/control). + * Bumping Standards-Version to 3.7.2 (no changes needed). + + -- Felipe Augusto van de Wiel (faw) Tue, 22 Aug 2006 01:31:22 -0300 + +since (0.5-3) unstable; urgency=low + + * New maintainer. (Closes: #313638). + * Bumping standards version to 3.6.2.2. + + -- Felipe Augusto van de Wiel (faw) Fri, 20 Jan 2006 14:18:21 -0200 + +since (0.5-2) unstable; urgency=low + + * Set maintainer to Debian QA Group + * Updated Standards-Version + * Removed version in build-dep on debhelper + * Add debian/compat + + -- Luk Claes Sat, 10 Sep 2005 09:57:34 +0000 + +since (0.5-1) unstable; urgency=low + + * New upstream version. + * New maintainer (closes: #201365). + * debhelper in Build-Depends (closes: #190527). + * Updated to standards version 3.6.0. + + -- Luk Claes Fri, 18 Jul 2003 15:47:38 +0200 + +since (0.3-1) unstable; urgency=low + + * New upstream. + + -- Michael-John Turner Fri, 11 May 2001 22:57:46 +0200 + +since (0.2-1) unstable; urgency=low + + * New upstream. + * Updated to policy 3.2.0 and changed build slightly. + + -- Michael-John Turner Mon, 20 Nov 2000 21:01:26 +0200 + +since (0.1-2) unstable; urgency=low + + * Updated to policy 3.0.1 + + -- Michael-John Turner Fri, 17 Sep 1999 14:30:47 +0200 + +since (0.1-1) unstable; urgency=low + + * Initial Release. + + -- Michael-John Turner Wed, 19 May 1999 18:28:18 +0200 + +Local variables: +mode: debian-changelog +End: --- since-0.5.orig/debian/copyright +++ since-0.5/debian/copyright @@ -0,0 +1,33 @@ +This package was first debianized by Michael-John Turner mj@debian.org on +Wed, 19 May 1999 18:28:18 +0200. + +It was downloaded from ftp://jade.cs.uct.ac.za/pub/ +Upstream Author: Marc Welz + +Luk Claes has taken care of the package until Mon, 16 +Jan 2006. + +Felipe Augusto van de Wiel (faw) is the current +maintainer of the package. + +Copyright: + 1998 Marc Welz + + +This program 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 2 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 with +the Debian GNU/Linux distribution in file /usr/share/common-licenses/GPL; +if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth +Floor, Boston, MA 02110-1301, USA. + +On Debian systems, the complete text of the GNU General Public +License, version 2, can be found in /usr/share/common-licenses/GPL-2. --- since-0.5.orig/debian/rules +++ since-0.5/debian/rules @@ -0,0 +1,62 @@ +#!/usr/bin/make -f +# MAde with the aid of dh_make, by Craig Small +# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess. +# Some lines taken from debmake, by Cristoph Lameter. + +PACKAGE=since +TMP=`pwd`/debian/since + +build: build-stamp +build-stamp: + dh_testdir + + $(MAKE) + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp install-stamp since + + -$(MAKE) clean + + dh_clean + +install: install-stamp +install-stamp: build-stamp + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + #$(MAKE) install DESTDIR=$(TMP) + cp -a since $(TMP)/usr/bin + + touch install-stamp + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installman since.1 + dh_installchangelogs + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +source diff: + @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary --- since-0.5.orig/debian/control +++ since-0.5/debian/control @@ -0,0 +1,15 @@ +Source: since +Section: text +Priority: optional +Maintainer: Felipe Augusto van de Wiel (faw) +Build-Depends: debhelper (>= 4.0.0) +Standards-Version: 3.7.2 + +Package: since +Architecture: any +Depends: ${shlibs:Depends} +Description: tail(1) work-alike that saves and uses state information + since is a tail(1) work-alike that remembers how much of a file + you have viewed and displays only what's new when you next view + that file. Ideal for viewing log files (it'll only show what's + new in the file since the last time it was run).