Update package version to 2.6.10

This commit is contained in:
2026-02-20 15:15:18 +02:00
parent 721da852db
commit b87fa4e161
3 changed files with 14 additions and 5 deletions
+3 -2
View File
@@ -1,2 +1,3 @@
# Exclude bpm archives # Ignore BPM archives and signatures
*.bpm *.bpm
*.bpm.sig
+3 -2
View File
@@ -1,6 +1,6 @@
name: deno name: deno
description: A secure runtime for JavaScript and TypeScript description: A secure runtime for JavaScript and TypeScript
version: 2.6.9 version: 2.6.10
revision: 1 revision: 1
url: https://deno.land/ url: https://deno.land/
license: MIT license: MIT
@@ -13,6 +13,7 @@ depends:
make_depends: make_depends:
- clang - clang
- cmake - cmake
- gn
- lld - lld
- ninja - ninja
- nodejs - nodejs
@@ -23,4 +24,4 @@ downloads:
- url: https://github.com/denoland/deno/releases/download/v${BPM_PKG_VERSION}/deno_src.tar.gz - url: https://github.com/denoland/deno/releases/download/v${BPM_PKG_VERSION}/deno_src.tar.gz
extract_to: ${BPM_SOURCE} extract_to: ${BPM_SOURCE}
extract_strip_components: 1 extract_strip_components: 1
checksum: 1c856233c2b845848b5d85f66404b6b6fa9a5e04c8cf8b13025f3ce76c5100a4 checksum: 9d36d89e11b61626d732d71fd5a2b83afba06d02373f1fa8daffff3a0addf936
+8 -1
View File
@@ -5,9 +5,16 @@
# The build function is executed in the source directory # The build function is executed in the source directory
# This function is used to compile the source code # This function is used to compile the source code
build() { build() {
export CC=clang CXX=clang++ AR=ar NM=nm export CC=clang CXX=clang++ NINJA=/usr/bin/ninja GN=/usr/bin/gn AR=ar NM=nm
export CLANG_BASE_PATH=/usr export CLANG_BASE_PATH=/usr
local _extra_gn_args=(
'--custom_toolchain=//build/toolchain/linux/unbundle:default'
'--host_toolchain=//build/toolchain/linux/unbundle:default'
"clang_version=\"$(clang --version | grep -m1 version | sed 's/.* \([0-9]\+\).*/\1/')\""
)
export EXTRA_GN_ARGS="${_extra_gn_args[@]}"
cargo build --release cargo build --release
} }