build: multiple binary repos (MR 2252)

Use a different binary repo depending on the source repository for the
package. This makes it possible to split out systemd packages into their
own repository.

Signed-off-by: Caleb Connolly <caleb@postmarketos.org>
This commit is contained in:
Caleb Connolly 2024-06-08 06:09:12 +02:00 committed by Oliver Smith
parent 560cea46ea
commit b43724fee4
No known key found for this signature in database
GPG key ID: 5AE7F5513E0885CB
5 changed files with 35 additions and 35 deletions

View file

@ -665,7 +665,7 @@ def get_parser():
" 128)")
parser.add_argument("-p", "--aports",
help="postmarketos aports (pmaports) path",
type=lambda x: Path(x))
type=lambda x: [Path(p.strip()) for p in x.split(",")])
parser.add_argument("-t", "--timeout", help="seconds after which processes"
" get killed that stopped writing any output (default:"
" 900)", default=900, type=float)