IncludeOS icon indicating copy to clipboard operation
IncludeOS copied to clipboard

Remote includeos cant be found.

Open fl0wm0ti0n opened this issue 2 years ago • 7 comments

Hello,

the remote includeos cant be found. i did everything like in the "Getting started" described...

maybe there is some fault in the config or the profiles??

OS: WSL2 (Debian Stretch)

flow@lightmachine:~/temp/hello_world$ sudo conan install . -pr ~/.conan/profiles/clang-6.0-linux-x86_64
Configuration:
[settings]
arch=x86_64
arch_build=x86_64
build_type=Release
compiler=clang
compiler.libcxx=libc++
compiler.version=6.0
cppstd=17
os=Linux
os_build=Linux
[options]
[build_requires]
*: binutils/2.31@includeos/toolchain
[env]
CC=clang-6.0
CFLAGS=-msse3 -mfpmath=sse -O2 -g
CXX=clang++-6.0
CXXFLAGS=-msse3 -mfpmath=sse -O2 -g
ERROR: Version range '>=0.14.0,include_prerelease=True' from requirement 'includeos/[>=0.14.0,include_prerelease=True]@includeos/latest' required by 'conanfile.txt' could not be resolved in local cache
flow@lightmachine:~/temp/hello_world$
flow@lightmachine:~/temp/hello_world$ sudo conan search -r includeos
ERROR: No remote 'includeos' defined in remotes

fl0wm0ti0n avatar May 20 '22 10:05 fl0wm0ti0n

Ok i have now new infos. and i dont like that behavior of conan...

if i run flow@lightmachine:~/temp/hello_world$ sudo conan config install https://github.com/includeos/conan_config.git

i cant later find the remotes via tghese commands: flow@lightmachine:~/temp/hello_world$ sudo conan search -r includeos

so that does mean you have to be aware if you run it with sudo or without... cause it depends on the user where it finds the files... they are in home and not somewhere global..

fl0wm0ti0n avatar May 20 '22 17:05 fl0wm0ti0n

This adds a remote that has either been disabled or removed. The dependencies (built by includeos team) are not available anymore.

AlexisTM avatar May 24 '22 06:05 AlexisTM

Is this project still maintained then, or has it gone off the radar? I noticed that the links to prebuilt binaries was also broken.

jarlostensen avatar Sep 08 '22 15:09 jarlostensen

It has gone off sadly.

AlexisTM avatar Sep 08 '22 21:09 AlexisTM

That's a shame. I'm actually trying to get it to build but I'm no Conan expert and that too seems borken. Of course, reliance on a lot of external packages is always a risk and in the case of IncludeOS it appears to be a death sentence.

jarlostensen avatar Sep 09 '22 16:09 jarlostensen

There has been work towards going back to the CMake build system, and that will probably happen on a fork anyway. InludeOS is dead, but the code is open and someone can continue the work if they want to. I think that if I were to restart work on IncludeOS, I would probably remove musl and put back newlib. Still have C++ exceptions, but no threads and no bloated binaries.

fwsGonzo avatar Sep 09 '22 16:09 fwsGonzo

The reason the conan packages can't be found is that they appear to have been stored on bintray which JFrog shut down in 2021. Unfortunately, I'm not aware of any alternatives other than the official Conan Center.

If you are still keen on building IncludeOS, I suspect you should still be able to use the conan dependencies by going through each of the dependencies here and running something like "conan export . GSL/2.0.0@includeos/stable" in the directory containing each conanfile.py (Make sure you change the package/version name as appropriate).

Then, add --build=missing to the end of your conan install .... command.

Note that I haven't tried this, but I think the theory is sound ;-)

timpatt avatar Sep 17 '22 12:09 timpatt