1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
#!/bin/sh
#
# Copyright © 2018-2019 Dr. Tobias Quathamer <toddy@debian.org>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# Start with clean directories and no leftover links.txt
rm -rf man* links.txt
mkdir man0 man1 man2 man3 man4 man5 man6 man7 man8
# Process packages
while read line; do
mkdir tmp
repo=$(echo "$line" | cut -d" " -f1)
package=$(echo "$line" | cut -d" " -f2)
# Download HTML page and discover the correct link
echo "Downloading and updating package '$package' from '$repo'"
url=$(wget --quiet -O - "https://mirror.netcologne.de/archlinux/$repo/os/x86_64/" |
grep "\"$package-[0-9][^\"]*\.pkg\.tar\.xz[^.]" |
sed -e "s,.*<a href=\"\($package-[^\"]*\).*,\1,")
url="https://mirror.netcologne.de/archlinux/$repo/os/x86_64/$url"
wget --quiet --directory-prefix=tmp/downloads "$url"
# Update the manpages from the package
latest_pkg=$(ls tmp/downloads/$package-*.pkg.tar.xz)
if [ -z $latest_pkg ]; then
echo "Warning: Could not find .pkg.tar.xz for package '$package'"
else
tar xaf $latest_pkg --directory=tmp 2>/dev/null
../move-manpages.sh
fi
# Finally, remove the tarball, so that the regexp
# matching does not match the wrong tarball.
# See pacman and pacman-contrib for an example.
rm -rf tmp
done < packages.txt
if [ -f links.txt ]; then
LC_ALL=C sort links.txt > tmp.links
mv tmp.links links.txt
fi
# Another special case for man.7, which uses \c and
# is therefore not translatable by po4a.
# Reformat the part to display equally in the man browser.
# Line 272 and 273:
# .B \&.UE \c
# .RI [ trailer ]
# Reformat to: \fB\&.UE\fP [ \fItrailer\fP ]
sed -i -e "/^\.B \\\&\.UE \\\c/{N; s/.*/\\\fB\\\\\&.UE\\\fP [ \\\fItrailer\\\fP ]/}" man7/man.7
|