- Update to version 2.0.6:
* Revert "perf(upgrade): cache downloaded binaries in DENO_DIR" * perf(upgrade): cache downloaded binaries in DENO_DIR * fix: performance.timeOrigin * fix(install): cache jsr deps from all workspace config files * feat(ext/http): abort event when request is cancelled * fix(ext/cache): don't panic when creating cache * chore: make commandWithCwdIsAsync test less flaky * feat(ext/http): abort signal when request is cancelled * chore: serve node headers from a test server to fix flaky `node-gyp` test * refactor: use concrete error type for remaining ops * refactor(ext/net): Use hickory dns instead of unmaintained trust-dns * fix(node:zlib): gzip & gzipSync should accept ArrayBuffer * fix(ext/node): better inspector support * fix(fmt): don't use self-closing tags in HTML * feat(lsp): auto-import completions from byonm dependencies - Replace registry.tar.zst to vendor.tar.zst OBS-URL: https://build.opensuse.org/package/show/devel:languages:javascript/deno?expand=0&rev=236
This commit is contained in:
parent
74d162ef9e
commit
e2150fec83
6
_service
6
_service
@ -8,7 +8,7 @@
|
||||
<param name="url">https://github.com/denoland/deno</param>
|
||||
<!-- param name="versionformat">@PARENT_TAG@+git@TAG_OFFSET@</param -->
|
||||
<param name="versionformat">@PARENT_TAG@</param>
|
||||
<param name="revision">v2.0.5</param>
|
||||
<param name="revision">v2.0.6</param>
|
||||
<param name="versionrewrite-pattern">v(.*)</param>
|
||||
<param name="versionrewrite-replacement">\1</param>
|
||||
<param name="changesgenerate">enable</param>
|
||||
@ -16,13 +16,13 @@
|
||||
<service name="cargo_vendor" mode="manual">
|
||||
<param name="update">false</param>
|
||||
<param name="respect-lockfile">true</param>
|
||||
<param name="method">registry</param>
|
||||
<param name="method">vendor</param>
|
||||
<param name="src">deno</param>
|
||||
</service>
|
||||
<service mode="manual" name="set_version"/>
|
||||
<service name="roast" mode="manual">
|
||||
<param name="target">deno</param>
|
||||
<param name="outfile">deno-2.0.5.tar.zst</param>
|
||||
<param name="outfile">deno-2.0.6.tar.zst</param>
|
||||
<param name="preserve-root">true</param>
|
||||
<param name="reproducible">true</param>
|
||||
</service>
|
||||
|
@ -1,4 +1,4 @@
|
||||
<servicedata>
|
||||
<service name="tar_scm">
|
||||
<param name="url">https://github.com/denoland/deno</param>
|
||||
<param name="changesrevision">78a799b4947461eb5c6092295cbcdabfe94053f7</param></service></servicedata>
|
||||
<param name="changesrevision">8f59d18202e94e5c54ad7e5a79ec1383159e4a20</param></service></servicedata>
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b262c7058246e86b133ad4807729022eb478ad748e649fe274acaa20ee72f584
|
||||
size 98802962
|
21
deno.changes
21
deno.changes
@ -1,3 +1,24 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Nov 10 06:13:41 UTC 2024 - Soc Virnyl Estela <uncomfyhalomacro@opensuse.org>
|
||||
|
||||
- Update to version 2.0.6:
|
||||
* Revert "perf(upgrade): cache downloaded binaries in DENO_DIR"
|
||||
* perf(upgrade): cache downloaded binaries in DENO_DIR
|
||||
* fix: performance.timeOrigin
|
||||
* fix(install): cache jsr deps from all workspace config files
|
||||
* feat(ext/http): abort event when request is cancelled
|
||||
* fix(ext/cache): don't panic when creating cache
|
||||
* chore: make commandWithCwdIsAsync test less flaky
|
||||
* feat(ext/http): abort signal when request is cancelled
|
||||
* chore: serve node headers from a test server to fix flaky `node-gyp` test
|
||||
* refactor: use concrete error type for remaining ops
|
||||
* refactor(ext/net): Use hickory dns instead of unmaintained trust-dns
|
||||
* fix(node:zlib): gzip & gzipSync should accept ArrayBuffer
|
||||
* fix(ext/node): better inspector support
|
||||
* fix(fmt): don't use self-closing tags in HTML
|
||||
* feat(lsp): auto-import completions from byonm dependencies
|
||||
- Replace registry.tar.zst to vendor.tar.zst
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Nov 10 01:29:34 UTC 2024 - Soc Virnyl Estela <uncomfyhalomacro@opensuse.org>
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
name: deno
|
||||
version: 2.0.5
|
||||
mtime: 1730852345
|
||||
commit: 78a799b4947461eb5c6092295cbcdabfe94053f7
|
||||
version: 2.0.6
|
||||
mtime: 1731213491
|
||||
commit: 8f59d18202e94e5c54ad7e5a79ec1383159e4a20
|
||||
|
@ -20,14 +20,14 @@
|
||||
|
||||
%global _lto_cflags %nil
|
||||
Name: deno
|
||||
Version: 2.0.5
|
||||
Version: 2.0.6
|
||||
Release: 0
|
||||
Summary: A secure JavaScript and TypeScript runtime
|
||||
License: MIT
|
||||
Group: Productivity/Other
|
||||
URL: https://github.com/denoland/deno
|
||||
Source0: %{name}-%{version}.tar.zst
|
||||
Source1: registry.tar.zst
|
||||
Source1: vendor.tar.zst
|
||||
BuildRequires: cargo-packaging
|
||||
BuildRequires: clang
|
||||
# needed by `libz-ng-sys` after 1.36.1
|
||||
@ -102,12 +102,8 @@ updated with the --reload flag.
|
||||
unlink $PWD/rusty_v8 || true
|
||||
ln -sf %{_libdir}/crates/rusty_v8 $PWD/rusty_v8
|
||||
echo -e "\n[patch.crates-io]\nv8 = { path = './rusty_v8' }" >> Cargo.toml
|
||||
export CARGO_HOME=$PWD/.cargo
|
||||
rm .cargo/config.toml
|
||||
rm .cargo/local-build.toml
|
||||
|
||||
%build
|
||||
export CARGO_HOME=$PWD/.cargo
|
||||
# Ensure that the clang version matches. This command came from Archlinux. Thanks.
|
||||
export CLANG_VERSION=$(clang --version | grep -m1 version | sed 's/.* \([0-9]\+\).*/\1/')
|
||||
export V8_FROM_SOURCE=1
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d650ba5a2242572f7b78107833b764bfa8841bd63d4e7c7da66a3475371a0b94
|
||||
size 140557629
|
3
vendor.tar.zst
Normal file
3
vendor.tar.zst
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b96815d1c39971faaf2f6dc93365e6e478d664e6acdfe662e4be1feca1c0cf6b
|
||||
size 94588932
|
Loading…
Reference in New Issue
Block a user