Alexey Dokuchaev

Results 29 issues of Alexey Dokuchaev

When maintaining GtkRadiant packages in various GNU/Linux and BSD distributions, it is often desirable to be able to coalesce each released version to a particular commit. This is currently missing...

I'm looking for QuickSwitch configuration option which would raise windows while cycling through them with Alt-Tab, and don't seem to find one. Currently, to-be-focused (candidate) window is only indicated by...

I realise it's somewhat obscure edge-case scenario, but good programs should not crash. I've accidentally saved config file as empty and here we go: ``` Program received signal SIGSEGV, Segmentation...

Builds fine against Glib version 2.66.8, but fails against 2.68.3 with the following errors: ``` In file included from fontcairo.cpp:20: In file included from /usr/local/include/pango-1.0/pango/pangocairo.h:25: In file included from /usr/local/include/pango-1.0/pango/pango.h:25:...

In recent FreeBSD versions `struct dirent` was changed as part of the 64-bit inode project. Consider the following patch which allows `scandir.py` to support both new (12+) and old (

A friend of mine complained that sometimes `pkg search` when run under superuser takes very long time to start (~30 seconds). Subsequent runs are normal (fast). I suspect that this...

It currently dances around `os.path.expanduser("~")` which is needlessly cumbersome and error-prone. Consider using just `os.getlogin()` instead: ```diff --- persepolis/scripts/persepolis.py.orig +++ persepolis/scripts/persepolis.py @@ -42,9 +42,6 @@ if os_type == 'Linux' or...

It had been [brought](https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=255062) to my attention that currently (as of version 2.5.27) inconsistent compilation flags are reported when obtained via standard `pkg-config(8)` or shipped `gphoto2-config` script: ``` $ pkg-config...

build

MangoHud works fine on FreeBSD, but currently requires some patching in order to do so. I'd like to upstream some of them, starting with more generic ones. Consider the following...

While the code already uses `#if[n]def linux` (although isn't `__linux__` more correct?), some Linux-specific header files are included unconditionally, and some are missing. - Missing `#include ` in `reader.c` which...