The official pacman repository branch, master, updated. v4.0.0rc1-189-gf883efe
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The official pacman repository".
The branch, master has been updated
via f883efe2cb105a397edc0b892f5fa06c98f2208f (commit)
via e01dbcc06848c135af5beba069ad99bc5dd8deaf (commit)
via 68856755c4f18affb513d93ec94fa9307c31473a (commit)
via a2356d5ae3cdc6ac28ed614e0e5e7e75174728e9 (commit)
via 4a02350ded318bdc1da5421551784ab2a10dd96b (commit)
via d1e04c1b677d733262a0436ed9b25b2e7eada15e (commit)
via 0f69e2ec0b3958167a2ea7a5fcef40cb966d05d1 (commit)
from 3905ada993bacba31a1a9005fe4a0023890296d9 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
makepkg: fix recreation of hardlinks to .gz manpages
4ed12ae tightened up the logic to use only find, but ignored the fact
that since the manpage hard link names were no longer captured. They
were created as separate compressed manpages, rather than as hardlinks.
This also introduces a minor efficiency of deleting all hardlinks at
once and using proper iteration over an array rather than a string.
Note to anyone else touching this code: e2fsprogs and libpcap are useful
for testing this. If that changes in the future, you can use the below
bash to locate others:
IFS=$'
' read -rd ' -a a < <(find /usr/share/man -type f ! -links 1)
pacman -Qqo "${a[@]}" | sort -u
I broke it!
Signed-off-by: Dave Reisner <dreisner@archlinux.org>
makepkg: add missing newline on passing gpg sourcecheck
When a sourceball passes this check without any warnings, a newline is
omitted. Similar to the if clause of this else block, print a single new
line at the end of the clause instead of accounting for each output.
Signed-off-by: Dave Reisner <dreisner@archlinux.org>