From 665ae2b8b0ba7cd883b5a24279120c4fad7dc243 Mon Sep 17 00:00:00 2001 From: "Matthew \"strager\" Glazar" Date: Wed, 29 Mar 2023 21:37:19 -0700 Subject: [PATCH] chore(main/quick-lint-js): remove unnecessary patch Upstream fixed the build error for A32 builds. Remove our patch working around the build failure. Testing: $ ./build-package.sh -a arm quick-lint-js (I did not try running the installed package. I do not have an A32 Termux install.) --- packages/quick-lint-js/build.sh | 1 + .../quick-lint-js/src-quick-lint-js-have.h.patch | 12 ------------ 2 files changed, 1 insertion(+), 12 deletions(-) delete mode 100644 packages/quick-lint-js/src-quick-lint-js-have.h.patch diff --git a/packages/quick-lint-js/build.sh b/packages/quick-lint-js/build.sh index a4e4b12942..9da4384687 100644 --- a/packages/quick-lint-js/build.sh +++ b/packages/quick-lint-js/build.sh @@ -3,6 +3,7 @@ TERMUX_PKG_DESCRIPTION="Finds bugs in JavaScript programs" TERMUX_PKG_LICENSE="GPL-3.0" TERMUX_PKG_MAINTAINER="@termux" TERMUX_PKG_VERSION="2.12.0" +TERMUX_PKG_REVISION=1 TERMUX_PKG_SRCURL=git+https://github.com/quick-lint/quick-lint-js TERMUX_PKG_GIT_BRANCH=$TERMUX_PKG_VERSION TERMUX_PKG_DEPENDS="libc++" diff --git a/packages/quick-lint-js/src-quick-lint-js-have.h.patch b/packages/quick-lint-js/src-quick-lint-js-have.h.patch deleted file mode 100644 index cae8845022..0000000000 --- a/packages/quick-lint-js/src-quick-lint-js-have.h.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -uNr quick-lint-js/src/quick-lint-js/port/have.h quick-lint-js.mod/src/quick-lint-js/port/have.h ---- quick-lint-js/src/quick-lint-js/port/have.h 2022-07-26 10:45:47.584150790 +0800 -+++ quick-lint-js.mod/src/quick-lint-js/port/have.h 2022-07-26 10:47:14.734150757 +0800 -@@ -285,7 +285,7 @@ - #endif - - #if !defined(QLJS_HAVE_ARM_NEON) --#if defined(__ARM_NEON) -+#if defined(__ARM_NEON) && defined(__aarch64__) - #define QLJS_HAVE_ARM_NEON 1 - #else - #define QLJS_HAVE_ARM_NEON 0