Patch to make pungi 3.03 respect the --nosource option
by Barry Scott
The attached patch has the changes I needed to make to prevent
pungi looking for .src.rpm files, which I believe is what the
--nosource option is intended to do.
I did not see this problem with the version of pungi shipped
with F19.
Barry
9 years, 7 months
[PATCH] Don't hardcode /var/lib/mock
by Mathieu Bridon
The builder configuration allows setting this to a different folder.
---
koji/daemon.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/koji/daemon.py b/koji/daemon.py
index fa22d5a..4f4b575 100644
--- a/koji/daemon.py
+++ b/koji/daemon.py
@@ -651,7 +651,7 @@ class TaskManager(object):
if id is None or name is None:
continue
# see if there's a dir for the buildroot
- vardir = "/var/lib/mock/%s" % name
+ vardir = os.path.join(self.options.mockdir, name)
#XXX
buildroots[id] = {}
buildroots[id]['name'] = name
--
1.8.4.2
9 years, 9 months
koji--requires Error: Package: redhat-rpm-config-9.1.0-45.fc19.noarch (build) .
by jj
hi guys:
I am trying to use mock to build fedora 19 on mips machines, the base system can work ,
so I got some errors while building some src.rpm on koji. (not familar to fedora)
Enviroment:
kojihub and kojira are running on the same host ( a x86_64)
kojid on a mips machine.
=================================
when I ran "mock --rebuild some.src.rpm", I got errors on building build root enviroment.
It seems something wrong with yum on the base system.
any suggestion ? thx. I am sure the deps is ok , there's required package in the repo made by koji regen-repo.
root:/usr/lib/rpm# yum --installroot /var/lib/mock/fc19-mipsel-build-1-2/root/ groupinstall build
There is no installed groups file.
Error: Package: redhat-rpm-config-9.1.0-45.fc19.noarch (build)
Requires: perl(Getopt::Long)
Error: Package: redhat-rpm-config-9.1.0-45.fc19.noarch (build)
Requires: rpm >= 4.8.0
Error: Package: redhat-rpm-config-9.1.0-45.fc19.noarch (build)
Requires: /usr/bin/perl
Error: Package: redhat-rpm-config-9.1.0-45.fc19.noarch (build)
Requires: coreutils
Error: Package: redhat-rpm-config-9.1.0-45.fc19.noarch (build)
Requires: /bin/sh
Error: Package: redhat-rpm-config-9.1.0-45.fc19.noarch (build)
Requires: /bin/bash
Error: Package: redhat-rpm-config-9.1.0-45.fc19.noarch (build)
Requires: zip
Error: Package: redhat-rpm-config-9.1.0-45.fc19.noarch (build)
Requires: dwz >= 0.4
------------------
9 years, 10 months
koji 1.9 release?
by Matthew Miller
Hi everyone. I'm very interested in the ImageFactory integration in koji. I
understood this to be in koji 1.9 -- but when I went to look, but there is
actually no such thing available. Is there a planned timeframe for this?
PS: I'd really like it to include the Docker imagefactory bits that Ian and
Jay are working on.
--
Matthew Miller -- Fedora Project -- <mattdm(a)fedoraproject.org>
9 years, 11 months