public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/prrte] rawhide: Add rpmlintrc for remaining false-positive findings
@ 2026-09-18 23:40 Michal Schmidt
0 siblings, 0 replies; only message in thread
From: Michal Schmidt @ 2026-09-18 23:40 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/prrte
Branch : rawhide
Commit : 4dc8cea36c4c83ff8431372cfa67a80382ffeaa5
Author : Michal Schmidt <mschmidt@redhat.com>
Date : 2026-09-11T14:28:30+02:00
Stats : +13/-0 in 1 file(s)
URL : https://src.fedoraproject.org/rpms/prrte/c/4dc8cea36c4c83ff8431372cfa67a80382ffeaa5?branch=rawhide
Log:
Add rpmlintrc for remaining false-positive findings
Suppress rpmlint warnings that do not indicate real packaging bugs:
- spelling-error for the project names "openpmix" and "prte"
- dangling-symlink for pcc -> pmixcc, whose target is provided by
pmix-tools, a Requires of prrte-devel
- binary-or-shlib-calls-gethostbyname, used only by the Slurm
dynamic-allocation RAS module to resolve a hostname
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
---
diff --git a/prrte.rpmlintrc b/prrte.rpmlintrc
new file mode 100644
index 0000000..189ad46
--- /dev/null
+++ b/prrte.rpmlintrc
@@ -0,0 +1,13 @@
+# "openpmix" and "prte" are project/product names, not spelling errors.
+addFilter(r"spelling-error .* (openpmix|prte)")
+
+# pcc is a symlink to pmixcc, which is provided by pmix-tools
+# (a Requires of prrte-devel). rpmlint only looks at this package's
+# own file list, so it cannot see that the target is satisfied.
+addFilter(r"dangling-symlink /usr/lib64/openmpi/bin/pcc /usr/bin/pmixcc")
+
+# gethostbyname() is used only in the Slurm dynamic-allocation RAS
+# module (src/mca/ras/slurm/ras_slurm_module.c), to resolve Slurm's
+# ControlMachine hostname before connecting to its allocation port.
+# Not worth patching to getaddrinfo() downstream.
+addFilter(r"binary-or-shlib-calls-gethostbyname /usr/lib64/libprrte\.so")
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-09-18 23:40 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-18 23:40 [rpms/prrte] rawhide: Add rpmlintrc for remaining false-positive findings Michal Schmidt
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox