From d2ff410242e660028b6eef7ad2a2508b089b8c28 Mon Sep 17 00:00:00 2001 From: Faik Uygur Date: Wed, 15 Apr 2009 09:04:19 +0000 Subject: [PATCH] Add source.buildtimeDependencies method for consistency with package.runtimeDependencies BUG:FIXED:3854 --- pisi/specfile.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pisi/specfile.py b/pisi/specfile.py index ace0b1ee..a920e1b7 100644 --- a/pisi/specfile.py +++ b/pisi/specfile.py @@ -176,6 +176,9 @@ class Source: t_Release = [ autoxml.String, autoxml.optional] t_SourceURI = [ autoxml.String, autoxml.optional ] # used in index + def buildtimeDependencies(self): + return self.buildDependencies + class Package: t_Name = [ autoxml.String, autoxml.mandatory ]