X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=daklib%2Fsrcformats.py;h=a8237c3d5e17e9cded9a24daa2d42d890146e768;hb=7a22fcc70b41ee02adeb5bf18c9d1d0d91917615;hp=51df1c60224c66ca16a0e1868bd8c60a8188c612;hpb=d2a4effa7138d04402928b843ca8ca4ba45e3380;p=dak.git diff --git a/daklib/srcformats.py b/daklib/srcformats.py index 51df1c60..a8237c3d 100644 --- a/daklib/srcformats.py +++ b/daklib/srcformats.py @@ -1,3 +1,5 @@ +import re + srcformats = [] class SourceFormat(type): @@ -5,13 +7,57 @@ class SourceFormat(type): klass = super(SourceFormat, cls).__new__(cls, name, bases, attrs) srcformats.append(klass) + assert str(klass.name) + assert iter(klass.requires) + assert iter(klass.disallowed) + + klass.re_format = re.compile(klass.format) + return klass -class FormatOne(object): + @classmethod + def reject_msgs(cls, has): + if len(cls.requires) != len([x for x in cls.requires if has[x]]): + yield "lack of required files for format %s" % cls.name + + for key in cls.disallowed: + if has[key]: + yield "contains source files not allowed in format %s" % cls.name + +class FormatOne(SourceFormat): __metaclass__ = SourceFormat -class FormatThree(object): + name = '1.0' + format = r'1.0' + + requires = () + disallowed = ('debian_tar', 'more_orig_tar') + + @classmethod + def reject_msgs(cls, has): + 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']): + yield "contains source files not allowed in format %s" % cls.name + + for msg in super(FormatOne, cls).reject_msgs(has): + yield msg + +class FormatThree(SourceFormat): __metaclass__ = SourceFormat -class FormatThreeQuilt(object): + name = '3.x (native)' + format = r'3\.\d+ \(native\)' + + requires = ('native_tar',) + disallowed = ('orig_tar', 'debian_diff', 'debian_tar', 'more_orig_tar') + +class FormatThreeQuilt(SourceFormat): __metaclass__ = SourceFormat + + name = '3.x (quilt)' + format = r'3\.\d+ \(quilt\)' + + requires = ('orig_tar', 'debian_tar') + disallowed = ('debian_diff', 'native_tar')