pkgsrc-WIP-changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
kitty: cleaned up a bit
Module Name: pkgsrc-wip
Committed By: Kevin Bloom <kevin.bloom%posteo.net@localhost>
Pushed By: nuclearkev
Date: Wed May 29 11:10:43 2024 -0400
Changeset: 60f50e9e9fff7abf0756f826024c64e44f5f851a
Modified Files:
kitty/Makefile
kitty/PLIST
kitty/distinfo
kitty/go-modules.mk
kitty/patches/patch-glfw_wl__client__side__decorations.c
Added Files:
kitty/COMMIT_MSG
Log Message:
kitty: cleaned up a bit
To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=60f50e9e9fff7abf0756f826024c64e44f5f851a
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
diffstat:
kitty/COMMIT_MSG | 49 ++++++++++
kitty/Makefile | 17 ++--
kitty/PLIST | 103 +++++++++++++++++++--
kitty/distinfo | 5 +-
kitty/go-modules.mk | 1 -
.../patch-glfw_wl__client__side__decorations.c | 2 +
6 files changed, 152 insertions(+), 25 deletions(-)
diffs:
diff --git a/kitty/COMMIT_MSG b/kitty/COMMIT_MSG
new file mode 100644
index 0000000000..7f0345b392
--- /dev/null
+++ b/kitty/COMMIT_MSG
@@ -0,0 +1,49 @@
+kitty: update to 0.35.0
+
+Packaging updates:
+- use go122, which is required now
+- removed options.mk since the wayland shared lib is built regardless
+
+Upstream updates:
+0.35.0:
+- kitten @ run: A new remote control command to run a process on the
+ machine kitty is running on and get its output
+- notify_on_cmd_finish: Show the actual command that was finished
+- hints kitten: Allow clicking on matched text to select it in
+ addition to typing the hint
+- Shell integration: Make the currently executing cmdline available
+ as a window variable in kitty
+- paste_actions: Fix replace-newline not working with confirm
+- Graphics: Fix aspect ratio of images not being preserved when only a
+ single dimension of the destination rectangle is specified
+- focus_visible_window: Fix selecting with mouse click leaving
+ keyboard in unusable state
+- Desktop notifications protocol: Add support for specifying urgency
+- Improve rendering of Unicode shade character to avoid Moire patterns
+- kitten @ send-key: Fix some keys being sent in kitty keyboard
+ protocol encoding when not using socket for remote control
+- Don't clear selections on erase in screen commands unless the
+ erased region intersects a selection
+- Allow more types of alignment for placement_strategy
+- Add some more box-drawing characters
+- Linux: Run all child processes in their own systemd scope to
+ prevent the OOM killer from harvesting kitty when a child process
+ misbehaves
+- Mouse reporting: Fix horizontal scroll events inverted
+- Remote control: @ action: Fix some actions being performed on the
+ active window instead of the matched window
+- Scrolling with mouse wheel when a selection is active should update
+ the selection
+- Fix kitten @ set-background-opacity limited to min opacity of 0.1
+ instead of 0
+- launch --hold: Fix hold not working if kernel signals process group
+ with SIGINT
+- macOS: Fix --start-as=fullscreen not working when another window is
+ already fullscreen
+- Add option kitten @ detach-window --stay-in-tab to keep focus in
+ the currently active tab when moving windows
+- macOS: Fix changieg window chrome/colors while in traditional
+ fullscreen causing the titlebar to become visible
+
+To see the rest of the updates:
+https://sw.kovidgoyal.net/kitty/changelog/#detailed-list-of-changes
diff --git a/kitty/Makefile b/kitty/Makefile
index c601774c72..a6a35085c5 100644
--- a/kitty/Makefile
+++ b/kitty/Makefile
@@ -12,7 +12,7 @@ HOMEPAGE= https://sw.kovidgoyal.net/kitty/index.html
COMMENT= GPU based terminal emulator
LICENSE= gnu-gpl-v3
-TOOL_DEPENDS+= go122>=1.22:../../lang/go122
+GO_VERSION_REQD+= 122
USE_LANGUAGES= c
USE_TOOLS+= gmake pkg-config
@@ -20,7 +20,6 @@ USE_TOOLS+= gmake pkg-config
USE_CXX_FEATURES+= has_include
# go
-MKPIE_SUPPORTED= no
CHECK_RELRO_SKIP+= bin/kitten
CHECK_WRKREF_SKIP+= bin/kitten
@@ -47,13 +46,13 @@ pre-configure:
do-build:
cd ${WRKSRC} && ${MAKE_ENV} ${PYTHONBIN} setup.py linux-package
-#do-install:
+do-install:
cd ${WRKSRC} && ${MAKE_ENV} ${PYTHONBIN} setup.py linux-package \
--prefix ${DESTDIR}${PREFIX}
- ${MV} ${DESTDIR}${PREFIX}/share/man/man1/kitty.1 \
- ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/kitty.1 || ${TRUE}
- ${MV} ${DESTDIR}${PREFIX}/share/man/man5/kitty.conf.5 \
- ${DESTDIR}${PREFIX}/${PKGMANDIR}/man5/kitty.conf.5 || ${TRUE}
+ ${MV} ${DESTDIR}${PREFIX}/share/man/man1/* \
+ ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/ || ${TRUE}
+ ${MV} ${DESTDIR}${PREFIX}/share/man/man5/* \
+ ${DESTDIR}${PREFIX}/${PKGMANDIR}/man5/ || ${TRUE}
# pkgsrc framwork only handles optimization level 1 files correctly
${FIND} ${DESTDIR} -type f -name *.opt-2.pyc -print0 | ${XARGS} -0 ${RM} -rf
${FIND} ${DESTDIR} -name '*.orig' -exec rm -rf '{}' ';'
@@ -61,9 +60,6 @@ do-build:
.include "go-modules.mk"
-.include "../../lang/go/go-module.mk"
-MAKE_ENV+= GOTOOLCHAIN=go1.22.3
-
.include "../../mk/bsd.prefs.mk"
.if ${OPSYS} != "Darwin"
@@ -88,6 +84,7 @@ MAKE_ENV+= GOTOOLCHAIN=go1.22.3
.include "../../x11/libXinerama/buildlink3.mk"
.include "../../x11/libXrandr/buildlink3.mk"
.include "../../x11/libxkbcommon/buildlink3.mk"
+.include "../../lang/go/go-module.mk"
.include "../../lang/python/application.mk"
.include "../../lang/python/extension.mk"
.include "../../lang/python/tool.mk"
diff --git a/kitty/PLIST b/kitty/PLIST
index c352982fd7..74f9a1c3d6 100644
--- a/kitty/PLIST
+++ b/kitty/PLIST
@@ -49,12 +49,12 @@ lib/kitty/kittens/icat/__init__.pyo
lib/kitty/kittens/icat/main.py
lib/kitty/kittens/icat/main.pyc
lib/kitty/kittens/icat/main.pyo
-lib/kitty/kittens/mouse_demo/__init__.py
-lib/kitty/kittens/mouse_demo/__init__.pyc
-lib/kitty/kittens/mouse_demo/__init__.pyo
-lib/kitty/kittens/mouse_demo/main.py
-lib/kitty/kittens/mouse_demo/main.pyc
-lib/kitty/kittens/mouse_demo/main.pyo
+lib/kitty/kittens/pager/__init__.py
+lib/kitty/kittens/pager/__init__.pyc
+lib/kitty/kittens/pager/__init__.pyo
+lib/kitty/kittens/pager/main.py
+lib/kitty/kittens/pager/main.pyc
+lib/kitty/kittens/pager/main.pyo
lib/kitty/kittens/panel/__init__.py
lib/kitty/kittens/panel/__init__.pyc
lib/kitty/kittens/panel/__init__.pyo
@@ -323,6 +323,9 @@ lib/kitty/kitty/os_window_size.pyo
lib/kitty/kitty/rc/__init__.py
lib/kitty/kitty/rc/__init__.pyc
lib/kitty/kitty/rc/__init__.pyo
+lib/kitty/kitty/rc/action.py
+lib/kitty/kitty/rc/action.pyc
+lib/kitty/kitty/rc/action.pyo
lib/kitty/kitty/rc/base.py
lib/kitty/kitty/rc/base.pyc
lib/kitty/kitty/rc/base.pyo
@@ -371,6 +374,9 @@ lib/kitty/kitty/rc/last_used_layout.pyo
lib/kitty/kitty/rc/launch.py
lib/kitty/kitty/rc/launch.pyc
lib/kitty/kitty/rc/launch.pyo
+lib/kitty/kitty/rc/load_config.py
+lib/kitty/kitty/rc/load_config.pyc
+lib/kitty/kitty/rc/load_config.pyo
lib/kitty/kitty/rc/ls.py
lib/kitty/kitty/rc/ls.pyc
lib/kitty/kitty/rc/ls.pyo
@@ -386,12 +392,18 @@ lib/kitty/kitty/rc/resize_os_window.pyo
lib/kitty/kitty/rc/resize_window.py
lib/kitty/kitty/rc/resize_window.pyc
lib/kitty/kitty/rc/resize_window.pyo
+lib/kitty/kitty/rc/run.py
+lib/kitty/kitty/rc/run.pyc
+lib/kitty/kitty/rc/run.pyo
lib/kitty/kitty/rc/scroll_window.py
lib/kitty/kitty/rc/scroll_window.pyc
lib/kitty/kitty/rc/scroll_window.pyo
lib/kitty/kitty/rc/select_window.py
lib/kitty/kitty/rc/select_window.pyc
lib/kitty/kitty/rc/select_window.pyo
+lib/kitty/kitty/rc/send_key.py
+lib/kitty/kitty/rc/send_key.pyc
+lib/kitty/kitty/rc/send_key.pyo
lib/kitty/kitty/rc/send_text.py
lib/kitty/kitty/rc/send_text.pyc
lib/kitty/kitty/rc/send_text.pyo
@@ -505,15 +517,75 @@ lib/kitty/shell-integration/zsh/kitty.zsh
lib/kitty/terminfo/kitty.termcap
lib/kitty/terminfo/kitty.terminfo
lib/kitty/terminfo/x/xterm-kitty
+man/man1/kitten-@-action.1
+man/man1/kitten-@-close-tab.1
+man/man1/kitten-@-close-window.1
+man/man1/kitten-@-create-marker.1
+man/man1/kitten-@-detach-tab.1
+man/man1/kitten-@-detach-window.1
+man/man1/kitten-@-disable-ligatures.1
+man/man1/kitten-@-env.1
+man/man1/kitten-@-focus-tab.1
+man/man1/kitten-@-focus-window.1
+man/man1/kitten-@-get-colors.1
+man/man1/kitten-@-get-text.1
+man/man1/kitten-@-goto-layout.1
+man/man1/kitten-@-kitten.1
+man/man1/kitten-@-last-used-layout.1
+man/man1/kitten-@-launch.1
+man/man1/kitten-@-load-config.1
+man/man1/kitten-@-ls.1
+man/man1/kitten-@-new-window.1
+man/man1/kitten-@-remove-marker.1
+man/man1/kitten-@-resize-os-window.1
+man/man1/kitten-@-resize-window.1
+man/man1/kitten-@-run.1
+man/man1/kitten-@-scroll-window.1
+man/man1/kitten-@-select-window.1
+man/man1/kitten-@-send-key.1
+man/man1/kitten-@-send-text.1
+man/man1/kitten-@-set-background-image.1
+man/man1/kitten-@-set-background-opacity.1
+man/man1/kitten-@-set-colors.1
+man/man1/kitten-@-set-enabled-layouts.1
+man/man1/kitten-@-set-font-size.1
+man/man1/kitten-@-set-spacing.1
+man/man1/kitten-@-set-tab-color.1
+man/man1/kitten-@-set-tab-title.1
+man/man1/kitten-@-set-user-vars.1
+man/man1/kitten-@-set-window-logo.1
+man/man1/kitten-@-set-window-title.1
+man/man1/kitten-@-signal-child.1
+man/man1/kitten-@.1
+man/man1/kitten-ask.1
+man/man1/kitten-broadcast.1
+man/man1/kitten-clipboard.1
+man/man1/kitten-diff.1
+man/man1/kitten-edit-in-kitty.1
+man/man1/kitten-hints.1
+man/man1/kitten-hyperlinked-grep.1
+man/man1/kitten-icat.1
+man/man1/kitten-mouse-demo.1
+man/man1/kitten-panel.1
+man/man1/kitten-query-terminal.1
+man/man1/kitten-remote-file.1
+man/man1/kitten-run-shell.1
+man/man1/kitten-show-key.1
+man/man1/kitten-ssh.1
+man/man1/kitten-themes.1
+man/man1/kitten-transfer.1
+man/man1/kitten-unicode-input.1
+man/man1/kitten-update-self.1
+man/man1/kitten.1
man/man1/kitty.1
man/man5/kitty.conf.5
share/applications/kitty-open.desktop
share/applications/kitty.desktop
share/doc/kitty/html/.buildinfo
share/doc/kitty/html/.nojekyll
-share/doc/kitty/html/_downloads/1792bad15b12979994cd6ecc54c967a6/rowcolumn-diacritics.txt
share/doc/kitty/html/_downloads/433dadebd0bf504f8b008985378086ce/kitty.conf
share/doc/kitty/html/_downloads/a489ebbb52d84eeb19a12b2fda7debda/diff.conf
+share/doc/kitty/html/_downloads/f0a0de9ec8d9ff4456206db8e0814937/rowcolumn-diacritics.txt
share/doc/kitty/html/_images/diff.png
share/doc/kitty/html/_images/hints_mode.png
share/doc/kitty/html/_images/panel.png
@@ -522,7 +594,7 @@ share/doc/kitty/html/_images/screenshot.png
share/doc/kitty/html/_images/social_previews/summary_actions_1745a1bd.png
share/doc/kitty/html/_images/social_previews/summary_binary_478594b0.png
share/doc/kitty/html/_images/social_previews/summary_build_7ee1e14e.png
-share/doc/kitty/html/_images/social_previews/summary_changelog_439aee19.png
+share/doc/kitty/html/_images/social_previews/summary_changelog_0413c894.png
share/doc/kitty/html/_images/social_previews/summary_clipboard_673291d1.png
share/doc/kitty/html/_images/social_previews/summary_color-stack_587105f7.png
share/doc/kitty/html/_images/social_previews/summary_conf_6d817f14.png
@@ -531,7 +603,8 @@ share/doc/kitty/html/_images/social_previews/summary_desktop-notifications_9e556
share/doc/kitty/html/_images/social_previews/summary_faq_6acfb156.png
share/doc/kitty/html/_images/social_previews/summary_file-transfer-protocol_67d60cd4.png
share/doc/kitty/html/_images/social_previews/summary_generated_launch_2c8ae1a7.png
-share/doc/kitty/html/_images/social_previews/summary_generated_rc_1e263193.png
+share/doc/kitty/html/_images/social_previews/summary_generated_matching_f5ed7c14.png
+share/doc/kitty/html/_images/social_previews/summary_generated_rc_4121b4bb.png
share/doc/kitty/html/_images/social_previews/summary_generated_ssh-copy_26aa9e71.png
share/doc/kitty/html/_images/social_previews/summary_glossary_e93f6fff.png
share/doc/kitty/html/_images/social_previews/summary_graphics-protocol_96eb2627.png
@@ -548,7 +621,7 @@ share/doc/kitty/html/_images/social_previews/summary_kittens_hints_cf0d0da9.png
share/doc/kitty/html/_images/social_previews/summary_kittens_hyperlinked_grep_bce050dc.png
share/doc/kitty/html/_images/social_previews/summary_kittens_icat_8f870112.png
share/doc/kitty/html/_images/social_previews/summary_kittens_intro_2aa247aa.png
-share/doc/kitty/html/_images/social_previews/summary_kittens_panel_60319d79.png
+share/doc/kitty/html/_images/social_previews/summary_kittens_panel_acc427d1.png
share/doc/kitty/html/_images/social_previews/summary_kittens_query_terminal_bcf6bdb9.png
share/doc/kitty/html/_images/social_previews/summary_kittens_remote_file_c5782e6e.png
share/doc/kitty/html/_images/social_previews/summary_kittens_ssh_d0cb65fa.png
@@ -557,11 +630,13 @@ share/doc/kitty/html/_images/social_previews/summary_kittens_transfer_009949a9.p
share/doc/kitty/html/_images/social_previews/summary_kittens_unicode_input_f1ba948b.png
share/doc/kitty/html/_images/social_previews/summary_launch_717c78bb.png
share/doc/kitty/html/_images/social_previews/summary_layouts_49b07683.png
+share/doc/kitty/html/_images/social_previews/summary_mapping_aea5afa6.png
share/doc/kitty/html/_images/social_previews/summary_marks_66066db1.png
share/doc/kitty/html/_images/social_previews/summary_open_actions_c69b3759.png
share/doc/kitty/html/_images/social_previews/summary_overview_249bd848.png
share/doc/kitty/html/_images/social_previews/summary_performance_76c80d2e.png
share/doc/kitty/html/_images/social_previews/summary_pipe_168d77ad.png
+share/doc/kitty/html/_images/social_previews/summary_pointer-shapes_96e448ee.png
share/doc/kitty/html/_images/social_previews/summary_press-mentions_3ce20e22.png
share/doc/kitty/html/_images/social_previews/summary_protocol-extensions_ea5204ed.png
share/doc/kitty/html/_images/social_previews/summary_quickstart_9d1a56df.png
@@ -587,6 +662,7 @@ share/doc/kitty/html/_sources/desktop-notifications.rst.txt
share/doc/kitty/html/_sources/faq.rst.txt
share/doc/kitty/html/_sources/file-transfer-protocol.rst.txt
share/doc/kitty/html/_sources/generated/launch.rst.txt
+share/doc/kitty/html/_sources/generated/matching.rst.txt
share/doc/kitty/html/_sources/generated/rc.rst.txt
share/doc/kitty/html/_sources/generated/ssh-copy.rst.txt
share/doc/kitty/html/_sources/glossary.rst.txt
@@ -613,11 +689,13 @@ share/doc/kitty/html/_sources/kittens/unicode_input.rst.txt
share/doc/kitty/html/_sources/kittens_intro.rst.txt
share/doc/kitty/html/_sources/launch.rst.txt
share/doc/kitty/html/_sources/layouts.rst.txt
+share/doc/kitty/html/_sources/mapping.rst.txt
share/doc/kitty/html/_sources/marks.rst.txt
share/doc/kitty/html/_sources/open_actions.rst.txt
share/doc/kitty/html/_sources/overview.rst.txt
share/doc/kitty/html/_sources/performance.rst.txt
share/doc/kitty/html/_sources/pipe.rst.txt
+share/doc/kitty/html/_sources/pointer-shapes.rst.txt
share/doc/kitty/html/_sources/press-mentions.rst.txt
share/doc/kitty/html/_sources/protocol-extensions.rst.txt
share/doc/kitty/html/_sources/quickstart.rst.txt
@@ -671,6 +749,7 @@ share/doc/kitty/html/desktop-notifications.html
share/doc/kitty/html/faq.html
share/doc/kitty/html/file-transfer-protocol.html
share/doc/kitty/html/generated/launch.html
+share/doc/kitty/html/generated/matching.html
share/doc/kitty/html/generated/rc.html
share/doc/kitty/html/generated/ssh-copy.html
share/doc/kitty/html/genindex.html
@@ -698,12 +777,14 @@ share/doc/kitty/html/kittens/unicode_input.html
share/doc/kitty/html/kittens_intro.html
share/doc/kitty/html/launch.html
share/doc/kitty/html/layouts.html
+share/doc/kitty/html/mapping.html
share/doc/kitty/html/marks.html
share/doc/kitty/html/objects.inv
share/doc/kitty/html/open_actions.html
share/doc/kitty/html/overview.html
share/doc/kitty/html/performance.html
share/doc/kitty/html/pipe.html
+share/doc/kitty/html/pointer-shapes.html
share/doc/kitty/html/press-mentions.html
share/doc/kitty/html/protocol-extensions.html
share/doc/kitty/html/quickstart.html
@@ -718,3 +799,5 @@ share/doc/kitty/html/unscroll.html
share/icons/hicolor/256x256/apps/kitty.png
share/icons/hicolor/scalable/apps/kitty.svg
share/terminfo/x/xterm-kitty
+@pkgdir share/man/man5
+@pkgdir share/man/man1
diff --git a/kitty/distinfo b/kitty/distinfo
index 2feebb898b..c480d4e6f1 100644
--- a/kitty/distinfo
+++ b/kitty/distinfo
@@ -183,9 +183,6 @@ Size (github.com_zeebo_xxh3_@v_v1.0.2.mod) = 165 bytes
BLAKE2s (github.com_zeebo_xxh3_@v_v1.0.2.zip) = bb6ff2848f4892c94d1c0f80f8ae508446524b0bbc246b63702dc91d8b1b99fb
SHA512 (github.com_zeebo_xxh3_@v_v1.0.2.zip) = 866fc346b6db9af6550dc689e9c7632a23649ad4b20688867d2b462c4ec3bc9857edb3acfae037a9e07d5f4ba9d03d18a0a5af48c1a7e43f93b024ac448b41cd
Size (github.com_zeebo_xxh3_@v_v1.0.2.zip) = 271026 bytes
-BLAKE2s (golang.org_toolchain_@v_v0.0.1-go1.22.3.netbsd-amd64.zip) = 85d8cb74bb2dbde042a4078b8e31c9c0f1e27bd243ba0f85692ddbeadbc71885
-SHA512 (golang.org_toolchain_@v_v0.0.1-go1.22.3.netbsd-amd64.zip) = d0aa4e3d031fddb2871507db17f7206ab52af9bd540ec630986f3c416dcab9f86e999e555d7088858cd442c3b8f39c07691c1a174a4f043a4d109990950310d1
-Size (golang.org_toolchain_@v_v0.0.1-go1.22.3.netbsd-amd64.zip) = 72588387 bytes
BLAKE2s (golang.org_x_exp_@v_v0.0.0-20230801115018-d63ba01acd4b.mod) = 63017412b807845c89865e91d84d10cfd4d237b0768c60ab6d4ad88c0bd6db53
SHA512 (golang.org_x_exp_@v_v0.0.0-20230801115018-d63ba01acd4b.mod) = 74841e49bb367c0da8825b3066847c3cb485efa3db4cee272ecaf882894dbdff2d3b4435016e31a2e30bcad46f3ca964ca15dfb443ce4373b5a0086fae9fc967
Size (golang.org_x_exp_@v_v0.0.0-20230801115018-d63ba01acd4b.mod) = 177 bytes
@@ -252,7 +249,7 @@ Size (howett.net_plist_@v_v1.0.1.zip) = 72046 bytes
BLAKE2s (kitty-0.35.0.tar.xz) = 9c4fe7b07c77230784051c79aafae64d41890e858f798e82f07f3dc35fb9b85a
SHA512 (kitty-0.35.0.tar.xz) = b8c310237b1f0e48c1490f1bcfa009490d1592557bd81d6593a2a3ce71696ab03b3d91bb1dc32212adea70a4e6b5491ea6604d43517e679151df49e11b8de604
Size (kitty-0.35.0.tar.xz) = 8206476 bytes
-SHA1 (patch-glfw_wl__client__side__decorations.c) = 7a242ca9b842dff982c185e0d321136d81b08d5c
+SHA1 (patch-glfw_wl__client__side__decorations.c) = 37c5ff491d8c9690d6e0291edb6c55388101edf0
SHA1 (patch-glfw_wl__init.c) = 9f7f3f8c060a8c2b1720a2d2e9cf477f1de0e43c
SHA1 (patch-kitty_binary.h) = e8e6e9b16a1bd7d0304bca919ad10dd932142da5
SHA1 (patch-kitty_threading.h) = 04886ab09ac2ab6f4925cd20e739e6b634299d55
diff --git a/kitty/go-modules.mk b/kitty/go-modules.mk
index 336b471417..c923484682 100644
--- a/kitty/go-modules.mk
+++ b/kitty/go-modules.mk
@@ -61,7 +61,6 @@ GO_MODULE_FILES+= github.com/yusufpapurcu/wmi/@v/v1.2.4.mod
GO_MODULE_FILES+= github.com/yusufpapurcu/wmi/@v/v1.2.4.zip
GO_MODULE_FILES+= github.com/zeebo/xxh3/@v/v1.0.2.mod
GO_MODULE_FILES+= github.com/zeebo/xxh3/@v/v1.0.2.zip
-GO_MODULE_FILES+= golang.org/toolchain/@v/v0.0.1-go1.22.3.netbsd-amd64.zip
GO_MODULE_FILES+= golang.org/x/exp/@v/v0.0.0-20230801115018-d63ba01acd4b.mod
GO_MODULE_FILES+= golang.org/x/exp/@v/v0.0.0-20230801115018-d63ba01acd4b.zip
GO_MODULE_FILES+= golang.org/x/image/@v/v0.0.0-20191009234506-e7c1f5e7dbb8.mod
diff --git a/kitty/patches/patch-glfw_wl__client__side__decorations.c b/kitty/patches/patch-glfw_wl__client__side__decorations.c
index 0955441247..c9b9f8cfef 100644
--- a/kitty/patches/patch-glfw_wl__client__side__decorations.c
+++ b/kitty/patches/patch-glfw_wl__client__side__decorations.c
@@ -1,5 +1,7 @@
$NetBSD$
+Support non-evdev platforms.
+
--- glfw/wl_client_side_decorations.c.orig 2024-05-25 03:37:36.000000000 +0000
+++ glfw/wl_client_side_decorations.c
@@ -12,6 +12,11 @@
Home |
Main Index |
Thread Index |
Old Index