summaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
Diffstat (limited to 'editors')
-rw-r--r--editors/encryptpad/Makefile9
-rw-r--r--editors/encryptpad/distinfo6
-rw-r--r--editors/vscode/Makefile1
-rw-r--r--editors/vscode/files/patch-src_vs_code_electron-main_app.ts10
4 files changed, 19 insertions, 7 deletions
diff --git a/editors/encryptpad/Makefile b/editors/encryptpad/Makefile
index ac79712b92da..0dc81c6e5d95 100644
--- a/editors/encryptpad/Makefile
+++ b/editors/encryptpad/Makefile
@@ -1,6 +1,7 @@
PORTNAME= encryptpad
DISTVERSIONPREFIX= v
DISTVERSION= 0.5.0.4
+PORTREVISION= 1
CATEGORIES= editors security
MAINTAINER= eduardo@FreeBSD.org
@@ -13,15 +14,15 @@ LICENSE_FILE= ${WRKSRC}/license.txt
LIB_DEPENDS= libbotan-3.so:security/botan3
USES= compiler:c++11-lang desktop-file-utils gl gmake pkgconfig \
- python:build qt:5 shared-mime-info
+ python:build qt:6 shared-mime-info
USE_GITHUB= yes
GH_ACCOUNT= evpo
GH_PROJECT= EncryptPad
-GH_TAGNAME= 3593110ddc83395815caa6a00ce9412161c173e7 # botan3 branch, 20240627
+GH_TAGNAME= a0360d132b1367a9ba5328253a1c4d402266b4bd # qt6 branch (plus botan3 support) 20250623
+USE_GL= opengl
+USE_QT= base svg
-USE_GL= gl
-USE_QT= core gui printsupport svg widgets buildtools:build qmake:build
BINARY_ALIAS= python3=${PYTHON_CMD} qmake=${QMAKE}
PORTDOCS= *
diff --git a/editors/encryptpad/distinfo b/editors/encryptpad/distinfo
index e3cbe85b22b1..3dd07d2b4138 100644
--- a/editors/encryptpad/distinfo
+++ b/editors/encryptpad/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1748299290
-SHA256 (evpo-EncryptPad-v0.5.0.4-3593110ddc83395815caa6a00ce9412161c173e7_GH0.tar.gz) = cd802cbb2cb883f83978c132462f02c432815c22ff7634a216d23664ca804793
-SIZE (evpo-EncryptPad-v0.5.0.4-3593110ddc83395815caa6a00ce9412161c173e7_GH0.tar.gz) = 18589358
+TIMESTAMP = 1750672369
+SHA256 (evpo-EncryptPad-v0.5.0.4-a0360d132b1367a9ba5328253a1c4d402266b4bd_GH0.tar.gz) = 501a9a8f8cbb728e41e76f962797f7c00b67ca4ac8646ee15590c4979cb1a3e0
+SIZE (evpo-EncryptPad-v0.5.0.4-a0360d132b1367a9ba5328253a1c4d402266b4bd_GH0.tar.gz) = 18742645
diff --git a/editors/vscode/Makefile b/editors/vscode/Makefile
index 40cc112e31a8..bc4b226d64bf 100644
--- a/editors/vscode/Makefile
+++ b/editors/vscode/Makefile
@@ -1,5 +1,6 @@
PORTNAME= vscode
DISTVERSION= 1.101.1
+PORTREVISION= 1
CATEGORIES= editors
MASTER_SITES= https://github.com/tagattie/FreeBSD-VSCode/releases/download/${DISTVERSION}/:node_modules
DISTFILES= vscode-node-modules-${DISTVERSION}${EXTRACT_SUFX}:node_modules \
diff --git a/editors/vscode/files/patch-src_vs_code_electron-main_app.ts b/editors/vscode/files/patch-src_vs_code_electron-main_app.ts
new file mode 100644
index 000000000000..023e708012a8
--- /dev/null
+++ b/editors/vscode/files/patch-src_vs_code_electron-main_app.ts
@@ -0,0 +1,10 @@
+--- src/vs/code/electron-main/app.ts.orig 2025-06-23 07:50:00 UTC
++++ src/vs/code/electron-main/app.ts
+@@ -990,6 +990,7 @@ export class CodeApplication extends Disposable {
+ break;
+
+ case 'linux':
++ case 'freebsd':
+ if (isLinuxSnap) {
+ services.set(IUpdateService, new SyncDescriptor(SnapUpdateService, [process.env['SNAP'], process.env['SNAP_REVISION']]));
+ } else {