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))