summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-05-03librefetch: tidy an 'eval' commandLuke Shumaker
2017-05-03libredbdiff: messagesLuke Shumaker
2017-05-03libredbdiff: usageLuke Shumaker
2017-05-03libredbdiff: loopLuke Shumaker
2017-05-03libredbdiff: Be stricterLuke Shumaker
2017-05-03libredbdiff: Add a helper for vercmpLuke 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-03libredbdiff: Use expac instead of pacman where possibleLuke Shumaker
2017-05-03libredbdiff: always freshen generated config filesLuke Shumaker
2017-05-03libredbdiff: re-indentLuke Shumaker
2017-05-03libredbdiff: inline initialize.Luke Shumaker
The indentation here is a little off. Just go with it.
2017-05-03libredbdiff: get rid of stupid warnings, just take care of itLuke Shumaker
2017-05-03libredbdiff: tidyLuke Shumaker
2017-05-03libredbdiff: loopLuke Shumaker
2017-05-03libredbdiff: simplify config file generationLuke Shumaker
2017-05-03libredbdiff: inline the filenotfound functionLuke Shumaker
2017-05-03libredbdiff: reformat print_cmpLuke Shumaker
2017-05-03libredbdiff: clean up initialization-detection codeLuke Shumaker
2017-05-03libredbdiff: simplify downloadfileLuke Shumaker
2017-05-03libredbdiff: Improve local variable usageLuke Shumaker
2017-05-03libredbdiff: tidy the header sectionLuke Shumaker
2017-05-03libredbdiff: improve tmpfile managementLuke Shumaker
2017-05-03libredbdiff: downloadfile has a message formatter; notify librexgettextLuke Shumaker
2017-05-03libredbdiff: 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-03test: libredbdiff: Add another check for the option parser.Luke Shumaker
2017-05-03libredbdiff: 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-02libredbdiff: Normalize variable quoting.Luke Shumaker
2017-05-02libredbdiff: make repos be a true array, make it configurableLuke Shumaker
2017-05-02bugfix [2/2]: libredbdiff: Correctly handle multiple providesLuke Shumaker
2017-05-02bugfix [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-01bugfix [2/2]: librefetch: Correctly fail when given bogus flagsLuke Shumaker
2017-05-01bugfix [1/2]: librefetch: Add a check for failing with bogus flagsLuke Shumaker
2017-05-01bugfix [2/2]: librefetch: Fix SRCBUILD-to-SRCBUILD operationLuke Shumaker
2017-05-01bugfix [1/2]: librefetch: Add check for SRCBUILD-to-SRCBUILD operationLuke Shumaker
2017-05-01Clean up argument parsing for libremessages formatters.Luke Shumaker
2017-04-20Use "$?" more sparingly.Luke Shumaker
2017-04-20Don'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.
2017-04-20Variables inside of $((...)) don't need a $ in front of them.Luke Shumaker
These were found with the help of shellcheck.
2017-04-20Quote unquoted strings that should probably be quoted.Luke Shumaker
These were found with the help of shellcheck. Nothing more complicated than wrapping a variable in double quotes has been done.
2017-04-20Consistently use ". $(librelib slug)" to load libraries.Luke Shumaker
2017-04-19gitget: correctly handle the -f[orce] flag on bare repositoriesLuke Shumaker
2017-04-11test/librechroot: Avoid waiting for pacman confirmation.Luke Shumaker
2017-04-11test/test-common.sh: Ensure that an old gpg-agent isn't running.Luke Shumaker
It is possible that the gpg has been updated since the user's gpg-agent was started; this will cause mysterious errors, as they will detect the version mismatch. If the user isn't running a gpg-agent, then one will be started. However, it will persist longer than useful, and it will be left looking at a .gnupg directory that no longer exists. It's just not worth the trouble to let an existing agent keep running.
2017-04-11test/test-common.sh: Put the test name in the tmpdir path.Luke Shumaker
2017-04-11test/lib-messages: it_works_with_no_color_and_set_euE doesn't need a subshellLuke Shumaker
2017-04-11test/test-common.sh: Improve btrfs-aware rm-rf cleanupLuke Shumaker
2017-04-11test/: Tidy before()/after() definitions.Luke Shumaker
2017-04-11libremakepkg: Tidy.Luke Shumaker
2017-04-11librechroot: Update for new sync_chroot usage.Luke Shumaker
I changed how it works in devtools-par.
2017-04-11librechroot: Load makechrootpkg.sh into the main process.Luke Shumaker
makechrootpkg.sh has now been patched to make it ok with `set -euE`.
2017-04-11librechroot: Tidy up.Luke Shumaker