[l10n] Translation status report for trunk r1670248

2015-03-30 Thread Subversion Translation Status
Translation status report for trunk@r1670248 lang trans untrans fuzzy obs -- de2927 3 8 504 +~o es2283 647 855 530 ++U~~~ fr2589 341

Re: [PATCH] On the 'ra-git' branch: update to libgit2 v0.22

2015-03-30 Thread James McCoy
On Tue, Mar 31, 2015 at 12:13:09AM +0200, Branko Čibej wrote: > On 30.03.2015 20:26, Daniel Shahaf wrote: > > Carlos Martín Nieto wrote on Mon, Mar 30, 2015 at 16:58:57 +0200: > >> +++ autogen.sh (working copy) > >> -configfile=${LIBTOOL_CONFIG-`cd $ltpath/../share/libtool/config ; > >

Re: [PATCH] On the 'ra-git' branch: update to libgit2 v0.22

2015-03-30 Thread Ben Reser
On 3/30/15 3:13 PM, Branko Čibej wrote: > It is not. autogen.sh must not require bash. $() is not a bash'ism. It's actually in POSIX. But for whatever reason Solaris' sh does not support it so both of you are correct we can't use it.

Re: [PATCH] On the 'ra-git' branch: update to libgit2 v0.22

2015-03-30 Thread Branko Čibej
On 30.03.2015 20:26, Daniel Shahaf wrote: > Carlos Martín Nieto wrote on Mon, Mar 30, 2015 at 16:58:57 +0200: >> +++ autogen.sh (working copy) >> -configfile=${LIBTOOL_CONFIG-`cd $ltpath/../share/libtool/config ; >> pwd`/$file} >> +configfile=${LIBTOOL_CONFIG-$(cd $ltpath/../

Re: [PATCH] Don't remove empty directories when creating repositories (in some cases)

2015-03-30 Thread Branko Čibej
On 30.03.2015 15:35, Sergey Raevskiy wrote: > Hi! > > I've noticed inconsistency in svn_repos_create() behavior. Despite the fact > that creation of repositories over empty directories is allowed, in some cases > this function will remove an empty directory that existed before repository > creatio

Re: Subversion checkout issue with certain short names on Windows

2015-03-30 Thread Stefan Kueng
On 29.03.2015 17:50, Bert Huijben wrote: -Original Message- From: Stephen White [mailto:swh...@corefiling.com] Sent: vrijdag 27 maart 2015 14:03 To: dev@subversion.apache.org Subject: Subversion checkout issue with certain short names on Windows If you pass a Windows short-name as t

Re: [PATCH] On the 'ra-git' branch: update to libgit2 v0.22

2015-03-30 Thread Daniel Shahaf
Carlos Martín Nieto wrote on Mon, Mar 30, 2015 at 16:58:57 +0200: > +++ autogen.sh(working copy) > -configfile=${LIBTOOL_CONFIG-`cd $ltpath/../share/libtool/config ; > pwd`/$file} > +configfile=${LIBTOOL_CONFIG-$(cd $ltpath/../share/libtool/config ; > pwd)}/$file Is it sa

[PATCH] On the 'ra-git' branch: update to libgit2 v0.22

2015-03-30 Thread Carlos Martín Nieto
Hi, The git RA layer still expects to be built against v0.20 of libgit2, which has been unsupported for quite a while now. This patch brings the code up to date to work against the v0.22 API. [[[ On the 'ra-git' branch: update to libgit2 v0.22 * BRANCH-README: Specify we build against libgit2

[PATCH] Don't remove empty directories when creating repositories (in some cases)

2015-03-30 Thread Sergey Raevskiy
Hi! I've noticed inconsistency in svn_repos_create() behavior. Despite the fact that creation of repositories over empty directories is allowed, in some cases this function will remove an empty directory that existed before repository creation. I've attached the patch with test and fix. [[[ Whe