From 87016b3b4a30cb6a19d8ac51f1e05d8d2b40a8a8 Mon Sep 17 00:00:00 2001 From: Martchus Date: Mon, 18 Mar 2024 23:23:13 +0100 Subject: [PATCH] Make arch-repo-manager depend on devtools-custom It uses the `makechrootpkg` flag `-Y` only present in devtools-custom as of 1.1.1 unconditionally (before 1.1.1 it was `-C`. So at least at this point it makes sense to make it a hard dependency. --- arch-repo-manager/git/PKGBUILD | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/arch-repo-manager/git/PKGBUILD b/arch-repo-manager/git/PKGBUILD index ee33fa6e..6e78667c 100644 --- a/arch-repo-manager/git/PKGBUILD +++ b/arch-repo-manager/git/PKGBUILD @@ -8,11 +8,12 @@ pkgname=arch-repo-manager-git _name=${pkgname%-git} _liburing=OFF pkgver=340.599185d -pkgrel=2 +pkgrel=3 arch=('i686' 'x86_64' 'armv6h' 'armv7h' 'aarch64') pkgdesc='Tool for managing custom Arch Linux repositories' license=('GPL') -depends=('libc++utilities-git.so' 'libpasswordfile-git.so' 'libboost_filesystem.so' 'libarchive.so' 'libcrypto.so' 'libssl.so' 'lmdb') +depends=('libc++utilities-git.so' 'libpasswordfile-git.so' 'libboost_filesystem.so' 'libarchive.so' 'libcrypto.so' 'libssl.so' 'lmdb' + 'devtools-custom>=1.1.1') [[ $_liburing != OFF ]] && depends+=('liburing.so') optdepends=('reflective-rapidjson-git: development with libpkg/librepomgr' "$_name-doc: API documentation")