Mirko Vogt

Results 56 comments of Mirko Vogt

When installing python3-host on my build host system wide it works. But given that python3 is pulled in as host build dependency and yaml is listed in the `host-pip-requirements.txt`-file, I...

And then pycparser: ``` [144/1098] /home/mirko/openwrt.git/staging_dir/host/bin/python3 ../src/etnaviv/hwdb/hwdb.h.py --output src/etnaviv/hwdb/hwdb.h ../src/etnaviv/hwdb/amlogic/gc_feature_database.h ../src/etnaviv/hwdb/nxp/gc_feature_database.h ../src/etnaviv/hwdb/st/gc_feature_database.h FAILED: src/etnaviv/hwdb/hwdb.h /home/mirko/openwrt.git/staging_dir/host/bin/python3 ../src/etnaviv/hwdb/hwdb.h.py --output src/etnaviv/hwdb/hwdb.h ../src/etnaviv/hwdb/amlogic/gc_feature_database.h ../src/etnaviv/hwdb/nxp/gc_feature_database.h ../src/etnaviv/hwdb/st/gc_feature_database.h Traceback (most recent call last): File "/home/mirko/openwrt.git/build_dir/target-arm_cortex-a9+neon_musl_eabi/mesa-etnaviv/mesa-24.3.1/openwrt-build/../src/etnaviv/hwdb/hwdb.h.py", line 12,...

> Strangely this doesn't happen on the buildbots nor on my local system, where it picks python3 from `hostpkg` (ie. OpenWrt-built package) rather than the host version. Did you `scripts/feeds...

I'm on openwrt-24.10/HEAD and it seems it doesn't - worth a backport I'd say

On first glance the only dependencies to the packages-repo, which appear unmet for the 24.10-branch, are to libdrm. If that's really all to it, I'd really fancy 24.10 being compatible...

Mentioned packages (gstreamer, libinput, etc.) are all in the 24.10 branch of the packages feed. If they're incompatible for whatever reason to the current video state and there's a non-invasive...

Thanks for your reply! > We have multiple options of how a reconnection interface could look like We as in "user of aiomqtt" or "developer how to design the interface"?...

Thank you very much! I wonder, though, how the example would look like, if I had the iteration over messages in its own task and the publish calls in the...

> I wonder, though, how the example would look like, if I had the iteration over messages in its own task and the publish calls in the main function -...

I tried to adapt your example the way I'd like to use it (iterating over messages in a task): ``` import asyncio import aiomqtt import contextlib #MQTT_HOST = "test.mosquitto.org" MQTT_HOST...