From 74e960fee381c5808452fca7a63ce36d14656d43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Metin?= Date: Fri, 15 Jul 2005 12:29:59 +0000 Subject: [PATCH] =?UTF-8?q?iki=20tane=20fix.=20-=20buildhelper'a=20fonksiy?= =?UTF-8?q?onu=20ekledik=20ama=20=C3=A7al=C4=B1=C5=9Ft=C4=B1rmas=C4=B1n?= =?UTF-8?q?=C4=B1=20s=C3=B6ylemeyi=20unutmu=C5=9Fuz=20bir=20=C3=B6nceki=20?= =?UTF-8?q?commit'de=20-=20specfile'da=20ComarProfiles,=20Package=20alt?= =?UTF-8?q?=C4=B1na=20node=20olarak=20eklenmeli.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pisi/cli/buildhelper.py | 1 + pisi/specfile.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pisi/cli/buildhelper.py b/pisi/cli/buildhelper.py index 8aea3514..f765ac3d 100644 --- a/pisi/cli/buildhelper.py +++ b/pisi/cli/buildhelper.py @@ -27,6 +27,7 @@ class RemoteSource(object): self.fetch_actionsfile() self.fetch_patches() + self.fetch_comarfiles() self.fetch_additionalFiles() diff --git a/pisi/specfile.py b/pisi/specfile.py index 20449189..8a2c265d 100644 --- a/pisi/specfile.py +++ b/pisi/specfile.py @@ -266,7 +266,7 @@ class PackageInfo(object): for conflict in self.conflicts: xml.addTextNodeUnder(node, "Conflicts/Package", conflict) for pcomar in self.providesComar: - xml.addTextNodeUnder(node, "Provides/COMAR", pcomar.elt(xml)) + xml.addNodeUnder(node, "Provides/COMAR", pcomar.elt(xml)) for rcomar in self.requiresComar: xml.addTextNodeUnder(node, "Requires/COMAR", rcomar) return node