Re: [fpc-other] How to modify install scripts when svn disappeared?

2021-08-11 Thread Bo Berglund via fpc-other
On Wed, 11 Aug 2021 14:36:23 +0200, Bo Berglund via fpc-other
 wrote:

>Please advice how to:
>1) Find which is the latest release tag of fpc and lazarus
>2) Retrieve the full sources for that tag on the command line
>

Sorry, sent this to the wrong newsgroup, should not have been "social"...
I will retry in the correct place.


-- 
Bo Berglund
Developer in Sweden

___
fpc-other maillist  -  fpc-other@lists.freepascal.org
https://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-other


Re: [fpc-other] How to modify install scripts when svn disappeared?

2021-08-11 Thread Martin Frb via fpc-other

On 11/08/2021 14:36, Bo Berglund via fpc-other wrote:

I have for many years now been using an install script to get the sources of fpc
and lazarus via svn based on the specific tags. Then the script installs the
needed dependencies and makes the complete installation on Raspberry Pi boxes.

Now I have two problems:
1) The svn server seems to be down so the source retrieval does not work
2) I cannot find any tutorial on how to proceed with modifications of scripts to
move from svn to gitlab.

Please advice how to:
1) Find which is the latest release tag of fpc and lazarus


Well I don't know your script, and I am not sure how exactly you do that 
in svn


Also I do not know, if this is for a once up setup (so you only wont to 
download the one revision and nothing else), or if you don't mind.

(I have not measured the overhead..>)

Most replies will be to clone all, and then look at tags. (or branches)
But you can do ( -t => tags) https://git-scm.com/docs/git-ls-remote.html

    git ls-remote -t https://gitlab.com/freepascal.org/lazarus/lazarus.git

However, there is on "svn serial rev number", nor a date. So you need to 
parse the "release version" number, and compare them.


If you have a complete clone, you can afaik sort them by "commit date" 
(see "git for-each-ref")




2) Retrieve the full sources for that tag on the command line

Again if you do not want to clone

git init .
git fetch --depth=1 
https://gitlab.com/freepascal.org/lazarus/lazarus.git 
refs/tags/lazarus_2_2_0_RC1

git switch -c my-branch FETCH_HEAD

"my-branch" is your choice


*** the rest BELOW is completely UNTESTED / pure assumptions ***

I haven't tested how well updates work, if you go to other branches.
Since you have no history fetched (depth =1), I expect a full download 
of any other version (unless it is a direct child / same branch, NOT 
diverged)


Git is written for getting the full history once. I *guess* (but might 
be totally wrong) that not doing so, will make you pay later.

You could do a depth of 3000 or 1.
That is 2.2.0 (with the ending 0) is likely less that 3000 commits 
divirged from main. Then that gives you common history, and 2.4 can base 
on that.


2.0.18 is probably more revisions from main.

If you only want to stay in the same fixes branch (and are ok with a new 
download for major releases) go with a depth of 500. It is unlikely that 
a release tag will be further away from its fixes branch (usual are 0 to 
5 commits)



___
fpc-other maillist  -  fpc-other@lists.freepascal.org
https://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-other


Re: [fpc-other] How to modify install scripts when svn disappeared?

2021-08-11 Thread Luca Olivetti via fpc-other

El 11/8/21 a les 14:36, Bo Berglund via fpc-other ha escrit:


I have not used git for anything else than to download a specific code base for
a utility from github.
All of my developing is versioned via subversion...



https://tinyurl.com/u95rc9nr

Bye
--
Luca
___
fpc-other maillist  -  fpc-other@lists.freepascal.org
https://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-other


[fpc-other] How to modify install scripts when svn disappeared?

2021-08-11 Thread Bo Berglund via fpc-other
I have for many years now been using an install script to get the sources of fpc
and lazarus via svn based on the specific tags. Then the script installs the
needed dependencies and makes the complete installation on Raspberry Pi boxes.

Now I have two problems:
1) The svn server seems to be down so the source retrieval does not work
2) I cannot find any tutorial on how to proceed with modifications of scripts to
move from svn to gitlab.

Please advice how to:
1) Find which is the latest release tag of fpc and lazarus
2) Retrieve the full sources for that tag on the command line

As soon as I have the sources I believe the rest of my script will work just
fine...

The retrieval lines in my script read as follows:

echo "Downloading version $FPCVER of FPC"
cd "$FPCDIR"
svn co https://svn.freepascal.org/svn/fpc/tags/$FPCTAG/ $FPCVER

echo "Downloading version $LAZVER of Lazarus"
cd "$LAZDIR"
svn co https://svn.freepascal.org/svn/lazarus/tags/$LAZTAG/ $LAZVER


What could I replace these svn calls with?

I have not used git for anything else than to download a specific code base for
a utility from github.
All of my developing is versioned via subversion...


-- 
Bo Berglund
Developer in Sweden

___
fpc-other maillist  -  fpc-other@lists.freepascal.org
https://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-other