Merge lp:~kklimonda/ubuntu/lucid/rxvt-unicode/lp-514821 into lp:ubuntu/lucid/rxvt-unicode

Proposed by Krzysztof Klimonda
Status: Merged
Merged at revision: not available
Proposed branch: lp:~kklimonda/ubuntu/lucid/rxvt-unicode/lp-514821
Merge into: lp:ubuntu/lucid/rxvt-unicode
Diff against target: 78 lines (+36/-4)
4 files modified
debian/NEWS.Debian (+12/-0)
debian/changelog (+17/-0)
debian/rxvt-unicode-base.postinst (+2/-2)
debian/rxvt-unicode-base.preinst (+5/-2)
To merge this branch: bzr merge lp:~kklimonda/ubuntu/lucid/rxvt-unicode/lp-514821
Reviewer Review Type Date Requested Status
Ubuntu branches Pending
Review via email: mp+18316@code.launchpad.net
To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== added file 'debian/NEWS.Debian'
2--- debian/NEWS.Debian 1970-01-01 00:00:00 +0000
3+++ debian/NEWS.Debian 2010-01-30 19:07:16 +0000
4@@ -0,0 +1,12 @@
5+rxvt-unicode (9.06-2) unstable; urgency=medium
6+
7+ * urxvtcd alternative removed
8+
9+ rxvt-unicode used to install the urxvtcd wrapper script as an
10+ alternative for x-terminal-emulator; this is no longer the case.
11+ If you do not have urxvtcd selected, it will be removed from the
12+ alternatives system on upgrade. If you have selected urxvtcd as
13+ x-terminal-emulator, it is strongly recommended that you switch to
14+ plain urxvt.
15+
16+ -- Decklin Foster <decklin@red-bean.com> Mon, 02 Nov 2009 11:11:44 -0500
17
18=== modified file 'debian/changelog'
19--- debian/changelog 2009-08-02 13:43:36 +0000
20+++ debian/changelog 2010-01-30 19:07:16 +0000
21@@ -1,3 +1,20 @@
22+rxvt-unicode (9.06-3ubuntu1) lucid; urgency=low
23+
24+ * Merge from debian unstable, remaining changes:
25+ - apply patch to fix X "locking" on ctrl+middle mouse click
26+ - Fix FTBFS caused by changes in glibc 2.10
27+ - debian/control:
28+ + change Maintainer to Ubuntu MOTU Developers
29+
30+ -- Krzysztof Klimonda <kklimonda@syntaxhighlighted.com> Sat, 30 Jan 2010 19:51:28 +0100
31+
32+rxvt-unicode (9.06-3) unstable; urgency=low
33+
34+ * Don't remove urxvtcd alternative if selected (Closes: #555310)
35+ * Fix x-terminal-emulator priority for urxvt
36+
37+ -- Decklin Foster <decklin@red-bean.com> Sun, 29 Nov 2009 22:00:45 -0500
38+
39 rxvt-unicode (9.06-2ubuntu1) lucid; urgency=low
40
41 * apply patch to fix X "locking" on ctrl+middle mouse click (LP: #317366)
42
43=== modified file 'debian/rxvt-unicode-base.postinst'
44--- debian/rxvt-unicode-base.postinst 2009-11-02 11:11:44 +0000
45+++ debian/rxvt-unicode-base.postinst 2010-01-30 19:07:16 +0000
46@@ -4,12 +4,12 @@
47
48 update-alternatives \
49 --install /usr/bin/rxvt \
50- rxvt /usr/bin/urxvt 31 \
51+ rxvt /usr/bin/urxvt 30 \
52 --slave /usr/share/man/man1/rxvt.1.gz \
53 rxvt.1.gz /usr/share/man/man1/urxvt.1.gz
54 update-alternatives \
55 --install /usr/bin/x-terminal-emulator \
56- x-terminal-emulator /usr/bin/urxvt 11 \
57+ x-terminal-emulator /usr/bin/urxvt 20 \
58 --slave /usr/share/man/man1/x-terminal-emulator.1.gz \
59 x-terminal-emulator.1.gz /usr/share/man/man1/urxvt.1.gz
60
61
62=== modified file 'debian/rxvt-unicode-base.preinst'
63--- debian/rxvt-unicode-base.preinst 2009-11-02 11:11:44 +0000
64+++ debian/rxvt-unicode-base.preinst 2010-01-30 19:07:16 +0000
65@@ -1,8 +1,11 @@
66 #!/bin/sh -e
67
68 if [ "$1" = upgrade ]; then
69- # clean up after old versions
70- update-alternatives --remove x-terminal-emulator /usr/bin/urxvtcd
71+ # clean up after old versions, unless the admin chose urxvtcd
72+ if ! update-alternatives --query x-terminal-emulator | grep -q \
73+ '^Value: /usr/bin/urxvtcd$'; then
74+ update-alternatives --remove x-terminal-emulator /usr/bin/urxvtcd
75+ fi
76 fi
77
78 #DEBHELPER#

Subscribers

People subscribed via source and target branches