Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] vscode: update to 1.72.0
@ 2022-10-06 20:12 atk
  2022-10-06 20:42 ` [PR PATCH] [Merged]: " paper42
  0 siblings, 1 reply; 2+ messages in thread
From: atk @ 2022-10-06 20:12 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1234 bytes --]

There is a new pull request by atk against master on the void-packages repository

https://github.com/atk/void-packages vscode-1.72.0
https://github.com/void-linux/void-packages/pull/39782

vscode: update to 1.72.0
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/39782.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-vscode-1.72.0-39782.patch --]
[-- Type: text/x-diff, Size: 2928 bytes --]

From 557a2e0e383ac8a8a50a230033289eadb39e8498 Mon Sep 17 00:00:00 2001
From: Alex Lohr <alexthkloss@web.de>
Date: Thu, 6 Oct 2022 22:11:53 +0200
Subject: [PATCH] vscode: update to 1.72.0

---
 srcpkgs/vscode/patches/disable-crash-reporter.patch | 13 +++++--------
 srcpkgs/vscode/template                             |  4 ++--
 2 files changed, 7 insertions(+), 10 deletions(-)

diff --git a/srcpkgs/vscode/patches/disable-crash-reporter.patch b/srcpkgs/vscode/patches/disable-crash-reporter.patch
index dac81e3341c4..579001d74851 100644
--- a/srcpkgs/vscode/patches/disable-crash-reporter.patch
+++ b/srcpkgs/vscode/patches/disable-crash-reporter.patch
@@ -14,12 +14,12 @@ So, disable it entirely. No cookies for you, Visual Studio Code team.
  3 files changed, 1 insertion(+), 20 deletions(-)
 
 diff --git a/src/main.js b/src/main.js
-index ad838aa245e..e6319e100b9 100644
+index f7e6e49a967..88513af6dec 100644
 --- a/src/main.js
 +++ b/src/main.js
-@@ -46,22 +46,6 @@ const codeCachePath = getCodeCachePath();
- // Configure static command line arguments
- const argvConfig = configureCommandlineSwitchesSync(args);
+@@ -46,21 +46,6 @@ const argvConfig = configureCommandlineSwitchesSync(args);
+ // Disable default menu (https://github.com/electron/electron/issues/35512)
+ Menu.setApplicationMenu(null);
  
 -// Configure crash reporter
 -perf.mark('code/willStartCrashReporter');
@@ -31,8 +31,7 @@ index ad838aa245e..e6319e100b9 100644
 -// * --disable-crash-reporter command line parameter is not set
 -//
 -// Disable crash reporting in all other cases.
--if (args['crash-reporter-directory'] ||
--	(argvConfig['enable-crash-reporter'] && !args['disable-crash-reporter'])) {
+-if (args['crash-reporter-directory'] || (argvConfig['enable-crash-reporter'] && !args['disable-crash-reporter'])) {
 -	configureCrashReporter();
 -}
 -perf.mark('code/didStartCrashReporter');
@@ -40,5 +39,3 @@ index ad838aa245e..e6319e100b9 100644
  // Set logs path before app 'ready' event if running portable
  // to ensure that no 'logs' folder is created on disk at a
  // location outside of the portable directory
--- 
-2.32.0
diff --git a/srcpkgs/vscode/template b/srcpkgs/vscode/template
index 5d04c9e123e4..437c14d230cd 100644
--- a/srcpkgs/vscode/template
+++ b/srcpkgs/vscode/template
@@ -1,6 +1,6 @@
 # Template file for 'vscode'
 pkgname=vscode
-version=1.71.2
+version=1.72.0
 revision=1
 _electronver=19.0.8
 _npmver=8.6.0
@@ -12,7 +12,7 @@ maintainer="shizonic <realtiaz@gmail.com>, Alex Lohr <alex.lohr@logmein.com>"
 license="MIT"
 homepage="https://code.visualstudio.com/"
 distfiles="https://github.com/microsoft/vscode/archive/refs/tags/${version}.tar.gz"
-checksum=e30d9d970d62185e021ee069106e71bec1488883650d09e4d987edca9b5b14fc
+checksum=a0cf50ca42df4c68f08c239dd07316620443f9af3c8a3754f805c2ab8704c2d9
 nocross=yes # x64 build does not cut it, it contains native code
 
 if [ "$XBPS_TARGET_WORDSIZE" = "32" ]; then

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PR PATCH] [Merged]: vscode: update to 1.72.0
  2022-10-06 20:12 [PR PATCH] vscode: update to 1.72.0 atk
@ 2022-10-06 20:42 ` paper42
  0 siblings, 0 replies; 2+ messages in thread
From: paper42 @ 2022-10-06 20:42 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1085 bytes --]

There's a merged pull request on the void-packages repository

vscode: update to 1.72.0
https://github.com/void-linux/void-packages/pull/39782

Description:
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-10-06 20:42 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-06 20:12 [PR PATCH] vscode: update to 1.72.0 atk
2022-10-06 20:42 ` [PR PATCH] [Merged]: " paper42

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).