diff --git a/rpmlint.config b/rpmlint.config index 1b1105c..2d45301 100644 --- a/rpmlint.config +++ b/rpmlint.config @@ -440,6 +440,10 @@ addFilter("-debuginfo.* description-line-too-long") # ignore "common" jargon words # https://bugzilla.redhat.com/show_bug.cgi?id=1424684#c9 addFilter(r"spelling-error.* \b(runtime|Runtime|metadata|cryptographic|multi|linux|filesystem|filesystems|backend|backends|userspace|addon|wayland|Wayland|util|utils|lossless|virtualization|toolkits|libvirtd|crypto|glyphs|GStreamer|http|extensibility|codec|codecs|truetype|scalable|pluggable|pixbuf|Kerberos|customizable|bitstream|tcp|libXss|libs|libc|encodings|GLib|udev|posix|libpng|glapi|gbm|freedesktop|spi|realtime|preprocessor|libaudit|hypervisor|embeddable|distributable|devel|config|cairo|bootloader|adaptors|pragma|passphrase|malloc|libvirt|libmagic|io|datetime|boolean|argparse|py|pinentry|namespace|middleware|lowlevel|libxcb|libudev|libsoup|libgcrypt|libcom|iSCSI|initramfs|GObject|executables|dialogs|checkpolicy|bitmapped|assistive)\b") +# Fedora no longer uses explicit ldconfig %post/%postun as of Fedora 28 +addFilter("library-without-ldconfig-postin") +addFilter("library-without-ldconfig-postun") + bad_crypto_warning = \ '''This application package calls a function to explicitly set crypto ciphers diff --git a/rpmlint.spec b/rpmlint.spec index 85eb374..b0487c3 100644 --- a/rpmlint.spec +++ b/rpmlint.spec @@ -16,7 +16,7 @@ Name: rpmlint Version: 1.10 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Tool for checking common errors in RPM packages Group: Development/Tools License: GPLv2 @@ -135,6 +135,9 @@ make check PYTHON=%{python} PYTEST=%{pytest} FLAKE8=%{flake8} %{_mandir}/man1/rpmlint.1* %changelog +* Tue Apr 17 2018 Tom Callaway - 1.10-11 +- disable library-without-ldconfig-postin/postun checks (F28+) + * Tue Apr 17 2018 Tom Callaway - 1.10-10 - fix flake errors (merge upstream changes)