Re: Base-Files (was Re: Unset TMP/TEMP in profile?)

2010-02-19 Thread Jon TURNEY
On 01/12/2009 21:14, Jon TURNEY wrote: On 01/12/2009 20:17, Jon TURNEY wrote: On 01/12/2009 19:37, John Morrison wrote: Ok, I've removed the X11R6 from the path and unset TMP and TEMP in the skel/.bashrc. Are there any other changes folks would like before I roll this up? Could you consider

Re: Base-Files (was Re: Unset TMP/TEMP in profile?)

2009-12-09 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to Angelo Graziosi on 12/9/2009 3:57 AM: > are ignored from history. Is this to be expected? What exactly does it > mean '[ \t]'? That's a bug in base-files. It should be $'[ \t]', not '[ \t]', since bash only interpolates \t as a TAB insid

Re: Base-Files (was Re: Unset TMP/TEMP in profile?)

2009-12-09 Thread Angelo Graziosi
In the new '.bashrc' (in base-file-3.9) there is: # export HISTIGNORE="[ \t]*:&:[fb]g:exit" # export HISTIGNORE="[ \t]*:&:[fb]g:exit:ls" and I have adopted the first, [1] export HISTIGNORE="[ \t]*:&:[fb]g:exit" In my previous '.bashrc' I had [2] export HISTIGNORE="[ ]*:&:[fb]g:exit" With th

Re: Base-Files (was Re: Unset TMP/TEMP in profile?)

2009-12-04 Thread Corinna Vinschen
John? Ping? On Dec 2 22:10, Corinna Vinschen wrote: > On Dec 2 13:36, Christopher Faylor wrote: > > On Wed, Dec 02, 2009 at 07:21:40PM +0100, Corinna Vinschen wrote: > > >On Dec 2 18:21, Thomas Wolff wrote: > > >> Corinna Vinschen wrote in another thread about setting LANG: > > >> >>... Andy a

Re: Base-Files (was Re: Unset TMP/TEMP in profile?)

2009-12-04 Thread Corinna Vinschen
On Dec 4 10:08, Angelo Graziosi wrote: > What about USERNAME and USER? > > Some time ago, I changed my /etc/passwd so that Administrator is > called 'root' in Cygwin, but USERNAME still points to Administrator > instead USER points to 'root'. > > Following this discussion I would ask if we shoul

Re: Base-Files (was Re: Unset TMP/TEMP in profile?)

2009-12-04 Thread Angelo Graziosi
What about USERNAME and USER? Some time ago, I changed my /etc/passwd so that Administrator is called 'root' in Cygwin, but USERNAME still points to Administrator instead USER points to 'root'. Following this discussion I would ask if we should have, in Cygwin, the initialization export USER

Re: Base-Files (was Re: Unset TMP/TEMP in profile?)

2009-12-03 Thread Christopher Faylor
On Thu, Dec 03, 2009 at 04:29:31PM -0500, Christopher Faylor wrote: >You probably don't need either '()' or '{}' though since "test" also >understands parenthesized instructions. So it just has to be run expressions >once. cgf -- Problem reports: http://cygwin.co

Re: Base-Files (was Re: Unset TMP/TEMP in profile?)

2009-12-03 Thread Christopher Faylor
On Thu, Dec 03, 2009 at 09:28:21PM +0100, Thomas Wolff wrote: >Christopher Faylor wrote: >> On Wed, Dec 02, 2009 at 07:21:40PM +0100, Corinna Vinschen wrote: >> >>> On Dec 2 18:21, Thomas Wolff wrote: >>> Corinna Vinschen wrote in another thread about setting LANG: >>

Re: Base-Files (was Re: Unset TMP/TEMP in profile?)

2009-12-03 Thread Thomas Wolff
Christopher Faylor wrote: On Wed, Dec 02, 2009 at 07:21:40PM +0100, Corinna Vinschen wrote: On Dec 2 18:21, Thomas Wolff wrote: Corinna Vinschen wrote in another thread about setting LANG: ... Andy and Thomas, please work out the best solution together. It should work in sh an

Re: Base-Files (was Re: Unset TMP/TEMP in profile?)

2009-12-02 Thread Corinna Vinschen
On Dec 2 13:36, Christopher Faylor wrote: > On Wed, Dec 02, 2009 at 07:21:40PM +0100, Corinna Vinschen wrote: > >On Dec 2 18:21, Thomas Wolff wrote: > >> Corinna Vinschen wrote in another thread about setting LANG: > >> >>... Andy and Thomas, please work > >> >>out the best solution together. It

Re: Base-Files (was Re: Unset TMP/TEMP in profile?)

2009-12-02 Thread Christopher Faylor
On Wed, Dec 02, 2009 at 07:21:40PM +0100, Corinna Vinschen wrote: >On Dec 2 18:21, Thomas Wolff wrote: >> Corinna Vinschen wrote in another thread about setting LANG: >> >>... Andy and Thomas, please work >> >>out the best solution together. It should work in sh and csh. Then >> >>post it as rep

Re: Base-Files (was Re: Unset TMP/TEMP in profile?)

2009-12-02 Thread Corinna Vinschen
On Dec 2 18:21, Thomas Wolff wrote: > Corinna Vinschen wrote in another thread about setting LANG: > >>... Andy and Thomas, please work > >>out the best solution together. It should work in sh and csh. Then > >>post it as reply to http://cygwin.com/ml/cygwin/2009-12/msg00090.html so > >>John can

Re: Base-Files (was Re: Unset TMP/TEMP in profile?)

2009-12-02 Thread Thomas Wolff
Corinna Vinschen wrote in another thread about setting LANG: ... Andy and Thomas, please work out the best solution together. It should work in sh and csh. Then post it as reply to http://cygwin.com/ml/cygwin/2009-12/msg00090.html so John can put it into the base-files package. Our worked-out

Re: Base-Files (was Re: Unset TMP/TEMP in profile?)

2009-12-02 Thread Angelo Graziosi
Andy Koppe wrote: See the continuation of the thread Corinna linked to. LANG should only be set to C.UTF-8 if it isn't set already. Indeed. I was just proposing something like this: if test -n "${LANG}"; then # LANG is not empty [...] else # LANG is empty [...] fi Thanks, Angelo. --

Re: Base-Files (was Re: Unset TMP/TEMP in profile?)

2009-12-02 Thread Andy Koppe
2009/12/2 Angelo Graziosi: > Corinna Vinschen wrote: >> >> And I'd like to ask you to add two one-liner files to your package: >> http://cygwin.com/ml/cygwin-developers/2009-12/msg00026.html > > In my system (XPSP3), some Windows application defined LANG=it_IT.UTF-8 at > Windows level (all users),

Re: Base-Files (was Re: Unset TMP/TEMP in profile?)

2009-12-02 Thread Angelo Graziosi
Corinna Vinschen wrote: And I'd like to ask you to add two one-liner files to your package: http://cygwin.com/ml/cygwin-developers/2009-12/msg00026.html In my system (XPSP3), some Windows application defined LANG=it_IT.UTF-8 at Windows level (all users), and it works just fine with all Cygwin

Re: Base-Files (was Re: Unset TMP/TEMP in profile?)

2009-12-02 Thread Corinna Vinschen
On Dec 1 19:37, John Morrison wrote: > Ok, I've removed the X11R6 from the path and unset TMP and TEMP in the > skel/.bashrc. Are there any other changes folks would like before I roll > this up? We should keep /usr/X11R6/bin in for now, see http://cygwin.com/ml/cygwin/2009-12/msg00089.html And

Re: Base-Files (was Re: Unset TMP/TEMP in profile?)

2009-12-02 Thread Corinna Vinschen
On Dec 1 21:14, Jon TURNEY wrote: > On 01/12/2009 20:17, Jon TURNEY wrote: > >On 01/12/2009 19:37, John Morrison wrote: > >>Ok, I've removed the X11R6 from the path and unset TMP and TEMP in the > >>skel/.bashrc. Are there any other changes folks would like before I roll > >>this up? > > > >It wou

Re: Base-Files (was Re: Unset TMP/TEMP in profile?)

2009-12-01 Thread Jon TURNEY
On 01/12/2009 20:17, Jon TURNEY wrote: On 01/12/2009 19:37, John Morrison wrote: Ok, I've removed the X11R6 from the path and unset TMP and TEMP in the skel/.bashrc. Are there any other changes folks would like before I roll this up? It would be nice to audit all the existing packages to see i

Re: Base-Files (was Re: Unset TMP/TEMP in profile?)

2009-12-01 Thread Jon TURNEY
On 01/12/2009 19:37, John Morrison wrote: Ok, I've removed the X11R6 from the path and unset TMP and TEMP in the skel/.bashrc. Are there any other changes folks would like before I roll this up? It would be nice to audit all the existing packages to see if there are any which still install ex

Base-Files (was Re: Unset TMP/TEMP in profile?)

2009-12-01 Thread John Morrison
Ok, I've removed the X11R6 from the path and unset TMP and TEMP in the skel/.bashrc. Are there any other changes folks would like before I roll this up? :) Regards, J. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: