Georgy Yakovlev

Results 27 comments of Georgy Yakovlev

still happening on ``` zfs-0.8.4-r1-gentoo zfs-kmod-0.8.4-r0-gentoo ``` non-root snapdirs are fine. but snapshots for root dataset shows up empty.

found 2 workarounds (still on 0.8.4) * I've explicitly added my root dataset to fstab like this `zroot/ROOT/default / zfs defaults,noatime 0 0` systemd (using generators) remounts / and `/.zfs/snapshot/*`...

there is no configuration knob for that currently, it just overrides that. I'll look into that sometime soon.

Not really, that’s different. It’s already working fine if you invoke cargo(eclass included) properly.

it's BDEPEND also note that eclass specifies it's minimal rust version due to reliance on cargo features in particular release. as even if upstream specifies minimum 1.57.0, if eclass uses...

https://github.com/gyakovlev/gentoo/blob/cad363d50fcbe1f7f84d78660d61a196e61d9b93/eclass/cargo.eclass#L33 this is new eclass version that will land soon

so if it somehow could read eclass's RUST_DEPEND and only set minimum version only if it's above RUST_DEPEND

just posting workarounds: you can also use python version https://packages.gentoo.org/packages/app-portage/pycargoebuild or simple trick: ```bash { export ch="$(mktemp -d)" && CARGO_HOME="${ch}" cargo fetch && ls -1 "${ch}/registry/src/"*/ && echo "crates: ${ch}/registry/cache/"...

> What's the solution for working around this? Parsing the deps manually? Cheers I think it mostly works nowadays. in case if it does not - you can use the...