Matthieu CHARETTE

Results 11 comments of Matthieu CHARETTE

The script doesn't work out of the box. I had to make some changes: [flatpak-gradle-generator.zip](https://github.com/flatpak/flatpak-builder-tools/files/8671909/flatpak-gradle-generator.zip) Also it supports `.exe` deps

Here it is: [files.zip](https://github.com/flatpak/flatpak-builder-tools/files/8675636/files.zip)

Good. Any idea when this will be merged?

I tried on Ghidra. But it doesn't list all the dependencies.

Which ones? `aiohttp`? Just do a `pip install aiohttp`

You might implement an option in the script to use a custom url for specific packages. Or even ignore the url. Or you can currently remove the url manually.

Ok, so I tried to put the file in non-blocking mode using `fcntl` with `O_NONBLOCK` flag on the raw file descriptor. This works. But then, when I use `AsyncFd::new` on...

After all, only dumb `read` and `write` operations would support async. Since all other operations use `ioctl` which are blocking. So I guess the only way to have async is...

Do you think it's a good idea to provide async using threads in this crate. Or it should be up to the user of this crate to implement it?