Regen PPAs including previous packaging changes
* 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. Fixes: LP #1498027
This commit is contained in:
commit
7fedd489cf
|
@ -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
|
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
|
* Sync up with Debian packaging
|
||||||
+ Update homepage
|
+ Update homepage
|
||||||
+ Revise copyright file
|
+ Revise copyright file
|
||||||
|
|
|
@ -18,6 +18,7 @@ Package: terminator
|
||||||
Architecture: all
|
Architecture: all
|
||||||
Depends: gconf2,
|
Depends: gconf2,
|
||||||
python-dbus,
|
python-dbus,
|
||||||
|
python-psutil,
|
||||||
python-gobject,
|
python-gobject,
|
||||||
python-gtk2 (>= 2.14.0),
|
python-gtk2 (>= 2.14.0),
|
||||||
python-vte,
|
python-vte,
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||||
Upstream-Name: terminator
|
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
|
Source: https://launchpad.net/terminator/+download
|
||||||
|
|
||||||
Files: *
|
Files: *
|
||||||
|
|
|
@ -3,11 +3,21 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
if [ "$1" = "configure" ]; then
|
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
|
# Add an alternative for x-terminal-emulator
|
||||||
update-alternatives --install /usr/bin/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 \
|
--slave /usr/share/man/man1/x-terminal-emulator.1.gz \
|
||||||
x-terminal-emulator.1.gz /usr/share/man/man1/terminator.1.gz
|
x-terminal-emulator.1.gz /usr/share/man/man1/terminator.1.gz
|
||||||
fi
|
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#
|
#DEBHELPER#
|
||||||
|
|
|
@ -5,6 +5,8 @@ set -e
|
||||||
if [ "$1" = remove ]; then
|
if [ "$1" = remove ]; then
|
||||||
update-alternatives --remove terminator /usr/bin/terminator || true
|
update-alternatives --remove terminator /usr/bin/terminator || true
|
||||||
update-alternatives --remove x-terminal-emulator /usr/bin/terminator
|
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
|
fi
|
||||||
|
|
||||||
#DEBHELPER#
|
#DEBHELPER#
|
||||||
|
|
Loading…
Reference in New Issue