File indexing completed on 2024-05-19 05:42:35

0001 def accept(path):
0002     import re
0003     return re.search('/polkit-qt([0-9]+)?-?([0-9]+)?/', path) is not None
0004 
0005 
0006 def process(path, addPkg):
0007     addPkg('PolkitQt', None, None, None)
0008     return 'PolkitQt'
0009