Timo Röhling
Timo Röhling
As far as I can tell, once in the :make stage of a package, and the other times in the :install stage. At least, those are the last outputs in...
Unfortunately, no. The closest thing I found is a warning in the documentation of [subprocess.Popen.wait](https://docs.python.org/2/library/subprocess.html#subprocess.Popen.wait) that describes similar symptoms. AFAICT it does not apply here, but maybe I overlooked something.
I assume you have a particular workflow in mind, but I grep'd for the `Uscan.scan()` invocations and only found it [here](https://github.com/agx/git-buildpackage/blob/9a86a5824997d6fd0ff475e2d9627412525c29e3/gbp/scripts/import_orig.py#L176), where the `destdir` will always be the default (`".."`)....
I find it odd that `qemu_ram_alloc_from_ptr` always rounds `size` and `max_size` up to the host page size, even for pre-allocated RAM. Will this not potentially overflow preallocated memory if the...
I've added some logic to skip this check for sub projects (which are skipped during linting anyway). If that is not sufficient, a very simple solution is to add a...
The problem lies in the NAT traversal, which is almost always required for machines connecting over the Internet. There is a long-standing wishlist bug (#24) for that, but I haven't...
I haven't checked in the WebRTC code base, but this reminds me of a similar issue we had with encoded video bitstreams. If a video client joins an existing bitstream...
I fixed the WebRTC client code to use secure websockets if the page is served via HTTPS.
There is no static URL you could access, because WebRTC is not just a one-way streaming protocol but a full-blown peer-to-peer communication suite with several different protocols as parts. Significant...
Can you check if the problem persists with the latest version?