summaryrefslogtreecommitdiff
path: root/src/abslibre-tools
AgeCommit message (Collapse)Author
2018-08-03Use Bash 4.4 @Q instead of %qLuke Shumaker
2018-07-31Begone with XBSLuke Shumaker
2018-05-30librefetch: Update for makepkg 5.1Luke Shumaker
2018-01-02Change my email address lukeshu@sbcglobal.net -> lukeshu@parabola.nuLuke Shumaker
2017-07-09librerelease: Fix rmdir failingv20170709.1Luke Shumaker
This changed because I added `set -e`. There's no test for this (yet) because it would take too long for me to mock the server-size. I'll do it eventually. Also, this fixes HOOKPOSTRELEASE running in $WORKDIR/staging, which is the wrong place for it to run.
2017-06-21libredbdiff: Fix configurationLuke Shumaker
1. the config at the top referenced libredbdiff.conf:statedir; which hadn't been loaded yet 2. the 'compare' arg parser referenced libredbdiff.conf:repos; which hadn't been loaded yet
2017-06-20librerelease: Fix REPODEST validation criteriaLuke Shumaker
2017-05-25move more things to use the $EXIT_* variablesLuke Shumaker
2017-05-25librerelease: mimic makepkg GPG signaturesLuke Shumaker
https://lists.parabola.nu/pipermail/dev/2017-May/005515.html
2017-05-25start moving things to use the libremessages exit codesLuke Shumaker
2017-05-24Merge conf.sh:load_files and conf.sh:check_vars into load_confLuke Shumaker
2017-05-24Include the 1863 port number in config variablesLuke Shumaker
2017-05-24librerelease: No period after 1-line program descriptionLuke Shumaker
2017-05-24librerelease: tidyLuke Shumaker
2017-05-24librerelease: Be more careful with config parsing (fixes test)Luke Shumaker
2017-05-05librestage: fix a typo in an error messageLuke Shumaker
2017-05-05librestage: get the list of arches from the PKGBUILD, not a global conf.Luke Shumaker
Also, pacman-git produces ${pkgbase}-debug packages instead of the ${pkgname}-debug packages that pacman <=5.0.1 produces. This commit adds support for staging both, so we are ready when the new pacman comes out.
2017-05-05librestage: ditch xbs in favor of uploading sourceballsLuke Shumaker
2017-05-04libreaddiff: tidyLuke Shumaker
2017-05-04random tidy upLuke Shumaker
2017-05-04Have everything use a main() function, where it isn't too tricky to convertLuke Shumaker
"Ignore space change" is essential to making sense of this patch.
2017-05-04libredbdiff: reword a paragraph of the usage() textLuke 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-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-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.