diff options
author | B. Watson <urchlay@slackware.uk> | 2023-09-16 15:33:41 -0400 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2023-09-16 15:33:41 -0400 |
commit | 23fac95b672fe55feb248e8101bc3fb63c3b0970 (patch) | |
tree | 4e5c516b775a0c6a8e8cf63891371c6ce0be3596 | |
parent | aab2c27ba53aae0226d7909154d0cabc4429615f (diff) | |
download | sbo-maintainer-tools-23fac95b672fe55feb248e8101bc3fb63c3b0970.tar.gz |
sbolint: cleanup after manpages check.
-rw-r--r-- | TODO | 2 | ||||
-rw-r--r-- | sbopkglint.d/30-manpages.t.sh | 2 |
2 files changed, 1 insertions, 3 deletions
@@ -1,9 +1,7 @@ -TODO: fix format strings in warning messages *properly*. TODO: locale issues break the 'grep -P' in the info check. two things: (1) use a more reliable way to detect gz files, and (2) possibly force LANG and LC_* to "C". Or else en_US.UTF-8. TODO: check ownership of executables? fail if >1000 uid or gid? -TODO: .manemptydirs.$$ doesn't get deleted TODO: if package contains any static libs, don't suggest noarch. TODO: stop checking shared libs for +x and being stripped if they're not directly in /lib /lib64 /usr/lib /usr/lib64. too many packages diff --git a/sbopkglint.d/30-manpages.t.sh b/sbopkglint.d/30-manpages.t.sh index 6e1e267..4264d86 100644 --- a/sbopkglint.d/30-manpages.t.sh +++ b/sbopkglint.d/30-manpages.t.sh @@ -128,7 +128,7 @@ if [ -d usr/man ]; then cat .manemptydirs.$$ fi - rm -f .manpages.$$ .mandirs.$$ manemptydirs.$$ + rm -f .manpages.$$ .mandirs.$$ .manemptydirs.$$ [ -n "$BADPERMS" ] && warn "bad man page owner/permissions (should be 0644, root:root)" && ls -ld $BADPERMS [ -n "$BADDIRPERMS" ] && warn "bad man directory owner/permissions (should be 0755, root:root)" && ls -ld $BADDIRPERMS |