summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Quinson <mquinson@debian.org>2003-11-24 09:05:33 +0000
committerMartin Quinson <mquinson@debian.org>2003-11-24 09:05:33 +0000
commit9bc082c936fddec36dd5c437f3d433876cc6a945 (patch)
treef40d508ffc8488cd35bec749a9dd375f1a16e4eb
parent7a2d0c3dad0184ae86ca35add0af8af73b2c17d1 (diff)
downloadquilt-9bc082c936fddec36dd5c437f3d433876cc6a945.tar.gz
Remove obsolet files
-rw-r--r--debian/debquilt.mk12
-rw-r--r--debian/docs8
-rw-r--r--debian/prerm39
3 files changed, 0 insertions, 59 deletions
diff --git a/debian/debquilt.mk b/debian/debquilt.mk
deleted file mode 100644
index 394e037..0000000
--- a/debian/debquilt.mk
+++ /dev/null
@@ -1,12 +0,0 @@
-# Common rules to handle a debian package using the quilt patch utility
-
-patch:
- [ -L patches ] || ln -s debian/patches patches
- quilt push -a
-
-unpatch:
- if [ -L patches ] ; then \
- quilt pop -a; \
- rm patches; \
- fi
- rm -rf .pc
diff --git a/debian/docs b/debian/docs
deleted file mode 100644
index 4b1ce35..0000000
--- a/debian/docs
+++ /dev/null
@@ -1,8 +0,0 @@
-AUTHORS
-BUGS
-TODO
-doc/docco.txt
-doc/README
-doc/consider-for-docs-1.mail
-doc/consider-for-docs-2.mail
-doc/consider-for-docs-3.mail
diff --git a/debian/prerm b/debian/prerm
deleted file mode 100644
index f29a26d..0000000
--- a/debian/prerm
+++ /dev/null
@@ -1,39 +0,0 @@
-#! /bin/sh
-# prerm script for patch-scripts
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-# * <prerm> `remove'
-# * <old-prerm> `upgrade' <new-version>
-# * <new-prerm> `failed-upgrade' <old-version>
-# * <conflictor's-prerm> `remove' `in-favour' <package> <new-version>
-# * <deconfigured's-prerm> `deconfigure' `in-favour'
-# <package-being-installed> <version> `removing'
-# <conflicting-package> <version>
-# for details, see http://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-
-
-case "$1" in
- remove|upgrade|deconfigure)
-# install-info --quiet --remove /usr/info/patch-scripts.info.gz
- ;;
- failed-upgrade)
- ;;
- *)
- echo "prerm called with unknown argument \`$1'" >&2
- exit 1
- ;;
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0
-
-