From 19ea985e671f9ebc4b3cd13b4e4a4790e66b6f36 Mon Sep 17 00:00:00 2001 From: Nicolas Valcarcel Date: Wed, 21 Jan 2009 08:37:59 -0500 Subject: [PATCH] Update maintaince files --- debian/control | 15 ++++++++------- debian/copyright | 14 ++++---------- debian/rules | 3 +++ debian/terminator.postinst | 21 +++++++++------------ debian/terminator.prerm | 12 +++++------- 5 files changed, 29 insertions(+), 36 deletions(-) diff --git a/debian/control b/debian/control index e1730c80..c5ed6e38 100644 --- a/debian/control +++ b/debian/control @@ -2,23 +2,24 @@ Source: terminator Section: misc XS-Python-Version: all Priority: optional -Maintainer: Terminator Developers -Build-Depends: debhelper (>= 5.0.62), python, cdbs (>=0.4.49) +Maintainer: Nicolas Valcárcel +Build-Depends: debhelper (>= 5.0.62), python, cdbs (>= 0.4.49) Build-Depends-Indep: python-central (>= 0.5.6) Standards-Version: 3.8.0 -Vcs-Bzr: http://bazaar.launchpad.net/~gnome-terminator/terminator/trunk -Vcs-Browser: http://code.launchpad.net/~gnome-terminator/terminator/trunk +Vcs-Svn: svn://svn.debian.org/python-apps/packages/terminator/trunk/ +Vcs-Browser: http://svn.debian.org/viewsvn/python-apps/packages/terminator/trunk/ Homepage: http://www.tenshu.net/terminator/ Package: terminator Architecture: all -Depends: ${python:Depends}, ${misc:Depends}, python-vte, python-gconf, gconf2, libgtk2.0-bin +Depends: ${python:Depends}, ${misc:Depends}, python-vte, python-gnome2, python-gobject, python-gtk2, gconf2, libgtk2.0-bin XB-Python-Version: ${python:Versions} +Provides: x-terminal-emulator Recommends: xdg-utils, python-xdg -Description: Multiple GNOME terminals in one window +Description: multiple GNOME terminals in one window Terminator is a little project to produce an efficient way of filling a large area of screen space with terminals. . The user can have multiple terminals in one window and use - keybindings to switch between them. See the manpage for + key bindings to switch between them. See the manpage for details. diff --git a/debian/copyright b/debian/copyright index 91c3e492..f4013eb5 100644 --- a/debian/copyright +++ b/debian/copyright @@ -6,20 +6,15 @@ It was downloaded from https://launchpad.net/terminator/+download Upstream Authors: Chris Jones - Thomas Hurst - Emmanuel Bretelle - Nicolas Valcarcel + Huang He Kees Cook Thomas Meire + Nicolas Valcarcel + Emmanuel Bretelle Chris Oattes Markus Korn Mackenzie Morgan Daniel T Chen - Iain Lane - Brian Murray - Edoardo Batini - Cory Kontros - Huang He Artwork: Cory Kontros - Produced our current icon under the CC-by-SA licence @@ -34,14 +29,13 @@ Translations: "Data" Cristian Grada "zhuqin" - and others Seriously, thank you very much to the translators. A few minutes of their dedication opens up userbases like nothing else. Copyright: - + License: diff --git a/debian/rules b/debian/rules index 197bc06c..50c52bd3 100755 --- a/debian/rules +++ b/debian/rules @@ -8,5 +8,8 @@ include /usr/share/cdbs/1/rules/simple-patchsys.mk DEB_INSTALL_CHANGELOGS_ALL := ChangeLog +binary-install/terminator:: + dh_icons -pterminator + clean:: rm -rf build/ diff --git a/debian/terminator.postinst b/debian/terminator.postinst index d0e7e0bc..8469ecbc 100755 --- a/debian/terminator.postinst +++ b/debian/terminator.postinst @@ -1,16 +1,13 @@ -#!/bin/sh - -gtk-update-icon-cache -q -f /usr/share/icons/hicolor/ -pycentral pkginstall terminator - -update-menus >/dev/null 2>&1 || true - -#DEBHELPER# +#!/bin/sh -e if [ "$1" = "configure" ]; then - update-alternatives --install /usr/bin/x-terminal-emulator \ - x-terminal-emulator /usr/bin/terminator 50 \ - --slave /usr/share/man/man1/x-terminal-emulator.1.gz \ - x-terminal-emulator.1.gz /usr/share/man/man1/terminator.1.gz + # Add an alternative for aterm + update-alternatives --install /usr/bin/terminator terminator /usr/bin/terminator 30 + # Add an alternative for x-terminal-emulator + update-alternatives --install /usr/bin/x-terminal-emulator \ + x-terminal-emulator /usr/bin/terminator 50 \ + --slave /usr/share/man/man1/x-terminal-emulator.1.gz \ + x-terminal-emulator.1.gz /usr/share/man/man1/terminator.1.gz fi +#DEBHELPER# diff --git a/debian/terminator.prerm b/debian/terminator.prerm index 2dacb005..c16ba52a 100644 --- a/debian/terminator.prerm +++ b/debian/terminator.prerm @@ -1,10 +1,8 @@ -#!/bin/sh +#!/bin/sh -e -pycentral pkgremove terminator - -#DEBHELPER# - -if [ "$1" = "remove" ]; then - update-alternatives --remove x-terminal-emulator /usr/bin/terminator +if [ "$1" = remove ]; then + update-alternatives --remove terminator /usr/bin/terminator + update-alternatives --remove x-terminal-emulator /usr/bin/terminator fi +#DEBHELPER#