From: Michael Tremer Date: Sun, 7 Feb 2010 20:36:25 +0000 (+0100) Subject: naoki: Don't download patches. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d6cb51e91c1de610e7db9cacc44cc22702c6a165;p=ipfire-3.x.git naoki: Don't download patches. --- diff --git a/naoki/package.py b/naoki/package.py index 0e144b07f..3d0673f22 100644 --- a/naoki/package.py +++ b/naoki/package.py @@ -62,8 +62,7 @@ def download(file, type): return dirs = { - "object" : TARBALLDIR, - "patch" : PATCHESDIR, + "tarball" : TARBALLDIR, } filepath = os.path.join(dirs[type], file) if os.path.exists(filepath): @@ -209,9 +208,7 @@ Patches : def download(self): for object in self.objects: - download(object, type="object") - for patch in self.patches: - download(patch, type="patch") + download(object, type="tarball") @property def fingerprint(self):