handle repos/core-i686 like with core/linux

fix default packager format
This commit is contained in:
2021-05-21 18:20:18 +02:00
parent d0dd9661c6
commit c0b67899e2
2 changed files with 2 additions and 2 deletions

View File

@@ -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 <alhp@anonfunc.net>"
#-- Specify a key to use for package signing
#GPGKEY=""

View File

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