summaryrefslogtreecommitdiff
path: root/dev-lang/jerryscript/files
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2025-10-17 20:35:53 -0700
committerZac Medico <zmedico@gentoo.org>2025-10-17 20:36:39 -0700
commiteb66de45bfc7225c82ca8e2257b50f3778a018af (patch)
tree86285cfcc3b667298b293a64a85cb392cf679422 /dev-lang/jerryscript/files
parent330b5683752e103508f32f0eef4425afc4e4eba9 (diff)
downloadgentoo-eb66de45bfc7225c82ca8e2257b50f3778a018af.tar.gz
gentoo-eb66de45bfc7225c82ca8e2257b50f3778a018af.tar.bz2
gentoo-eb66de45bfc7225c82ca8e2257b50f3778a018af.zip
dev-lang/jerryscript: allow CMake though to 3.10
Closes: https://bugs.gentoo.org/964502 Signed-off-by: Zac Medico <zmedico@gentoo.org>
Diffstat (limited to 'dev-lang/jerryscript/files')
-rw-r--r--dev-lang/jerryscript/files/jerryscript-3.0.0-cmake.patch57
1 files changed, 57 insertions, 0 deletions
diff --git a/dev-lang/jerryscript/files/jerryscript-3.0.0-cmake.patch b/dev-lang/jerryscript/files/jerryscript-3.0.0-cmake.patch
new file mode 100644
index 000000000000..d61ab0c94dd8
--- /dev/null
+++ b/dev-lang/jerryscript/files/jerryscript-3.0.0-cmake.patch
@@ -0,0 +1,57 @@
+https://github.com/jerryscript-project/jerryscript/pull/5262
+
+From f4fe9ba21590e5ef2eebb51c0713883708c0a7aa Mon Sep 17 00:00:00 2001
+From: Zac Medico <zmedico@gmail.com>
+Date: Fri, 17 Oct 2025 20:17:26 -0700
+Subject: [PATCH] chore: allow CMake though to 3.10
+
+This is allows the build with cmake-4.0.0 without deprecation warnings.
+
+use min...max syntax to allow build with newer cmake.
+ref: https://cmake.org/cmake/help/latest/command/cmake_minimum_required.html
+
+Fixes:
+CMake Error at CMakeLists.txt:1 (cmake_minimum_required):
+ Compatibility with CMake < 3.5 has been removed from CMake.
+
+ Update the VERSION argument <min> value. Or, use the <min>...<max> syntax
+ to tell CMake that the project requires at least <min> but has been updated
+ to work with policies introduced by <max> or earlier.
+
+ Or, add -DCMAKE_POLICY_VERSION_MINIMUM=3.5 to try configuring anyway.
+
+JerryScript-DCO-1.0-Signed-off-by: Zac Medico <zmedico@gmail.com>
+---
+ targets/baremetal-sdk/espressif/CMakeLists.txt | 2 +-
+ targets/baremetal-sdk/espressif/main/CMakeLists.txt | 2 +-
+ 2 files changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/targets/baremetal-sdk/espressif/CMakeLists.txt b/targets/baremetal-sdk/espressif/CMakeLists.txt
+index 826baf76..17ee60bd 100644
+--- a/targets/baremetal-sdk/espressif/CMakeLists.txt
++++ b/targets/baremetal-sdk/espressif/CMakeLists.txt
+@@ -12,7 +12,7 @@
+ # See the License for the specific language governing permissions and
+ # limitations under the License.
+
+-cmake_minimum_required(VERSION 3.5)
++cmake_minimum_required(VERSION 3.5...3.10)
+
+ set(SDKCONFIG ${CMAKE_BINARY_DIR}/sdkconfig)
+ # Workaround to generate sdkconfig into the build directory.
+diff --git a/targets/baremetal-sdk/espressif/main/CMakeLists.txt b/targets/baremetal-sdk/espressif/main/CMakeLists.txt
+index 78fa2b84..3657a25a 100644
+--- a/targets/baremetal-sdk/espressif/main/CMakeLists.txt
++++ b/targets/baremetal-sdk/espressif/main/CMakeLists.txt
+@@ -11,7 +11,7 @@
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ # See the License for the specific language governing permissions and
+ # limitations under the License.
+-cmake_minimum_required(VERSION 3.5)
++cmake_minimum_required(VERSION 3.5...3.10)
+
+ # Set JerryScript variables
+ set(JERRY_ROOT_DIR ${PROJECT_DIR}/../../..)
+--
+2.49.0
+