[Pkg-ofed-commits] [srptools] 01/03: Reverse previous upload. Only leave the changelog and the NEWS file

Ana Beatriz Guerrero López ana at moszumanska.debian.org
Sun May 14 23:22:23 UTC 2017


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

ana pushed a commit to branch master
in repository srptools.

commit acefd2a53475e05d96716d5664ab6dfdf0e7db21
Author: Ana Beatriz Guerrero Lopez <ana at debian.org>
Date:   Sat May 13 12:47:02 2017 +0200

    Reverse previous upload. Only leave the changelog and the NEWS file
---
 debian/control                                     |  5 +-
 ...low-all-targets-if-not-explicitly-allowed.patch | 26 ----------
 debian/patches/series                              |  1 -
 debian/srptools.postinst                           | 58 ----------------------
 debian/srptools.preinst                            | 52 -------------------
 5 files changed, 2 insertions(+), 140 deletions(-)

diff --git a/debian/control b/debian/control
index 4825224..3ed4cf4 100644
--- a/debian/control
+++ b/debian/control
@@ -2,10 +2,9 @@ Source: srptools
 Section: net
 Priority: extra
 Maintainer: OFED and Debian Developement and Discussion <pkg-ofed-devel at lists.alioth.debian.org>
-Uploaders: Ana Beatriz Guerrero Lopez <ana at debian.org>,
-           Roland Fehrenbacher <rf at q-leap.de>
+Uploaders: Ana Beatriz Guerrero Lopez <ana at debian.org>
 Build-Depends: debhelper (>= 9), autotools-dev, libibumad-dev, libibverbs-dev
-Standards-Version: 3.9.8
+Standards-Version: 3.9.7
 Vcs-Git: git://anonscm.debian.org/pkg-ofed/srptools.git
 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-ofed/srptools.git
 Homepage: https://www.openfabrics.org/downloads/srptools/
diff --git a/debian/patches/0001-Disallow-all-targets-if-not-explicitly-allowed.patch b/debian/patches/0001-Disallow-all-targets-if-not-explicitly-allowed.patch
deleted file mode 100644
index d28a9f0..0000000
--- a/debian/patches/0001-Disallow-all-targets-if-not-explicitly-allowed.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From: Roland Fehrenbacher <rf at q-leap.de>
-Date: Thu, 4 May 2017 14:42:22 +0000
-Subject: Disallow all targets if not explicitly allowed
-
----
- srp_daemon/srp_daemon.conf | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/srp_daemon/srp_daemon.conf b/srp_daemon/srp_daemon.conf
-index 8a3abe5..60aed4a 100644
---- a/srp_daemon/srp_daemon.conf
-+++ b/srp_daemon/srp_daemon.conf
-@@ -9,11 +9,11 @@
- #a       pkey=ffff
- ## allow target with the following id_ext and ioc_guid
- #a       id_ext=200500A0B81146A1,ioc_guid=00a0b80200402bef
--## disallow all the rest
--#d
- ##
- ## Here is another example:
- ##
- ## Allow all targets and set queue size to 128.
- # a      queue_size=128,max_cmd_per_lun=128
- 
-+# Disallow all targets if not explicitly allowed
-+d
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index 287e627..0000000
--- a/debian/patches/series
+++ /dev/null
@@ -1 +0,0 @@
-0001-Disallow-all-targets-if-not-explicitly-allowed.patch
diff --git a/debian/srptools.postinst b/debian/srptools.postinst
deleted file mode 100644
index aa678ee..0000000
--- a/debian/srptools.postinst
+++ /dev/null
@@ -1,58 +0,0 @@
-#!/bin/sh
-# postinst script for slurmctld
-#
-# see: dh_installdeb(1)
-
-set -e
-
-preversion=$2
-
-# 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>
-#        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
-#          <failed-install-package> <version> `removing'
-#          <conflicting-package> <version>
-# for details, see http://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-#
-STARTOPTION="start"
-case "$1" in
-  configure)
-    if [ -n "$preversion" ]; then
-      if dpkg --compare-versions "$preversion" lt "1.0.3-2"; then
-        conffile=/etc/srp_daemon.conf
-        checkdir=/var/lib/srptools-old-had-d
-        # Restore previous default config, if it was unmodified
-        md5sum="$(md5sum $conffile | sed -e 's/ .*//')"
-        old_md5sum="$(dpkg-query -W -f='${Conffiles}' srptools | \
-            sed -n -e "\' $conffile ' { s/.* //; p }")"
-        if [ "$md5sum" = "$old_md5sum" ]; then
-          if [ ! -d $checkdir ]; then
-            # Uncomment again only if original version didn't already have the
-            # 'd' line.
-            sed -i -e 's/^d$/#d/g' $conffile
-          fi
-        fi
-        if [ -d $checkdir ]; then
-          rm -rf $checkdir
-        fi
-      fi
-    fi
-    ;;
-    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/srptools.preinst b/debian/srptools.preinst
deleted file mode 100644
index f9a01e5..0000000
--- a/debian/srptools.preinst
+++ /dev/null
@@ -1,52 +0,0 @@
-#!/bin/sh
-# postinst script for slurmctld
-#
-# see: dh_installdeb(1)
-
-set -e
-
-preversion=$2
-
-# 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>
-#        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
-#          <failed-install-package> <version> `removing'
-#          <conflicting-package> <version>
-# for details, see http://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-#
-STARTOPTION="start"
-case "$1" in
-  upgrade)
-    if [ -n "$preversion" ]; then
-      if dpkg --compare-versions "$preversion" lt "1.0.3-2"; then
-        conffile=/etc/srp_daemon.conf
-        checkdir=/var/lib/srptools-old-had-d
-        # Check whether old config already contains the new 'global' 'd'
-        # and create temporary dir
-        if [ -d $checkdir ]; then
-          rm -rf $checkdir
-        fi
-        if grep -q '^\s*d\s*\#*' $conffile ; then
-          mkdir $checkdir
-        fi
-      fi
-    fi
-    ;;
-    install|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

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ofed/srptools.git



More information about the Pkg-ofed-commits mailing list