fix(iwyu): disable auto-update

latest release corresponds to latest release of clang, but
we might not have that version still.

this fixes build failure due to undefined 'clang::UsingType' symbol,
which is introduced in clang-14.

%ci:no-build

Signed-off-by: Aditya Alok <dev.aditya.alok@gmail.com>
This commit is contained in:
Aditya Alok 2022-04-03 02:57:25 +05:30
parent d9caf52790
commit 66e51f0bce
No known key found for this signature in database
GPG Key ID: 5A52117417798AC7
1 changed files with 4 additions and 3 deletions

View File

@ -2,9 +2,10 @@ TERMUX_PKG_HOMEPAGE=https://include-what-you-use.org/
TERMUX_PKG_DESCRIPTION="A tool to analyze #includes in C and C++ source files"
TERMUX_PKG_LICENSE=NCSA
TERMUX_PKG_MAINTAINER="@termux"
# Update this when libllvm is updated:
TERMUX_PKG_VERSION=0.17
TERMUX_PKG_SRCURL=https://github.com/include-what-you-use/include-what-you-use/archive/$TERMUX_PKG_VERSION.tar.gz
TERMUX_PKG_SHA256=2682727a4462d2d233ac1c03e63b29d606262dd9e54920e7a70dddc25d4cb270
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_DEPENDS='clang, python'
TERMUX_PKG_BUILD_DEPENDS=libllvm-static
TERMUX_PKG_AUTO_UPDATE=false # can't be auto-updated since release correspond to clang version.
TERMUX_PKG_DEPENDS="clang, python"
TERMUX_PKG_BUILD_DEPENDS="libllvm-static"