[Fix] running a vendored build+tests on gentoo fails with 'RUSTUP=0 VENDORED=1...
Using cargo vendor
helps a lot with building and on the way to a full gentoo-ebuild.
Running tests was not possible, again due to the RUSTUP
line touched before.
Current workflow to build the project on gentoo:
$ make clean
$ make vendor
$ RUSTUP=0 VENDORED=1 make
$ RUSTUP=0 VENDORED=1 make tests
I believe this can be integrated into a package, given the vendor.tar.gz
is downloadable.