From 48e344fbc09a83724881fa688b847b66a31a82ef Mon Sep 17 00:00:00 2001 From: "Joop Stakenborg, PG4I" Date: Fri, 8 Nov 2002 16:25:01 +0000 Subject: [PATCH] remove template files git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@1256 7ae35d74-ebe9-4afe-98af-79ac388436b8 --- debian/conffiles.ex | 7 ------ debian/manpage.1.ex | 60 --------------------------------------------- debian/postinst.ex | 47 ----------------------------------- debian/postrm.ex | 36 --------------------------- debian/preinst.ex | 42 ------------------------------- debian/prerm.ex | 37 ---------------------------- debian/watch.ex | 5 ---- 7 files changed, 234 deletions(-) delete mode 100644 debian/conffiles.ex delete mode 100644 debian/manpage.1.ex delete mode 100644 debian/postinst.ex delete mode 100644 debian/postrm.ex delete mode 100644 debian/preinst.ex delete mode 100644 debian/prerm.ex delete mode 100644 debian/watch.ex diff --git a/debian/conffiles.ex b/debian/conffiles.ex deleted file mode 100644 index 2f390c7e9..000000000 --- a/debian/conffiles.ex +++ /dev/null @@ -1,7 +0,0 @@ -# -# If you want to use this conffile, remove all comments and put files that -# you want dpkg to process here using their absolute pathnames. -# See section 9.1 of the packaging manual. -# -# for example: -# /etc/hamlib/hamlib.conf diff --git a/debian/manpage.1.ex b/debian/manpage.1.ex deleted file mode 100644 index 7f0aef4e1..000000000 --- a/debian/manpage.1.ex +++ /dev/null @@ -1,60 +0,0 @@ -.\" Hey, EMACS: -*- nroff -*- -.\" First parameter, NAME, should be all caps -.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection -.\" other parameters are allowed: see man(7), man(1) -.TH HAMLIB SECTION "June 24, 2001" -.\" Please adjust this date whenever revising the manpage. -.\" -.\" Some roff macros, for reference: -.\" .nh disable hyphenation -.\" .hy enable hyphenation -.\" .ad l left justify -.\" .ad b justify to both left and right margins -.\" .nf disable filling -.\" .fi enable filling -.\" .br insert line break -.\" .sp insert n+1 empty lines -.\" for manpage-specific macros, see man(7) -.SH NAME -hamlib \- program to do something -.SH SYNOPSIS -.B hamlib -.RI [ options ] " files" ... -.br -.B bar -.RI [ options ] " files" ... -.SH DESCRIPTION -This manual page documents briefly the -.B hamlib -and -.B bar -commands. -This manual page was written for the Debian GNU/Linux distribution -because the original program does not have a manual page. -Instead, it has documentation in the GNU Info format; see below. -.PP -.\" TeX users may be more comfortable with the \fB\fP and -.\" \fI\fP escape sequences to invode bold face and italics, -.\" respectively. -\fBhamlib\fP is a program that... -.SH OPTIONS -These programs follow the usual GNU command line syntax, with long -options starting with two dashes (`-'). -A summary of options is included below. -For a complete description, see the Info files. -.TP -.B \-h, \-\-help -Show summary of options. -.TP -.B \-v, \-\-version -Show version of program. -.SH SEE ALSO -.BR bar (1), -.BR baz (1). -.br -The programs are documented fully by -.IR "The Rise and Fall of a Fooish Bar" , -available via the Info system. -.SH AUTHOR -This manual page was written by Terry Dawson , -for the Debian GNU/Linux system (but may be used by others). diff --git a/debian/postinst.ex b/debian/postinst.ex deleted file mode 100644 index b1816da60..000000000 --- a/debian/postinst.ex +++ /dev/null @@ -1,47 +0,0 @@ -#! /bin/sh -# postinst script for hamlib -# -# 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 - - diff --git a/debian/postrm.ex b/debian/postrm.ex deleted file mode 100644 index c1514bc39..000000000 --- a/debian/postrm.ex +++ /dev/null @@ -1,36 +0,0 @@ -#! /bin/sh -# postrm script for hamlib -# -# see: dh_installdeb(1) - -set -e - -# summary of how this script can be called: -# * `remove' -# * `purge' -# * `upgrade' -# * `failed-upgrade' -# * `abort-install' -# * `abort-install' -# * `abort-upgrade' -# * `disappear' overwrit>r> -# for details, see /usr/share/doc/packaging-manual/ - -case "$1" in - purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) - - - ;; - - *) - echo "postrm called with unknown argument \`$1'" >&2 - exit 0 - -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - - diff --git a/debian/preinst.ex b/debian/preinst.ex deleted file mode 100644 index fc0f7ec9d..000000000 --- a/debian/preinst.ex +++ /dev/null @@ -1,42 +0,0 @@ -#! /bin/sh -# preinst script for hamlib -# -# see: dh_installdeb(1) - -set -e - -# summary of how this script can be called: -# * `install' -# * `install' -# * `upgrade' -# * `abort-upgrade' -# -# For details see /usr/share/doc/packaging-manual/ - -case "$1" in - install|upgrade) -# if [ "$1" = "upgrade" ] -# then -# start-stop-daemon --stop --quiet --oknodo \ -# --pidfile /var/run/hamlib.pid \ -# --exec /usr/sbin/hamlib 2>/dev/null || true -# fi - ;; - - abort-upgrade) - ;; - - *) - echo "preinst 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 - - diff --git a/debian/prerm.ex b/debian/prerm.ex deleted file mode 100644 index b7ea40bed..000000000 --- a/debian/prerm.ex +++ /dev/null @@ -1,37 +0,0 @@ -#! /bin/sh -# prerm script for hamlib -# -# see: dh_installdeb(1) - -set -e - -# summary of how this script can be called: -# * `remove' -# * `upgrade' -# * `failed-upgrade' -# * `remove' `in-favour' -# * `deconfigure' `in-favour' -# `removing' -# -# for details, see /usr/share/doc/packaging-manual/ - -case "$1" in - remove|upgrade|deconfigure) -# install-info --quiet --remove /usr/info/hamlib.info.gz - ;; - failed-upgrade) - ;; - *) - echo "prerm 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 - - diff --git a/debian/watch.ex b/debian/watch.ex deleted file mode 100644 index c65da04c4..000000000 --- a/debian/watch.ex +++ /dev/null @@ -1,5 +0,0 @@ -# Example watch control file for uscan -# Rename this file to "watch" and then you can run the "uscan" command -# to check for upstream updates and more. -# Site Directory Pattern Version Script -sunsite.unc.edu /pub/Linux/Incoming hamlib-(.*)\.tar\.gz debian uupdate