952d9505b2
Signed-off-by: volpino <fox91@anche.no>
39 lines
1013 B
Python
39 lines
1013 B
Python
from euscan.handlers import generic
|
|
|
|
PRIORITY = 90
|
|
|
|
HANDLER_NAME = "kde"
|
|
|
|
|
|
def can_handle(pkg, url):
|
|
return url and url.startswith('mirror://kde/')
|
|
|
|
|
|
def clean_results(results):
|
|
ret = []
|
|
|
|
for path, version, _, confidence in results:
|
|
if version == '5SUMS':
|
|
continue
|
|
ret.append((path, version, HANDLER_NAME, confidence))
|
|
|
|
return ret
|
|
|
|
|
|
def scan_url(pkg, url, options):
|
|
results = generic.scan(pkg.cpv, url)
|
|
|
|
if generic.startswith('mirror://kde/unstable/'):
|
|
url = generic.replace('mirror://kde/unstable/', 'mirror://kde/stable/')
|
|
results += generic.scan(pkg.cpv, url)
|
|
|
|
if not results: # if nothing was found go brute forcing
|
|
results = generic.brute_force(pkg.cpv, url)
|
|
|
|
if generic.startswith('mirror://kde/unstable/'):
|
|
url = generic.replace('mirror://kde/unstable/',
|
|
'mirror://kde/stable/')
|
|
results += generic.brute_force(pkg.cpv, url)
|
|
|
|
return clean_results(results)
|