From b2dcfe2b61047b401027b5de9cb67a6f29d0a18c Mon Sep 17 00:00:00 2001 From: Balakrishnan Balasubramanian Date: Wed, 26 Feb 2025 19:56:14 -0500 Subject: [PATCH] Get makepkg working --- Containerfile | 3 ++- Makefile | 7 +++++++ README.md | 8 +++++--- run.sh | 28 +++++++++++++++++++++++++--- 4 files changed, 39 insertions(+), 7 deletions(-) create mode 100644 Makefile diff --git a/Containerfile b/Containerfile index 0f12bb1..3d6b84f 100644 --- a/Containerfile +++ b/Containerfile @@ -5,6 +5,7 @@ LABEL Description="Container to build archlinux packages" COPY packager.conf /etc/makepkg.conf.d/packager.conf COPY sudoers /etc/sudoers.d/builder COPY run.sh /run.sh +# COPY ./yay /usr/bin/yay # RUN echo "169.254.1.2 archmirror.i.balki.me" >> /etc/hosts @@ -14,7 +15,7 @@ COPY mirrorlist /etc/pacman.d/mirrorlist RUN useradd builder -m -WORKDIR /w +WORKDIR /home/builder USER builder diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..4cbed35 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ + + +build: + podman build -t gitea.balki.me/balki/aur_builder:exp . + +pull: + podman pull docker.io/archlinux:base-devel diff --git a/README.md b/README.md index 931953f..2e30423 100644 --- a/README.md +++ b/README.md @@ -3,12 +3,14 @@ Command to build ``` -podman build --add-host=archmirror.i.balki.me:169.254.1.2 -t gitea.balki.me/balki/aur_builder:10 . +cd ~/projects/mine/aur_builder/ +podman build -t gitea.balki.me/balki/aur_builder:exp . ``` Command to run ``` -cd /home/balki/archws/abs/arti_aur -podman run --rm -v $PWD:/w -it gitea.balki.me/balki/aur_builder:10 +cd /home/balki/gotosocial_aur/ +podman run --rm -v $PWD:/w -it gitea.balki.me/balki/aur_builder:exp +Y ``` diff --git a/run.sh b/run.sh index 3c63723..51070b4 100755 --- a/run.sh +++ b/run.sh @@ -7,10 +7,32 @@ sudo sh -c 'echo "169.254.1.2 archmirror.i.balki.me" >> /etc/hosts' sudo pacman -Syu -sudo chown --recursive builder:builder /w +yay_build() { + # not working yet + # rm-rf .git -makepkg --printsrcinfo > .SRCINFO + git config --global user.email "aur_builder@balki.me" + git config --global user.name "Balakrishnan Balasubramanian" + makepkg --printsrcinfo >.SRCINFO -makepkg -s + yay -Bi "$PWD" +} +makepkg_build() { + if [ -d deps ]; then + sudo pacman -U deps/*pkg.tar* + fi + makepkg -s +} + +cp -r /w . + +cd ./w + +# bash +# yay_build + +makepkg_build + +sudo cp ./*pkg.tar* /w