Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
https://lists.parabola.nu/pipermail/dev/2017-May/005515.html
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
use
while read -r var; do
...
done < <(...)
rather than
for var in $(...); do
...
done
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
"Ignore space change" is essential to making sense of this patch.
|
|
|
|
|
|
There's no test for this one because it's a prose string.
|
|
There's no test for this because the ultimate behavior is the same;
the bug is in deciding *which* error message to print.
|
|
|
|
|
|
|
|
The old way fails in weird ways if a process dies early.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|