7ad314ebe4
* fix: use tree-sitter for deno_doc * fix: disable same-origin.html WPT * refactor: remove usage of full_range * fix(ext/node): internal buffer length in readSync * fix(console): missing cause property on non-error objects * fix(lsp): exclude missing import quick fixes with bad resolutions * feat(lsp): add a message when someone runs 'deno lsp' manually * fix(ext/webstorage): make `getOwnPropertyDescriptor` with symbol return `undefined` * feat(ext/crypto): X448 support * refactor: improve node permission checks * chore: enable lock_deno_json_package_json_deps * fix(node): fix worker_threads issues blocking Angular support * tests: enable package_json_node_modules_none * fix(install): surface package.json dependency errors * Revert "feat: warn when using --allow-run with no allow list" * tests: enable specs::run::package_json::invalid_value * fix(npm): root package has peer dependency on itself * fix(task): use current executable for deno even when not named deno * chore: show expectation diff for wpt tests * fix: don't prompt when using `Deno.permissions.request` with `--no-prompt` * chore: remove custom `bench` profile * fix(ext/crypto): fix identity test for x25519 derive bits * feat(permissions): allow importing from cdn.jsdelivr.net by default * perf: Use -O3 for sui in release builds * fix: enable `Win32_Security` feature in `windows-sys` * fix(install): store tags associated with package in node_modules dir * chore: disable flaky uv_test.js for now * fix(install): compare versions directly to decide whether to create a child node_modules dir for a workspace member * feat(byonm): support `deno run npm:<package>` when package is not in package.json * fix(node): implement libuv APIs needed to support `npm:sqlite3` * Revert "fix(urlpattern): fallback to empty string for undefined group values" * fix(workspace): handle when config has members when specified via --config * fix(no-slow-types): better `override` handling * perf(ext/node): reduce some allocations in require OBS-URL: https://build.opensuse.org/package/show/devel:languages:javascript/deno?expand=0&rev=201
35 lines
1.1 KiB
XML
35 lines
1.1 KiB
XML
<!--
|
|
# vim: set syntax=xml
|
|
-->
|
|
|
|
<services>
|
|
<!--
|
|
Build Deno and rusty_v8 as completely from
|
|
scratch as we can. We pull in all the sources
|
|
through git.
|
|
TODO: migrate to obs_scm as soon as "exclude"
|
|
works there.
|
|
-->
|
|
<service name="tar_scm" mode="manual">
|
|
<param name="scm">git</param>
|
|
<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.0</param>
|
|
<param name="versionrewrite-pattern">v(.*)</param>
|
|
<param name="versionrewrite-replacement">\1</param>
|
|
<param name="changesgenerate">enable</param>
|
|
</service>
|
|
<service name="tar" mode="manual"/>
|
|
<service name="recompress" mode="manual">
|
|
<param name="file">deno-2.0.0*.tar</param>
|
|
<param name="compression">zst</param>
|
|
</service>
|
|
<service mode="manual" name="set_version"/>
|
|
<service name="cargo_vendor" mode="manual">
|
|
<param name="srcdir">deno</param>
|
|
<param name="update">false</param>
|
|
</service>
|
|
</services>
|
|
|