From 88849e91147999655b60f9bfbe0d8d1824b4167b Mon Sep 17 00:00:00 2001 From: Henrik Grimler Date: Wed, 14 Dec 2022 14:12:17 +0100 Subject: [PATCH] enchance(main/libandroid-support): remove pre-depends on dpkg It was added to fix a particular package dependency issue when libiconv was added (see termux/termux-packages/issues/3762). It is however not correct, libandroid-support does not (pre-)depend on dpkg and specifying that it does can lead to cyclic dependency issues. Remove this workaround since it by now has been several years since the original issue was fixed. --- packages/libandroid-support/build.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/libandroid-support/build.sh b/packages/libandroid-support/build.sh index 11a257480d..367ca56273 100644 --- a/packages/libandroid-support/build.sh +++ b/packages/libandroid-support/build.sh @@ -3,14 +3,13 @@ TERMUX_PKG_DESCRIPTION="Library extending the Android C library (Bionic) for add TERMUX_PKG_LICENSE="Apache-2.0, MIT" TERMUX_PKG_VERSION=(28 3) -TERMUX_PKG_REVISION=2 +TERMUX_PKG_REVISION=3 TERMUX_PKG_LICENSE_FILE="LICENSE.txt, wcwidth-${TERMUX_PKG_VERSION[1]}/LICENSE.txt" TERMUX_PKG_MAINTAINER="@termux" TERMUX_PKG_SRCURL=(https://github.com/termux/libandroid-support/archive/v${TERMUX_PKG_VERSION[0]}.tar.gz https://github.com/termux/wcwidth/archive/v${TERMUX_PKG_VERSION[1]}.tar.gz) TERMUX_PKG_SHA256=(ef35260994ffa3bd054be66068dfc28934c823ac8de2394796d94d1cd5de3be4 d38062a53edb2545b9988be41bd8d217f803fa985158b7cadf95d804761dd1f6) -TERMUX_PKG_PRE_DEPENDS="dpkg (>= 1.19.4-3)" TERMUX_PKG_BUILD_IN_SRC=true TERMUX_PKG_ESSENTIAL=true