diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 19:43:30 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 19:43:30 +0000 |
commit | 1ea98fe7f3071127fc788e3792cfb2f0ca2994c0 (patch) | |
tree | 9cd95c33f563425cf18bbba3b7a06c8d7c0743bc /debian/manpages-ro-dev.links | |
parent | Adding upstream version 4.22.0. (diff) | |
download | manpages-l10n-1ea98fe7f3071127fc788e3792cfb2f0ca2994c0.tar.xz manpages-l10n-1ea98fe7f3071127fc788e3792cfb2f0ca2994c0.zip |
Adding debian version 4.22.0-1.debian/4.22.0-1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rwxr-xr-x | debian/manpages-ro-dev.links | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/debian/manpages-ro-dev.links b/debian/manpages-ro-dev.links new file mode 100755 index 00000000..71a503bd --- /dev/null +++ b/debian/manpages-ro-dev.links @@ -0,0 +1,37 @@ +#!/bin/sh + +pdir=usr/share/man/ro/ +pb=debian/tmp/ + +while IFS=" " read -r f01 f02 +do + # Determine the directory part, with and without fancy additions (like "ssl") + # dsname=$(dirname $f01) + # dtname=$(dirname $f02) + dsnameshort=$(dirname $f01|awk '{print substr($0,1,4)}') + dtnameshort=$(dirname $f02|awk '{print substr($0,1,4)}') + + # echo "INPUT $f01 $f02 $dsnameshort $dtnameshort" + + # Decide, if the man pages is in the -dev package + if [ $dsnameshort = "man2" ] || [ $dsnameshort = "man3" ]; then + sdir=1 + else + sdir=0 + fi + + # Decide, if the link is in the -dev package + if [ $dtnameshort = "man2" ] || [ $dtnameshort = "man3" ]; then + tdir=1 + else + tdir=0 + fi + + # For now, only consider links *within* one package + if [ $sdir = 1 ] && [ $tdir = 1 ]; then + sfull=${pb}${pdir}${f01} + if [ -e $sfull ]; then + echo "${pdir}${f01} ${pdir}${f02}" + fi + fi +done < upstream/debian-unstable/links.txt |