Gluegen download issue

classic Classic list List threaded Threaded
5 messages Options
Reply | Threaded
Open this post in threaded view
|

Gluegen download issue

peterk
FYI I am upgrading a 5 year old gluegen based module and when downloading the latest one from:

https://jogamp.org/cgit/gluegen.git

if fails on a submodule:

Cloning into 'jcpp'...
fatal: repository 'http://jogamp.org/cgit/jcpp/' not found

I for now have found what I believe to be the main source repository for jcpp and am going to try with it.

https://github.com/shevek/jcpp.git

PK

Reply | Threaded
Open this post in threaded view
|

Re: Gluegen download issue

Sven Gothel
Administrator
RTFM .. https://jogamp.org/gluegen/doc/HowToBuild.html
Hint: The git clone portion ..
Reply | Threaded
Open this post in threaded view
|

Re: Gluegen download issue

gouessej
Administrator
In reply to this post by peterk
I think that you're on the wrong way:
https://jogamp.org/cgit/gluegen.git/tree/.gitmodules

Do you use --recurse-submodules?
Julien Gouesse | Personal blog | Website
Reply | Threaded
Open this post in threaded view
|

Re: Gluegen download issue

Sven Gothel
Administrator
Our FM states to use the git protocol not https, since for the latter cgit doesn't alias module.git -> module
when doing the recurse submodules.

Changed our FM a while ago in this regard.
Reply | Threaded
Open this post in threaded view
|

Re: Gluegen download issue

peterk
In reply to this post by Sven Gothel
This other URL succeeded.

git clone --recurse-submodules git://jogamp.org/srv/scm/gluegen.git gluegen

I don't remember where I saw this one but it came up simply navigating your site.  I just tried it as listed in that document.
You might want to search and find it as it is out of sync somehow.

git clone --recurse-submodules https://jogamp.org/cgit/gluegen.git gluegen

Thanks for the correction.