Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-05-04 | random tidy up | Luke Shumaker | |
2017-05-04 | Have everything use a main() function, where it isn't too tricky to convert | Luke Shumaker | |
"Ignore space change" is essential to making sense of this patch. | |||
2017-05-04 | shellcheck directives | Luke Shumaker | |
2017-05-04 | bugfix [2/2]: toru-path | Luke Shumaker | |
2017-05-04 | bugfix [1/2]: toru-path: Add a test for basic operation of toru-path | Luke Shumaker | |
2017-05-04 | bugfix: gitget: message | Luke Shumaker | |
There's no test for this one because it's a prose string. | |||
2017-05-04 | bugfix: gitget: correctly detect `git config` error | Luke Shumaker | |
There's no test for this because the ultimate behavior is the same; the bug is in deciding *which* error message to print. | |||
2017-05-04 | libredbdiff: reword a paragraph of the usage() text | Luke Shumaker | |
2017-05-04 | bugfix [2/2]: libremakepkg: hooks-distcc: Fix for the basic smoke test. | Luke Shumaker | |
2017-05-04 | bugfix [1/2]: libremakepkg: Check for detecting if distcc hook files exist | Luke Shumaker | |
2017-05-04 | distcc-tool: reformat a comment | Luke Shumaker | |
2017-05-04 | distcc-tool: use `jobs` instead of trying to track PIDs manually. | Luke Shumaker | |
The old way fails in weird ways if a process dies early. | |||
2017-05-04 | distcc-tool: use SO_REUSEADDR for listening on TCP sockets | Luke Shumaker | |
2017-05-04 | chroot-tools: tidy shebangs of library files | Luke Shumaker | |
2017-05-03 | librefetch: tidy an 'eval' command | Luke Shumaker | |
2017-05-03 | libredbdiff: messages | Luke Shumaker | |
2017-05-03 | libredbdiff: usage | Luke Shumaker | |
2017-05-03 | libredbdiff: loop | Luke Shumaker | |
2017-05-03 | libredbdiff: Be stricter | Luke Shumaker | |
2017-05-03 | libredbdiff: Add a helper for vercmp | Luke Shumaker | |
I have a hard time reasoning about vercmp use in scripts, so add a {{ A -lt B }} helper that works like [ A -lt B ], but for pacman versions. | |||
2017-05-03 | libredbdiff: Use expac instead of pacman where possible | Luke Shumaker | |
2017-05-03 | libredbdiff: always freshen generated config files | Luke Shumaker | |
2017-05-03 | libredbdiff: re-indent | Luke Shumaker | |
2017-05-03 | libredbdiff: inline initialize. | Luke Shumaker | |
The indentation here is a little off. Just go with it. | |||
2017-05-03 | libredbdiff: get rid of stupid warnings, just take care of it | Luke Shumaker | |
2017-05-03 | libredbdiff: tidy | Luke Shumaker | |
2017-05-03 | libredbdiff: loop | Luke Shumaker | |
2017-05-03 | libredbdiff: simplify config file generation | Luke Shumaker | |
2017-05-03 | libredbdiff: inline the filenotfound function | Luke Shumaker | |
2017-05-03 | libredbdiff: reformat print_cmp | Luke Shumaker | |
2017-05-03 | libredbdiff: clean up initialization-detection code | Luke Shumaker | |
2017-05-03 | libredbdiff: simplify downloadfile | Luke Shumaker | |
2017-05-03 | libredbdiff: Improve local variable usage | Luke Shumaker | |
2017-05-03 | libredbdiff: tidy the header section | Luke Shumaker | |
2017-05-03 | libredbdiff: improve tmpfile management | Luke Shumaker | |
2017-05-03 | libredbdiff: downloadfile has a message formatter; notify librexgettext | Luke Shumaker | |
2017-05-03 | libredbdiff: Improve option parsing. Add missing info to usage(). | Luke Shumaker | |
There are a couple of pointless `if true`s in there to avoid whitespace change. | |||
2017-05-03 | test: libredbdiff: Add another check for the option parser. | Luke Shumaker | |
2017-05-03 | libredbdiff: Use _prbl for Parabola vars and _arch for Arch vars. | Luke Shumaker | |
libredbdiff used VARNAME for Parabola variables, and VARNAME_arch for Arch variables. I found it confusing. Instead, consistently use VARNAME_prbl for Parabola variables and VARNAME_arch for Arch variables; this allows the reader to more easily see the parallels between the handling of each. | |||
2017-05-02 | libredbdiff: Normalize variable quoting. | Luke Shumaker | |
2017-05-02 | libredbdiff: make repos be a true array, make it configurable | Luke Shumaker | |
2017-05-02 | bugfix [2/2]: libredbdiff: Correctly handle multiple provides | Luke Shumaker | |
2017-05-02 | bugfix [1/2]: libredbdiff: Add a test for handling multiple provides. | Luke Shumaker | |
Also make the minimal changes to the program to make this testing possible. | |||
2017-05-01 | bugfix [2/2]: librefetch: Correctly fail when given bogus flags | Luke Shumaker | |
2017-05-01 | bugfix [1/2]: librefetch: Add a check for failing with bogus flags | Luke Shumaker | |
2017-05-01 | bugfix [2/2]: librefetch: Fix SRCBUILD-to-SRCBUILD operation | Luke Shumaker | |
2017-05-01 | bugfix [1/2]: librefetch: Add check for SRCBUILD-to-SRCBUILD operation | Luke Shumaker | |
2017-05-01 | Clean up argument parsing for libremessages formatters. | Luke Shumaker | |
2017-04-20 | Use "$?" more sparingly. | Luke Shumaker | |
2017-04-20 | Don't use subshells in local/export/declare commands. | Luke Shumaker | |
Only make this change in places where it shouldn't make a difference, and something weird has to be going on for the subshell to fail. This is on par with checking the return value of malloc. We don't need tests for each of these failure cases. |