Re: [GRASS-dev] silly question

2020-03-04 Thread Michael Barton
See

https://trac.osgeo.org/grass/wiki/HowToGit

For example:


git clone 
g...@github.com:your_GH_account/grass-addons.git
cd grass-addons/
git remote add upstream 
g...@github.com:OSGeo/grass-addons.git

does not work for me at least. It needs to be:

git clone 
g...@github.com/your_GH_account/grass-addons.git
cd grass-addons/
git remote add upstream 
g...@github.com/OSGeo/grass-addons.git

replacing g...@github.com:your_GH_account with 
g...@github.com/your_GH_account

Maybe the colon works if you have an ssh key set in your github account.

Michael

C. Michael Barton
Director, Center for Social Dynamics & Complexity
Professor of Anthropology, School of Human Evolution & Social Change
Head, Graduate Faculty in Complex Adaptive Systems Science
Arizona State University

voice:  480-965-6262 (SHESC), 480-965-8130/727-9746 (CSDC)
fax: 480-965-7671 (SHESC),  480-727-0709 (CSDC)
www: http://www.public.asu.edu/~cmbarton, https://complexity.asu.edu/csdc

















On Mar 4, 2020, at 7:37 PM, Vaclav Petras 
mailto:wenzesl...@gmail.com>> wrote:

Thanks Anna for identifying this. Looks likely.

Markus, Michael, I don't see the bad URL anywhere on Trac wiki, grasswiki, or 
in CONTRIBUTING.md file (as far as search works for URLs, it does at least for 
Trac).

Michael, The CONTRIBUTING.md file has SSH URL for your fork and HTTPS for the 
OSGeo upstream repo, so your problem was not caused by that.

Nevertheless, switching to HTTPS also for the fork is something we can do if 
more people support it.

Vaclav

On Wed, Mar 4, 2020 at 9:11 PM Markus Neteler 
mailto:nete...@osgeo.org>> wrote:
Michael,

Michael Barton mailto:michael.bar...@asu.edu>> schrieb 
am Mi., 4. März 2020, 19:11:
Thanks Luca,

I also found someone here that pointed that out. I originally got instructions 
from the GRASS WIKI.


Which URL?

Markus

There is either an error or it is something that does not work for Macs. The 
examples use a colon to indicate the repository owner instead of a slash. I had 
fixed that for the original clone command but did not catch it for the one 
setting upstream.

Also learned a new one that is exactly what I need in some circumstances:

git reset --hard origin/master

Michael

C. Michael Barton
Director, Center for Social Dynamics & Complexity
Professor of Anthropology, School of Human Evolution & Social Change
Head, Graduate Faculty in Complex Adaptive Systems Science
Arizona State University

voice:  480-965-6262 (SHESC), 480-965-8130/727-9746 (CSDC)
fax: 480-965-7671 (SHESC),  480-727-0709 (CSDC)
www: 
http://www.public.asu.edu/~cmbarton,
 
https://complexity.asu.edu/csdc

















On Mar 4, 2020, at 3:30 PM, Luca Delucchi 
mailto:lucadel...@gmail.com>> wrote:

Hi Michael,

On Wed, 4 Mar 2020 at 19:49, Michael Barton 
mailto:michael.bar...@asu.edu>> wrote:

I want to do something that should be simple but it is not. I want to be able 
to update my fork of GRASS source code from master. The wiki instructions say I 
should be able to do this with:

git fetch upstream
git rebase upstream/master

But when I do, I get:

unable to access 
'https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com-3AOSGeo_grass.git_=DwIBaQ=l45AxH-kUV29SRQusp9vYR0n1GycN4_2jInuKy6zbqQ=lk-7X7CEOMDN8GaGVhiDsuO6gEp1wbG6nfT1XEEEtR0=ocylBhKg4eZ-QJLCBa53vt3dUwHB_ZET96-XkejX2FU=t9pyApmJY3B5H0nFh-Gm1IG1VGltt378-0JryEOEZG8=
 ': Port number ended with 
'O'


it seems wrong the url, it should be 
https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_OSGeo_grass.git=DwIBaQ=l45AxH-kUV29SRQusp9vYR0n1GycN4_2jInuKy6zbqQ=lk-7X7CEOMDN8GaGVhiDsuO6gEp1wbG6nfT1XEEEtR0=ocylBhKg4eZ-QJLCBa53vt3dUwHB_ZET96-XkejX2FU=2s0FIt9ZZMaEF8dGFczUzV71CeMzJZ3MBNeNaOmhcp4=

Any suggestions? I don't want to have to keep forking and cloning

Michael



--
ciao
Luca


[GRASS-dev] Automatic/CI compilation on macOS

2020-03-04 Thread Vaclav Petras
Dear all,

I made some updates towards updating the conda recipe for GRASS GIS on
macOS by Eric Hutton, but it is not working yet. You can find the WIP PR
here:

https://github.com/csdms-stack/grass-recipe/pull/1

You can see the current state in Travis linked from the PR or in GitHub
Actions of my fork:

https://github.com/wenzeslaus/grass-recipe/tree/updates-for-7.8-and-above
https://github.com/wenzeslaus/grass-recipe/actions

If you think a different approach is more appropriate and want to try it
out, you can consider contributing to the following repository which now,
for example, contains a homebrew-osgeo4mac based branch. Again see the
current state in GitHub Actions:

https://github.com/GRASS-GIS/grass-gis-experimental-ci/tree/homebrew-osgeo4mac

If you have some ideas for fixing the errors, please let me know, here, by
PRs, issues, or links to other repos.

Thanks,
Vaclav
___
grass-dev mailing list
grass-dev@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/grass-dev

Re: [GRASS-dev] silly question

2020-03-04 Thread Vaclav Petras
Thanks Anna for identifying this. Looks likely.

Markus, Michael, I don't see the bad URL anywhere on Trac wiki, grasswiki,
or in CONTRIBUTING.md file (as far as search works for URLs, it does at
least for Trac).

Michael, The CONTRIBUTING.md file has SSH URL for your fork and HTTPS for
the OSGeo upstream repo, so your problem was not caused by that.

Nevertheless, switching to HTTPS also for the fork is something we can do
if more people support it.

Vaclav

On Wed, Mar 4, 2020 at 9:11 PM Markus Neteler  wrote:

> Michael,
>
> Michael Barton  schrieb am Mi., 4. März 2020,
> 19:11:
>
>> Thanks Luca,
>>
>> I also found someone here that pointed that out. I originally got
>> instructions from the GRASS WIKI.
>>
>
>
> Which URL?
>
> Markus
>
> There is either an error or it is something that does not work for Macs.
>> The examples use a colon to indicate the repository owner instead of a
>> slash. I had fixed that for the original clone command but did not catch it
>> for the one setting upstream.
>>
>> Also learned a new one that is exactly what I need in some circumstances:
>>
>> git reset --hard origin/master
>>
>> Michael
>> 
>> C. Michael Barton
>> Director, Center for Social Dynamics & Complexity
>> Professor of Anthropology, School of Human Evolution & Social Change
>> Head, Graduate Faculty in Complex Adaptive Systems Science
>> Arizona State University
>>
>> voice:  480-965-6262 (SHESC), 480-965-8130/727-9746 (CSDC)
>> fax: 480-965-7671 (SHESC),  480-727-0709 (CSDC)
>> www: http://www.public.asu.edu/~cmbarton, https://complexity.asu.edu/csdc
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>> On Mar 4, 2020, at 3:30 PM, Luca Delucchi  wrote:
>>
>> Hi Michael,
>>
>> On Wed, 4 Mar 2020 at 19:49, Michael Barton 
>> wrote:
>>
>>
>> I want to do something that should be simple but it is not. I want to be
>> able to update my fork of GRASS source code from master. The wiki
>> instructions say I should be able to do this with:
>>
>> git fetch upstream
>> git rebase upstream/master
>>
>> But when I do, I get:
>>
>> unable to access 
>> 'https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com-3AOSGeo_grass.git_=DwIBaQ=l45AxH-kUV29SRQusp9vYR0n1GycN4_2jInuKy6zbqQ=lk-7X7CEOMDN8GaGVhiDsuO6gEp1wbG6nfT1XEEEtR0=ocylBhKg4eZ-QJLCBa53vt3dUwHB_ZET96-XkejX2FU=t9pyApmJY3B5H0nFh-Gm1IG1VGltt378-0JryEOEZG8=
>> ': Port number ended with 'O
>> 
>> '
>>
>>
>> it seems wrong the url, it should be
>> https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_OSGeo_grass.git=DwIBaQ=l45AxH-kUV29SRQusp9vYR0n1GycN4_2jInuKy6zbqQ=lk-7X7CEOMDN8GaGVhiDsuO6gEp1wbG6nfT1XEEEtR0=ocylBhKg4eZ-QJLCBa53vt3dUwHB_ZET96-XkejX2FU=2s0FIt9ZZMaEF8dGFczUzV71CeMzJZ3MBNeNaOmhcp4=
>>
>> Any suggestions? I don't want to have to keep forking and cloning
>>
>> Michael
>>
>>
>>
>> --
>> ciao
>> Luca
>>
>> www.lucadelu.org
>>
>>
>> ___
>> grass-dev mailing list
>> grass-dev@lists.osgeo.org
>> https://lists.osgeo.org/mailman/listinfo/grass-dev
>
> ___
> grass-dev mailing list
> grass-dev@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/grass-dev
___
grass-dev mailing list
grass-dev@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/grass-dev

Re: [GRASS-dev] silly question

2020-03-04 Thread Markus Neteler
Michael,

Michael Barton  schrieb am Mi., 4. März 2020, 19:11:

> Thanks Luca,
>
> I also found someone here that pointed that out. I originally got
> instructions from the GRASS WIKI.
>


Which URL?

Markus

There is either an error or it is something that does not work for Macs.
> The examples use a colon to indicate the repository owner instead of a
> slash. I had fixed that for the original clone command but did not catch it
> for the one setting upstream.
>
> Also learned a new one that is exactly what I need in some circumstances:
>
> git reset --hard origin/master
>
> Michael
> 
> C. Michael Barton
> Director, Center for Social Dynamics & Complexity
> Professor of Anthropology, School of Human Evolution & Social Change
> Head, Graduate Faculty in Complex Adaptive Systems Science
> Arizona State University
>
> voice:  480-965-6262 (SHESC), 480-965-8130/727-9746 (CSDC)
> fax: 480-965-7671 (SHESC),  480-727-0709 (CSDC)
> www: http://www.public.asu.edu/~cmbarton, https://complexity.asu.edu/csdc
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
> On Mar 4, 2020, at 3:30 PM, Luca Delucchi  wrote:
>
> Hi Michael,
>
> On Wed, 4 Mar 2020 at 19:49, Michael Barton 
> wrote:
>
>
> I want to do something that should be simple but it is not. I want to be
> able to update my fork of GRASS source code from master. The wiki
> instructions say I should be able to do this with:
>
> git fetch upstream
> git rebase upstream/master
>
> But when I do, I get:
>
> unable to access 
> 'https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com-3AOSGeo_grass.git_=DwIBaQ=l45AxH-kUV29SRQusp9vYR0n1GycN4_2jInuKy6zbqQ=lk-7X7CEOMDN8GaGVhiDsuO6gEp1wbG6nfT1XEEEtR0=ocylBhKg4eZ-QJLCBa53vt3dUwHB_ZET96-XkejX2FU=t9pyApmJY3B5H0nFh-Gm1IG1VGltt378-0JryEOEZG8=
> ': Port number ended with 'O
> 
> '
>
>
> it seems wrong the url, it should be
> https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_OSGeo_grass.git=DwIBaQ=l45AxH-kUV29SRQusp9vYR0n1GycN4_2jInuKy6zbqQ=lk-7X7CEOMDN8GaGVhiDsuO6gEp1wbG6nfT1XEEEtR0=ocylBhKg4eZ-QJLCBa53vt3dUwHB_ZET96-XkejX2FU=2s0FIt9ZZMaEF8dGFczUzV71CeMzJZ3MBNeNaOmhcp4=
>
> Any suggestions? I don't want to have to keep forking and cloning
>
> Michael
>
>
>
> --
> ciao
> Luca
>
> www.lucadelu.org
>
>
> ___
> grass-dev mailing list
> grass-dev@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/grass-dev
___
grass-dev mailing list
grass-dev@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/grass-dev

Re: [GRASS-dev] silly question

2020-03-04 Thread Michael Barton
Maybe. The assumption needs to be explicit soponce not everyone will have set 
up their github account with ssh.

Michael Barton
School of Human Evolution  Change
Center for Social Dynamics & Complexity
Arizona State University

...Sent from my iPad

On Mar 4, 2020, at 6:09 PM, Anna Petrášová  wrote:


Perhaps caused by some mixing of cloning with HTTPS vs SSH?

git clone g...@github.com:petrasovaa/grass.git
git clone 
https://github.com/petrasovaa/grass.git

The instructions assume ssh.

On Wed, Mar 4, 2020 at 7:11 PM Michael Barton 
mailto:michael.bar...@asu.edu>> wrote:
Thanks Luca,

I also found someone here that pointed that out. I originally got instructions 
from the GRASS WIKI. There is either an error or it is something that does not 
work for Macs. The examples use a colon to indicate the repository owner 
instead of a slash. I had fixed that for the original clone command but did not 
catch it for the one setting upstream.

Also learned a new one that is exactly what I need in some circumstances:

git reset --hard origin/master

Michael

C. Michael Barton
Director, Center for Social Dynamics & Complexity
Professor of Anthropology, School of Human Evolution & Social Change
Head, Graduate Faculty in Complex Adaptive Systems Science
Arizona State University

voice:  480-965-6262 (SHESC), 480-965-8130/727-9746 (CSDC)
fax: 480-965-7671 (SHESC),  480-727-0709 (CSDC)
www: 
http://www.public.asu.edu/~cmbarton,
 
https://complexity.asu.edu/csdc

















On Mar 4, 2020, at 3:30 PM, Luca Delucchi 
mailto:lucadel...@gmail.com>> wrote:

Hi Michael,

On Wed, 4 Mar 2020 at 19:49, Michael Barton 
mailto:michael.bar...@asu.edu>> wrote:

I want to do something that should be simple but it is not. I want to be able 
to update my fork of GRASS source code from master. The wiki instructions say I 
should be able to do this with:

git fetch upstream
git rebase upstream/master

But when I do, I get:

unable to access 
'https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com-3AOSGeo_grass.git_=DwIBaQ=l45AxH-kUV29SRQusp9vYR0n1GycN4_2jInuKy6zbqQ=lk-7X7CEOMDN8GaGVhiDsuO6gEp1wbG6nfT1XEEEtR0=ocylBhKg4eZ-QJLCBa53vt3dUwHB_ZET96-XkejX2FU=t9pyApmJY3B5H0nFh-Gm1IG1VGltt378-0JryEOEZG8=
 ': Port number ended with 
'O'


it seems wrong the url, it should be 
https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_OSGeo_grass.git=DwIBaQ=l45AxH-kUV29SRQusp9vYR0n1GycN4_2jInuKy6zbqQ=lk-7X7CEOMDN8GaGVhiDsuO6gEp1wbG6nfT1XEEEtR0=ocylBhKg4eZ-QJLCBa53vt3dUwHB_ZET96-XkejX2FU=2s0FIt9ZZMaEF8dGFczUzV71CeMzJZ3MBNeNaOmhcp4=

Any suggestions? I don't want to have to keep forking and cloning

Michael



--
ciao
Luca

www.lucadelu.org

___
grass-dev mailing list
grass-dev@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/grass-dev
___
grass-dev mailing list
grass-dev@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/grass-dev

Re: [GRASS-dev] silly question

2020-03-04 Thread Anna Petrášová
Perhaps caused by some mixing of cloning with HTTPS vs SSH?

git clone g...@github.com:petrasovaa/grass.git
git clone https://github.com/petrasovaa/grass.git

The instructions assume ssh.

On Wed, Mar 4, 2020 at 7:11 PM Michael Barton 
wrote:

> Thanks Luca,
>
> I also found someone here that pointed that out. I originally got
> instructions from the GRASS WIKI. There is either an error or it is
> something that does not work for Macs. The examples use a colon to indicate
> the repository owner instead of a slash. I had fixed that for the original
> clone command but did not catch it for the one setting upstream.
>
> Also learned a new one that is exactly what I need in some circumstances:
>
> git reset --hard origin/master
>
> Michael
> 
> C. Michael Barton
> Director, Center for Social Dynamics & Complexity
> Professor of Anthropology, School of Human Evolution & Social Change
> Head, Graduate Faculty in Complex Adaptive Systems Science
> Arizona State University
>
> voice:  480-965-6262 (SHESC), 480-965-8130/727-9746 (CSDC)
> fax: 480-965-7671 (SHESC),  480-727-0709 (CSDC)
> www: http://www.public.asu.edu/~cmbarton, https://complexity.asu.edu/csdc
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
> On Mar 4, 2020, at 3:30 PM, Luca Delucchi  wrote:
>
> Hi Michael,
>
> On Wed, 4 Mar 2020 at 19:49, Michael Barton 
> wrote:
>
>
> I want to do something that should be simple but it is not. I want to be
> able to update my fork of GRASS source code from master. The wiki
> instructions say I should be able to do this with:
>
> git fetch upstream
> git rebase upstream/master
>
> But when I do, I get:
>
> unable to access 
> 'https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com-3AOSGeo_grass.git_=DwIBaQ=l45AxH-kUV29SRQusp9vYR0n1GycN4_2jInuKy6zbqQ=lk-7X7CEOMDN8GaGVhiDsuO6gEp1wbG6nfT1XEEEtR0=ocylBhKg4eZ-QJLCBa53vt3dUwHB_ZET96-XkejX2FU=t9pyApmJY3B5H0nFh-Gm1IG1VGltt378-0JryEOEZG8=
> ': Port number ended with 'O
> 
> '
>
>
> it seems wrong the url, it should be
> https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_OSGeo_grass.git=DwIBaQ=l45AxH-kUV29SRQusp9vYR0n1GycN4_2jInuKy6zbqQ=lk-7X7CEOMDN8GaGVhiDsuO6gEp1wbG6nfT1XEEEtR0=ocylBhKg4eZ-QJLCBa53vt3dUwHB_ZET96-XkejX2FU=2s0FIt9ZZMaEF8dGFczUzV71CeMzJZ3MBNeNaOmhcp4=
>
> Any suggestions? I don't want to have to keep forking and cloning
>
> Michael
>
>
>
> --
> ciao
> Luca
>
> www.lucadelu.org
>
>
> ___
> grass-dev mailing list
> grass-dev@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/grass-dev
___
grass-dev mailing list
grass-dev@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/grass-dev

Re: [GRASS-dev] silly question

2020-03-04 Thread Michael Barton
Thanks Luca,

I also found someone here that pointed that out. I originally got instructions 
from the GRASS WIKI. There is either an error or it is something that does not 
work for Macs. The examples use a colon to indicate the repository owner 
instead of a slash. I had fixed that for the original clone command but did not 
catch it for the one setting upstream.

Also learned a new one that is exactly what I need in some circumstances:

git reset --hard origin/master

Michael

C. Michael Barton
Director, Center for Social Dynamics & Complexity
Professor of Anthropology, School of Human Evolution & Social Change
Head, Graduate Faculty in Complex Adaptive Systems Science
Arizona State University

voice:  480-965-6262 (SHESC), 480-965-8130/727-9746 (CSDC)
fax: 480-965-7671 (SHESC),  480-727-0709 (CSDC)
www: http://www.public.asu.edu/~cmbarton, https://complexity.asu.edu/csdc

















On Mar 4, 2020, at 3:30 PM, Luca Delucchi 
mailto:lucadel...@gmail.com>> wrote:

Hi Michael,

On Wed, 4 Mar 2020 at 19:49, Michael Barton 
mailto:michael.bar...@asu.edu>> wrote:

I want to do something that should be simple but it is not. I want to be able 
to update my fork of GRASS source code from master. The wiki instructions say I 
should be able to do this with:

git fetch upstream
git rebase upstream/master

But when I do, I get:

unable to access 
'https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com-3AOSGeo_grass.git_=DwIBaQ=l45AxH-kUV29SRQusp9vYR0n1GycN4_2jInuKy6zbqQ=lk-7X7CEOMDN8GaGVhiDsuO6gEp1wbG6nfT1XEEEtR0=ocylBhKg4eZ-QJLCBa53vt3dUwHB_ZET96-XkejX2FU=t9pyApmJY3B5H0nFh-Gm1IG1VGltt378-0JryEOEZG8=
 ': Port number ended with 
'O'


it seems wrong the url, it should be 
https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_OSGeo_grass.git=DwIBaQ=l45AxH-kUV29SRQusp9vYR0n1GycN4_2jInuKy6zbqQ=lk-7X7CEOMDN8GaGVhiDsuO6gEp1wbG6nfT1XEEEtR0=ocylBhKg4eZ-QJLCBa53vt3dUwHB_ZET96-XkejX2FU=2s0FIt9ZZMaEF8dGFczUzV71CeMzJZ3MBNeNaOmhcp4=

Any suggestions? I don't want to have to keep forking and cloning

Michael



--
ciao
Luca

www.lucadelu.org

___
grass-dev mailing list
grass-dev@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/grass-dev

Re: [GRASS-dev] [GRASS GIS] #3883: GRASS master does not compile with Python 3 on Mac

2020-03-04 Thread GRASS GIS
#3883: GRASS master does not compile with Python 3 on Mac
--+-
  Reporter:  cmbarton |  Owner:  grass-dev@…
  Type:  defect   | Status:  closed
  Priority:  major|  Milestone:  7.8.3
 Component:  Default  |Version:  svn-trunk
Resolution:  fixed|   Keywords:
   CPU:  Unspecified  |   Platform:  MacOSX
--+-

Comment (by cmbarton):

 I can confirm that I finally got GRASS to compile and run with this fix.
 Great news. I did have a problem with the installation that I had to fix
 manually and hope I can find a way to deal with it in the build process.
 Maybe a result of the difficulty in setting up a build environment that
 does not use Python 3.7.6 (current stable) so I can create a Mac app
 package. I will work on it more on the coming weeks to see if I can turn
 out some useable new packages. Hopefully it will now be easier to finally
 get to some of the other annoying to serious bugs. Thanks to all who
 worked on this

-- 
Ticket URL: 
GRASS GIS 

___
grass-dev mailing list
grass-dev@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/grass-dev

Re: [GRASS-dev] silly question

2020-03-04 Thread Luca Delucchi
Hi Michael,

On Wed, 4 Mar 2020 at 19:49, Michael Barton  wrote:
>
> I want to do something that should be simple but it is not. I want to be able 
> to update my fork of GRASS source code from master. The wiki instructions say 
> I should be able to do this with:
>
> git fetch upstream
> git rebase upstream/master
>
> But when I do, I get:
>
> unable to access 'https://github.com:OSGeo/grass.git/': Port number ended 
> with 'O'
>

it seems wrong the url, it should be https://github.com/OSGeo/grass.git

> Any suggestions? I don't want to have to keep forking and cloning
>
> Michael
>


-- 
ciao
Luca

www.lucadelu.org
___
grass-dev mailing list
grass-dev@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/grass-dev

Re: [GRASS-dev] silly question

2020-03-04 Thread Michael Barton
To clarify, I do not want to commit any local changes. I just want to get a 
clean update of the most current code and I want it to overwrite any local 
changes (I can stash them).

Michael

C. Michael Barton
Director, Center for Social Dynamics & Complexity
Professor of Anthropology, School of Human Evolution & Social Change
Head, Graduate Faculty in Complex Adaptive Systems Science
Arizona State University

voice:  480-965-6262 (SHESC), 480-965-8130/727-9746 (CSDC)
fax: 480-965-7671 (SHESC),  480-727-0709 (CSDC)
www: http://www.public.asu.edu/~cmbarton, https://complexity.asu.edu/csdc

















On Mar 4, 2020, at 11:34 AM, Michael Barton 
mailto:michael.bar...@asu.edu>> wrote:

I want to do something that should be simple but it is not. I want to be able 
to update my fork of GRASS source code from master. The wiki instructions say I 
should be able to do this with:

git fetch upstream
git rebase upstream/master

But when I do, I get:

unable to access 'https://github.com:OSGeo/grass.git/': Port number ended with 
'O'

Any suggestions? I don't want to have to keep forking and cloning

Michael

C. Michael Barton
Director, Center for Social Dynamics & Complexity
Professor of Anthropology, School of Human Evolution & Social Change
Head, Graduate Faculty in Complex Adaptive Systems Science
Arizona State University

voice:  480-965-6262 (SHESC), 480-965-8130/727-9746 (CSDC)
fax: 480-965-7671 (SHESC),  480-727-0709 (CSDC)
www: http://www.public.asu.edu/~cmbarton, https://complexity.asu.edu/csdc


















___
grass-dev mailing list
grass-dev@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/grass-dev

[GRASS-dev] silly question

2020-03-04 Thread Michael Barton
I want to do something that should be simple but it is not. I want to be able 
to update my fork of GRASS source code from master. The wiki instructions say I 
should be able to do this with:

git fetch upstream
git rebase upstream/master

But when I do, I get:

unable to access 'https://github.com:OSGeo/grass.git/': Port number ended with 
'O'

Any suggestions? I don't want to have to keep forking and cloning

Michael

C. Michael Barton
Director, Center for Social Dynamics & Complexity
Professor of Anthropology, School of Human Evolution & Social Change
Head, Graduate Faculty in Complex Adaptive Systems Science
Arizona State University

voice:  480-965-6262 (SHESC), 480-965-8130/727-9746 (CSDC)
fax: 480-965-7671 (SHESC),  480-727-0709 (CSDC)
www: http://www.public.asu.edu/~cmbarton, https://complexity.asu.edu/csdc

















___
grass-dev mailing list
grass-dev@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/grass-dev

Re: [GRASS-dev] [GRASS GIS] #3009: "Quit GRASS GIS" button only exits GUI

2020-03-04 Thread GRASS GIS
#3009: "Quit GRASS GIS" button only exits GUI
--+-
  Reporter:  cmbarton |  Owner:  grass-dev@…
  Type:  defect   | Status:  new
  Priority:  normal   |  Milestone:  7.6.2
 Component:  wxGUI|Version:  unspecified
Resolution:   |   Keywords:  "quit grass gis button"
   CPU:  Unspecified  |   Platform:  MacOSX
--+-

Comment (by nila):

 I believe I have found the cause of this issue.

 In gui/wxpython/lmgr/frame.py:2533-2536 `GMFrame.OnCloseWindowOrExit()`:
 {{{
 if ret != wx.ID_CANCEL:
 self._closeWindow(event)
 if ret == wx.ID_YES:
 self._quitGRASS()
 }}}

 in `self._closeWindow` self (the GMFrame) will be destroyed and
 `self._quitGRASS` will never be reached.

-- 
Ticket URL: 
GRASS GIS 

___
grass-dev mailing list
grass-dev@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/grass-dev

Re: [GRASS-dev] [GRASS GIS] #3607: Removing map layer crashes wxGUI

2020-03-04 Thread GRASS GIS
#3607: Removing map layer crashes wxGUI
+-
  Reporter:  cmbarton   |  Owner:  grass-dev@…
  Type:  defect | Status:  new
  Priority:  normal |  Milestone:  7.4.5
 Component:  wxGUI  |Version:  7.4.0
Resolution: |   Keywords:  remove layer, layer manager
   CPU:  OSX/Intel  |   Platform:  MacOSX
+-

Comment (by nila):

 Yes, this only crashes when removing layer from button-menu.

 But **not** from contextual menu (right click), where it works as
 expected.

-- 
Ticket URL: 
GRASS GIS 

___
grass-dev mailing list
grass-dev@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/grass-dev

Re: [GRASS-dev] [GRASS GIS] #3883: GRASS master does not compile with Python 3 on Mac

2020-03-04 Thread GRASS GIS
#3883: GRASS master does not compile with Python 3 on Mac
--+-
  Reporter:  cmbarton |  Owner:  grass-dev@…
  Type:  defect   | Status:  closed
  Priority:  major|  Milestone:  7.8.3
 Component:  Default  |Version:  svn-trunk
Resolution:  fixed|   Keywords:
   CPU:  Unspecified  |   Platform:  MacOSX
--+-
Changes (by annakrat):

 * status:  new => closed
 * resolution:   => fixed


-- 
Ticket URL: 
GRASS GIS 

___
grass-dev mailing list
grass-dev@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/grass-dev

Re: [GRASS-dev] [GRASS GIS] #3607: Removing map layer crashes wxGUI

2020-03-04 Thread GRASS GIS
#3607: Removing map layer crashes wxGUI
+-
  Reporter:  cmbarton   |  Owner:  grass-dev@…
  Type:  defect | Status:  new
  Priority:  normal |  Milestone:  7.4.5
 Component:  wxGUI  |Version:  7.4.0
Resolution: |   Keywords:  remove layer, layer manager
   CPU:  OSX/Intel  |   Platform:  MacOSX
+-

Comment (by annakrat):

 Just to make it clear, do you have to press the button to crash, or also
 right click (or whatever you use on mac) would do it as well?

-- 
Ticket URL: 
GRASS GIS 

___
grass-dev mailing list
grass-dev@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/grass-dev

Re: [GRASS-dev] [GRASS GIS] #4003: GRASS 7.8.1 still won't compile. Still a ctypes problem

2020-03-04 Thread GRASS GIS
#4003: GRASS 7.8.1 still won't compile. Still a ctypes problem
--+-
  Reporter:  cmbarton |  Owner:  grass-dev@…
  Type:  defect   | Status:  closed
  Priority:  critical |  Milestone:  7.8.3
 Component:  Default  |Version:  git-releasebranch78
Resolution:  duplicate|   Keywords:
   CPU:  Unspecified  |   Platform:  MacOSX
--+-
Changes (by annakrat):

 * status:  new => closed
 * resolution:   => duplicate


-- 
Ticket URL: 
GRASS GIS 

___
grass-dev mailing list
grass-dev@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/grass-dev

Re: [GRASS-dev] [GRASS GIS] #3009: "Quit GRASS GIS" button only exits GUI

2020-03-04 Thread GRASS GIS
#3009: "Quit GRASS GIS" button only exits GUI
--+-
  Reporter:  cmbarton |  Owner:  grass-dev@…
  Type:  defect   | Status:  new
  Priority:  normal   |  Milestone:  7.6.2
 Component:  wxGUI|Version:  unspecified
Resolution:   |   Keywords:  "quit grass gis button"
   CPU:  Unspecified  |   Platform:  MacOSX
--+-

Comment (by nila):

 This is still an issue with 7.8 branch and master (7.9.dev), with Python
 3.8.2 and wxPython 4.0.7.post2.

-- 
Ticket URL: 
GRASS GIS 

___
grass-dev mailing list
grass-dev@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/grass-dev

Re: [GRASS-dev] [GRASS GIS] #3607: Removing map layer crashes wxGUI

2020-03-04 Thread GRASS GIS
#3607: Removing map layer crashes wxGUI
+-
  Reporter:  cmbarton   |  Owner:  grass-dev@…
  Type:  defect | Status:  new
  Priority:  normal |  Milestone:  7.4.5
 Component:  wxGUI  |Version:  7.4.0
Resolution: |   Keywords:  remove layer, layer manager
   CPU:  OSX/Intel  |   Platform:  MacOSX
+-

Comment (by nila):

 This is still an issue with 7.8 branch and master (7.9.dev), with Python
 3.8.2 and wxPython 4.0.7.post2.

-- 
Ticket URL: 
GRASS GIS 

___
grass-dev mailing list
grass-dev@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/grass-dev

Re: [GRASS-dev] [GRASS GIS] #3472: g.gui.iclass crashes the GUI

2020-03-04 Thread GRASS GIS
#3472: g.gui.iclass crashes the GUI
--+-
  Reporter:  cmbarton |  Owner:  grass-dev@…
  Type:  defect   | Status:  new
  Priority:  normal   |  Milestone:  7.4.5
 Component:  wxGUI|Version:  7.2.2
Resolution:   |   Keywords:  I.classify
   CPU:  Unspecified  |   Platform:  MacOSX
--+-

Comment (by nila):

 This is still an issue with 7.8 branch and master (7.9.dev), with Python
 3.8.2 and wxPython 4.0.7.post2.

-- 
Ticket URL: 
GRASS GIS 

___
grass-dev mailing list
grass-dev@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/grass-dev

Re: [GRASS-dev] [GRASS GIS] #3487: vector digitizer unstable

2020-03-04 Thread GRASS GIS
#3487: vector digitizer unstable
+---
  Reporter:  cmbarton   |  Owner:  grass-dev@…
  Type:  defect | Status:  new
  Priority:  critical   |  Milestone:  7.6.2
 Component:  wxGUI  |Version:  7.2.2
Resolution: |   Keywords:  digitizer, ctypes
   CPU:  OSX/Intel  |   Platform:  MacOSX
+---

Comment (by nila):

 This is still an issue with 7.8 branch and master (7.9.dev), with Python
 3.8.2 and wxPython 4.0.7.post2.

 I managed to debug in steps:

 {{{
 scripts/g.gui.vdigit:80 VDigitMapFrame()
 gui/wxpython/vdigit/toolbars.py:913 VDigitToolbar.StartEditing()
 gui/wxpython/vdigit/wxdigit.py:1719 IVDigit.OpenMap()
 gui/wxpython/vdigit/wxdisplay.py:1021 DisplayDriver.OpenMap()
 lib/vector/Vlib/open.c:162-555 Vect__open_old)
 }}}

 Although it returns successfully (seemingly) from `Vect__open_old`, it
 crashes at a point (but rarely identical point) soon after (while leaving
 scope). This is why topology has to be rebuilt. While not yet been able to
 pinpoint the cause, it seems to be a background thread causing the crash.
 I'm thinking in lines of either wx binding issues or python garbage
 collection. Both of which may behave just enough different than on other
 platforms to make it a mac problem.

-- 
Ticket URL: 
GRASS GIS 

___
grass-dev mailing list
grass-dev@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/grass-dev

Re: [GRASS-dev] [GRASS GIS] #3384: Ctypes detection doesn't work on OS X

2020-03-04 Thread GRASS GIS
#3384: Ctypes detection doesn't work on OS X
+--
  Reporter:  vince  |  Owner:  grass-dev@…
  Type:  defect | Status:  new
  Priority:  normal |  Milestone:  7.8.3
 Component:  Compiling  |Version:  7.2.1
Resolution: |   Keywords:  Python Ctype
   CPU:  OSX/Intel  |   Platform:  MacOSX
+--

Comment (by nila):

 I can confirm this is still an issue on master (7.9.dev) as well as 7.8.2.
 But as previously mentioned it doesn't seem to cause any compiling or
 other problems.

-- 
Ticket URL: 
GRASS GIS 

___
grass-dev mailing list
grass-dev@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/grass-dev

Re: [GRASS-dev] [GRASS GIS] #4003: GRASS 7.8.1 still won't compile. Still a ctypes problem

2020-03-04 Thread GRASS GIS
#4003: GRASS 7.8.1 still won't compile. Still a ctypes problem
--+-
  Reporter:  cmbarton |  Owner:  grass-dev@…
  Type:  defect   | Status:  new
  Priority:  critical |  Milestone:  7.8.3
 Component:  Default  |Version:  git-releasebranch78
Resolution:   |   Keywords:
   CPU:  Unspecified  |   Platform:  MacOSX
--+-

Comment (by nila):

 I would say this is certainly a duplicate of #3883, to which a fix has
 been committeed to both master and 7.8 branch.

 This may be closed as duplicate.

-- 
Ticket URL: 
GRASS GIS 

___
grass-dev mailing list
grass-dev@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/grass-dev

Re: [GRASS-dev] [GRASS GIS] #3883: GRASS master does not compile with Python 3 on Mac

2020-03-04 Thread GRASS GIS
#3883: GRASS master does not compile with Python 3 on Mac
--+-
  Reporter:  cmbarton |  Owner:  grass-dev@…
  Type:  defect   | Status:  new
  Priority:  major|  Milestone:  7.8.3
 Component:  Default  |Version:  svn-trunk
Resolution:   |   Keywords:
   CPU:  Unspecified  |   Platform:  MacOSX
--+-

Comment (by nila):

 Fix to this has been committed to master with
 [https://github.com/OSGeo/grass/commit/ee755166d819bd3e341fcf303f5a0cde3da30ebb
 ee75516]

 and backported to 7.8 with
 [https://github.com/OSGeo/grass/commit/7a9ce5d5ced8c9409464908171759865239abbe2
 7a9ce5d].

 As I see it, this issue may be closed as fixed.

-- 
Ticket URL: 
GRASS GIS 

___
grass-dev mailing list
grass-dev@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/grass-dev