From 6ae0cbb252004e84f84b9e347298336c2d6005bf Mon Sep 17 00:00:00 2001 From: dsaf Date: Thu, 18 Jun 2026 16:49:01 -0300 Subject: [PATCH] net-im/endcord: drop 1.4.0 Signed-off-by: dsaf --- net-im/endcord/Manifest | 1 - net-im/endcord/endcord-1.4.0.ebuild | 93 ----------------------------- 2 files changed, 94 deletions(-) delete mode 100644 net-im/endcord/endcord-1.4.0.ebuild diff --git a/net-im/endcord/Manifest b/net-im/endcord/Manifest index 3ae94c62d2..1db3b2dc08 100644 --- a/net-im/endcord/Manifest +++ b/net-im/endcord/Manifest @@ -1,3 +1,2 @@ -DIST endcord-1.4.0.tar.gz 798652 BLAKE2B 966625c8f7969c1464a8dd7729f2181947befc865b0df416d3b16dd0eeb84ef443bbbbe0de038997d827733ae5ba120f1f09e7ae6138eedf130093aeb8a83ae9 SHA512 3d0fdd19800170f7446a8a4cc0b827420599c0db77f7e528dcca3fb295fb3492d42f02a549bc6f72bc240a3fb2d21430a5f9a88d2853f1835bdc263ba8dcc80a DIST endcord-1.4.1.tar.gz 799285 BLAKE2B bf8ca9cc32bdfe3b505a2745eca8a1c0e6230ad4db66c1eeb09b944232d4b62e8cb2035b3709ede0eb2b58b3aa38cfd7fe3abe86f983d93181ebcc8caeb7a3fe SHA512 be3615c5f7d95782b8f42224f29b9257247d0e5d1ea343416445b716ff747f6cd49f8d940e7973759d339e965455bef06cf841d009176de11b98a12ecdbbc0d5 DIST endcord-1.4.2.tar.gz 811680 BLAKE2B fe9dda547707dc5ea51b18954061a30b0a8dff691641e6096121c0ea655c3913f393c3a501c80b7926223321414a6be4bb553bdbc0c365a458a018d41deb6736 SHA512 535bc3038674a1eeb7a2a5492a87b8a6fe05abcd80298a9b9863286f1a7d075a6955f416840c86a470a4be144940b252c3316480890054d57617bf33b7855e50 diff --git a/net-im/endcord/endcord-1.4.0.ebuild b/net-im/endcord/endcord-1.4.0.ebuild deleted file mode 100644 index 89d68b84df..0000000000 --- a/net-im/endcord/endcord-1.4.0.ebuild +++ /dev/null @@ -1,93 +0,0 @@ -# Copyright 2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_EXT=1 -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{12..14} ) - -inherit distutils-r1 optfeature wrapper - -DESCRIPTION="Feature rich Discord TUI client" -HOMEPAGE="https://github.com/sparklost/endcord" - -if [[ ${PV} == *9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/sparklost/endcord.git" -else - SRC_URI="https://github.com/sparklost/endcord/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64" -fi - -LICENSE="GPL-3" -SLOT=0 - -IUSE="media" - -BDEPEND=" - >=dev-python/cython-3.2.4[${PYTHON_USEDEP}] -" -RDEPEND=" - >=dev-python/emoji-2.15.0[${PYTHON_USEDEP}] - >=dev-python/filetype-1.2.0[${PYTHON_USEDEP}] - >=dev-python/numpy-2.4.3[${PYTHON_USEDEP}] - || ( - >=dev-python/orjson-3.11.7[${PYTHON_USEDEP}] - dev-python/ujson[${PYTHON_USEDEP}] - ) - >=dev-python/protobuf-7.34.0[${PYTHON_USEDEP}] - >=dev-python/pycryptodome-3.23.0[${PYTHON_USEDEP}] - >=dev-python/pysocks-1.7.1[${PYTHON_USEDEP}] - >=dev-python/python-socks-2.8.1[${PYTHON_USEDEP}] - >=dev-python/qrcode-8.2[${PYTHON_USEDEP}] - >=dev-python/soundcard-0.4.5[${PYTHON_USEDEP}] - >=dev-python/soundfile-0.13.1[${PYTHON_USEDEP}] - >=dev-python/urllib3-2.6.3[${PYTHON_USEDEP}] - >=dev-python/websocket-client-1.9.0[${PYTHON_USEDEP}] - media? ( - >=dev-python/pynacl-1.6.2[${PYTHON_USEDEP}] - >=dev-python/pillow-12.1.1[${PYTHON_USEDEP}] - >=dev-python/av-16.1.0[${PYTHON_USEDEP}] - ) -" - -PATCHES=( "${FILESDIR}/${PN}-1.4.0-flags.patch" ) - -DOCS=( README.md docs/ ) - -python_install() { - distutils-r1_python_install - - python_domodule ${PN} - - exeinto /usr/libexec/${PN} - doexe main.py - - make_wrapper ${PN} \ - "${EPYTHON} ${EPREFIX}/usr/libexec/${PN}/main.py" -} - -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 - - optfeature "round notification images" media-gfx/imagemagick -}