From e3dedfa3cbe4262b9cd7545b7c975ef7ef8dc933 Mon Sep 17 00:00:00 2001 From: Celeste <20312-Celeste@users.gitlab.alpinelinux.org> Date: Thu, 3 Oct 2024 03:23:36 +0000 Subject: [PATCH] testing/beancount-language-server: remove `cargo update -p libc` from prepare() Upstream upgraded to libc 0.2.155 in https://github.com/polarmutex/beancount-language-server/commit/1c7fe13d641b1a6233ba29fdf05b85df0664077e so remove this `cargo update` call to prevent accidental downgrades in the future no pkgrel bump is needed because the aport will be built with libc 0.2.155 regardless of whether `cargo update` is present --- testing/beancount-language-server/APKBUILD | 3 --- 1 file changed, 3 deletions(-) diff --git a/testing/beancount-language-server/APKBUILD b/testing/beancount-language-server/APKBUILD index e19fe9e6010..6d04557fe9f 100644 --- a/testing/beancount-language-server/APKBUILD +++ b/testing/beancount-language-server/APKBUILD @@ -14,9 +14,6 @@ options="!check net" # no test suite, fetch dependencies prepare() { default_prepare - # based on loongarch64 needs - cargo update -p libc --precise 0.2.155 - cargo fetch --target="$CTARGET" --locked }