Re: [gentoo-dev] eselect_zenity: alpha eselect GUI

2007-11-08 Thread Donnie Berkholz
On 10:54 Thu 08 Nov , Ciaran McCreesh wrote: On Thu, 8 Nov 2007 02:48:13 -0800 Donnie Berkholz [EMAIL PROTECTED] wrote: it has to parse eselect output Part of the idea behind using standardised output functions was that they could be replaced. The thought was, rather than trying to

[gentoo-dev] eselect_zenity: alpha eselect GUI

2007-11-08 Thread Donnie Berkholz
Hey all, I've been wanting a GUI for eselect lately, so tonight I hacked up the start of one called eselect_zenity [1]. It only works for the most trivial modules so far -- it has to parse eselect output, so special parsers need to be written for each type. eselect_zenity uses (surprise!)

Re: [gentoo-dev] eselect_zenity: alpha eselect GUI

2007-11-08 Thread Ciaran McCreesh
On Thu, 8 Nov 2007 02:48:13 -0800 Donnie Berkholz [EMAIL PROTECTED] wrote: it has to parse eselect output Part of the idea behind using standardised output functions was that they could be replaced. The thought was, rather than trying to parse console-centric output, you'd swap in a different

Re: [gentoo-dev] eselect_zenity: alpha eselect GUI

2007-11-08 Thread Ciaran McCreesh
On Thu, 8 Nov 2007 04:07:42 -0800 Donnie Berkholz [EMAIL PROTECTED] wrote: I'll look into that. Got any good starting points (files, functions, docs)? Well, the whole of the eselect code is small enough that you should be able to understand it pretty quickly... Then it'd just be a case of

Re: [gentoo-dev] eselect_zenity: alpha eselect GUI

2007-11-08 Thread Luis Francisco Araujo
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Donnie Berkholz wrote: Hey all, I've been wanting a GUI for eselect lately, so tonight I hacked up the start of one called eselect_zenity [1]. It only works for the most trivial modules so far -- it has to parse eselect output, so special

Re: [gentoo-dev] New eclass: cmake-utils.eclass

2007-11-08 Thread René 'Necoro' Neumann
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi all, I just worked on a project using cmake. And I needed the cmake-utils_src_enable function... But it did not work as expected. This is because cmake arguments are in uppercase most of the time, and cmake is case sensitive. And unfortunately the

[gentoo-dev] Re: eselect_zenity: alpha eselect GUI

2007-11-08 Thread Steve Long
Ciaran McCreesh wrote: if [[ ${UID} -ne 0 ]]; then We've always told people not to do that. Capabilities required by eselect modules should be tested by attempting to perform the action, not by some arbitrary query done on UIDs or groups. Being UID 0 doesn't mean you're allowed to do

Re: [gentoo-dev] death to mailer-config/mailwrapper

2007-11-08 Thread Grant Goodyear
Robin H. Johnson wrote: [Fri Nov 02 2007, 08:35:50PM CDT] It was a good idea, but it just never took off, I think mainly because it required too many changes to MTAs, and also did not provide for one of the original goals - running two disparate MTAs on the same box. The mailwrapper program is

Re: [gentoo-dev] Re: eselect_zenity: alpha eselect GUI

2007-11-08 Thread Ciaran McCreesh
On Thu, 08 Nov 2007 18:22:48 + Steve Long [EMAIL PROTECTED] wrote: if [[ ${UID} -ne 0 ]]; then We've always told people not to do that. Capabilities required by eselect modules should be tested by attempting to perform the action, not by some arbitrary query done on UIDs or groups.

Re: [gentoo-dev] Re: New eclass: cmake-utils.eclass

2007-11-08 Thread René 'Necoro' Neumann
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Steve Long schrieb: René 'Necoro' Neumann wrote: cmake-utils_src_enable python = -DENABLE_python=... Wanted would be that it returned -DENABLE_PYTHON=... I'm not into bash scripting that much, so I do not know a way to do so - but I guess

[gentoo-dev] Council meeting summary for 8 November 2007

2007-11-08 Thread Donnie Berkholz
Hi all, Here is the summary from today's council meeting. The complete log will show up at http://www.gentoo.org/proj/en/council/ shortly. Thanks, Donnie amnehere betelgeuse absent (1 hour late) dberkholz here flameeyes here lu_zero here vapier absent (no show) uberlord

[gentoo-dev] Re: New eclass: cmake-utils.eclass

2007-11-08 Thread Steve Long
René 'Necoro' Neumann wrote: cmake-utils_src_enable python = -DENABLE_python=... Wanted would be that it returned -DENABLE_PYTHON=... I'm not into bash scripting that much, so I do not know a way to do so - but I guess someone else is ;) Unfortunately BASH doesn't support ksh93 or zsh

Re: [gentoo-dev] Re: New eclass: cmake-utils.eclass

2007-11-08 Thread Ingmar Vanhassel
2007/11/9, René 'Necoro' Neumann [EMAIL PROTECTED]: Steve Long schrieb: René 'Necoro' Neumann wrote: cmake-utils_src_enable python = -DENABLE_python=... Wanted would be that it returned -DENABLE_PYTHON=... I'm not into bash scripting that much, so I do not know a way to do so - but