[python-bumps] 10/20: remove leftover dh_make template files

Drew Parsons dparsons at moszumanska.debian.org
Sun Oct 29 06:29:25 UTC 2017


This is an automated email from the git hooks/post-receive script.

dparsons pushed a commit to tag debian/0.7.6-1
in repository python-bumps.

commit 19c1a0afb63bb4f97245adeeb092af93d8492a5a
Author: Drew Parsons <dparsons at debian.org>
Date:   Sun Oct 29 12:41:25 2017 +0800

    remove leftover dh_make template files
---
 debian/README.Debian           |  6 ------
 debian/README.source           | 10 ----------
 debian/menu.ex                 |  2 --
 debian/postinst.ex             | 39 ---------------------------------------
 debian/postrm.ex               | 37 -------------------------------------
 debian/preinst.ex              | 35 -----------------------------------
 debian/prerm.ex                | 38 --------------------------------------
 debian/python-bumps.cron.d.ex  |  4 ----
 debian/python-bumps.default.ex | 10 ----------
 9 files changed, 181 deletions(-)

diff --git a/debian/README.Debian b/debian/README.Debian
deleted file mode 100644
index 8c8c9d8..0000000
--- a/debian/README.Debian
+++ /dev/null
@@ -1,6 +0,0 @@
-python-bumps for Debian
-----------------------
-
-<possible notes regarding this package - if none, delete this file>
-
- -- Drew Parsons <Drew Parsons <dparsons at debian.org>>  Thu, 26 Oct 2017 20:23:04 +0800
diff --git a/debian/README.source b/debian/README.source
deleted file mode 100644
index beb2c12..0000000
--- a/debian/README.source
+++ /dev/null
@@ -1,10 +0,0 @@
-python-bumps for Debian
-----------------------
-
-<this file describes information about the source package, see Debian policy
-manual section 4.14. You WILL either need to modify or delete this file>
-
-
-
- -- Drew Parsons <Drew Parsons <dparsons at debian.org>>  Thu, 26 Oct 2017 20:23:04 +0800
-
diff --git a/debian/menu.ex b/debian/menu.ex
deleted file mode 100644
index dfd9157..0000000
--- a/debian/menu.ex
+++ /dev/null
@@ -1,2 +0,0 @@
-?package(python-bumps):needs="X11|text|vc|wm" section="Applications/see-menu-manual"\
-  title="python-bumps" command="/usr/bin/python-bumps"
diff --git a/debian/postinst.ex b/debian/postinst.ex
deleted file mode 100644
index 9b7937c..0000000
--- a/debian/postinst.ex
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/bin/sh
-# postinst script for python-bumps
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-#        * <postinst> `configure' <most-recently-configured-version>
-#        * <old-postinst> `abort-upgrade' <new version>
-#        * <conflictor's-postinst> `abort-remove' `in-favour' <package>
-#          <new-version>
-#        * <postinst> `abort-remove'
-#        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
-#          <failed-install-package> <version> `removing'
-#          <conflicting-package> <version>
-# for details, see https://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-
-
-case "$1" in
-    configure)
-    ;;
-
-    abort-upgrade|abort-remove|abort-deconfigure)
-    ;;
-
-    *)
-        echo "postinst 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
diff --git a/debian/postrm.ex b/debian/postrm.ex
deleted file mode 100644
index f9eaa52..0000000
--- a/debian/postrm.ex
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/bin/sh
-# postrm script for python-bumps
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-#        * <postrm> `remove'
-#        * <postrm> `purge'
-#        * <old-postrm> `upgrade' <new-version>
-#        * <new-postrm> `failed-upgrade' <old-version>
-#        * <new-postrm> `abort-install'
-#        * <new-postrm> `abort-install' <old-version>
-#        * <new-postrm> `abort-upgrade' <old-version>
-#        * <disappearer's-postrm> `disappear' <overwriter>
-#          <overwriter-version>
-# for details, see https://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-
-
-case "$1" in
-    purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
-    ;;
-
-    *)
-        echo "postrm 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
diff --git a/debian/preinst.ex b/debian/preinst.ex
deleted file mode 100644
index 652b652..0000000
--- a/debian/preinst.ex
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/bin/sh
-# preinst script for python-bumps
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-#        * <new-preinst> `install'
-#        * <new-preinst> `install' <old-version>
-#        * <new-preinst> `upgrade' <old-version>
-#        * <old-preinst> `abort-upgrade' <new-version>
-# for details, see https://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-
-
-case "$1" in
-    install|upgrade)
-    ;;
-
-    abort-upgrade)
-    ;;
-
-    *)
-        echo "preinst 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
diff --git a/debian/prerm.ex b/debian/prerm.ex
deleted file mode 100644
index b8cb62a..0000000
--- a/debian/prerm.ex
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/bin/sh
-# prerm script for python-bumps
-#
-# 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 https://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-
-
-case "$1" in
-    remove|upgrade|deconfigure)
-    ;;
-
-    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
diff --git a/debian/python-bumps.cron.d.ex b/debian/python-bumps.cron.d.ex
deleted file mode 100644
index 63a10f7..0000000
--- a/debian/python-bumps.cron.d.ex
+++ /dev/null
@@ -1,4 +0,0 @@
-#
-# Regular cron jobs for the python-bumps package
-#
-0 4	* * *	root	[ -x /usr/bin/python-bumps_maintenance ] && /usr/bin/python-bumps_maintenance
diff --git a/debian/python-bumps.default.ex b/debian/python-bumps.default.ex
deleted file mode 100644
index 90b7812..0000000
--- a/debian/python-bumps.default.ex
+++ /dev/null
@@ -1,10 +0,0 @@
-# Defaults for python-bumps initscript
-# sourced by /etc/init.d/python-bumps
-# installed at /etc/default/python-bumps by the maintainer scripts
-
-#
-# This is a POSIX shell fragment
-#
-
-# Additional options that are passed to the Daemon.
-DAEMON_OPTS=""

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/python-bumps.git



More information about the debian-science-commits mailing list