[gentoo-user] Re: Q on portage's rational to re-emerge packages

2013-09-27 Thread Markus Trippelsdorf
On 2013.09.27 at 10:24 +0200, Helmut Jarausch wrote:
 Hi,
 would anybody please be so kind to explain to me the rational used by  
 portage to re-emerge
 some packages.
 
 I've installed portage 2.2.7 and when I try to emerge, say,
 app-shells/zsh-completions
 it re-emerges (emerge -vp shows  'rR') several packages including,  
 i.e., app-office/libreoffice
 
 I can't imaging libreoffice depends in any way on zsh-completions.
 
 So, what's going on?

It's fallout from dev-python/python-exec-2.0...
Maybe MichaƂ can explain why it's necessary to rebuild libreoffice.


-- 
Markus



[gentoo-user] Re: firefox 10.0.4 upgrading compiling failed.

2012-05-04 Thread Markus Trippelsdorf
On 2012.05.05 at 08:47 +0800, AleiPhoenix (A.K.A Areverie) wrote:
 Hi, guys,
 
 The most recent sync brings me upgrading firefox from 10.0.3 to 10.0.4 but
 emake failed at compiling phase.
 
 The output and emerge info is at
 
 http://pastebin.com/2m4gGV3J and http://pastebin.com/LG6MgLvN
 
 Could anyone help me out ?

You ran out of memory during the final libxul link.
Look into your dmesg for the oom killer...

-- 
Markus



[gentoo-user] Re: latest eix versions messes with my screen status bar

2012-03-20 Thread Markus Trippelsdorf
On 2012.03.20 at 10:14 -0500, Paul Hartman wrote:
 Hi,
 
 Following a recent eix version update, after running eix-sync it
 leaves the session name on my screen status bar like:
 
 $eix-sync: Finished
 
 does anyone know anything about that?
 
 Is there perhaps something I can add to my shell prompt to make it
 reset the status bar title after a program exits?

See https://bugs.gentoo.org/show_bug.cgi?id=407473 .

$ echo -n \033kzsh\033\\ 
will set zsh in the status bar. 

There is no way to reset the status bar title automatically, because
there is no way to determine its content before changing it.

-- 
Markus



[gentoo-user] Re: Re: latest eix versions messes with my screen status bar

2012-03-20 Thread Markus Trippelsdorf
On 2012.03.20 at 12:09 -0500, Paul Hartman wrote:
 On Tue, Mar 20, 2012 at 11:05 AM, Markus Trippelsdorf
 mar...@trippelsdorf.de wrote:
  On 2012.03.20 at 10:14 -0500, Paul Hartman wrote:
  Hi,
 
  Following a recent eix version update, after running eix-sync it
  leaves the session name on my screen status bar like:
 
  $eix-sync: Finished
 
  does anyone know anything about that?
 
  Is there perhaps something I can add to my shell prompt to make it
  reset the status bar title after a program exits?
 
  See https://bugs.gentoo.org/show_bug.cgi?id=407473 .
 
  $ echo -n \033kzsh\033\\
  will set zsh in the status bar.
 
  There is no way to reset the status bar title automatically, because
  there is no way to determine its content before changing it.
 
 Thanks, that bug is exactly what I'm talking about.
 
 Unfortunately. the echo command or similar that I've found just echo
 the text back to my terminal and don't change the title in the status
 bar. I am using bash, not zsh, so maybe the syntax is different or
 more likely I've got something set up wrong. :)

The following command should work in both shells:

$ printf \033kbash\033\\

-- 
Markus



[gentoo-user] Re: Konsole question

2012-01-30 Thread Markus Trippelsdorf
On 2012.01.30 at 12:33 -0500, Philip Webb wrote:
 120130 YoYo Siska wrote:
  On Mon, Jan 30, 2012 at 07:51:45AM -0800, Mark Knecht wrote:
  On Mon, Jan 30, 2012 at 7:08 AM, Philip Webb purs...@ca.inter.net wrote:
  When an URL appears in a console, it is usually possible to R-click,
  then choose 'open link'  a browser(-tab) opens for that link.
  With KDE's Konsole, it opens Konqueror, which I don't usually have 
  running.
  However, since around KDE 4.7.1  continuing in 4.8.0 ,
  the version of Konqueror which opens is the file browser,
  I'm running 99.99% stable here so takes that for what it is.
  Here, with Firefox open I run in konsole
  and then right click on the ardour.org link and choose Open Link.
  I get the Ardour web site in the running version of Firefox.
  With Firefox not running KDE/konsole still opens Firefox.
 
 That's what happens for me with Terminal, but not with Konsole.
 
  Konsole should open the default browser set in KDE. 
  You can check that in systemsettings - Workspace Appearance and Behavior
  - Default Applications - Web Browser
 
 There's no 'Default Applications' in my 'systemsettings'.
 That mb because I don't have the whole of KDE installed,
 as I use Fluxbox as my desktop/window manager.
 The 'Default Applications' setting sb stored somewhere: any idea where ?
 
 Anyone else have ideas ?

.kde4 % grep -D skip -R irefox .
./share/config/kdeglobals:BrowserApplication[$e]=!firefox
./share/config/konsolerc:History=firefox

From .kde4/./share/config/konsolerc:
...
[Open-with settings]
CompletionMode=5
History=firefox

From .kde4/./share/config/kdeglobals
...
[General]
BrowserApplication[$e]=!firefox
...

-- 
Markus