--- crash-whitepaper-1.0.orig/debian/compat +++ crash-whitepaper-1.0/debian/compat @@ -0,0 +1 @@ +4 --- crash-whitepaper-1.0.orig/debian/control +++ crash-whitepaper-1.0/debian/control @@ -0,0 +1,15 @@ +Source: crash-whitepaper +Section: non-free/doc +Priority: optional +Maintainer: Troy Heber +Uploaders: Micah Anderson +Standards-Version: 3.6.2.1 +Build-Depends: debhelper (>=4) + +Package: crash-whitepaper +Architecture: all +Suggests: crash +Description: Whitepaper for crash kernel debugging utility + Whitepaper for the crash core analysis suite which is a self-contained tool + that can be used to investigate either live systems, LKCD (Linux Kernel Crash + Dumps) and Red Hat Netdump and Diskdump core dumps. --- crash-whitepaper-1.0.orig/debian/copyright +++ crash-whitepaper-1.0/debian/copyright @@ -0,0 +1,14 @@ +This package was debianized and currently maintained by Troy Heber + + +It was downloaded from http://people.redhat.com/anderson/.crash_whitepaper/ + +Upstream Author: Dave Anderson + +Permission is granted to copy, distribute and/or modify this document under the +terms of the GNU Free Documentation License, Version 1.2 or any later version +published by the Free Software Foundation; with no Invariant Sections, no +Front-Cover Texts, and no Back-Cover Texts. + +The GNU Free Documentation License Version 1.2 may be found on Debian systems +in /usr/share/common-licenses/GFDL-1.2. --- crash-whitepaper-1.0.orig/debian/changelog +++ crash-whitepaper-1.0/debian/changelog @@ -0,0 +1,14 @@ +crash-whitepaper (1.0-1.1) unstable; urgency=low + + * Non-maintainer upload. + * Add binary-arch target to debian/rules (closes: #640876). Thanks to Niels + Thykier for the bug report. + * Don't include the full text of the GFDL license in debian/copyright. + + -- Jakub Wilk Wed, 21 Sep 2011 00:45:50 +0200 + +crash-whitepaper (1.0-1) unstable; urgency=low + + * Initial Release. + + -- Troy Heber Fri, 06 Jan 2006 10:32:53 -0700 --- crash-whitepaper-1.0.orig/debian/rules +++ crash-whitepaper-1.0/debian/rules @@ -0,0 +1,32 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess. +# This version is for packages that are architecure independant. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +clean: + dh_testdir + dh_clean + +binary-arch: ; + +# Build architecture-dependent files here. +binary-indep: build + dh_testdir + dh_testroot + dh_clean -k + + dh_installdocs doc + dh_installchangelogs + + dh_compress -i + + dh_installdeb -i + dh_gencontrol -i + dh_builddeb -i + + +binary: binary-indep + +.PHONY: build clean binary-arch binary-indep