summaryrefslogtreecommitdiff
path: root/x11-toolkits
diff options
context:
space:
mode:
Diffstat (limited to 'x11-toolkits')
-rw-r--r--x11-toolkits/aquamarine/Makefile1
-rw-r--r--x11-toolkits/como/files/patch-CMakeLists.txt17
-rw-r--r--x11-toolkits/como/files/patch-como-config.cmake.in13
-rw-r--r--x11-toolkits/como/files/patch-plugins_qpa_CMakeLists.txt15
-rw-r--r--x11-toolkits/como/files/patch-plugins_qpa_integration.cpp20
-rw-r--r--x11-toolkits/hyprtoolkit/Makefile1
-rw-r--r--x11-toolkits/pangolin/pkg-plist28
-rw-r--r--x11-toolkits/rubygem-gdk3/Makefile2
-rw-r--r--x11-toolkits/rubygem-gdk3/distinfo6
-rw-r--r--x11-toolkits/rubygem-gdk4/Makefile2
-rw-r--r--x11-toolkits/rubygem-gdk4/distinfo6
-rw-r--r--x11-toolkits/rubygem-gsk4/Makefile2
-rw-r--r--x11-toolkits/rubygem-gsk4/distinfo6
-rw-r--r--x11-toolkits/rubygem-gtk3/Makefile2
-rw-r--r--x11-toolkits/rubygem-gtk3/distinfo6
-rw-r--r--x11-toolkits/rubygem-gtk4/Makefile2
-rw-r--r--x11-toolkits/rubygem-gtk4/distinfo6
-rw-r--r--x11-toolkits/rubygem-gtksourceview3/Makefile2
-rw-r--r--x11-toolkits/rubygem-gtksourceview3/distinfo6
-rw-r--r--x11-toolkits/rubygem-gtksourceview4/Makefile2
-rw-r--r--x11-toolkits/rubygem-gtksourceview4/distinfo6
-rw-r--r--x11-toolkits/rubygem-pango/Makefile2
-rw-r--r--x11-toolkits/rubygem-pango/distinfo6
-rw-r--r--x11-toolkits/rubygem-poppler/Makefile2
-rw-r--r--x11-toolkits/rubygem-poppler/distinfo6
-rw-r--r--x11-toolkits/rubygem-vte3/Makefile2
-rw-r--r--x11-toolkits/rubygem-vte3/distinfo6
-rw-r--r--x11-toolkits/rubygem-vte4/Makefile2
-rw-r--r--x11-toolkits/rubygem-vte4/distinfo6
29 files changed, 125 insertions, 58 deletions
diff --git a/x11-toolkits/aquamarine/Makefile b/x11-toolkits/aquamarine/Makefile
index 989f977a2589..de76d4f5b8ac 100644
--- a/x11-toolkits/aquamarine/Makefile
+++ b/x11-toolkits/aquamarine/Makefile
@@ -1,6 +1,7 @@
PORTNAME= aquamarine
DISTVERSIONPREFIX= v
DISTVERSION= 0.10.0
+PORTREVISION= 1
CATEGORIES= x11-toolkits
MAINTAINER= tagattie@FreeBSD.org
diff --git a/x11-toolkits/como/files/patch-CMakeLists.txt b/x11-toolkits/como/files/patch-CMakeLists.txt
new file mode 100644
index 000000000000..df67175e66bc
--- /dev/null
+++ b/x11-toolkits/como/files/patch-CMakeLists.txt
@@ -0,0 +1,17 @@
+Since Qt 6.9.0, the GuiPrivate target has had it's own CMake config, but
+beginning with Qt 6.10.0, this must be found separately.
+
+--- CMakeLists.txt.orig 2024-10-09 12:19:16 UTC
++++ CMakeLists.txt
+@@ -47,6 +47,11 @@ find_package(Qt6 ${QT_MIN_VERSION} CONFIG REQUIRED COM
+ UiTools
+ Widgets
+ )
++if(Qt6_VERSION VERSION_GREATER_EQUAL 6.10.0)
++ find_package(Qt6 6.10.0 CONFIG REQUIRED COMPONENTS
++ GuiPrivate
++ )
++endif()
+
+ find_package(Qt6Test ${QT_MIN_VERSION} CONFIG QUIET)
+ set_package_properties(Qt6Test PROPERTIES
diff --git a/x11-toolkits/como/files/patch-como-config.cmake.in b/x11-toolkits/como/files/patch-como-config.cmake.in
new file mode 100644
index 000000000000..2f9e3f741f4f
--- /dev/null
+++ b/x11-toolkits/como/files/patch-como-config.cmake.in
@@ -0,0 +1,13 @@
+Export Qt6::GuiPrivate to consumers. This is required since Qt 6.10.0.
+
+--- como-config.cmake.in.orig 2024-10-09 12:19:16 UTC
++++ como-config.cmake.in
+@@ -10,7 +10,7 @@ find_dependency(wlroots @WLROOTS_MIN_VERSION@)
+ find_dependency(epoxy)
+ find_dependency(Pixman)
+ find_dependency(wlroots @WLROOTS_MIN_VERSION@)
+-find_dependency(Qt6Gui @QT_MIN_VERSION@)
++find_dependency(Qt6 @QT_MIN_VERSION@ COMPONENTS Gui GuiPrivate)
+ find_dependency(KF6 @KF6_MIN_VERSION@ COMPONENTS
+ Auth
+ ColorScheme
diff --git a/x11-toolkits/como/files/patch-plugins_qpa_CMakeLists.txt b/x11-toolkits/como/files/patch-plugins_qpa_CMakeLists.txt
new file mode 100644
index 000000000000..a3a1e1b30637
--- /dev/null
+++ b/x11-toolkits/como/files/patch-plugins_qpa_CMakeLists.txt
@@ -0,0 +1,15 @@
+Remove unneeded Qt::CorePrivate target. Qt upstream has been cracking
+down on use of private headers/targets since 6.9.0 and keeping these
+unused targets is becoming increasingly problematic. This appears to
+be a carryover from Qt5.
+
+--- plugins/qpa/CMakeLists.txt.orig 2024-10-09 12:19:16 UTC
++++ plugins/qpa/CMakeLists.txt
+@@ -25,7 +25,6 @@ target_link_libraries(ComoQpaPlugin PRIVATE
+
+ target_link_libraries(ComoQpaPlugin PRIVATE
+ epoxy::epoxy
+- Qt::CorePrivate
+ Qt::GuiPrivate
+ Freetype::Freetype # Must be after Qt platform support libs
+ Fontconfig::Fontconfig
diff --git a/x11-toolkits/como/files/patch-plugins_qpa_integration.cpp b/x11-toolkits/como/files/patch-plugins_qpa_integration.cpp
new file mode 100644
index 000000000000..4424cdf8aa0d
--- /dev/null
+++ b/x11-toolkits/como/files/patch-plugins_qpa_integration.cpp
@@ -0,0 +1,20 @@
+Adapt for Qt 6.10.0. The private QPA header genericunixthemes_p.h was
+renamed to qgenericunixtheme_p.h.
+
+--- plugins/qpa/integration.cpp.orig 2024-10-09 12:19:16 UTC
++++ plugins/qpa/integration.cpp
+@@ -25,8 +25,13 @@ SPDX-License-Identifier: GPL-2.0-or-later
+ #include <qpa/qwindowsysteminterface.h>
+
+ #include <QtGui/private/qgenericunixfontdatabase_p.h>
+-#include <QtGui/private/qgenericunixthemes_p.h>
+ #include <QtGui/private/qunixeventdispatcher_qpa_p.h>
++
++#if QT_VERSION >= QT_VERSION_CHECK(6,10,0)
++#include <QtGui/private/qgenericunixtheme_p.h>
++#else
++#include <QtGui/private/qgenericunixthemes_p.h>
++#endif
+
+ #if !defined(QT_NO_ACCESSIBILITY_ATSPI_BRIDGE)
+ #include <QtGui/private/qspiaccessiblebridge_p.h>
diff --git a/x11-toolkits/hyprtoolkit/Makefile b/x11-toolkits/hyprtoolkit/Makefile
index eb3df6c22be0..03c737d94394 100644
--- a/x11-toolkits/hyprtoolkit/Makefile
+++ b/x11-toolkits/hyprtoolkit/Makefile
@@ -1,6 +1,7 @@
PORTNAME= hyprtoolkit
DISTVERSIONPREFIX= v
DISTVERSION= 0.4.0
+PORTREVISION= 1
CATEGORIES= x11-toolkits
MAINTAINER= tagattie@FreeBSD.org
diff --git a/x11-toolkits/pangolin/pkg-plist b/x11-toolkits/pangolin/pkg-plist
index bab76ab7d105..9788c4a73b63 100644
--- a/x11-toolkits/pangolin/pkg-plist
+++ b/x11-toolkits/pangolin/pkg-plist
@@ -202,44 +202,44 @@ lib/cmake/Pangolin/PangolinTargets-%%CMAKE_BUILD_TYPE%%.cmake
lib/cmake/Pangolin/PangolinTargets.cmake
lib/libpango_core.so
lib/libpango_core.so.0
-lib/libpango_core.so.0.9.2
+lib/libpango_core.so.0.9.4
lib/libpango_display.so
lib/libpango_display.so.0
-lib/libpango_display.so.0.9.2
+lib/libpango_display.so.0.9.4
lib/libpango_geometry.so
lib/libpango_geometry.so.0
-lib/libpango_geometry.so.0.9.2
+lib/libpango_geometry.so.0.9.4
lib/libpango_glgeometry.so
lib/libpango_glgeometry.so.0
-lib/libpango_glgeometry.so.0.9.2
+lib/libpango_glgeometry.so.0.9.4
lib/libpango_image.so
lib/libpango_image.so.0
-lib/libpango_image.so.0.9.2
+lib/libpango_image.so.0.9.4
lib/libpango_opengl.so
lib/libpango_opengl.so.0
-lib/libpango_opengl.so.0.9.2
+lib/libpango_opengl.so.0.9.4
lib/libpango_packetstream.so
lib/libpango_packetstream.so.0
-lib/libpango_packetstream.so.0.9.2
+lib/libpango_packetstream.so.0.9.4
lib/libpango_plot.so
lib/libpango_plot.so.0
-lib/libpango_plot.so.0.9.2
+lib/libpango_plot.so.0.9.4
lib/libpango_python.so
lib/libpango_scene.so
lib/libpango_scene.so.0
-lib/libpango_scene.so.0.9.2
+lib/libpango_scene.so.0.9.4
lib/libpango_tools.so
lib/libpango_tools.so.0
-lib/libpango_tools.so.0.9.2
+lib/libpango_tools.so.0.9.4
lib/libpango_vars.so
lib/libpango_vars.so.0
-lib/libpango_vars.so.0.9.2
+lib/libpango_vars.so.0.9.4
lib/libpango_video.so
lib/libpango_video.so.0
-lib/libpango_video.so.0.9.2
+lib/libpango_video.so.0.9.4
lib/libpango_windowing.so
lib/libpango_windowing.so.0
-lib/libpango_windowing.so.0.9.2
+lib/libpango_windowing.so.0.9.4
lib/libtinyobj.so
lib/libtinyobj.so.0
-lib/libtinyobj.so.0.9.2
+lib/libtinyobj.so.0.9.4
diff --git a/x11-toolkits/rubygem-gdk3/Makefile b/x11-toolkits/rubygem-gdk3/Makefile
index 80cd163f0f6b..6287f37a153a 100644
--- a/x11-toolkits/rubygem-gdk3/Makefile
+++ b/x11-toolkits/rubygem-gdk3/Makefile
@@ -1,5 +1,5 @@
PORTNAME= gdk3
-PORTVERSION= 4.3.3
+PORTVERSION= 4.3.4
CATEGORIES= x11-toolkits rubygems
MASTER_SITES= RG
diff --git a/x11-toolkits/rubygem-gdk3/distinfo b/x11-toolkits/rubygem-gdk3/distinfo
index 70a2febe6f9e..d89c2307c956 100644
--- a/x11-toolkits/rubygem-gdk3/distinfo
+++ b/x11-toolkits/rubygem-gdk3/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1757121930
-SHA256 (rubygem/gdk3-4.3.3.gem) = 170099166f8a072993926951c9987b5daa35fa51b48a3b386d63e648654edc2f
-SIZE (rubygem/gdk3-4.3.3.gem) = 36352
+TIMESTAMP = 1765033014
+SHA256 (rubygem/gdk3-4.3.4.gem) = 7a7a86a6741771a4dd8892848b652068c5d106fcf61c31150e6cfb94064e4768
+SIZE (rubygem/gdk3-4.3.4.gem) = 36352
diff --git a/x11-toolkits/rubygem-gdk4/Makefile b/x11-toolkits/rubygem-gdk4/Makefile
index b45505eeb81a..3d6de2ee2d09 100644
--- a/x11-toolkits/rubygem-gdk4/Makefile
+++ b/x11-toolkits/rubygem-gdk4/Makefile
@@ -1,5 +1,5 @@
PORTNAME= gdk4
-PORTVERSION= 4.3.3
+PORTVERSION= 4.3.4
CATEGORIES= x11-toolkits rubygems
MASTER_SITES= RG
diff --git a/x11-toolkits/rubygem-gdk4/distinfo b/x11-toolkits/rubygem-gdk4/distinfo
index 71276c1cc790..9ae500f5463d 100644
--- a/x11-toolkits/rubygem-gdk4/distinfo
+++ b/x11-toolkits/rubygem-gdk4/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1757121932
-SHA256 (rubygem/gdk4-4.3.3.gem) = 945328582af9983d4bae5635ea191449507bdf885595724571461032c08e1aa5
-SIZE (rubygem/gdk4-4.3.3.gem) = 30720
+TIMESTAMP = 1765033016
+SHA256 (rubygem/gdk4-4.3.4.gem) = bce441cf07e17dd7a62885d2d48430b5b532c719112faeca03c8c1b70a5e498b
+SIZE (rubygem/gdk4-4.3.4.gem) = 30720
diff --git a/x11-toolkits/rubygem-gsk4/Makefile b/x11-toolkits/rubygem-gsk4/Makefile
index 30cb1eeb666b..6121bc2e8e91 100644
--- a/x11-toolkits/rubygem-gsk4/Makefile
+++ b/x11-toolkits/rubygem-gsk4/Makefile
@@ -1,5 +1,5 @@
PORTNAME= gsk4
-PORTVERSION= 4.3.3
+PORTVERSION= 4.3.4
CATEGORIES= x11-toolkits rubygems
MASTER_SITES= RG
diff --git a/x11-toolkits/rubygem-gsk4/distinfo b/x11-toolkits/rubygem-gsk4/distinfo
index 3a485a2174cd..0e424e81c15d 100644
--- a/x11-toolkits/rubygem-gsk4/distinfo
+++ b/x11-toolkits/rubygem-gsk4/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1757120484
-SHA256 (rubygem/gsk4-4.3.3.gem) = 91485b700f4e3de9beb6eeb03501045c842c83b6c9523b2773aba14c561d4834
-SIZE (rubygem/gsk4-4.3.3.gem) = 15872
+TIMESTAMP = 1765033018
+SHA256 (rubygem/gsk4-4.3.4.gem) = be97b8c9a79ee860390bde14371147012427fe16ffa8de4de5e6c804610df781
+SIZE (rubygem/gsk4-4.3.4.gem) = 15872
diff --git a/x11-toolkits/rubygem-gtk3/Makefile b/x11-toolkits/rubygem-gtk3/Makefile
index 794a8f2c2f57..cbf37cc69d0a 100644
--- a/x11-toolkits/rubygem-gtk3/Makefile
+++ b/x11-toolkits/rubygem-gtk3/Makefile
@@ -1,5 +1,5 @@
PORTNAME= gtk3
-PORTVERSION= 4.3.3
+PORTVERSION= 4.3.4
CATEGORIES= x11-toolkits rubygems
MASTER_SITES= RG
diff --git a/x11-toolkits/rubygem-gtk3/distinfo b/x11-toolkits/rubygem-gtk3/distinfo
index 7e8c2dbe7bf1..abb1c03d160f 100644
--- a/x11-toolkits/rubygem-gtk3/distinfo
+++ b/x11-toolkits/rubygem-gtk3/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1757121934
-SHA256 (rubygem/gtk3-4.3.3.gem) = 01fbd4888603267ba3647460cf8878c5d83e98f325854f3ba869a21e126b0cf5
-SIZE (rubygem/gtk3-4.3.3.gem) = 867328
+TIMESTAMP = 1765033020
+SHA256 (rubygem/gtk3-4.3.4.gem) = d0560a076f0e73c6b1343a415b9f53105a1daeca72c2443fdc50f43fb637fdb3
+SIZE (rubygem/gtk3-4.3.4.gem) = 867328
diff --git a/x11-toolkits/rubygem-gtk4/Makefile b/x11-toolkits/rubygem-gtk4/Makefile
index 074b53bac37e..24bff9e5da2d 100644
--- a/x11-toolkits/rubygem-gtk4/Makefile
+++ b/x11-toolkits/rubygem-gtk4/Makefile
@@ -1,5 +1,5 @@
PORTNAME= gtk4
-PORTVERSION= 4.3.3
+PORTVERSION= 4.3.4
CATEGORIES= x11-toolkits rubygems
MASTER_SITES= RG
diff --git a/x11-toolkits/rubygem-gtk4/distinfo b/x11-toolkits/rubygem-gtk4/distinfo
index 47807cb47f65..fd7a4161ae86 100644
--- a/x11-toolkits/rubygem-gtk4/distinfo
+++ b/x11-toolkits/rubygem-gtk4/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1757121936
-SHA256 (rubygem/gtk4-4.3.3.gem) = b6cab5088b7868666bdcd5dcbf0ef60ec8e9c53e8d2bdd0c02b21ec560f94ef6
-SIZE (rubygem/gtk4-4.3.3.gem) = 96256
+TIMESTAMP = 1765033022
+SHA256 (rubygem/gtk4-4.3.4.gem) = d0959ac5c277eda706e2653bd3410ae3482645696602081587fbc2710093faa5
+SIZE (rubygem/gtk4-4.3.4.gem) = 96256
diff --git a/x11-toolkits/rubygem-gtksourceview3/Makefile b/x11-toolkits/rubygem-gtksourceview3/Makefile
index cede06982d18..6ffc20b621b5 100644
--- a/x11-toolkits/rubygem-gtksourceview3/Makefile
+++ b/x11-toolkits/rubygem-gtksourceview3/Makefile
@@ -1,5 +1,5 @@
PORTNAME= gtksourceview3
-PORTVERSION= 4.3.3
+PORTVERSION= 4.3.4
CATEGORIES= x11-toolkits rubygems
MASTER_SITES= RG
diff --git a/x11-toolkits/rubygem-gtksourceview3/distinfo b/x11-toolkits/rubygem-gtksourceview3/distinfo
index d72c39d5d416..50724435c5f3 100644
--- a/x11-toolkits/rubygem-gtksourceview3/distinfo
+++ b/x11-toolkits/rubygem-gtksourceview3/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1757121938
-SHA256 (rubygem/gtksourceview3-4.3.3.gem) = 5b74d87c056704b65109ae6a8b3068e6809a8ee5de73cff6385a044b7a085e9a
-SIZE (rubygem/gtksourceview3-4.3.3.gem) = 17408
+TIMESTAMP = 1765033024
+SHA256 (rubygem/gtksourceview3-4.3.4.gem) = dcd1229daf371adcf0e5dca3d6b368a784e6e124acb01c7f5bc89f981e48bf12
+SIZE (rubygem/gtksourceview3-4.3.4.gem) = 17408
diff --git a/x11-toolkits/rubygem-gtksourceview4/Makefile b/x11-toolkits/rubygem-gtksourceview4/Makefile
index 045072607f79..ecfb3ad2bc53 100644
--- a/x11-toolkits/rubygem-gtksourceview4/Makefile
+++ b/x11-toolkits/rubygem-gtksourceview4/Makefile
@@ -1,5 +1,5 @@
PORTNAME= gtksourceview4
-PORTVERSION= 4.3.3
+PORTVERSION= 4.3.4
CATEGORIES= x11-toolkits rubygems
MASTER_SITES= RG
diff --git a/x11-toolkits/rubygem-gtksourceview4/distinfo b/x11-toolkits/rubygem-gtksourceview4/distinfo
index f900c1a32fea..405ddd84320c 100644
--- a/x11-toolkits/rubygem-gtksourceview4/distinfo
+++ b/x11-toolkits/rubygem-gtksourceview4/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1757121940
-SHA256 (rubygem/gtksourceview4-4.3.3.gem) = 7c754e8688de65bee3f76bd27ca26e99e459dbf6fc71e05a051af47478ec8358
-SIZE (rubygem/gtksourceview4-4.3.3.gem) = 17408
+TIMESTAMP = 1765033026
+SHA256 (rubygem/gtksourceview4-4.3.4.gem) = 777abe158f84d0a4ffccaf9145dd4fabf6eb3f379b913e84399bb6310c425e75
+SIZE (rubygem/gtksourceview4-4.3.4.gem) = 17408
diff --git a/x11-toolkits/rubygem-pango/Makefile b/x11-toolkits/rubygem-pango/Makefile
index 4a3007b24492..9b7ecac1b0cc 100644
--- a/x11-toolkits/rubygem-pango/Makefile
+++ b/x11-toolkits/rubygem-pango/Makefile
@@ -1,5 +1,5 @@
PORTNAME= pango
-PORTVERSION= 4.3.3
+PORTVERSION= 4.3.4
CATEGORIES= x11-toolkits rubygems
MASTER_SITES= RG
diff --git a/x11-toolkits/rubygem-pango/distinfo b/x11-toolkits/rubygem-pango/distinfo
index a420923a7b57..980b155bd55d 100644
--- a/x11-toolkits/rubygem-pango/distinfo
+++ b/x11-toolkits/rubygem-pango/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1757121942
-SHA256 (rubygem/pango-4.3.3.gem) = 980da4ed23cde862b9c753b22219e3d29f32b9566b19f2acd17f19bc36c52edd
-SIZE (rubygem/pango-4.3.3.gem) = 25088
+TIMESTAMP = 1765033028
+SHA256 (rubygem/pango-4.3.4.gem) = c7d57383b0a547fa16ad1b51b5edf4102595c4631d53b2285619e2db06b57223
+SIZE (rubygem/pango-4.3.4.gem) = 25088
diff --git a/x11-toolkits/rubygem-poppler/Makefile b/x11-toolkits/rubygem-poppler/Makefile
index 2be385477648..a13b1c5d4d24 100644
--- a/x11-toolkits/rubygem-poppler/Makefile
+++ b/x11-toolkits/rubygem-poppler/Makefile
@@ -1,5 +1,5 @@
PORTNAME= poppler
-PORTVERSION= 4.3.3
+PORTVERSION= 4.3.4
CATEGORIES= x11-toolkits rubygems
MASTER_SITES= RG
diff --git a/x11-toolkits/rubygem-poppler/distinfo b/x11-toolkits/rubygem-poppler/distinfo
index 647b20c6f62f..3561f900239a 100644
--- a/x11-toolkits/rubygem-poppler/distinfo
+++ b/x11-toolkits/rubygem-poppler/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1757121944
-SHA256 (rubygem/poppler-4.3.3.gem) = a4f8e3388bd89a7be9eddecb0844231baf5bd0fdf000dfd4b214f74315ade3ca
-SIZE (rubygem/poppler-4.3.3.gem) = 95232
+TIMESTAMP = 1765033030
+SHA256 (rubygem/poppler-4.3.4.gem) = ae22aa868b36e72068a30ddc26f852917a89bc17f1f1b69feba7b931c3953ea7
+SIZE (rubygem/poppler-4.3.4.gem) = 95232
diff --git a/x11-toolkits/rubygem-vte3/Makefile b/x11-toolkits/rubygem-vte3/Makefile
index de5698b5d3ac..726d7cdf05b3 100644
--- a/x11-toolkits/rubygem-vte3/Makefile
+++ b/x11-toolkits/rubygem-vte3/Makefile
@@ -1,5 +1,5 @@
PORTNAME= vte3
-PORTVERSION= 4.3.3
+PORTVERSION= 4.3.4
CATEGORIES= x11-toolkits rubygems
MASTER_SITES= RG
diff --git a/x11-toolkits/rubygem-vte3/distinfo b/x11-toolkits/rubygem-vte3/distinfo
index f017649f696c..63d7ef9eed2b 100644
--- a/x11-toolkits/rubygem-vte3/distinfo
+++ b/x11-toolkits/rubygem-vte3/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1757121946
-SHA256 (rubygem/vte3-4.3.3.gem) = 7c82154b9ade3417bbd6d75b239b13a77b23267f9ee675b69b000e09b853be21
-SIZE (rubygem/vte3-4.3.3.gem) = 19456
+TIMESTAMP = 1765033032
+SHA256 (rubygem/vte3-4.3.4.gem) = cf045ff370bdf50c4e3a6cdcc8f46cd57b51d0b000c4e60b7c8da3c6d2bea0ae
+SIZE (rubygem/vte3-4.3.4.gem) = 19456
diff --git a/x11-toolkits/rubygem-vte4/Makefile b/x11-toolkits/rubygem-vte4/Makefile
index dc24cb569e74..0f5d449559d9 100644
--- a/x11-toolkits/rubygem-vte4/Makefile
+++ b/x11-toolkits/rubygem-vte4/Makefile
@@ -1,5 +1,5 @@
PORTNAME= vte4
-PORTVERSION= 4.3.3
+PORTVERSION= 4.3.4
CATEGORIES= x11-toolkits rubygems
MASTER_SITES= RG
diff --git a/x11-toolkits/rubygem-vte4/distinfo b/x11-toolkits/rubygem-vte4/distinfo
index 1aab42c6b907..d00cbab0c5dd 100644
--- a/x11-toolkits/rubygem-vte4/distinfo
+++ b/x11-toolkits/rubygem-vte4/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1757121948
-SHA256 (rubygem/vte4-4.3.3.gem) = 8cb905e499a967f2562a5e23079f4b74642308a12f2146d1269d8e87ef22d0ce
-SIZE (rubygem/vte4-4.3.3.gem) = 18944
+TIMESTAMP = 1765033034
+SHA256 (rubygem/vte4-4.3.4.gem) = b74f1a938532614b6c2211069f225749713a47aca2a955851a685bfb2e0af704
+SIZE (rubygem/vte4-4.3.4.gem) = 18944