debian/0000755000000000000000000000000012145265543007175 5ustar debian/rules0000755000000000000000000000022612145264310010244 0ustar #!/usr/bin/make -f # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 %: dh $@ # Deliberately empty targets override_dh_auto_install: debian/changelog0000644000000000000000000000714712145265543011060 0ustar since (1.1-3) unstable; urgency=low * Bump debhelper compatibility to 9 - Update versioned debhelper build-dependency * Patch upstream Makefile to - don't overwrite already set variables - pass additional variables (CPPFLAGS, LDFLAGS) * Streamline debian/rules - use dh_auto_{build,clean} - use debian/since.manpages instead of dh_installman parameter - switch to minimal dh7 style debian/rules, but don't run dh_auto_install * Fixes the following lintian warnings: - hardening-no-relro - hardening-no-fortify-functions - vcs-field-not-canonical - debian-rules-missing-recommended-target * Rename debian/since.* to debian/* * Bump Standards-Version to 3.9.4 (no further changes) -- Axel Beckert Fri, 17 May 2013 01:27:31 +0200 since (1.1-2) unstable; urgency=low * Fix FTBFS on GNU/Hurd - add patch hurd-path-max.patch based on fix for #257087. -- Axel Beckert Mon, 02 Aug 2010 13:11:55 +0200 since (1.1-1) unstable; urgency=low * New upstream release (Closes: #590939) - [debian/rules] remove call to reallyclean make target as it no more exists. - [debian/copyright] Updated; License changed to GPLv3+ * New Maintainer, thanks Felipe for all his work! * Move to git as VCS, adapt Vcs-Headers * Bump Standards-Version to 3.9.1 (no changes necessary) * Replace "dh_clean -k" by "dh_prep" and bump debhelper compatibility to 7 * Switch to Source Format "3.0 (quilt)" * Add dependency on ${misc:Depends} -- Axel Beckert Mon, 02 Aug 2010 00:22:53 +0200 since (0.5-5) unstable; urgency=low * Change maintainer e-mail address. * Fix lintian warnings - debian-rules-ignores-make-clean-error * Bump Standards-Version to 3.7.3 (without modification). * Added Vcs-* fields (debian/control). * Added Homepage field (debian/control). * Added debian/watch. * Update debhelper compat to 5. - Update Build-Deps accordingly. * Updating information in debian/copyright. -- Felipe Augusto van de Wiel (faw) Sat, 26 Jan 2008 21:35:09 -0600 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 debian/control0000644000000000000000000000131012145263031010561 0ustar Source: since Section: text Priority: optional Maintainer: Axel Beckert Build-Depends: debhelper (>= 9~) Standards-Version: 3.9.4 Vcs-Git: git://anonscm.debian.org/collab-maint/since.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/since.git Homepage: http://welz.org.za/projects/since Package: since Architecture: any Depends: ${shlibs:Depends}, ${misc: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). debian/manpages0000644000000000000000000000001012145263031010670 0ustar since.1 debian/docs0000644000000000000000000000001011424527101010025 0ustar README debian/compat0000644000000000000000000000000212145261234010364 0ustar 9 debian/watch0000644000000000000000000000007611424527101010217 0ustar version=3 http://welz.org.za/projects/since/since-(.*).tar.gz debian/install0000644000000000000000000000002011424527101010544 0ustar since usr/bin/ debian/dirs0000644000000000000000000000003311424527101010043 0ustar usr/bin usr/share/man/man1 debian/patches/0000755000000000000000000000000012145262353010620 5ustar debian/patches/series0000644000000000000000000000005412145261077012036 0ustar hurd-path-max.patch optimize-makefile.patch debian/patches/hurd-path-max.patch0000644000000000000000000000117511425524227014325 0ustar Fix for FTBFS on GNU/Hurd due to limits.h not defining PATH_MAX. Patch by Axel Beckert , based on patch for http://bugs.debian.org/257087 by Jari Aalto. Index: since-1.1/since.c =================================================================== --- since-1.1.orig/since.c 2010-08-02 10:57:50.000000000 +0000 +++ since-1.1/since.c 2010-08-02 10:59:24.000000000 +0000 @@ -20,6 +20,10 @@ #include #endif +#ifndef PATH_MAX +#define PATH_MAX 10000 /* Hurd does not define PATH_MAX in limits.h */ +#endif + /* for embedded or broken systems where no home exists */ #define SINCE_FALLBACK "/tmp/since" debian/patches/optimize-makefile.patch0000644000000000000000000000172412145262353015260 0ustar Description: Properly pass dpkg-buildflags variables * Don't overwrite already set variables * Pass additional variables (CPPFLAGS, LDFLAGS) Fixes lintian warnings hardening-no-{relro,fortify-functions} Author: Axel Beckert Index: since/Makefile =================================================================== --- since.orig/Makefile 2013-05-17 00:44:51.922569312 +0200 +++ since/Makefile 2013-05-17 00:59:42.954851043 +0200 @@ -4,18 +4,18 @@ NAME = since VERSION = 1.1 -CFLAGS = -Wall -O2 -DVERSION=\"$(VERSION)\" +CFLAGS += -DVERSION=\"$(VERSION)\" # disable/enable as desired CFLAGS += $(shell test -f /usr/include/sys/inotify.h && echo -DUSE_INOTIFY) CFLAGS += -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 #CFLAGS += -DDEBUG -CC = gcc +CC ?= gcc RM = rm -f INSTALL = install -D $(NAME): $(NAME).c - $(CC) $(CFLAGS) -o $@ $^ + $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o $@ $^ install: $(NAME) $(INSTALL) $(NAME) $(prefix)/bin/$(NAME) debian/source/0000755000000000000000000000000011424534707010475 5ustar debian/source/format0000644000000000000000000000001411424534633011701 0ustar 3.0 (quilt) debian/copyright0000644000000000000000000000230011424535602011116 0ustar This package was first "debianized" by Michael-John Turner on Wed, 19 May 1999 18:28:18 +0200. Luk Claes took care of the package until Mon, 16 Jan 2006. Felipe Augusto van de Wiel (faw) is the current maintainer of the package. It can be downloaded from http://welz.org.za/projects/since/ Upstream Author: Marc Welz Copyright © 1998, 2010 Marc Welz License: 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 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 the Debian GNU/Linux distribution in file /usr/share/common-licenses/GPL-3; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.