Jürgen Buchmüller
Jürgen Buchmüller
Just my .02€: The time to download a package is certainly several orders of magnitude higher than even the slowest implementation of SHA256. I don't see a practical value in...
You basically have this using the `base` installer which does not have `X11` and does not even try to start a `DM`. I agree, however, that a boot option to...
To avoid races between multiple builders trying to lock multiple `*-repodata` or `*-stagedata` files another global lock file like `all-repodata.lock` could solve this. It would be required only for the...
Ordering and trying to lock seems more complicated to me, though. Of course `xbps-rindex` could always look for a `all-repodata.lock` and, even when not trying to acquire it, still wait...
I have another use case. I accidentially just added `*.mips-musl.xbps` packages to my `x86_64-repodata`, because I forgot to prepend `XBPS_ARCH=mips-musl` to the command. DUH! Could we make this tool remove...
My bad. I didn't see the error message and for `*.noarch.xbps` it succeeded, which made me think it succeeded for all packages. Inspecting index.plist there is no `mips-musl` so everything...
Well, all this is entirely your decisions to take. I know that in many projects the soversion numbers are unrelated to the project version. I guess keeping a major.minor soversion...
Dan, you can put L_NOCOPY and L_INSERT in the same enum, because you can simply define their values to be equal! ``` enum L_COPY_FLAGS { L_INSERT, L_NOCOPY = L_INSERT, L_COPY,...
Running doxygen is just `doxygen` in the directory where the `Doxyfile` lives. Everything is configured inside this file and it is the default name for a configuration file. Escaping the...
I just had an idea and would like to chime in. We could create a `allheaders.hpp` file where the `allheaders.h` defined `l_int32` parameters would be replaced with enumeration name parameters....