Re: Code Changes [Was [resolution] svn migration plan]

2019-08-11 Thread Peter Kovacs
The specific guy wrote a todo list. You may say that I am the one who pisses you off. You may say so, that is okay. I do that currently with my acting before planning style. I have created a todo list here. https://cwiki.apache.org/confluence/display/OOOUSERS/Git+migration I think I have added y

Re: Code Changes [Was [resolution] svn migration plan]

2019-08-11 Thread Matthias Seidel
Hi, For the specific guy that told me I didn't speak up. This is still unresponded... Matthias Am 06.08.19 um 11:48 schrieb Matthias Seidel: > Hi all, > > Any progress? > > Git is active since Saturday. > SVN is now read only (for trunk, branches and tags). > > New Builds do not contain any rev

Re: Code Changes [Was [resolution] svn migration plan]

2019-08-08 Thread Matthias Seidel
Hi Peter, Am 08.08.19 um 22:06 schrieb Peter Kovacs: > following commandline returns the short hash of the current revision > > |git log -1 --pretty=format:%h So the code should work like this: sub > DetectRevisionIdFromGit ($) { my $path = shift; my $id = undef; open my > $proc, "cd $path && git

Re: Code Changes [Was [resolution] svn migration plan]

2019-08-08 Thread Peter Kovacs
following commandline returns the short hash of the current revision |git log -1 --pretty=format:%h So the code should work like this: sub DetectRevisionIdFromGit ($) { my $path = shift; my $id = undef; open my $proc, "cd $path && git log -1 --pretty=format:%h 2>\&1|"; while (<$proc>) { if (/^fata

Re: Code Changes [Was [resolution] svn migration plan]

2019-08-06 Thread Matthias Seidel
Hi Mechtilde, Am 03.08.19 um 13:56 schrieb Mechtilde: > Hello, > > I looked into > > main/solenv/bin/modules/SvnRevision.pm:39 > > There we have to change the condition for the "Revision ID" We should not change it but rather expand the logic. This way builds before the "git switch" would still

Re: Code Changes [Was [resolution] svn migration plan]

2019-08-06 Thread Matthias Seidel
Hi all, Any progress? Git is active since Saturday. SVN is now read only (for trunk, branches and tags). New Builds do not contain any revision information. We have documentation that must be updated asap, e.g.: https://openoffice.apache.org/source.html Who wants to write a blog post or post *

Re: Code Changes [Was [resolution] svn migration plan]

2019-08-03 Thread Matthias Seidel
Hi Mechtilde, Am 03.08.19 um 13:56 schrieb Mechtilde: > Hello, > > I looked into > > main/solenv/bin/modules/SvnRevision.pm:39 > > There we have to change the condition for the "Revision ID" > > Instead of the condition for the git-svn-id we should take the hash > which followed to the word "commi

Code Changes [Was [resolution] svn migration plan]

2019-08-03 Thread Mechtilde
Hello, I looked into main/solenv/bin/modules/SvnRevision.pm:39 There we have to change the condition for the "Revision ID" Instead of the condition for the git-svn-id we should take the hash which followed to the word "commit" in the first line. Here is an ouput with git show HEAD from last co