Search found 1552 matches

by BruceSteers
Saturday 13th April 2024 12:53am
Forum: General
Topic: [solved] can not use gambas repoes to get update
Replies: 15
Views: 615

Re: can not use gambas repoes to get update

grayghost4 wrote: Saturday 13th April 2024 12:25am It did not do that on my Debian system ... I had to make the directory my self
Well that is odd, it works okay here on Deb Bookworm :-\

Maybe it works now i have changed it?

Respects
by BruceSteers
Saturday 13th April 2024 12:14am
Forum: General
Topic: [solved] can not use gambas repoes to get update
Replies: 15
Views: 615

Re: can not use gambas repoes to get update

grayghost4 wrote: Friday 12th April 2024 11:51pm that still does not create the directory ...gambas-stable
It should do!
The last argument of git clone selects the directory name to create and clone into...

git clone --depth=1 https://gitlab.com/gambas/gambas.git --branch=stable gambas-stable
by BruceSteers
Friday 12th April 2024 9:22pm
Forum: General
Topic: [solved] can not use gambas repoes to get update
Replies: 15
Views: 615

Re: can not use gambas repoes to get update

The first command should be : mkdir $HOME/gambas-stable i was thinking along the lines of letting the user choose directory so i changed it to not cd ANY folder but just make the source folder in the working terminal dir. Now it looks more like this... # Run the following commands in a terminal (co...
by BruceSteers
Thursday 11th April 2024 8:29pm
Forum: General
Topic: [solved] can not use gambas repoes to get update
Replies: 15
Views: 615

Re: can not use gambas repoes to get update

Hmm actually it might not lol
I will test it later if using the whole path as a git argument works or not?

I will change it to exclude $HOME in git Args.

Cheers 😁

Glad you figured it out 😊
by BruceSteers
Thursday 11th April 2024 8:27pm
Forum: General
Topic: [solved] can not use gambas repoes to get update
Replies: 15
Views: 615

Re: can not use gambas repoes to get update

Aah yes the first lines of that web page downloads source to that folder. git clone --depth=1 https://gitlab.com/gambas/gambas.git --branch=stable $HOME/gambas-stable cd $HOME/gambas-stable If you already had the source it would have worked if you ran the script "cd" from the existing sour...
by BruceSteers
Thursday 11th April 2024 8:32am
Forum: General
Topic: Suggestions for checking that all array values are unique
Replies: 7
Views: 1079

Re: Suggestions for checking that all array values are unique

If you want the check to fail on the first detection of a duplicate, it may be better to do the check with a loop/repeat rather than a For/next so that it drops as soon as it fails rather than running through the entire array. It may shave off some more time in the process. It does exit on first de...
by BruceSteers
Wednesday 10th April 2024 9:41pm
Forum: General
Topic: [solved] can not use gambas repoes to get update
Replies: 15
Views: 615

Re: can not use gambas repoes to get update

Autotools method is easy peasy now.
Thanks to the .gitlab-ci.yml file.

Just download the source and uninstall the apt gambas version then run the autotools install

http://138.68.116.47/cgi-bin/WebGambasUpgrade.gambas

Shimples 😊
by BruceSteers
Wednesday 10th April 2024 7:54pm
Forum: General
Topic: [solved] can not use gambas repoes to get update
Replies: 15
Views: 615

Re: can not use gambas repoes to get update

Although you have a signature error there.

Did you use sudo add-apt-repository ppa:gambas-team/gambas3 to add the repository as you may not have the gpg keys
by BruceSteers
Wednesday 10th April 2024 7:49pm
Forum: General
Topic: [solved] can not use gambas repoes to get update
Replies: 15
Views: 615

Re: can not use gambas repoes to get update

I tried it manually once, i downloaded all the packages that come from launchpad but none of them installed on debian.
by BruceSteers
Wednesday 10th April 2024 7:43pm
Forum: General
Topic: [solved] can not use gambas repoes to get update
Replies: 15
Views: 615

Re: can not use gambas repoes to get update

Problem is you added an ubuntu repo to debian.

PPA launchpad is for ubuntu only, it doesn't work for debian (dependency list does not work)

Debian needs the autotools installation method to upgrade.