forked from pool/rpmlint
Dirk Mueller
b0b29cefb3
* 0001-Python-3-compatibility-tweaks.patch - Change openstack- related users to non-prefixed variants, as they get renamed with the switch to Icehouse OBS-URL: https://build.opensuse.org/package/show/devel:openSUSE:Factory:rpmlint/rpmlint?expand=0&rev=244
16 lines
549 B
Diff
16 lines
549 B
Diff
Index: FilesCheck.py
|
|
===================================================================
|
|
--- FilesCheck.py.orig
|
|
+++ FilesCheck.py
|
|
@@ -807,6 +807,10 @@ class FilesCheck(AbstractCheck.AbstractC
|
|
# Check if the package is a development package
|
|
devel_pkg = devel_regex.search(pkg.name)
|
|
|
|
+ for p in pkg.provides():
|
|
+ if not devel_pkg and devel_regex.search(p[0]):
|
|
+ devel_pkg = True
|
|
+
|
|
config_files = pkg.configFiles()
|
|
ghost_files = pkg.ghostFiles()
|
|
doc_files = pkg.docFiles()
|