diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2022-11-12 15:40:37 +0100 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2022-11-12 15:40:37 +0100 |
commit | d9656b75b47ffcf35be21d2f82ddb7c0b584e419 (patch) | |
tree | a5336d4c6dddecc2063386114a7b3084cdc43dbe | |
parent | 1cb62685afe79e7d3ab5c38b1ff6900c587f96d3 (diff) | |
download | aurbuilder-d9656b75b47ffcf35be21d2f82ddb7c0b584e419.tar.gz |
some comments and spelling
-rw-r--r-- | Dockerfile | 2 | ||||
-rwxr-xr-x | bin/getpackage.py | 7 |
2 files changed, 7 insertions, 2 deletions
@@ -4,7 +4,7 @@ ENV PACKAGE_NAME="" ENV PACKAGER="John Doe <John.Doe@example.com>" ENV ARCH="x86_64" ENV FORCE_REBUILD="no" -ENV CHOWM="" +ENV CHOWN="" RUN pacman --noconfirm -Syu RUN pacman --noconfirm -S git sudo diff --git a/bin/getpackage.py b/bin/getpackage.py index 5f85b8e..0091dd6 100755 --- a/bin/getpackage.py +++ b/bin/getpackage.py @@ -1,5 +1,8 @@ #!/usr/bin/env python3 +# Create a list of package names required to build supplied AUR package. +# packages present in the official repos will be ignored. +# relevant docs: # AUR API: # https://wiki.archlinux.org/title/Aurweb_RPC_interface # Package API: @@ -132,8 +135,10 @@ base_pkg_info = maybe_base_pkg_info aur_deps = build_aur_dependencies(PKG) +# We rely on the rigth order here. +# The dependency must be before the package that depends on it, +# otherwise makepkg will fail for dep in aur_deps: - pkg = aur_get_package(dep) if pkg is None: |