X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;ds=inline;f=daklib%2Fsrcformats.py;h=5c9a9e0ecde9a33efeb6c79900584c2038b4f7c7;hb=324bbf00a048e5d26048d7b9eca335341a0440b1;hp=8bea377591e4c38ff1efc42e63e46338f71ac613;hpb=46434f2a671e5382758899140fbbd0fca2fff9b2;p=dak.git diff --git a/daklib/srcformats.py b/daklib/srcformats.py index 8bea3775..5c9a9e0e 100644 --- a/daklib/srcformats.py +++ b/daklib/srcformats.py @@ -16,12 +16,35 @@ class FormatOne(object): format = r'1.0' + @classmethod + def reject_msgs(cls, has_native_tar, has_native_tar_gz, has_debian_tar, has_debian_diff, has_orig_tar, has_orig_tar_gz, has_more_orig_tar): + if not (has_native_tar_gz or (has_orig_tar_gz and has_debian_diff)): + yield "no .tar.gz or .orig.tar.gz+.diff.gz in 'Files' field." + if (has_orig_tar_gz != has_orig_tar) or \ + (has_native_tar_gz != has_native_tar) or \ + has_debian_tar or has_more_orig_tar: + yield "contains source files not allowed in format 1.0" + class FormatThree(object): __metaclass__ = SourceFormat format = r'3\.\d+ \(native\)' + @classmethod + def reject_msgs(cls, has_native_tar, has_native_tar_gz, has_debian_tar, has_debian_diff, has_orig_tar, has_orig_tar_gz, has_more_orig_tar): + if not has_native_tar: + yield "lack required files for format 3.x (native)." + if has_orig_tar or has_debian_diff or has_debian_tar or has_more_orig_tar: + yield "contains source files not allowed in format '3.x (native)'" + class FormatThreeQuilt(object): __metaclass__ = SourceFormat format = r'3\.\d+ \(quilt\)' + + @classmethod + def reject_msgs(cls, has_native_tar, has_native_tar_gz, has_debian_tar, has_debian_diff, has_orig_tar, has_orig_tar_gz, has_more_orig_tar): + if not(has_orig_tar and has_debian_tar): + yield "lack required files for format '3.x (quilt)'." + if has_debian_diff or has_native_tar: + yield "contains source files not allowed in format 3.x (quilt)"