Evangelos Foutras

Results 10 comments of Evangelos Foutras

This would allow for `GeoIPv6.dat` to be used with [ngx_http_geoip](http://nginx.org/en/docs/http/ngx_http_geoip_module.html): > When using the databases with IPv6 support (1.3.12, 1.2.7), IPv4 addresses are looked up as IPv4-mapped IPv6 addresses. Based...

Bazel 3.6.0 appears to be the most recent version that has worked for us. Bazel 3.7.0 (and 3.7.1rc3) fail with the log posted by @kgizdov.

The discrepancy between local and remote could be due to the higher thread count on the build box (64 threads). The default open file limit is 1024 and running the...

> It is surprising how a single pytest run would run into an open file limit of 1024. Indeed, which makes it more likely that open files from previous tests...

Assuming fixed by 36964f06c0a86c9695ab3d26a91b04c259cae3f4.

At the end of the new code added in c104127e6a9364b8d6a1d79012e5249a129c3857, `res` seems to contain: ``` ComicInfo.xml(NUL)(NUL)(NUL): gconv_end(NUL)/usr/lib/gconv/IBM437.so ``` So the `IBM437.so` filename originates from garbage at the end of the...

> OR does arch linux have a compile macro(like **APPLE**),so we can skipe the code. I wouldn't consider this to be an Arch Linux issue. More likely this is related...

It doesn't really matter why Debian doesn't repro this exact bug. Increasing the length/size of `s_utf8` to something like 1024 bytes results in incorrect filename on Debian 10: ``` root@debian:~#...

> Two of the systems in use - runner2.archlinux.org and repro1.pkgbuild.com - are located in an Equinix data center, AMS1, that is scheduled to be shut down. These have now...

One small follow-up fix is needed: https://github.com/SmileyChris/django-countries/pull/460 Without this check even a trivial use of `CountryFilter` will raise an exception: ``` File "/usr/local/lib/python3.12/site-packages/django_countries/filters.py", line 27, in choices selected = force_str(lookup)...