From c0b67899e26b4e48c82ed0b11dac080ce8dbb308 Mon Sep 17 00:00:00 2001 From: Giovanni Harting <539@idlegandalf.com> Date: Fri, 21 May 2021 18:20:18 +0200 Subject: [PATCH] handle repos/core-i686 like with core/linux fix default packager format --- makepkg.tmpl | 2 +- master.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/makepkg.tmpl b/makepkg.tmpl index cd08561..de71103 100644 --- a/makepkg.tmpl +++ b/makepkg.tmpl @@ -124,7 +124,7 @@ DBGSRCDIR="/usr/src/debug" #-- Log files: specify a fixed directory where all log files will be placed #LOGDEST=/home/makepkglogs #-- Packager: name/email of the person or organization building packages -PACKAGER="ALHP Buildbot" +PACKAGER="ALHP Buildbot " #-- Specify a key to use for package signing #GPGKEY="" diff --git a/master.py b/master.py index 35bdc2d..4c0626e 100644 --- a/master.py +++ b/master.py @@ -294,7 +294,7 @@ def fill_queue(): # ignore pkgbuild if in trunk, -any package, not in repos, or on blacklist if path_split[-2] == "trunk" or path_split[-2].split("-")[0] not in config["repos"] or "any" in path_split[-2] \ - or path_split[-4] in config["blacklist"]: + or path_split[-4] in config["blacklist"] or "core-i686" in path_split[-2]: to_delete.append(pkgbuild) final_pkgbuilds = list(set(all_pkgbuild) - set(to_delete))