summaryrefslogtreecommitdiffstats
path: root/debian/check-conflicts
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 19:41:37 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 19:41:37 +0000
commit1a3c52dd26d42a04188b7c0e9ff2b728ff050a77 (patch)
treefb360f3dd9f685debc6dc695f3dccf142211f4f0 /debian/check-conflicts
parentAdding debian version 6.7-1. (diff)
downloadmanpages-1a3c52dd26d42a04188b7c0e9ff2b728ff050a77.tar.xz
manpages-1a3c52dd26d42a04188b7c0e9ff2b728ff050a77.zip
Adding debian version 6.7-2.debian/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