Trying a checkout of the bundles raises here
A Bundles/Subversion.tmbundle/Commands/Add to Repository.plist subversion/libsvn_subr/utf.c:363: (apr_err=22) svn: Can't recode string
having LC_TYPE set to "en_US.UTF-8" as the wiki says. Looks like the checkout is interrupted because XML and Perl are missing for example.
I did a search in Google and found a message from Eric Hsu with a similar problem. Any ideas?
-- fxn
Just as a test I tried checking out a fresh version and it worked fine for me. I have this in my bash_profile : export LC_CTYPE="en_US.UTF-8"
what version of the svn binary are you using?
this is my output of "svn --version" on Mac OS 10.3.9 :
svn, version 1.1.0 (r11180) compiled Sep 30 2004, 10:21:39
Copyright (C) 2000-2004 CollabNet. Subversion is open source software, see http://subversion.tigris.org/ This product includes software developed by CollabNet (http://www.Collab.Net/).
The following repository access (RA) modules are available:
* ra_dav : Module for accessing a repository via WebDAV (DeltaV) protocol. - handles 'http' schema - handles 'https' schema * ra_local : Module for accessing a repository on local disk. - handles 'file' schema * ra_svn : Module for accessing a repository using the svn network protocol. - handles 'svn' schema
On 5/4/05, Xavier Noria fxn@hashref.com wrote:
Trying a checkout of the bundles raises here
A Bundles/Subversion.tmbundle/Commands/Add to Repository.plist subversion/libsvn_subr/utf.c:363: (apr_err=22) svn: Can't recode string
having LC_TYPE set to "en_US.UTF-8" as the wiki says. Looks like the checkout is interrupted because XML and Perl are missing for example.
I did a search in Google and found a message from Eric Hsu with a similar problem. Any ideas?
-- fxn
For new threads USE THIS: textmate@lists.macromates.com (threading gets destroyed and the universe will collapse if you don't) http://lists.macromates.com/mailman/listinfo/textmate
On May 4, 2005, at 16:33, Kumar McMillan wrote:
Just as a test I tried checking out a fresh version and it worked fine for me.
Thank you very much!
I have this in my bash_profile : export LC_CTYPE="en_US.UTF-8"
The problem was a LC_ALL=C in the environment.
For the archives, to fix it I undefined that variable and set LC_CTYPE:
# export LC_ALL= # export LC_CTYPE="en_US.UTF-8" # svn ...
That worked.
-- fxn