From 52fa1e62feb3beccdded038bf6a2857ff3154c48 Mon Sep 17 00:00:00 2001 From: Ansgar Burchardt Date: Fri, 8 Jun 2012 17:24:51 +0200 Subject: [PATCH] Add regexp to match .changes files. Also use raw strings for the other regular expressions. --- daklib/regexes.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/daklib/regexes.py b/daklib/regexes.py index 3da3b298..202aa570 100755 --- 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 -- 2.39.2