Mageia Bugzilla – Attachment 13555 Details for
Bug 30427
We still have rpmlint 1.11 while upstream is at 2.5.0 now
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
New Account
|
Forgot Password
[patch]
Regex patch
0001-fix-broken-regex-for-no-manual-page-for-binary-check.patch (text/plain), 2.40 KB, created by
Kristoffer Grundström
on 2022-12-09 09:57:51 CET
(
hide
)
Description:
Regex patch
Filename:
MIME Type:
Creator:
Kristoffer Grundström
Created:
2022-12-09 09:57:51 CET
Size:
2.40 KB
patch
obsolete
>From 393cde4e70a6efdf1353ca1d4a8ba6500c0dc967 Mon Sep 17 00:00:00 2001 >From: Martin Liska <mliska@suse.cz> >Date: Sat, 8 Oct 2022 10:12:54 +0200 >Subject: [PATCH] fix broken regex for no-manual-page-for-binary check > >It was a regression since 718e1eb9e6e84edf34026f2b62653f3d8f75d993. > >Fixes: #918. >--- > rpmlint/checks/FilesCheck.py | 6 +++--- > test/test_files.py | 1 + > 2 files changed, 4 insertions(+), 3 deletions(-) > >diff --git a/rpmlint/checks/FilesCheck.py b/rpmlint/checks/FilesCheck.py >index 067e603d..cbd32259 100644 >--- a/rpmlint/checks/FilesCheck.py >+++ b/rpmlint/checks/FilesCheck.py >@@ -204,7 +204,7 @@ > non_readable_regexs = (re.compile(r'^/var/log/'), > re.compile(r'^/etc/(g?shadow-?|securetty)$')) > >-man_base_regex = re.compile(r'^/usr(?:/share)?/man(?:/overrides)?/man(?P<category>[^/]+)/(?P<filename>.+)') >+man_base_regex = re.compile(r'^/usr(?:/share)?/man(?:/overrides)?/man(?P<category>[^/]+)/(?P<filename>((?P<binary>[^.]+)\..+))') > > fsf_license_regex = re.compile(br'(GNU((\s+(Library|Lesser|Affero))?(\s+General)?\s+Public|\s+Free\s+Documentation)\s+Licen[cs]e|(GP|FD)L)', re.IGNORECASE) > fsf_wrong_address_regex = re.compile(br'(675\s+Mass\s+Ave|59\s+Temple\s+Place|Franklin\s+Steet|02139|02111-1307)', re.IGNORECASE) >@@ -702,7 +702,7 @@ def check(self, pkg): > # look for man pages > res = man_base_regex.fullmatch(f) > if res: >- man_basenames.add(res.group('category')) >+ man_basenames.add(res.group('binary')) > > res = bin_regex.search(f) > if res: >@@ -924,7 +924,7 @@ def check(self, pkg): > > res = man_base_regex.fullmatch(f) > if res: >- man_basenames.add(res.group('category')) >+ man_basenames.add(res.group('binary')) > else: > res = bin_regex.search(f) > if res: >diff --git a/test/test_files.py b/test/test_files.py >index 09fae39f..684a39b6 100644 >--- a/test/test_files.py >+++ b/test/test_files.py >@@ -175,6 +175,7 @@ def test_distribution_tags(tmpdir, package, filescheck): > test.check(get_tested_package(package, tmpdir)) > out = output.print_results(output.results) > assert 'manpage-not-compressed' in out >+ assert 'no-manual-page-for-binary' not in out > assert 'This manual page is not compressed with the bz2 compression' in out > >
From 393cde4e70a6efdf1353ca1d4a8ba6500c0dc967 Mon Sep 17 00:00:00 2001 From: Martin Liska <mliska@suse.cz> Date: Sat, 8 Oct 2022 10:12:54 +0200 Subject: [PATCH] fix broken regex for no-manual-page-for-binary check It was a regression since 718e1eb9e6e84edf34026f2b62653f3d8f75d993. Fixes: #918. --- rpmlint/checks/FilesCheck.py | 6 +++--- test/test_files.py | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/rpmlint/checks/FilesCheck.py b/rpmlint/checks/FilesCheck.py index 067e603d..cbd32259 100644 --- a/rpmlint/checks/FilesCheck.py +++ b/rpmlint/checks/FilesCheck.py @@ -204,7 +204,7 @@ non_readable_regexs = (re.compile(r'^/var/log/'), re.compile(r'^/etc/(g?shadow-?|securetty)$')) -man_base_regex = re.compile(r'^/usr(?:/share)?/man(?:/overrides)?/man(?P<category>[^/]+)/(?P<filename>.+)') +man_base_regex = re.compile(r'^/usr(?:/share)?/man(?:/overrides)?/man(?P<category>[^/]+)/(?P<filename>((?P<binary>[^.]+)\..+))') fsf_license_regex = re.compile(br'(GNU((\s+(Library|Lesser|Affero))?(\s+General)?\s+Public|\s+Free\s+Documentation)\s+Licen[cs]e|(GP|FD)L)', re.IGNORECASE) fsf_wrong_address_regex = re.compile(br'(675\s+Mass\s+Ave|59\s+Temple\s+Place|Franklin\s+Steet|02139|02111-1307)', re.IGNORECASE) @@ -702,7 +702,7 @@ def check(self, pkg): # look for man pages res = man_base_regex.fullmatch(f) if res: - man_basenames.add(res.group('category')) + man_basenames.add(res.group('binary')) res = bin_regex.search(f) if res: @@ -924,7 +924,7 @@ def check(self, pkg): res = man_base_regex.fullmatch(f) if res: - man_basenames.add(res.group('category')) + man_basenames.add(res.group('binary')) else: res = bin_regex.search(f) if res: diff --git a/test/test_files.py b/test/test_files.py index 09fae39f..684a39b6 100644 --- a/test/test_files.py +++ b/test/test_files.py @@ -175,6 +175,7 @@ def test_distribution_tags(tmpdir, package, filescheck): test.check(get_tested_package(package, tmpdir)) out = output.print_results(output.results) assert 'manpage-not-compressed' in out + assert 'no-manual-page-for-binary' not in out assert 'This manual page is not compressed with the bz2 compression' in out
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 30427
:
13554
| 13555 |
13556
|
13600
|
13601
|
14058