--- fcoretools-1.0.orig/debian/rules +++ fcoretools-1.0/debian/rules @@ -0,0 +1,60 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +build: build-stamp + +build-stamp: + dh_testdir + + install fadvise.pl fadvise + install fincore.pl fincore + pod2man fadvise > fadvise.1 + pod2man fincore > fincore.1 + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + rm -f fadvise fincore fadvise.1 fincore.1 + rm -rf _Inline + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_install + dh_installman + dh_perl + dh_compress + dh_fixperms + dh_installdeb + 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 --- fcoretools-1.0.orig/debian/fcoretools.install +++ fcoretools-1.0/debian/fcoretools.install @@ -0,0 +1,2 @@ +fadvise /usr/bin/ +fincore /usr/bin/ --- fcoretools-1.0.orig/debian/control +++ fcoretools-1.0/debian/control @@ -0,0 +1,18 @@ +Source: fcoretools +Section: utils +Priority: optional +Maintainer: Matthew Johnson +Build-Depends: debhelper (>= 5.0.0), perl +Standards-Version: 3.8.0 + +Package: fcoretools +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, libinline-perl, perl-modules +Description: Tools to advise the IO scheduler + fincore is a command that shows which pages (blocks) of a file are in core + memory. It is particularly useful for determining the contents of the + buffer-cache. + . + fadvise is a command used to give file advisory information to the operating + system. Its "--dontneed" option is particularly useful in that it causes the + files' pages (blocks) to be evicted from the buffer-cache. --- fcoretools-1.0.orig/debian/changelog +++ fcoretools-1.0/debian/changelog @@ -0,0 +1,5 @@ +fcoretools (1.0-1) unstable; urgency=low + + * Initial Debian release (Closes: #500440) + + -- Matthew Johnson Sun, 28 Sep 2008 10:26:43 +0000 --- fcoretools-1.0.orig/debian/compat +++ fcoretools-1.0/debian/compat @@ -0,0 +1 @@ +5 --- fcoretools-1.0.orig/debian/fcoretools.manpages +++ fcoretools-1.0/debian/fcoretools.manpages @@ -0,0 +1,2 @@ +fincore.1 +fadvise.1 --- fcoretools-1.0.orig/debian/copyright +++ fcoretools-1.0/debian/copyright @@ -0,0 +1,18 @@ +This package was debianized by Matthew Johnson on Sun, +28 Sep 2008 10:23:59 +0100. + +It was downloaded from http://net.doit.wisc.edu/~plonka/packages.html + +Copyright: + +Upstream Author: Dave Plonka + +This software is Copyright 2007 Dave Plonka. + +You are free to distribute this software under the terms of the GNU General +Public License version 2. On Debian systems, the complete text of the GNU +General Public License can be found in the file +`/usr/share/common-licenses/GPL-2'. + +The packaging is Copyright 2008 Matthew Johnson and is also distributed under +the terms of the GNU General Public Licence version 2.