You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Owen Jacobson <an...@gmail.com> on 2007/05/29 00:54:42 UTC

Locale problem with subversion when running release:prepare

Good afternoon.

I recently upgraded from Maven 2.0.4 to 2.0.6.  At about the same
time, the maven-release-plugin stopped working with subversion SCM
configurations.

When I try to run release:prepare, I get the following:

[INFO] Executing: svn --non-interactive status
[INFO] Working directory: /home/ojacobson/admin-parent
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Unable to check for local modifications
Provider message:
The svn command failed.
Command output:
svn: error: cannot set LC_ALL locale
svn: error: environment variable LANG is en_US.UTF-8
svn: error: please check that your locale name is correct

However, if I run
$ cd /home/ojacobson/admin-parent
$ svn --non-interactive status
myself, I get a normal, successful svn stat listing.

The subversion guys are stumped; anyone from the maven side have any
suggestions?

Owen

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: Locale problem with subversion when running release:prepare

Posted by Emmanuel Venisse <em...@venisse.net>.
Yes

Michael Robinson a écrit :
> Is this the JIRA issue from this thread?
> 
> http://jira.codehaus.org/browse/SCM-320
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: Locale problem with subversion when running release:prepare

Posted by Michael Robinson <c....@gmail.com>.
Is this the JIRA issue from this thread?

http://jira.codehaus.org/browse/SCM-320

Re: Locale problem with subversion when running release:prepare

Posted by wurst <ge...@know-center.at>.



Heinrich Nirschl wrote:
> 
> Setting LC_MESSAGES to en_EN really seems to be the problem:
> 

It does solve the problem as long as you have non-utf filenames in your
project. 

if you have utf characters like a Ö or Ä or Ü in your filenames svn will
fail with the error
message "can't convert to UTF-8" or something like that.
-- 
View this message in context: http://www.nabble.com/Locale-problem-with-subversion-when-running-release%3Aprepare-tf3830911s177.html#a11076635
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: Locale problem with subversion when running release:prepare

Posted by Michael Robinson <c....@gmail.com>.
For me this seems to an issue with the scm plugin. Owen I would assume that
by using a previous version of the release plugin it would in turn depend on
an earlier scm plugin version.

Version 1.0 of the SCM plugin breaks w/ the locale error stated in this
thread; 1.0rc1 works just fine for me. Was this ever filed in JIRA?

Michael

Re: Locale problem with subversion when running release:prepare

Posted by Heinrich Nirschl <he...@gmail.com>.
Setting LC_MESSAGES to en_EN really seems to be the problem:

$ LANG=en_US.UTF-8 svn st

works, but

$ LC_MESSAGES=en_EN LANG=en_US.UTF-8 svn st
svn: error: cannot set LC_ALL locale
svn: error: environment variable LANG is en_US.UTF-8
svn: error: please check that your locale name is correct

does not. Note the misleading error message spit out by svn in this
case. I do have en_US.UTF-8 but not en_EN.

- Henry

On Tue, 2007-05-29 at 20:03 +0200, Emmanuel Venisse wrote:
> LC_MESSAGES is set in 1.0, it worked fine on my platforms but it seems it isn't the same for other.
> 
> File an issue for the svn provider on Maven-SCM, and I'll release an 1.0.1 asap.
> 
> Emmanuel
> 
> thenew05@gmail.com a écrit :
> > Does any one know why this just started to happen? Did the SCM plugin
> > change?
> > I have been using 2.0.4 since Nov 2006. Do I need to upgrade or is there a
> > setting I need to re-config.....
> > 
> > 
> > 
> > On 5/29/07, thenew05@gmail.com <th...@gmail.com> wrote:
> >>
> >> so after I set LANG to en_US, I still get the error:
> >>
> >> css-paps01:->setenv LANG en_US
> >>
> >> [INFO] [scm:update]
> >> [INFO] Executing: svn --non-interactive update
> >> [INFO] Working directory: /usr2/local/builds/CSS_JAVA_DEV/projects
> >> [ERROR] Provider message:
> >> [ERROR] The svn command failed.
> >> [ERROR] Command output:
> >> [ERROR] couldn't set locale correctly
> >> couldn't set locale correctly
> >> svn: error: cannot set LC_ALL locale
> >> svn: error: environment variable LANG is en_US
> >> svn: error: please check that your locale name is correct
> >>
> >>
> >> On 5/29/07, thenew05@gmail.com < thenew05@gmail.com> wrote:
> >> >
> >> > I have the locale settings but I still have the errors. Also, I am 
> >> using
> >> > cshell so I hope setenv is doing the same things as  export.
> >> >
> >> > css-paps01:->locale -a
> >> > C
> >> > POSIX
> >> > en_CA
> >> > en_CA.ISO8859-1
> >> > en_US
> >> > en_US.ISO8859-1
> >> > en_US.ISO8859-15
> >> > en_US.ISO8859-15@euro
> >> > en_US.UTF-8
> >> > es
> >> > es.UTF-8
> >> > es_MX
> >> > es_MX.ISO8859-1
> >> > fr
> >> > fr.UTF-8
> >> > fr_CA
> >> > fr_CA.ISO8859-1
> >> > iso_8859_1
> >> > ja
> >> > ja_JP.PCK
> >> >
> >> >
> >> > On 5/29/07, Heinrich Nirschl <he...@gmail.com> wrote:
> >> > >
> >> > > I think the error messages are written by svn because the en_US.UTF-8
> >> > > locale does not exist on the machine. I can reproduce the errors if I
> >> > > try svn with a non-existing locale (en_GB does not exist on my box):
> >> > >
> >> > > $ LANG=en_GB svn st
> >> > > svn: error: cannot set LC_ALL locale
> >> > > svn: error: environment variable LANG is en_GB
> >> > > svn: error: please check that your locale name is correct
> >> > >
> >> > > To check which locales are available the command
> >> > >
> >> > > $ locale -a
> >> > >
> >> > > can be used.
> >> > >
> >> > > - Henry
> >> > >
> >> > > On Tue, 2007-05-29 at 18:34 +0200, Emmanuel Venisse wrote:
> >> > > > LC_MESSAGE=en_EN is set by default in this version because 
> >> maven-scm
> >> > > can't parse messages that aren't in english.
> >> > > >
> >> > > > Do you have already set LC_ALL?
> >> > > > Maybe it will work if you set LANG to en_EN
> >> > > >
> >> > > > Emmanuel
> >> > > >
> >> > > > Owen Jacobson a écrit :
> >> > > > > It is 2.0-beta-6; will that solution still apply?
> >> > > > >
> >> > > > > Owen
> >> > > > >
> >> > > > > On 5/28/07, Emmanuel Venisse <emmanuel@venisse.net > wrote:
> >> > > > >> What is your release plugin version?
> >> > > > >>
> >> > > > >> If it isn't 2.0-bate-6, you can try to set LC_MESSAGES to en_EN
> >> > > > >>
> >> > > > >> Emmanuel
> >> > > > >>
> >> > > > >> Owen Jacobson a écrit :
> >> > > > >> > Good afternoon.
> >> > > > >> >
> >> > > > >> > I recently upgraded from Maven 2.0.4 to 2.0.6.  At about the
> >> > > same
> >> > > > >> > time, the maven-release-plugin stopped working with subversion
> >> > > SCM
> >> > > > >> > configurations.
> >> > > > >> >
> >> > > > >> > When I try to run release:prepare, I get the following:
> >> > > > >> >
> >> > > > >> > [INFO] Executing: svn --non-interactive status
> >> > > > >> > [INFO] Working directory: /home/ojacobson/admin-parent
> >> > > > >> > [INFO]
> >> > > > >> >
> >> > > > >>
> >> > > 
> >> ------------------------------------------------------------------------
> >> > > > >> > [ERROR] BUILD FAILURE
> >> > > > >> > [INFO]
> >> > > > >> >
> >> > > > >>
> >> > > 
> >> ------------------------------------------------------------------------
> >> > > > >> > [INFO] Unable to check for local modifications
> >> > > > >> > Provider message:
> >> > > > >> > The svn command failed.
> >> > > > >> > Command output:
> >> > > > >> > svn: error: cannot set LC_ALL locale
> >> > > > >> > svn: error: environment variable LANG is en_US.UTF-8
> >> > > > >> > svn: error: please check that your locale name is correct
> >> > > > >> >
> >> > > > >> > However, if I run
> >> > > > >> > $ cd /home/ojacobson/admin-parent
> >> > > > >> > $ svn --non-interactive status
> >> > > > >> > myself, I get a normal, successful svn stat listing.
> >> > > > >> >
> >> > > > >> > The subversion guys are stumped; anyone from the maven side
> >> > > have any
> >> > > > >> > suggestions?
> >> > > > >> >
> >> > > > >> > Owen
> >> > > > >> >
> >> > > > >> >
> >> > > ---------------------------------------------------------------------
> >> > > > >> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> >> > > > >> > For additional commands, e-mail: users-help@maven.apache.org
> >> > > > >> >
> >> > > > >> >
> >> > > > >> >
> >> > > > >> >
> >> > > > >>
> >> > > > >>
> >> > > > >>
> >> > > ---------------------------------------------------------------------
> >> > > > >> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> >> > > > >> For additional commands, e-mail: users-help@maven.apache.org
> >> > > > >>
> >> > > > >>
> >> > > > >
> >> > > > >
> >> > > ---------------------------------------------------------------------
> >> > > > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> >> > > > > For additional commands, e-mail: users-help@maven.apache.org
> >> > > > >
> >> > > > >
> >> > > > >
> >> > > > >
> >> > > >
> >> > > >
> >> > > >
> >> > > ---------------------------------------------------------------------
> >> > > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> >> > > > For additional commands, e-mail: users-help@maven.apache.org
> >> > > >
> >> > >
> >> > >
> >> > > ---------------------------------------------------------------------
> >> > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> >> > > For additional commands, e-mail: users-help@maven.apache.org
> >> > >
> >> > >
> >> >
> >>
> > 
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: Locale problem with subversion when running release:prepare

Posted by Emmanuel Venisse <em...@venisse.net>.
LC_MESSAGES is set in 1.0, it worked fine on my platforms but it seems it isn't the same for other.

File an issue for the svn provider on Maven-SCM, and I'll release an 1.0.1 asap.

Emmanuel

thenew05@gmail.com a écrit :
> Does any one know why this just started to happen? Did the SCM plugin
> change?
> I have been using 2.0.4 since Nov 2006. Do I need to upgrade or is there a
> setting I need to re-config.....
> 
> 
> 
> On 5/29/07, thenew05@gmail.com <th...@gmail.com> wrote:
>>
>> so after I set LANG to en_US, I still get the error:
>>
>> css-paps01:->setenv LANG en_US
>>
>> [INFO] [scm:update]
>> [INFO] Executing: svn --non-interactive update
>> [INFO] Working directory: /usr2/local/builds/CSS_JAVA_DEV/projects
>> [ERROR] Provider message:
>> [ERROR] The svn command failed.
>> [ERROR] Command output:
>> [ERROR] couldn't set locale correctly
>> couldn't set locale correctly
>> svn: error: cannot set LC_ALL locale
>> svn: error: environment variable LANG is en_US
>> svn: error: please check that your locale name is correct
>>
>>
>> On 5/29/07, thenew05@gmail.com < thenew05@gmail.com> wrote:
>> >
>> > I have the locale settings but I still have the errors. Also, I am 
>> using
>> > cshell so I hope setenv is doing the same things as  export.
>> >
>> > css-paps01:->locale -a
>> > C
>> > POSIX
>> > en_CA
>> > en_CA.ISO8859-1
>> > en_US
>> > en_US.ISO8859-1
>> > en_US.ISO8859-15
>> > en_US.ISO8859-15@euro
>> > en_US.UTF-8
>> > es
>> > es.UTF-8
>> > es_MX
>> > es_MX.ISO8859-1
>> > fr
>> > fr.UTF-8
>> > fr_CA
>> > fr_CA.ISO8859-1
>> > iso_8859_1
>> > ja
>> > ja_JP.PCK
>> >
>> >
>> > On 5/29/07, Heinrich Nirschl <he...@gmail.com> wrote:
>> > >
>> > > I think the error messages are written by svn because the en_US.UTF-8
>> > > locale does not exist on the machine. I can reproduce the errors if I
>> > > try svn with a non-existing locale (en_GB does not exist on my box):
>> > >
>> > > $ LANG=en_GB svn st
>> > > svn: error: cannot set LC_ALL locale
>> > > svn: error: environment variable LANG is en_GB
>> > > svn: error: please check that your locale name is correct
>> > >
>> > > To check which locales are available the command
>> > >
>> > > $ locale -a
>> > >
>> > > can be used.
>> > >
>> > > - Henry
>> > >
>> > > On Tue, 2007-05-29 at 18:34 +0200, Emmanuel Venisse wrote:
>> > > > LC_MESSAGE=en_EN is set by default in this version because 
>> maven-scm
>> > > can't parse messages that aren't in english.
>> > > >
>> > > > Do you have already set LC_ALL?
>> > > > Maybe it will work if you set LANG to en_EN
>> > > >
>> > > > Emmanuel
>> > > >
>> > > > Owen Jacobson a écrit :
>> > > > > It is 2.0-beta-6; will that solution still apply?
>> > > > >
>> > > > > Owen
>> > > > >
>> > > > > On 5/28/07, Emmanuel Venisse <emmanuel@venisse.net > wrote:
>> > > > >> What is your release plugin version?
>> > > > >>
>> > > > >> If it isn't 2.0-bate-6, you can try to set LC_MESSAGES to en_EN
>> > > > >>
>> > > > >> Emmanuel
>> > > > >>
>> > > > >> Owen Jacobson a écrit :
>> > > > >> > Good afternoon.
>> > > > >> >
>> > > > >> > I recently upgraded from Maven 2.0.4 to 2.0.6.  At about the
>> > > same
>> > > > >> > time, the maven-release-plugin stopped working with subversion
>> > > SCM
>> > > > >> > configurations.
>> > > > >> >
>> > > > >> > When I try to run release:prepare, I get the following:
>> > > > >> >
>> > > > >> > [INFO] Executing: svn --non-interactive status
>> > > > >> > [INFO] Working directory: /home/ojacobson/admin-parent
>> > > > >> > [INFO]
>> > > > >> >
>> > > > >>
>> > > 
>> ------------------------------------------------------------------------
>> > > > >> > [ERROR] BUILD FAILURE
>> > > > >> > [INFO]
>> > > > >> >
>> > > > >>
>> > > 
>> ------------------------------------------------------------------------
>> > > > >> > [INFO] Unable to check for local modifications
>> > > > >> > Provider message:
>> > > > >> > The svn command failed.
>> > > > >> > Command output:
>> > > > >> > svn: error: cannot set LC_ALL locale
>> > > > >> > svn: error: environment variable LANG is en_US.UTF-8
>> > > > >> > svn: error: please check that your locale name is correct
>> > > > >> >
>> > > > >> > However, if I run
>> > > > >> > $ cd /home/ojacobson/admin-parent
>> > > > >> > $ svn --non-interactive status
>> > > > >> > myself, I get a normal, successful svn stat listing.
>> > > > >> >
>> > > > >> > The subversion guys are stumped; anyone from the maven side
>> > > have any
>> > > > >> > suggestions?
>> > > > >> >
>> > > > >> > Owen
>> > > > >> >
>> > > > >> >
>> > > ---------------------------------------------------------------------
>> > > > >> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>> > > > >> > For additional commands, e-mail: users-help@maven.apache.org
>> > > > >> >
>> > > > >> >
>> > > > >> >
>> > > > >> >
>> > > > >>
>> > > > >>
>> > > > >>
>> > > ---------------------------------------------------------------------
>> > > > >> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>> > > > >> For additional commands, e-mail: users-help@maven.apache.org
>> > > > >>
>> > > > >>
>> > > > >
>> > > > >
>> > > ---------------------------------------------------------------------
>> > > > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>> > > > > For additional commands, e-mail: users-help@maven.apache.org
>> > > > >
>> > > > >
>> > > > >
>> > > > >
>> > > >
>> > > >
>> > > >
>> > > ---------------------------------------------------------------------
>> > > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>> > > > For additional commands, e-mail: users-help@maven.apache.org
>> > > >
>> > >
>> > >
>> > > ---------------------------------------------------------------------
>> > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>> > > For additional commands, e-mail: users-help@maven.apache.org
>> > >
>> > >
>> >
>>
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: Locale problem with subversion when running release:prepare

Posted by th...@gmail.com.
Does any one know why this just started to happen? Did the SCM plugin
change?
I have been using 2.0.4 since Nov 2006. Do I need to upgrade or is there a
setting I need to re-config.....



On 5/29/07, thenew05@gmail.com <th...@gmail.com> wrote:
>
> so after I set LANG to en_US, I still get the error:
>
> css-paps01:->setenv LANG en_US
>
> [INFO] [scm:update]
> [INFO] Executing: svn --non-interactive update
> [INFO] Working directory: /usr2/local/builds/CSS_JAVA_DEV/projects
> [ERROR] Provider message:
> [ERROR] The svn command failed.
> [ERROR] Command output:
> [ERROR] couldn't set locale correctly
> couldn't set locale correctly
> svn: error: cannot set LC_ALL locale
> svn: error: environment variable LANG is en_US
> svn: error: please check that your locale name is correct
>
>
> On 5/29/07, thenew05@gmail.com < thenew05@gmail.com> wrote:
> >
> > I have the locale settings but I still have the errors. Also, I am using
> > cshell so I hope setenv is doing the same things as  export.
> >
> > css-paps01:->locale -a
> > C
> > POSIX
> > en_CA
> > en_CA.ISO8859-1
> > en_US
> > en_US.ISO8859-1
> > en_US.ISO8859-15
> > en_US.ISO8859-15@euro
> > en_US.UTF-8
> > es
> > es.UTF-8
> > es_MX
> > es_MX.ISO8859-1
> > fr
> > fr.UTF-8
> > fr_CA
> > fr_CA.ISO8859-1
> > iso_8859_1
> > ja
> > ja_JP.PCK
> >
> >
> > On 5/29/07, Heinrich Nirschl <he...@gmail.com> wrote:
> > >
> > > I think the error messages are written by svn because the en_US.UTF-8
> > > locale does not exist on the machine. I can reproduce the errors if I
> > > try svn with a non-existing locale (en_GB does not exist on my box):
> > >
> > > $ LANG=en_GB svn st
> > > svn: error: cannot set LC_ALL locale
> > > svn: error: environment variable LANG is en_GB
> > > svn: error: please check that your locale name is correct
> > >
> > > To check which locales are available the command
> > >
> > > $ locale -a
> > >
> > > can be used.
> > >
> > > - Henry
> > >
> > > On Tue, 2007-05-29 at 18:34 +0200, Emmanuel Venisse wrote:
> > > > LC_MESSAGE=en_EN is set by default in this version because maven-scm
> > > can't parse messages that aren't in english.
> > > >
> > > > Do you have already set LC_ALL?
> > > > Maybe it will work if you set LANG to en_EN
> > > >
> > > > Emmanuel
> > > >
> > > > Owen Jacobson a écrit :
> > > > > It is 2.0-beta-6; will that solution still apply?
> > > > >
> > > > > Owen
> > > > >
> > > > > On 5/28/07, Emmanuel Venisse <emmanuel@venisse.net > wrote:
> > > > >> What is your release plugin version?
> > > > >>
> > > > >> If it isn't 2.0-bate-6, you can try to set LC_MESSAGES to en_EN
> > > > >>
> > > > >> Emmanuel
> > > > >>
> > > > >> Owen Jacobson a écrit :
> > > > >> > Good afternoon.
> > > > >> >
> > > > >> > I recently upgraded from Maven 2.0.4 to 2.0.6.  At about the
> > > same
> > > > >> > time, the maven-release-plugin stopped working with subversion
> > > SCM
> > > > >> > configurations.
> > > > >> >
> > > > >> > When I try to run release:prepare, I get the following:
> > > > >> >
> > > > >> > [INFO] Executing: svn --non-interactive status
> > > > >> > [INFO] Working directory: /home/ojacobson/admin-parent
> > > > >> > [INFO]
> > > > >> >
> > > > >>
> > > ------------------------------------------------------------------------
> > > > >> > [ERROR] BUILD FAILURE
> > > > >> > [INFO]
> > > > >> >
> > > > >>
> > > ------------------------------------------------------------------------
> > > > >> > [INFO] Unable to check for local modifications
> > > > >> > Provider message:
> > > > >> > The svn command failed.
> > > > >> > Command output:
> > > > >> > svn: error: cannot set LC_ALL locale
> > > > >> > svn: error: environment variable LANG is en_US.UTF-8
> > > > >> > svn: error: please check that your locale name is correct
> > > > >> >
> > > > >> > However, if I run
> > > > >> > $ cd /home/ojacobson/admin-parent
> > > > >> > $ svn --non-interactive status
> > > > >> > myself, I get a normal, successful svn stat listing.
> > > > >> >
> > > > >> > The subversion guys are stumped; anyone from the maven side
> > > have any
> > > > >> > suggestions?
> > > > >> >
> > > > >> > Owen
> > > > >> >
> > > > >> >
> > > ---------------------------------------------------------------------
> > > > >> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > > >> > For additional commands, e-mail: users-help@maven.apache.org
> > > > >> >
> > > > >> >
> > > > >> >
> > > > >> >
> > > > >>
> > > > >>
> > > > >>
> > > ---------------------------------------------------------------------
> > > > >> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > > >> For additional commands, e-mail: users-help@maven.apache.org
> > > > >>
> > > > >>
> > > > >
> > > > >
> > > ---------------------------------------------------------------------
> > > > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > > > For additional commands, e-mail: users-help@maven.apache.org
> > > > >
> > > > >
> > > > >
> > > > >
> > > >
> > > >
> > > >
> > > ---------------------------------------------------------------------
> > > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > > For additional commands, e-mail: users-help@maven.apache.org
> > > >
> > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > For additional commands, e-mail: users-help@maven.apache.org
> > >
> > >
> >
>

Re: Locale problem with subversion when running release:prepare

Posted by th...@gmail.com.
so after I set LANG to en_US, I still get the error:

css-paps01:->setenv LANG en_US

[INFO] [scm:update]
[INFO] Executing: svn --non-interactive update
[INFO] Working directory: /usr2/local/builds/CSS_JAVA_DEV/projects
[ERROR] Provider message:
[ERROR] The svn command failed.
[ERROR] Command output:
[ERROR] couldn't set locale correctly
couldn't set locale correctly
svn: error: cannot set LC_ALL locale
svn: error: environment variable LANG is en_US
svn: error: please check that your locale name is correct


On 5/29/07, thenew05@gmail.com <th...@gmail.com> wrote:
>
> I have the locale settings but I still have the errors. Also, I am using
> cshell so I hope setenv is doing the same things as  export.
>
> css-paps01:->locale -a
> C
> POSIX
> en_CA
> en_CA.ISO8859-1
> en_US
> en_US.ISO8859-1
> en_US.ISO8859-15
> en_US.ISO8859-15@euro
> en_US.UTF-8
> es
> es.UTF-8
> es_MX
> es_MX.ISO8859-1
> fr
> fr.UTF-8
> fr_CA
> fr_CA.ISO8859-1
> iso_8859_1
> ja
> ja_JP.PCK
>
>
> On 5/29/07, Heinrich Nirschl <he...@gmail.com> wrote:
> >
> > I think the error messages are written by svn because the en_US.UTF-8
> > locale does not exist on the machine. I can reproduce the errors if I
> > try svn with a non-existing locale (en_GB does not exist on my box):
> >
> > $ LANG=en_GB svn st
> > svn: error: cannot set LC_ALL locale
> > svn: error: environment variable LANG is en_GB
> > svn: error: please check that your locale name is correct
> >
> > To check which locales are available the command
> >
> > $ locale -a
> >
> > can be used.
> >
> > - Henry
> >
> > On Tue, 2007-05-29 at 18:34 +0200, Emmanuel Venisse wrote:
> > > LC_MESSAGE=en_EN is set by default in this version because maven-scm
> > can't parse messages that aren't in english.
> > >
> > > Do you have already set LC_ALL?
> > > Maybe it will work if you set LANG to en_EN
> > >
> > > Emmanuel
> > >
> > > Owen Jacobson a écrit :
> > > > It is 2.0-beta-6; will that solution still apply?
> > > >
> > > > Owen
> > > >
> > > > On 5/28/07, Emmanuel Venisse <em...@venisse.net> wrote:
> > > >> What is your release plugin version?
> > > >>
> > > >> If it isn't 2.0-bate-6, you can try to set LC_MESSAGES to en_EN
> > > >>
> > > >> Emmanuel
> > > >>
> > > >> Owen Jacobson a écrit :
> > > >> > Good afternoon.
> > > >> >
> > > >> > I recently upgraded from Maven 2.0.4 to 2.0.6.  At about the same
> > > >> > time, the maven-release-plugin stopped working with subversion
> > SCM
> > > >> > configurations.
> > > >> >
> > > >> > When I try to run release:prepare, I get the following:
> > > >> >
> > > >> > [INFO] Executing: svn --non-interactive status
> > > >> > [INFO] Working directory: /home/ojacobson/admin-parent
> > > >> > [INFO]
> > > >> >
> > > >>
> > ------------------------------------------------------------------------
> > > >> > [ERROR] BUILD FAILURE
> > > >> > [INFO]
> > > >> >
> > > >>
> > ------------------------------------------------------------------------
> > > >> > [INFO] Unable to check for local modifications
> > > >> > Provider message:
> > > >> > The svn command failed.
> > > >> > Command output:
> > > >> > svn: error: cannot set LC_ALL locale
> > > >> > svn: error: environment variable LANG is en_US.UTF-8
> > > >> > svn: error: please check that your locale name is correct
> > > >> >
> > > >> > However, if I run
> > > >> > $ cd /home/ojacobson/admin-parent
> > > >> > $ svn --non-interactive status
> > > >> > myself, I get a normal, successful svn stat listing.
> > > >> >
> > > >> > The subversion guys are stumped; anyone from the maven side have
> > any
> > > >> > suggestions?
> > > >> >
> > > >> > Owen
> > > >> >
> > > >> >
> > ---------------------------------------------------------------------
> > > >> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > >> > For additional commands, e-mail: users-help@maven.apache.org
> > > >> >
> > > >> >
> > > >> >
> > > >> >
> > > >>
> > > >>
> > > >>
> > ---------------------------------------------------------------------
> > > >> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > >> For additional commands, e-mail: users-help@maven.apache.org
> > > >>
> > > >>
> > > >
> > > >
> > ---------------------------------------------------------------------
> > > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > > For additional commands, e-mail: users-help@maven.apache.org
> > > >
> > > >
> > > >
> > > >
> > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > For additional commands, e-mail: users-help@maven.apache.org
> > >
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > For additional commands, e-mail: users-help@maven.apache.org
> >
> >
>

Re: Locale problem with subversion when running release:prepare

Posted by th...@gmail.com.
I have the locale settings but I still have the errors. Also, I am using
cshell so I hope setenv is doing the same things as  export.

css-paps01:->locale -a
C
POSIX
en_CA
en_CA.ISO8859-1
en_US
en_US.ISO8859-1
en_US.ISO8859-15
en_US.ISO8859-15@euro
en_US.UTF-8
es
es.UTF-8
es_MX
es_MX.ISO8859-1
fr
fr.UTF-8
fr_CA
fr_CA.ISO8859-1
iso_8859_1
ja
ja_JP.PCK


On 5/29/07, Heinrich Nirschl <he...@gmail.com> wrote:
>
> I think the error messages are written by svn because the en_US.UTF-8
> locale does not exist on the machine. I can reproduce the errors if I
> try svn with a non-existing locale (en_GB does not exist on my box):
>
> $ LANG=en_GB svn st
> svn: error: cannot set LC_ALL locale
> svn: error: environment variable LANG is en_GB
> svn: error: please check that your locale name is correct
>
> To check which locales are available the command
>
> $ locale -a
>
> can be used.
>
> - Henry
>
> On Tue, 2007-05-29 at 18:34 +0200, Emmanuel Venisse wrote:
> > LC_MESSAGE=en_EN is set by default in this version because maven-scm
> can't parse messages that aren't in english.
> >
> > Do you have already set LC_ALL?
> > Maybe it will work if you set LANG to en_EN
> >
> > Emmanuel
> >
> > Owen Jacobson a écrit :
> > > It is 2.0-beta-6; will that solution still apply?
> > >
> > > Owen
> > >
> > > On 5/28/07, Emmanuel Venisse <em...@venisse.net> wrote:
> > >> What is your release plugin version?
> > >>
> > >> If it isn't 2.0-bate-6, you can try to set LC_MESSAGES to en_EN
> > >>
> > >> Emmanuel
> > >>
> > >> Owen Jacobson a écrit :
> > >> > Good afternoon.
> > >> >
> > >> > I recently upgraded from Maven 2.0.4 to 2.0.6.  At about the same
> > >> > time, the maven-release-plugin stopped working with subversion SCM
> > >> > configurations.
> > >> >
> > >> > When I try to run release:prepare, I get the following:
> > >> >
> > >> > [INFO] Executing: svn --non-interactive status
> > >> > [INFO] Working directory: /home/ojacobson/admin-parent
> > >> > [INFO]
> > >> >
> > >>
> ------------------------------------------------------------------------
> > >> > [ERROR] BUILD FAILURE
> > >> > [INFO]
> > >> >
> > >>
> ------------------------------------------------------------------------
> > >> > [INFO] Unable to check for local modifications
> > >> > Provider message:
> > >> > The svn command failed.
> > >> > Command output:
> > >> > svn: error: cannot set LC_ALL locale
> > >> > svn: error: environment variable LANG is en_US.UTF-8
> > >> > svn: error: please check that your locale name is correct
> > >> >
> > >> > However, if I run
> > >> > $ cd /home/ojacobson/admin-parent
> > >> > $ svn --non-interactive status
> > >> > myself, I get a normal, successful svn stat listing.
> > >> >
> > >> > The subversion guys are stumped; anyone from the maven side have
> any
> > >> > suggestions?
> > >> >
> > >> > Owen
> > >> >
> > >> >
> ---------------------------------------------------------------------
> > >> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > >> > For additional commands, e-mail: users-help@maven.apache.org
> > >> >
> > >> >
> > >> >
> > >> >
> > >>
> > >>
> > >> ---------------------------------------------------------------------
> > >> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > >> For additional commands, e-mail: users-help@maven.apache.org
> > >>
> > >>
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > > For additional commands, e-mail: users-help@maven.apache.org
> > >
> > >
> > >
> > >
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > For additional commands, e-mail: users-help@maven.apache.org
> >
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>

Re: Locale problem with subversion when running release:prepare

Posted by Heinrich Nirschl <he...@gmail.com>.
I think the error messages are written by svn because the en_US.UTF-8
locale does not exist on the machine. I can reproduce the errors if I
try svn with a non-existing locale (en_GB does not exist on my box):

$ LANG=en_GB svn st
svn: error: cannot set LC_ALL locale
svn: error: environment variable LANG is en_GB
svn: error: please check that your locale name is correct

To check which locales are available the command

$ locale -a

can be used.

- Henry

On Tue, 2007-05-29 at 18:34 +0200, Emmanuel Venisse wrote:
> LC_MESSAGE=en_EN is set by default in this version because maven-scm can't parse messages that aren't in english.
> 
> Do you have already set LC_ALL?
> Maybe it will work if you set LANG to en_EN
> 
> Emmanuel
> 
> Owen Jacobson a écrit :
> > It is 2.0-beta-6; will that solution still apply?
> > 
> > Owen
> > 
> > On 5/28/07, Emmanuel Venisse <em...@venisse.net> wrote:
> >> What is your release plugin version?
> >>
> >> If it isn't 2.0-bate-6, you can try to set LC_MESSAGES to en_EN
> >>
> >> Emmanuel
> >>
> >> Owen Jacobson a écrit :
> >> > Good afternoon.
> >> >
> >> > I recently upgraded from Maven 2.0.4 to 2.0.6.  At about the same
> >> > time, the maven-release-plugin stopped working with subversion SCM
> >> > configurations.
> >> >
> >> > When I try to run release:prepare, I get the following:
> >> >
> >> > [INFO] Executing: svn --non-interactive status
> >> > [INFO] Working directory: /home/ojacobson/admin-parent
> >> > [INFO]
> >> > 
> >> ------------------------------------------------------------------------
> >> > [ERROR] BUILD FAILURE
> >> > [INFO]
> >> > 
> >> ------------------------------------------------------------------------
> >> > [INFO] Unable to check for local modifications
> >> > Provider message:
> >> > The svn command failed.
> >> > Command output:
> >> > svn: error: cannot set LC_ALL locale
> >> > svn: error: environment variable LANG is en_US.UTF-8
> >> > svn: error: please check that your locale name is correct
> >> >
> >> > However, if I run
> >> > $ cd /home/ojacobson/admin-parent
> >> > $ svn --non-interactive status
> >> > myself, I get a normal, successful svn stat listing.
> >> >
> >> > The subversion guys are stumped; anyone from the maven side have any
> >> > suggestions?
> >> >
> >> > Owen
> >> >
> >> > ---------------------------------------------------------------------
> >> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> >> > For additional commands, e-mail: users-help@maven.apache.org
> >> >
> >> >
> >> >
> >> >
> >>
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> >> For additional commands, e-mail: users-help@maven.apache.org
> >>
> >>
> > 
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > For additional commands, e-mail: users-help@maven.apache.org
> > 
> > 
> > 
> > 
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: Locale problem with subversion when running release:prepare

Posted by th...@gmail.com.
I tried that already it did not help.

I have the same problem, it started May 25. Build has been running since
Sept 2006.

On 5/29/07, Emmanuel Venisse <em...@venisse.net> wrote:
>
> LC_MESSAGE=en_EN is set by default in this version because maven-scm can't
> parse messages that aren't in english.
>
> Do you have already set LC_ALL?
> Maybe it will work if you set LANG to en_EN
>
> Emmanuel
>
> Owen Jacobson a écrit :
> > It is 2.0-beta-6; will that solution still apply?
> >
> > Owen
> >
> > On 5/28/07, Emmanuel Venisse <em...@venisse.net> wrote:
> >> What is your release plugin version?
> >>
> >> If it isn't 2.0-bate-6, you can try to set LC_MESSAGES to en_EN
> >>
> >> Emmanuel
> >>
> >> Owen Jacobson a écrit :
> >> > Good afternoon.
> >> >
> >> > I recently upgraded from Maven 2.0.4 to 2.0.6.  At about the same
> >> > time, the maven-release-plugin stopped working with subversion SCM
> >> > configurations.
> >> >
> >> > When I try to run release:prepare, I get the following:
> >> >
> >> > [INFO] Executing: svn --non-interactive status
> >> > [INFO] Working directory: /home/ojacobson/admin-parent
> >> > [INFO]
> >> >
> >>
> ------------------------------------------------------------------------
> >> > [ERROR] BUILD FAILURE
> >> > [INFO]
> >> >
> >>
> ------------------------------------------------------------------------
> >> > [INFO] Unable to check for local modifications
> >> > Provider message:
> >> > The svn command failed.
> >> > Command output:
> >> > svn: error: cannot set LC_ALL locale
> >> > svn: error: environment variable LANG is en_US.UTF-8
> >> > svn: error: please check that your locale name is correct
> >> >
> >> > However, if I run
> >> > $ cd /home/ojacobson/admin-parent
> >> > $ svn --non-interactive status
> >> > myself, I get a normal, successful svn stat listing.
> >> >
> >> > The subversion guys are stumped; anyone from the maven side have any
> >> > suggestions?
> >> >
> >> > Owen
> >> >
> >> > ---------------------------------------------------------------------
> >> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> >> > For additional commands, e-mail: users-help@maven.apache.org
> >> >
> >> >
> >> >
> >> >
> >>
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> >> For additional commands, e-mail: users-help@maven.apache.org
> >>
> >>
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > For additional commands, e-mail: users-help@maven.apache.org
> >
> >
> >
> >
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>

Re: Locale problem with subversion when running release:prepare

Posted by Owen Jacobson <an...@gmail.com>.
Worse, not better.  with
$ export LANG=en_EN
subversion stops working on the command line.  By default it's set to
en_US.UTF-8, for what it's worth, and none of the LC_* env variables
are set.  Running locale(1) prints en_US.UTF-8 for all of the
individual locale variables but not for LC_ALL.

Setting LANG to en_US (no .UTF-8) produces the same problems --
command-line svn works, mvn release plugin fails with the same error
as below.

On 5/29/07, Emmanuel Venisse <em...@venisse.net> wrote:
> LC_MESSAGE=en_EN is set by default in this version because maven-scm can't parse messages that aren't in english.
>
> Do you have already set LC_ALL?
> Maybe it will work if you set LANG to en_EN
>
> Emmanuel
>
> Owen Jacobson a écrit :
> > It is 2.0-beta-6; will that solution still apply?
> >
> > Owen
> >
> > On 5/28/07, Emmanuel Venisse <em...@venisse.net> wrote:
> >> What is your release plugin version?
> >>
> >> If it isn't 2.0-bate-6, you can try to set LC_MESSAGES to en_EN
> >>
> >> Emmanuel
> >>
> >> Owen Jacobson a écrit :
> >> > Good afternoon.
> >> >
> >> > I recently upgraded from Maven 2.0.4 to 2.0.6.  At about the same
> >> > time, the maven-release-plugin stopped working with subversion SCM
> >> > configurations.
> >> >
> >> > When I try to run release:prepare, I get the following:
> >> >
> >> > [INFO] Executing: svn --non-interactive status
> >> > [INFO] Working directory: /home/ojacobson/admin-parent
> >> > [INFO]
> >> >
> >> ------------------------------------------------------------------------
> >> > [ERROR] BUILD FAILURE
> >> > [INFO]
> >> >
> >> ------------------------------------------------------------------------
> >> > [INFO] Unable to check for local modifications
> >> > Provider message:
> >> > The svn command failed.
> >> > Command output:
> >> > svn: error: cannot set LC_ALL locale
> >> > svn: error: environment variable LANG is en_US.UTF-8
> >> > svn: error: please check that your locale name is correct
> >> >
> >> > However, if I run
> >> > $ cd /home/ojacobson/admin-parent
> >> > $ svn --non-interactive status
> >> > myself, I get a normal, successful svn stat listing.
> >> >
> >> > The subversion guys are stumped; anyone from the maven side have any
> >> > suggestions?
> >> >
> >> > Owen
> >> >
> >> > ---------------------------------------------------------------------
> >> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> >> > For additional commands, e-mail: users-help@maven.apache.org
> >> >
> >> >
> >> >
> >> >
> >>
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> >> For additional commands, e-mail: users-help@maven.apache.org
> >>
> >>
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > For additional commands, e-mail: users-help@maven.apache.org
> >
> >
> >
> >
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: Locale problem with subversion when running release:prepare

Posted by Owen Jacobson <an...@gmail.com>.
Well, that was enough of a clue to sort out a workaround.  For the
time being I've pinned the release plugin to 2.0-beta-5 and all is
well.  Since I don't need anything specific to the 2.0-beta-6 version,
that's fine.

Thanks for the input!
Owen

On 5/29/07, Emmanuel Venisse <em...@venisse.net> wrote:
> LC_MESSAGE=en_EN is set by default in this version because maven-scm can't parse messages that aren't in english.
>
> Do you have already set LC_ALL?
> Maybe it will work if you set LANG to en_EN
>
> Emmanuel
>
> Owen Jacobson a écrit :
> > It is 2.0-beta-6; will that solution still apply?
> >
> > Owen
> >
> > On 5/28/07, Emmanuel Venisse <em...@venisse.net> wrote:
> >> What is your release plugin version?
> >>
> >> If it isn't 2.0-bate-6, you can try to set LC_MESSAGES to en_EN
> >>
> >> Emmanuel
> >>
> >> Owen Jacobson a écrit :
> >> > Good afternoon.
> >> >
> >> > I recently upgraded from Maven 2.0.4 to 2.0.6.  At about the same
> >> > time, the maven-release-plugin stopped working with subversion SCM
> >> > configurations.
> >> >
> >> > When I try to run release:prepare, I get the following:
> >> >
> >> > [INFO] Executing: svn --non-interactive status
> >> > [INFO] Working directory: /home/ojacobson/admin-parent
> >> > [INFO]
> >> >
> >> ------------------------------------------------------------------------
> >> > [ERROR] BUILD FAILURE
> >> > [INFO]
> >> >
> >> ------------------------------------------------------------------------
> >> > [INFO] Unable to check for local modifications
> >> > Provider message:
> >> > The svn command failed.
> >> > Command output:
> >> > svn: error: cannot set LC_ALL locale
> >> > svn: error: environment variable LANG is en_US.UTF-8
> >> > svn: error: please check that your locale name is correct
> >> >
> >> > However, if I run
> >> > $ cd /home/ojacobson/admin-parent
> >> > $ svn --non-interactive status
> >> > myself, I get a normal, successful svn stat listing.
> >> >
> >> > The subversion guys are stumped; anyone from the maven side have any
> >> > suggestions?
> >> >
> >> > Owen
> >> >
> >> > ---------------------------------------------------------------------
> >> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> >> > For additional commands, e-mail: users-help@maven.apache.org
> >> >
> >> >
> >> >
> >> >
> >>
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> >> For additional commands, e-mail: users-help@maven.apache.org
> >>
> >>
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > For additional commands, e-mail: users-help@maven.apache.org
> >
> >
> >
> >
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: Locale problem with subversion when running release:prepare

Posted by Emmanuel Venisse <em...@venisse.net>.
LC_MESSAGE=en_EN is set by default in this version because maven-scm can't parse messages that aren't in english.

Do you have already set LC_ALL?
Maybe it will work if you set LANG to en_EN

Emmanuel

Owen Jacobson a écrit :
> It is 2.0-beta-6; will that solution still apply?
> 
> Owen
> 
> On 5/28/07, Emmanuel Venisse <em...@venisse.net> wrote:
>> What is your release plugin version?
>>
>> If it isn't 2.0-bate-6, you can try to set LC_MESSAGES to en_EN
>>
>> Emmanuel
>>
>> Owen Jacobson a écrit :
>> > Good afternoon.
>> >
>> > I recently upgraded from Maven 2.0.4 to 2.0.6.  At about the same
>> > time, the maven-release-plugin stopped working with subversion SCM
>> > configurations.
>> >
>> > When I try to run release:prepare, I get the following:
>> >
>> > [INFO] Executing: svn --non-interactive status
>> > [INFO] Working directory: /home/ojacobson/admin-parent
>> > [INFO]
>> > 
>> ------------------------------------------------------------------------
>> > [ERROR] BUILD FAILURE
>> > [INFO]
>> > 
>> ------------------------------------------------------------------------
>> > [INFO] Unable to check for local modifications
>> > Provider message:
>> > The svn command failed.
>> > Command output:
>> > svn: error: cannot set LC_ALL locale
>> > svn: error: environment variable LANG is en_US.UTF-8
>> > svn: error: please check that your locale name is correct
>> >
>> > However, if I run
>> > $ cd /home/ojacobson/admin-parent
>> > $ svn --non-interactive status
>> > myself, I get a normal, successful svn stat listing.
>> >
>> > The subversion guys are stumped; anyone from the maven side have any
>> > suggestions?
>> >
>> > Owen
>> >
>> > ---------------------------------------------------------------------
>> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>> > For additional commands, e-mail: users-help@maven.apache.org
>> >
>> >
>> >
>> >
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>> For additional commands, e-mail: users-help@maven.apache.org
>>
>>
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
> 
> 
> 
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: Locale problem with subversion when running release:prepare

Posted by Owen Jacobson <an...@gmail.com>.
It is 2.0-beta-6; will that solution still apply?

Owen

On 5/28/07, Emmanuel Venisse <em...@venisse.net> wrote:
> What is your release plugin version?
>
> If it isn't 2.0-bate-6, you can try to set LC_MESSAGES to en_EN
>
> Emmanuel
>
> Owen Jacobson a écrit :
> > Good afternoon.
> >
> > I recently upgraded from Maven 2.0.4 to 2.0.6.  At about the same
> > time, the maven-release-plugin stopped working with subversion SCM
> > configurations.
> >
> > When I try to run release:prepare, I get the following:
> >
> > [INFO] Executing: svn --non-interactive status
> > [INFO] Working directory: /home/ojacobson/admin-parent
> > [INFO]
> > ------------------------------------------------------------------------
> > [ERROR] BUILD FAILURE
> > [INFO]
> > ------------------------------------------------------------------------
> > [INFO] Unable to check for local modifications
> > Provider message:
> > The svn command failed.
> > Command output:
> > svn: error: cannot set LC_ALL locale
> > svn: error: environment variable LANG is en_US.UTF-8
> > svn: error: please check that your locale name is correct
> >
> > However, if I run
> > $ cd /home/ojacobson/admin-parent
> > $ svn --non-interactive status
> > myself, I get a normal, successful svn stat listing.
> >
> > The subversion guys are stumped; anyone from the maven side have any
> > suggestions?
> >
> > Owen
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> > For additional commands, e-mail: users-help@maven.apache.org
> >
> >
> >
> >
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: Locale problem with subversion when running release:prepare

Posted by Emmanuel Venisse <em...@venisse.net>.
What is your release plugin version?

If it isn't 2.0-bate-6, you can try to set LC_MESSAGES to en_EN

Emmanuel

Owen Jacobson a écrit :
> Good afternoon.
> 
> I recently upgraded from Maven 2.0.4 to 2.0.6.  At about the same
> time, the maven-release-plugin stopped working with subversion SCM
> configurations.
> 
> When I try to run release:prepare, I get the following:
> 
> [INFO] Executing: svn --non-interactive status
> [INFO] Working directory: /home/ojacobson/admin-parent
> [INFO] 
> ------------------------------------------------------------------------
> [ERROR] BUILD FAILURE
> [INFO] 
> ------------------------------------------------------------------------
> [INFO] Unable to check for local modifications
> Provider message:
> The svn command failed.
> Command output:
> svn: error: cannot set LC_ALL locale
> svn: error: environment variable LANG is en_US.UTF-8
> svn: error: please check that your locale name is correct
> 
> However, if I run
> $ cd /home/ojacobson/admin-parent
> $ svn --non-interactive status
> myself, I get a normal, successful svn stat listing.
> 
> The subversion guys are stumped; anyone from the maven side have any
> suggestions?
> 
> Owen
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
> 
> 
> 
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org