X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=daklib%2Fregexes.py;h=a8107113ecd54257ec7a72f922fe8828d8e6f7a5;hb=f601bd71e61c6c265b5fa1f296a5258385e6f154;hp=3da3b298793f89e74ec621108034dadede600a40;hpb=b703f001864338ecbce22f12c2a515d4d34704bf;p=dak.git diff --git a/daklib/regexes.py b/daklib/regexes.py old mode 100755 new mode 100644 index 3da3b298..a8107113 --- a/daklib/regexes.py +++ b/daklib/regexes.py @@ -141,11 +141,15 @@ re_includeinpdiff = re.compile(r"(Translation-[a-zA-Z_]+\.(?:bz2|xz))") re_file_safe = re.compile(r'^[a-zA-Z0-9][a-zA-Z0-9_.:~+-]*$') # Prefix of binary and source filenames -_re_file_prefix = '^(?P[a-z0-9][a-z0-9.+-]+)_(?P[A-Za-z0-9.:~+-]+?)' +_re_file_prefix = r'^(?P[a-z0-9][a-z0-9.+-]+)_(?P[A-Za-z0-9.:~+-]+?)' # Match binary packages # Groups: package, version, architecture, type -re_file_binary = re.compile(_re_file_prefix + '_(?P[a-z0-9]+)\.(?Pu?deb)$') +re_file_binary = re.compile(_re_file_prefix + r'_(?P[a-z0-9-]+)\.(?Pu?deb)$') + +# Match changes files +# Groups: package, version, suffix +re_file_changes = re.compile(_re_file_prefix + r'_(?P[a-zA-Z0-9+-]+)\.changes$') # Match dsc files # Groups: package, version @@ -176,4 +180,4 @@ re_field_version_upstream = re.compile(r'^(?:[0-9]+:)?(?P.*)-[^-]*$') # Match source field # Groups: package, version -re_field_source = re.compile(r'^(?P[a-z0-9][a-z0-9.+-]+)(:?\s*\((?P[A-Za-z0-9.:~+-])\))?') +re_field_source = re.compile(r'^(?P[a-z0-9][a-z0-9.+-]+)(?:\s*\((?P[A-Za-z0-9.:~+-]+)\))?$')