editors/vscode: update to 1.100.0

Changelog: https://code.visualstudio.com/updates/v1_100

Reported by:	GitHub (watch releases)
This commit is contained in:
Hiroki Tagato 2025-05-12 21:27:03 +09:00
parent 7eb86aa2f7
commit 51a6c70dba
8 changed files with 33 additions and 54 deletions

View File

@ -1,6 +1,5 @@
PORTNAME= vscode
DISTVERSION= 1.99.3
PORTREVISION= 1
DISTVERSION= 1.100.0
CATEGORIES= editors
MASTER_SITES= https://github.com/tagattie/FreeBSD-VSCode/releases/download/${DISTVERSION}/:node_modules
DISTFILES= vscode-node-modules-${DISTVERSION}${EXTRACT_SUFX}:node_modules \
@ -70,7 +69,7 @@ USES= desktop-file-utils gl gmake gnome iconv:wchar_t jpeg \
USE_GITHUB= yes
GH_ACCOUNT= microsoft
SOURCE_COMMIT_HASH= 17baf841131aa23349f217ca7c570c76ee87b957
SOURCE_COMMIT_HASH= 19e0f9e681ecb8e5c09d8784acaa601316ca4571
BINARY_ALIAS= python=${PYTHON_CMD}
@ -278,7 +277,7 @@ do-test:
# unit tests
cd ${WRKSRC} && ${SETENV} ${TEST_ENV} ./scripts/test.sh --build || ${TRUE}
# UI smoke tests
cd ${WRKSRC} && ${SETENV} ${TEST_ENV} yarn smoketest
cd ${WRKSRC} && ${SETENV} ${TEST_ENV} npm run smoketest
build-remote-extension-host: configure pre-build
# setup download cache for node

View File

@ -1,7 +1,7 @@
TIMESTAMP = 1745846693
SHA256 (vscode/vscode-node-modules-1.99.3.tar.gz) = 42214f65d156166af360ec6371ee54db0af0a0a88ee1be33d292727a02ed5a3e
SIZE (vscode/vscode-node-modules-1.99.3.tar.gz) = 401266883
SHA256 (vscode/vscode-marketplace-exts-1.99.3.tar.gz) = fc617a5fa27ea5be22868a233fbaca42d866e3927133466e59a089d594b291d4
SIZE (vscode/vscode-marketplace-exts-1.99.3.tar.gz) = 1611048
SHA256 (vscode/microsoft-vscode-1.99.3_GH0.tar.gz) = 81659cfc11d5c3a9a2ab46cd7e9a4d4ce4d4389a9e36cb8d1070503fc4e4ad3e
SIZE (vscode/microsoft-vscode-1.99.3_GH0.tar.gz) = 22689534
TIMESTAMP = 1747008146
SHA256 (vscode/vscode-node-modules-1.100.0.tar.gz) = beabbf93996c0ccc72466888195cdb28325551d2e7db7d995819146823559bd2
SIZE (vscode/vscode-node-modules-1.100.0.tar.gz) = 400256201
SHA256 (vscode/vscode-marketplace-exts-1.100.0.tar.gz) = 9af890bc9edcb20e700ef2794b8bd04c0b4f41fdc356c47a342f86770896be89
SIZE (vscode/vscode-marketplace-exts-1.100.0.tar.gz) = 1709305
SHA256 (vscode/microsoft-vscode-1.100.0_GH0.tar.gz) = b47bb68595466c9182fa5cdcc1d3298486e5f914fd9892cd11ce1a5eb254cea7
SIZE (vscode/microsoft-vscode-1.100.0_GH0.tar.gz) = 22647257

View File

@ -1,6 +1,6 @@
--- build/lib/layersChecker.ts.orig 2025-04-09 23:39:47 UTC
--- build/lib/layersChecker.ts.orig 2025-05-07 12:32:30 UTC
+++ build/lib/layersChecker.ts
@@ -410,7 +410,7 @@ function createProgram(tsconfigPath: string): ts.Progr
@@ -419,7 +419,7 @@ function createProgram(tsconfigPath: string): ts.Progr
function createProgram(tsconfigPath: string): ts.Program {
const tsConfig = ts.readConfigFile(tsconfigPath, ts.sys.readFile);

View File

@ -1,6 +1,6 @@
--- build/lib/propertyInitOrderChecker.ts.orig 2025-04-11 12:27:58 UTC
--- build/lib/propertyInitOrderChecker.ts.orig 2025-05-07 12:32:30 UTC
+++ build/lib/propertyInitOrderChecker.ts
@@ -149,7 +149,7 @@ function createProgram(tsconfigPath: string): ts.Progr
@@ -109,7 +109,7 @@ function createProgram(tsconfigPath: string): ts.Progr
function createProgram(tsconfigPath: string): ts.Program {
const tsConfig = ts.readConfigFile(tsconfigPath, ts.sys.readFile);

View File

@ -1,6 +1,6 @@
--- scripts/test.sh.orig 2024-09-27 21:08:28 UTC
--- scripts/test.sh.orig 2025-05-12 00:03:54 UTC
+++ scripts/test.sh
@@ -27,7 +27,7 @@ test -d node_modules || npm i
@@ -24,7 +24,7 @@ test -d node_modules || npm i
test -d node_modules || npm i
# Get electron

View File

@ -1,6 +1,6 @@
--- src/vs/code/electron-main/app.ts.orig 2025-04-09 23:39:47 UTC
--- src/vs/code/electron-main/app.ts.orig 2025-05-07 12:32:30 UTC
+++ src/vs/code/electron-main/app.ts
@@ -985,7 +985,7 @@ export class CodeApplication extends Disposable {
@@ -989,7 +989,7 @@ export class CodeApplication extends Disposable {
services.set(IUpdateService, new SyncDescriptor(Win32UpdateService));
break;

View File

@ -1,15 +1,6 @@
--- test/automation/src/electron.ts.orig 2025-04-09 23:39:47 UTC
--- test/automation/src/electron.ts.orig 2025-05-07 12:32:30 UTC
+++ test/automation/src/electron.ts
@@ -41,7 +41,7 @@ export async function resolveElectronConfiguration(opt
args.push('--verbose');
}
- if (process.platform === 'linux') {
+ if (process.platform === 'linux' || process.platform === 'freebsd') {
// --disable-dev-shm-usage: when run on docker containers where size of /dev/shm
// partition < 64MB which causes OOM failure for chromium compositor that uses
// this partition for shared memory.
@@ -103,7 +103,7 @@ export function getDevElectronPath(): string {
@@ -84,7 +84,7 @@ export function getDevElectronPath(): string {
switch (process.platform) {
case 'darwin':
return join(buildPath, 'electron', `${product.nameLong}.app`, 'Contents', 'MacOS', 'Electron');
@ -18,7 +9,7 @@
return join(buildPath, 'electron', `${product.applicationName}`);
case 'win32':
return join(buildPath, 'electron', `${product.nameShort}.exe`);
@@ -116,7 +116,7 @@ export function getBuildElectronPath(root: string): st
@@ -97,7 +97,7 @@ export function getBuildElectronPath(root: string): st
switch (process.platform) {
case 'darwin':
return join(root, 'Contents', 'MacOS', 'Electron');

View File

@ -503,8 +503,10 @@ share/applications/code-oss.desktop
%%DATADIR%%/resources/app/extensions/ms-vscode.js-debug/src/ui/basic-wat.tmLanguage.json
%%DATADIR%%/resources/app/extensions/ms-vscode.js-debug/src/vendor/acorn-loose.js
%%DATADIR%%/resources/app/extensions/ms-vscode.js-debug/src/vendor/acorn.js
%%DATADIR%%/resources/app/extensions/ms-vscode.js-debug/src/w32appcontainertokens-LVKSWXR7.node
%%DATADIR%%/resources/app/extensions/ms-vscode.js-debug/src/watchdog.js
%%DATADIR%%/resources/app/extensions/ms-vscode.js-debug/src/win32-app-container-tokens.win32-arm64-msvc-4ZJZ3U55.node
%%DATADIR%%/resources/app/extensions/ms-vscode.js-debug/src/win32-app-container-tokens.win32-x64-msvc-VCQE7GJP.node
%%DATADIR%%/resources/app/extensions/ms-vscode.js-debug/telemetry.json
%%DATADIR%%/resources/app/extensions/ms-vscode.vscode-js-profile-table/README.md
%%DATADIR%%/resources/app/extensions/ms-vscode.vscode-js-profile-table/ThirdPartyNotices.txt
%%DATADIR%%/resources/app/extensions/ms-vscode.vscode-js-profile-table/ci.yml
@ -684,6 +686,12 @@ share/applications/code-oss.desktop
%%DATADIR%%/resources/app/extensions/powershell/package.json
%%DATADIR%%/resources/app/extensions/powershell/package.nls.json
%%DATADIR%%/resources/app/extensions/powershell/syntaxes/powershell.tmLanguage.json
%%DATADIR%%/resources/app/extensions/prompt-basics/language-configuration.json
%%DATADIR%%/resources/app/extensions/prompt-basics/package.json
%%DATADIR%%/resources/app/extensions/prompt-basics/package.nls.json
%%DATADIR%%/resources/app/extensions/prompt-basics/snippets/instructions.code-snippets
%%DATADIR%%/resources/app/extensions/prompt-basics/snippets/prompt.code-snippets
%%DATADIR%%/resources/app/extensions/prompt-basics/syntaxes/prompt.tmLanguage.json
%%DATADIR%%/resources/app/extensions/pug/language-configuration.json
%%DATADIR%%/resources/app/extensions/pug/package.json
%%DATADIR%%/resources/app/extensions/pug/package.nls.json
@ -764,7 +772,6 @@ share/applications/code-oss.desktop
%%DATADIR%%/resources/app/extensions/terminal-suggest/.gitignore
%%DATADIR%%/resources/app/extensions/terminal-suggest/README.md
%%DATADIR%%/resources/app/extensions/terminal-suggest/ThirdPartyNotices.txt
%%DATADIR%%/resources/app/extensions/terminal-suggest/cgmanifest.json
%%DATADIR%%/resources/app/extensions/terminal-suggest/dist/fig/README.md
%%DATADIR%%/resources/app/extensions/terminal-suggest/dist/media/icon.png
%%DATADIR%%/resources/app/extensions/terminal-suggest/dist/terminalSuggestMain.js
@ -873,13 +880,6 @@ share/applications/code-oss.desktop
%%DATADIR%%/resources/app/extensions/yaml/syntaxes/yaml-embedded.tmLanguage.json
%%DATADIR%%/resources/app/extensions/yaml/syntaxes/yaml.tmLanguage.json
%%DATADIR%%/resources/app/node_modules.asar
%%DATADIR%%/resources/app/node_modules/@c4312/eventsource-umd/LICENSE
%%DATADIR%%/resources/app/node_modules/@c4312/eventsource-umd/dist/index.cjs
%%DATADIR%%/resources/app/node_modules/@c4312/eventsource-umd/dist/index.cjs.map
%%DATADIR%%/resources/app/node_modules/@c4312/eventsource-umd/dist/index.d.cts
%%DATADIR%%/resources/app/node_modules/@c4312/eventsource-umd/dist/index.js
%%DATADIR%%/resources/app/node_modules/@c4312/eventsource-umd/dist/index.umd.js
%%DATADIR%%/resources/app/node_modules/@c4312/eventsource-umd/package.json
%%DATADIR%%/resources/app/node_modules/@microsoft/1ds-core-js/LICENSE.TXT
%%DATADIR%%/resources/app/node_modules/@microsoft/1ds-core-js/NOTICE
%%DATADIR%%/resources/app/node_modules/@microsoft/1ds-core-js/PRIVACY
@ -1287,20 +1287,6 @@ share/applications/code-oss.desktop
%%DATADIR%%/resources/app/node_modules/end-of-stream/LICENSE
%%DATADIR%%/resources/app/node_modules/end-of-stream/index.js
%%DATADIR%%/resources/app/node_modules/end-of-stream/package.json
%%DATADIR%%/resources/app/node_modules/eventsource-parser/LICENSE
%%DATADIR%%/resources/app/node_modules/eventsource-parser/dist/index.cjs
%%DATADIR%%/resources/app/node_modules/eventsource-parser/dist/index.cjs.map
%%DATADIR%%/resources/app/node_modules/eventsource-parser/dist/index.d.cts
%%DATADIR%%/resources/app/node_modules/eventsource-parser/dist/index.esm.js
%%DATADIR%%/resources/app/node_modules/eventsource-parser/dist/index.js
%%DATADIR%%/resources/app/node_modules/eventsource-parser/dist/stats.html
%%DATADIR%%/resources/app/node_modules/eventsource-parser/dist/stream.cjs
%%DATADIR%%/resources/app/node_modules/eventsource-parser/dist/stream.cjs.map
%%DATADIR%%/resources/app/node_modules/eventsource-parser/dist/stream.d.cts
%%DATADIR%%/resources/app/node_modules/eventsource-parser/dist/stream.esm.js
%%DATADIR%%/resources/app/node_modules/eventsource-parser/dist/stream.js
%%DATADIR%%/resources/app/node_modules/eventsource-parser/package.json
%%DATADIR%%/resources/app/node_modules/eventsource-parser/stream.js
%%DATADIR%%/resources/app/node_modules/expand-template/LICENSE
%%DATADIR%%/resources/app/node_modules/expand-template/index.js
%%DATADIR%%/resources/app/node_modules/expand-template/package.json
@ -2093,6 +2079,7 @@ share/applications/code-oss.desktop
%%DATADIR%%/resources/app/out/vs/platform/accessibilitySignal/browser/media/error.mp3
%%DATADIR%%/resources/app/out/vs/platform/accessibilitySignal/browser/media/foldedAreas.mp3
%%DATADIR%%/resources/app/out/vs/platform/accessibilitySignal/browser/media/format.mp3
%%DATADIR%%/resources/app/out/vs/platform/accessibilitySignal/browser/media/nextEditSuggestion.mp3
%%DATADIR%%/resources/app/out/vs/platform/accessibilitySignal/browser/media/progress.mp3
%%DATADIR%%/resources/app/out/vs/platform/accessibilitySignal/browser/media/quickFixes.mp3
%%DATADIR%%/resources/app/out/vs/platform/accessibilitySignal/browser/media/requestSent.mp3
@ -2105,6 +2092,7 @@ share/applications/code-oss.desktop
%%DATADIR%%/resources/app/out/vs/platform/accessibilitySignal/browser/media/taskCompleted.mp3
%%DATADIR%%/resources/app/out/vs/platform/accessibilitySignal/browser/media/taskFailed.mp3
%%DATADIR%%/resources/app/out/vs/platform/accessibilitySignal/browser/media/terminalBell.mp3
%%DATADIR%%/resources/app/out/vs/platform/accessibilitySignal/browser/media/terminalCommandSucceeded.mp3
%%DATADIR%%/resources/app/out/vs/platform/accessibilitySignal/browser/media/voiceRecordingStarted.mp3
%%DATADIR%%/resources/app/out/vs/platform/accessibilitySignal/browser/media/voiceRecordingStopped.mp3
%%DATADIR%%/resources/app/out/vs/platform/accessibilitySignal/browser/media/warning.mp3
@ -2141,6 +2129,7 @@ share/applications/code-oss.desktop
%%DATADIR%%/resources/app/out/vs/workbench/contrib/webview/browser/pre/index-no-csp.html
%%DATADIR%%/resources/app/out/vs/workbench/contrib/webview/browser/pre/index.html
%%DATADIR%%/resources/app/out/vs/workbench/contrib/webview/browser/pre/service-worker.js
%%DATADIR%%/resources/app/out/vs/workbench/contrib/welcomeGettingStarted/common/media/ai-powered-suggestions.svg
%%DATADIR%%/resources/app/out/vs/workbench/contrib/welcomeGettingStarted/common/media/commandPalette.svg
%%DATADIR%%/resources/app/out/vs/workbench/contrib/welcomeGettingStarted/common/media/dark-hc.png
%%DATADIR%%/resources/app/out/vs/workbench/contrib/welcomeGettingStarted/common/media/dark.png