summary refs log tree commit diff
path: root/bin/man1/xx.1
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-09-21 21:33:33 -0400
committerJune McEnroe <june@causal.agency>2021-09-21 21:33:33 -0400
commitb42094cda0316137d61b94689a50667e5e32d6a3 (patch)
tree5b2e8602203da0e9a12d1b6c3f70d2ec2321e406 /bin/man1/xx.1
parentRewrite pngo, add explicit options (diff)
downloadsrc-b42094cda0316137d61b94689a50667e5e32d6a3.tar.gz
src-b42094cda0316137d61b94689a50667e5e32d6a3.zip
Recalculate various lengths only as needed
This actually speeds things up quite a bit, saving roughly a second
on a big PNG screenshot. Almost all the remaining time is spent in
deflate.
Diffstat (limited to 'bin/man1/xx.1')
0 files changed, 0 insertions, 0 deletions
<cgit@cryptocrack.de> 2013-04-10t0107: Skip ZIP tests if unzip(1) isn't availableLukas Fleischer Note that we cannot use skip_all here since some tests have already been executed when ZIP tests are reached. Use test prerequisites to skip everything using unzip(1) if the binary is not available instead. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2013-04-10tests/: Do not use `sed -i`Lukas Fleischer "-i" isn't part of the POSIX standard and doesn't work on several platforms such as OpenBSD. Use a temporary file instead. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2013-04-10Add branch-sort and repo.branch-sort options.Jason A. Donenfeld When set to "name", branches are sorted by name, which is the current default. When set to "age", branches are sorted by the age of the repository. This feature was requested by Konstantin Ryabitsev for use on kernel.org. Proposed-by: Konstantin Ryabitsev <mricon@kernel.org> 2013-04-10t0109: chain operations with &&John Keeping Without '&&' between operations, we will not detect if strace or cgit exit with an error status, which would cause a false positive test status in this case. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-04-10cgit.c: Do not restore unset environment variablesLukas Fleischer getenv() returns a NULL pointer if the specified variable name cannot be found in the environment. However, some setenv() implementations crash if a NULL pointer is passed as second argument. Only restore variables that are not NULL. See commit d96d2c98ebc4c2d3765f5b35c4142e0e828a421b for a related patch. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2013-04-09t0107: Use `tar -z` for gzip'ed archivesLukas Fleischer