]> git.decadent.org.uk Git - dak.git/commitdiff
Add regexp to match .changes files.
authorAnsgar Burchardt <ansgar@debian.org>
Fri, 8 Jun 2012 15:24:51 +0000 (17:24 +0200)
committerAnsgar Burchardt <ansgar@debian.org>
Thu, 14 Jun 2012 08:45:14 +0000 (10:45 +0200)
Also use raw strings for the other regular expressions.

daklib/regexes.py

index 3da3b298793f89e74ec621108034dadede600a40..202aa57005045ac86d10073d02013d75505b1796 100755 (executable)
@@ -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<package>[a-z0-9][a-z0-9.+-]+)_(?P<version>[A-Za-z0-9.:~+-]+?)'
+_re_file_prefix = r'^(?P<package>[a-z0-9][a-z0-9.+-]+)_(?P<version>[A-Za-z0-9.:~+-]+?)'
 
 # Match binary packages
 # Groups: package, version, architecture, type
-re_file_binary = re.compile(_re_file_prefix + '_(?P<architecture>[a-z0-9]+)\.(?P<type>u?deb)$')
+re_file_binary = re.compile(_re_file_prefix + r'_(?P<architecture>[a-z0-9]+)\.(?P<type>u?deb)$')
+
+# Match changes files
+# Groups: package, version, suffix
+re_file_changes = re.compile(_re_file_prefix + r'_(?P<suffix>[a-zA-Z0-9+-]+)\.changes$')
 
 # Match dsc files
 # Groups: package, version