* No-change upload for wily

* No-change upload for vivid
* copyright: Change upstream maintainer to Stephen Boddy
* New upstream release of 0.98.  Remaining changes:
  + Add missing dependency on psutil to check for IBus running.
  + Workaround debian compression of font files.
  + Add terminator.wrapper to fix blurry/incorrect icons in task switchers.
This commit is contained in:
bryce 2015-09-21 23:20:18 -07:00
parent 07c8dee9eb
commit 961e5368f2
5 changed files with 37 additions and 3 deletions

23
debian/changelog vendored
View File

@ -1,6 +1,27 @@
terminator (0.98~ppa8) wily; urgency=medium
* No-change upload for wily
-- Bryce Harrington <bryce@ubuntu.com> Mon, 21 Sep 2015 22:09:34 -0700
terminator (0.98~ppa7) vivid; urgency=medium
* No-change upload for vivid
-- Bryce Harrington <bryce@ubuntu.com> Mon, 21 Sep 2015 22:08:58 -0700
terminator (0.98~ppa6) trusty; urgency=medium
* copyright: Change upstream maintainer to Stephen Boddy
-- Bryce Harrington <bryce@ubuntu.com> Sun, 20 Sep 2015 14:21:38 -0700
terminator (0.98) precise; urgency=medium
* New upstream release of 0.98
* New upstream release of 0.98. Remaining changes:
+ Add missing dependency on psutil to check for IBus running.
+ Workaround debian compression of font files.
+ Add terminator.wrapper to fix blurry/incorrect icons in task switchers.
* Sync up with Debian packaging
+ Update homepage
+ Revise copyright file

1
debian/control vendored
View File

@ -18,6 +18,7 @@ Package: terminator
Architecture: all
Depends: gconf2,
python-dbus,
python-psutil,
python-gobject,
python-gtk2 (>= 2.14.0),
python-vte,

2
debian/copyright vendored
View File

@ -1,6 +1,6 @@
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: terminator
Upstream-Contact: Chris Jones <cmsj@tenshu.net>
Upstream-Contact: Stephen Boddy <stephen.j.boddy@googlemail.com>
Source: https://launchpad.net/terminator/+download
Files: *

View File

@ -3,11 +3,21 @@
set -e
if [ "$1" = "configure" ]; then
# Ensure the old alternative is removed
update-alternatives --remove terminator /usr/bin/terminator || true
update-alternatives --remove x-terminal-emulator /usr/bin/terminator
# Add an alternative for x-terminal-emulator
update-alternatives --install /usr/bin/x-terminal-emulator \
x-terminal-emulator /usr/bin/terminator 50 \
x-terminal-emulator /usr/bin/terminator.wrapper 50 \
--slave /usr/share/man/man1/x-terminal-emulator.1.gz \
x-terminal-emulator.1.gz /usr/share/man/man1/terminator.1.gz
fi
for dname in `find /usr/share/doc/terminator/html*/_static/fonts/ -type d` /usr/share/doc/terminator/apidoc/_static/fonts/; do
if [ -d ${dname} ]; then
gunzip -f ${dname}/*.gz
fi
done
#DEBHELPER#

View File

@ -5,6 +5,8 @@ set -e
if [ "$1" = remove ]; then
update-alternatives --remove terminator /usr/bin/terminator || true
update-alternatives --remove x-terminal-emulator /usr/bin/terminator
update-alternatives --remove terminator.wrapper /usr/bin/terminator.wrapper || true
update-alternatives --remove x-terminal-emulator /usr/bin/terminator.wrapper
fi
#DEBHELPER#