summaryrefslogtreecommitdiffstats
path: root/debian/check-conflicts
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 19:41:38 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 19:41:38 +0000
commitc76eb82f7dd6de909bae0e9052489d77fc4c4361 (patch)
tree3449ec3c3274edc0fd66fa2955158d567aa1fb98 /debian/check-conflicts
parentReleasing progress-linux version 6.7-1~progress7.99u1. (diff)
downloadmanpages-c76eb82f7dd6de909bae0e9052489d77fc4c4361.tar.xz
manpages-c76eb82f7dd6de909bae0e9052489d77fc4c4361.zip
Merging debian version 6.7-2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/check-conflicts')
-rwxr-xr-xdebian/check-conflicts10
1 files changed, 4 insertions, 6 deletions
diff --git a/debian/check-conflicts b/debian/check-conflicts
index 2b16b51..cb8a54b 100755
--- a/debian/check-conflicts
+++ b/debian/check-conflicts
@@ -1,14 +1,12 @@
#!/bin/sh
-echo "Getting the contents file from sid for amd64 ..."
+echo "Getting the contents files from sid for amd64 and all ..."
wget --quiet https://deb.debian.org/debian/dists/sid/main/Contents-amd64.gz
-
-echo "Decompressing the contents file ..."
-gzip -d Contents-amd64.gz
+wget --quiet https://deb.debian.org/debian/dists/sid/main/Contents-all.gz
echo "Filtering out only manpages ..."
-grep "^usr/share/man/man*" Contents-amd64 > only-manpages.txt
-rm -f Contents-amd64
+gzip -dc Contents-amd64.gz Contents-all.gz | grep "^usr/share/man/man*" > only-manpages.txt
+rm -f Contents-amd64.gz Contents-all.gz
echo "Searching for conflicting manpages ..."
for manpage in man*/* ; do