From 75aa4b0878cc8264c038b72c5f1bfb0616409dc1 Mon Sep 17 00:00:00 2001 From: dsaf Date: Mon, 23 Mar 2026 19:52:08 -0300 Subject: [PATCH] net-im/endcord-bin: add 1.4.1 Signed-off-by: dsaf --- net-im/endcord-bin/Manifest | 1 + net-im/endcord-bin/endcord-bin-1.4.1.ebuild | 46 +++++++++++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 net-im/endcord-bin/endcord-bin-1.4.1.ebuild diff --git a/net-im/endcord-bin/Manifest b/net-im/endcord-bin/Manifest index 580a9801bf..c091932617 100644 --- a/net-im/endcord-bin/Manifest +++ b/net-im/endcord-bin/Manifest @@ -1,2 +1,3 @@ DIST endcord-1.3.0-linux.tar.gz 67882126 BLAKE2B 884f9515fdfb5c53d1d89fbbca02953a894cb4e64c30173f6759da0f128c502f601ad2b40f9805de5fe52238815b9e51aff0ccc8f5f85e875f0843613b973f00 SHA512 e3b5e6aabb47d97fa757d16a712a8e12a19c029fe20d19d63280966a611a4e1666efff67203d75bd53dea7a051d8a3ed96ac8bfc786072a82f65b7619e43d837 DIST endcord-1.4.0-linux.tar.gz 65895992 BLAKE2B e6d07d863bce3c0f76ba0d3afeaf6a02516cdbd91f0448530092ff576fe4072c6f1e2c3034a4d04cc17a7eff92ceeaacec76f971b479e83759dfcf609dd2fc34 SHA512 90cacd0743618cab42f50ed7c3ed3a99a9135cc65a5ec9df574959e0024cdf1b3aaf14834e2000b6bc0805d2f60e6e545444778cd8a488fae1157c070f36d890 +DIST endcord-1.4.1-linux.tar.gz 62733570 BLAKE2B 4448ad38034562791eb64efbbb3d50c729cdc6bab13e5cc76a524b49c3034a2b86e94d0c87f807d48766d1cfd9b05f36c2810e3bb47140cccef10c7d847fc9c4 SHA512 0b57f0b82808ab65c728c5726d0361f4536419d29167df0ce435e50c8168e2bd9ebde66a7b9f396d7940e089e0ff8b2d05600636244828d6e993d1d554ee65fa diff --git a/net-im/endcord-bin/endcord-bin-1.4.1.ebuild b/net-im/endcord-bin/endcord-bin-1.4.1.ebuild new file mode 100644 index 0000000000..40819436c5 --- /dev/null +++ b/net-im/endcord-bin/endcord-bin-1.4.1.ebuild @@ -0,0 +1,46 @@ +# Copyright 2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit optfeature + +DESCRIPTION="Feature rich Discord TUI client" +HOMEPAGE="https://github.com/sparklost/endcord" + +SRC_URI="https://github.com/sparklost/endcord/releases/download/${PV}/endcord-${PV}-linux.tar.gz" +S="${WORKDIR}" + +LICENSE="GPL-3" +SLOT=0 +KEYWORDS="-* ~amd64" + +RESTRICT="strip" + +QA_PREBUILT="usr/bin/endcord-bin" + +src_install() { + newbin endcord endcord-bin +} + +pkg_postinst() { + optfeature "clipboard support on X11" x11-misc/xclip + optfeature "clipboard support on Wayland" gui-apps/wl-clipboard + + optfeature "file dialog when uploading" \ + app-misc/yazi \ + gnome-extra/zenity \ + kde-apps/kdialog + + optfeature "spellchecking (requires aspell dictionary such as aspell-en)" \ + app-text/aspell + + optfeature "install and update extensions from other sources" \ + dev-vcs/git + + optfeature "YouTube support" net-misc/yt-dlp + optfeature "play YouTube videos in native player (non-ASCII support)" media-video/mpv + + optfeature "store token in system keyring (requires gnome-keyring running under dbus)" \ + app-crypt/libsecret +}