Re: [gobolinux-devel] [gobolinux-commits] tools/ChrootCompile/bin ChrootCompile

2006-12-19 Thread Hisham Muhammad
On 12/19/06, André Detsch <[EMAIL PROTECTED]> wrote: > CVSROOT:/sources/goboscripts > Module name:tools > Changes by: André Detsch06/12/19 21:17:42 > > Modified files: > ChrootCompile/bin: ChrootCompile > > Log message: > Removed --no-symlink for Compile, as syml

Re: [gobolinux-devel] [gobolinux-commits] tools/Scripts/bin CreatePackage

2006-12-19 Thread Hisham Muhammad
On 12/19/06, André Detsch <[EMAIL PROTECTED]> wrote: > On 12/19/06, Hisham Muhammad <[EMAIL PROTECTED]> wrote: > > > > Why is this needed? Version numbers under /Programs don't have revisions. > > Is just a way to avoid a dumb error message when someone / something calls > CreatePackage Program 1.0

Re: [gobolinux-devel] Behaviour of 'Verbose()'

2006-12-19 Thread Hisham Muhammad
On 12/19/06, André Detsch <[EMAIL PROTECTED]> wrote: > Instead of: > function Verbose() { "$@" 1>&$verboseFD 2>&$verboseFD ;} > > maybe we should have > function Verbose() { "$@" 1>&$verboseFD ;} > > Although the stdout of, say, aunpack operations should not be always > shown, the stderr typically

Re: [gobolinux-devel] USE flags (was: Re: Installation of meta recipes)

2006-12-19 Thread Fábio Mierlo
Well, maybe in a autoconf world "Compile Foo 1.0 --help" can call "configure --help" automatically and show all "configure" options and "Compile Foo 1.0 --extra-param --with-my-needed-feature" can pass --with-my-needed-feature to "configure". It will make the things easy for who just want compile

Re: [gobolinux-devel] [gobolinux-commits] tools/Compile/bin FetchArchive

2006-12-19 Thread Lucas C. Villa Real
On 12/19/06, Hisham Muhammad <[EMAIL PROTECTED]> wrote: > On 12/17/06, Lucas C. Villa Real <[EMAIL PROTECTED]> wrote: > > +if Is_Entry "save-to" > > +then compileArchivesDir=`Entry "save-to"` > > +fi > > Please don't reset configuration variables from within scripts; treat > them as read-only. If y

[gobolinux-devel] Behaviour of 'Verbose()'

2006-12-19 Thread André Detsch
Instead of: function Verbose() { "$@" 1>&$verboseFD 2>&$verboseFD ;} maybe we should have function Verbose() { "$@" 1>&$verboseFD ;} Although the stdout of, say, aunpack operations should not be always shown, the stderr typically provides useful information (usually more than the ours 'Die "Error

Re: [gobolinux-devel] [gobolinux-commits] tools/Compile/bin PublishRevision

2006-12-19 Thread André Detsch
On 12/19/06, Hisham Muhammad <[EMAIL PROTECTED]> wrote: > Isn't that unsafe, in which you may end up doing unwanted checkins to > the wrong version? It would be better to check if the recipe really is > the first version of a program instead of doing the broader commit > every time. Yes, it would

Re: [gobolinux-devel] [gobolinux-commits] tools/Scripts/bin CreatePackage

2006-12-19 Thread André Detsch
On 12/19/06, Hisham Muhammad <[EMAIL PROTECTED]> wrote: > > Why is this needed? Version numbers under /Programs don't have revisions. Is just a way to avoid a dumb error message when someone / something calls CreatePackage Program 1.0-r1 and there is a /Programs/Program/1.0 there. -- Andre Detsc

Re: [gobolinux-devel] [gobolinux-commits] tools/Compile/bin FetchArchive

2006-12-19 Thread Hisham Muhammad
On 12/17/06, Lucas C. Villa Real <[EMAIL PROTECTED]> wrote: > +if Is_Entry "save-to" > +then compileArchivesDir=`Entry "save-to"` > +fi Please don't reset configuration variables from within scripts; treat them as read-only. If you want to make the variable modifiable, change the script to use a l

Re: [gobolinux-devel] [gobolinux-commits] tools/Scripts/bin CreatePackage

2006-12-19 Thread Hisham Muhammad
On 12/17/06, André Detsch <[EMAIL PROTECTED]> wrote: > CVSROOT:/sources/goboscripts > Module name:tools > Changes by: André Detsch06/12/17 02:51:07 > > Modified files: > Scripts/bin: CreatePackage > > Log message: > Dropping revision number from version passe

Re: [gobolinux-devel] [gobolinux-commits] tools/Compile/bin PublishRevision

2006-12-19 Thread Hisham Muhammad
On 12/17/06, Lucas C. Villa Real <[EMAIL PROTECTED]> wrote: > On 12/17/06, André Detsch <[EMAIL PROTECTED]> wrote: > > CVSROOT:/sources/goboscripts > > Module name:tools > > Changes by: André Detsch06/12/17 13:30:20 > > > > Modified files: > > Compile/bin: PublishRev