[PATCH] use createrepo_c instead of createrepo to make repos if it is available

Dennis Gilmore dennis at ausil.us
Sat Jun 6 20:38:06 UTC 2015


On Thursday, May 07, 2015 11:20:16 AM you wrote:
> Signed-off-by: Dennis Gilmore <dennis at ausil.us>
> ---
>  builder/kojid | 6 +++++-
>  1 file changed, 5 insertions(+), 1 deletion(-)
> 
> diff --git a/builder/kojid b/builder/kojid
> index 3a92ec3..4e53fb5 100755
> --- a/builder/kojid
> +++ b/builder/kojid
> @@ -4252,7 +4252,11 @@ class CreaterepoTask(BaseTaskHandler):
> 
>      def create_local_repo(self, rinfo, arch, pkglist, groupdata, oldrepo):
>          koji.ensuredir(self.outdir)
> -        cmd = ['/usr/bin/createrepo', '-vd', '-o', self.outdir]
> +        if os.path.isfile('/usr/bin/createrepo_c'):
> +            cmd = ['/usr/bin/createrepo_c']
> +        else:
> +            cmd = ['/usr/bin/createrepo']
> +        cmd.extend(['-vd', '-o', self.outdir])
>          if pkglist is not None:
>              cmd.extend(['-i', pkglist])
>          if os.path.isfile(groupdata):
ping
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: This is a digitally signed message part.
URL: <http://lists.fedoraproject.org/pipermail/buildsys/attachments/20150606/96b49316/attachment.sig>


More information about the buildsys mailing list