[X2Go-Commits] [x2goclient] 14/18: debian/{x2goplugin.dirs, x2goplugin-provider.dirs, x2goplugin-provider.links, x2goplugin-provider.post*}: remove.

git-admin at x2go.org git-admin at x2go.org
Wed Mar 14 03:48:11 CET 2018


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

x2go pushed a commit to branch master
in repository x2goclient.

commit 51738fb489213ca28437e3959c6814fcfd9591d2
Author: Mihai Moldovan <ionic at ionic.de>
Date:   Wed Mar 14 02:32:38 2018 +0100

    debian/{x2goplugin.dirs,x2goplugin-provider.dirs,x2goplugin-provider.links,x2goplugin-provider.post*}: remove.
---
 debian/changelog                    |  2 ++
 debian/x2goplugin-provider.dirs     |  2 --
 debian/x2goplugin-provider.links    |  2 --
 debian/x2goplugin-provider.postinst | 49 -------------------------------------
 debian/x2goplugin-provider.postrm   | 47 -----------------------------------
 debian/x2goplugin.dirs              |  1 -
 6 files changed, 2 insertions(+), 101 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 818b336..9670914 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -48,6 +48,8 @@ x2goclient (4.1.2.0-0x2go1) UNRELEASED; urgency=medium
       dependencies, remove other plugin references.
   * debian/:
     - x2goplugin{,-provider}.install: clear out.
+    - {x2goplugin.dirs,x2goplugin-provider.dirs,x2goplugin-provider.links,
+       x2goplugin-provider.post*}: remove.
 
  -- X2Go Release Manager <git-admin at x2go.org>  Thu, 15 Feb 2018 22:01:32 +0100
 
diff --git a/debian/x2goplugin-provider.dirs b/debian/x2goplugin-provider.dirs
deleted file mode 100644
index b8f6dbe..0000000
--- a/debian/x2goplugin-provider.dirs
+++ /dev/null
@@ -1,2 +0,0 @@
-etc/x2go/plugin-provider
-etc/apache2/conf.d
diff --git a/debian/x2goplugin-provider.links b/debian/x2goplugin-provider.links
deleted file mode 100644
index c1af701..0000000
--- a/debian/x2goplugin-provider.links
+++ /dev/null
@@ -1,2 +0,0 @@
-etc/x2go/x2goplugin-apache.conf etc/apache2/conf-available/x2goplugin-provider.conf
-etc/x2go/plugin-provider/x2goplugin.html usr/share/x2go/plugin/x2goplugin.html
diff --git a/debian/x2goplugin-provider.postinst b/debian/x2goplugin-provider.postinst
deleted file mode 100755
index 0808138..0000000
--- a/debian/x2goplugin-provider.postinst
+++ /dev/null
@@ -1,49 +0,0 @@
-#!/bin/sh
-# postinst script for x2goplugin-provider
-#
-# 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 http://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-
-
-case "$1" in
-	configure)
-		CONF="x2goplugin-provider"
-		COMMON_STATE=$(dpkg-query -f '${Status}' -W 'apache2.2-common' 2>/dev/null | awk '{print $3}' || true)
-
-		if [ -e /usr/share/apache2/apache2-maintscript-helper ] ; then
-			. /usr/share/apache2/apache2-maintscript-helper
-			apache2_invoke enconf $CONF || exit $?
-		elif [ "$COMMON_STATE" = "installed" ] || [ "$COMMON_STATE" = "unpacked" ] ; then
-			[ -d /etc/apache2/conf.d/ ] && [ ! -L /etc/apache2/conf.d/$CONF.conf ] && ln -s ../conf-available/$CONF.conf /etc/apache2/conf.d/$CONF.conf
-		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/x2goplugin-provider.postrm b/debian/x2goplugin-provider.postrm
deleted file mode 100755
index 74b1218..0000000
--- a/debian/x2goplugin-provider.postrm
+++ /dev/null
@@ -1,47 +0,0 @@
-#! /bin/sh
-# postrm script for x2goplugin-provider
-#
-# 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' <r>overwrit>r> <new-version>
-# for details, see /usr/share/doc/packaging-manual/
-
-case "$1" in
-	remove|purge)
-		CONF="x2goplugin-provider"
-		COMMON_STATE=$(dpkg-query -f '${Status}' -W 'apache2.2-common' 2>/dev/null | awk '{print $3}' || true)
-
-		if [ -e /usr/share/apache2/apache2-maintscript-helper ] ; then
-			. /usr/share/apache2/apache2-maintscript-helper
-			apache2_invoke disconf $CONF || exit $?
-		elif [ "$COMMON_STATE" = "installed" ] || [ "$COMMON_STATE" = "unpacked" ] ; then
-			[ ! -L /etc/apache2/conf.d/$CONF.conf ] || rm /etc/apache2/conf.d/$CONF.conf
-		fi
-		;;
-
-	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#
-
-exit 0
\ No newline at end of file
diff --git a/debian/x2goplugin.dirs b/debian/x2goplugin.dirs
deleted file mode 100644
index 2d4917c..0000000
--- a/debian/x2goplugin.dirs
+++ /dev/null
@@ -1 +0,0 @@
-usr/lib/mozilla/plugins/

--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2goclient.git


More information about the x2go-commits mailing list