euscan: add kde handler and fix some regex issues

Signed-off-by: Corentin Chary <corentincj@iksaif.net>
This commit is contained in:
Corentin Chary
2011-12-30 11:34:39 +01:00
parent d673c00e12
commit b78e73038d
4 changed files with 50 additions and 7 deletions

View File

@ -1,9 +1,6 @@
from euscan.handlers import generic
from euscan.handlers import php
from euscan.handlers import pypi
from euscan.handlers import rubygem
from euscan.handlers import generic, php, pypi, rubygem, kde
handlers = [ php, pypi, rubygem, generic ]
handlers = [ kde, php, pypi, rubygem, generic ]
def find_best_handler(cpv, url):
for handler in handlers: