diff --git a/app-editors/cursor/Manifest b/app-editors/cursor/Manifest index 3bafa7992..38cd0f319 100644 --- a/app-editors/cursor/Manifest +++ b/app-editors/cursor/Manifest @@ -1,2 +1 @@ -DIST cursor-0.44.11-build-250103fqxdt5u9z-amd64.deb 106305954 BLAKE2B 8125b270dc5b5a0ac72d71fb3fb7ae76b06da3bb980d0f91700b31d4422a0266bbfe7a72fc2b30a59ee6f77822a981b1b2f65c4ab4d9e9872a4245f231f61eb7 SHA512 6ed705cf660f34c30a4da8eb7eec1ea98089f5520f35b750cdd03912b028755a43a68f41aa00d064ef616d0ce6b000d32eecb9b73e46f6f855c73db3f576c500 DIST cursor-0.45.14-build-250219jnihavxsz-amd64.deb 103325702 BLAKE2B ae7b41fca428c5a6d3ff880702ca30463db1f2df97b25a0b8d06db70eb6d5d767a6cc8118d320f75a4abbc89bd5a0227febfbc730ae8899712f44811110dca60 SHA512 e2f9e85ec866157fb33878e56a8ca0af63126cbba1ab21885e8a575316c2e23b7238e6a7e30934f8b9f535da0eec89cdf3aeed7164fbb881b32b5c39ebe7c2a9 diff --git a/app-editors/cursor/cursor-0.44.11-r1.ebuild b/app-editors/cursor/cursor-0.44.11-r1.ebuild deleted file mode 100644 index da68b3f8f..000000000 --- a/app-editors/cursor/cursor-0.44.11-r1.ebuild +++ /dev/null @@ -1,102 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -CHROMIUM_LANGS=" - af am ar bg bn ca cs da de el en-GB en-US es-419 es et fa fil fi fr gu he hi - hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt-BR pt-PT ro ru sk sl sr sv sw - ta te th tr uk ur vi zh-CN zh-TW -" - -inherit chromium-2 desktop pax-utils unpacker xdg optfeature - -DESCRIPTION="Cursor App - AI-first coding environment" -HOMEPAGE="https://www.cursor.com/" -SRC_URI="https://download.todesktop.com/230313mzl4w4u92/${P}-build-250103fqxdt5u9z-amd64.deb" -S="${WORKDIR}" - -LICENSE="cursor" - -SLOT="0" -KEYWORDS="-* ~amd64" -IUSE="egl kerberos wayland" -RESTRICT="bindist mirror strip" - -RDEPEND=" - >=app-accessibility/at-spi2-core-2.46.0:2 - app-crypt/libsecret[crypt] - app-misc/ca-certificates - dev-libs/expat - dev-libs/glib:2 - dev-libs/nspr - dev-libs/nss - media-libs/alsa-lib - media-libs/libglvnd - media-libs/mesa - net-misc/curl - sys-apps/dbus - sys-libs/zlib - sys-process/lsof - x11-libs/cairo - x11-libs/gtk+:3 - x11-libs/libdrm - x11-libs/libX11 - x11-libs/libxcb - x11-libs/libXcomposite - x11-libs/libXdamage - x11-libs/libXext - x11-libs/libXfixes - x11-libs/libxkbcommon - x11-libs/libxkbfile - x11-libs/libXrandr - x11-libs/libXScrnSaver - x11-libs/pango - x11-misc/xdg-utils - kerberos? ( app-crypt/mit-krb5 ) -" - -QA_PREBUILT="*" -CURSOR_HOME="opt/Cursor" - -src_configure() { - default - chromium_suid_sandbox_check_kernel_config -} - -src_prepare() { - default - pushd "${CURSOR_HOME}/locales" > /dev/null || die - chromium_remove_language_paks - popd > /dev/null || die -} - -src_install() { - dodir /opt/cursor - cp -ar "${CURSOR_HOME}/." "${D}/opt/cursor/" || die - - fperms 4711 /opt/cursor/chrome-sandbox - pax-mark m /opt/cursor/cursor - dosym ../cursor/cursor /opt/bin/cursor - - local EXEC_EXTRA_FLAGS=() - if use wayland; then - EXEC_EXTRA_FLAGS+=( "--ozone-platform-hint=auto" "--enable-wayland-ime" ) - fi - if use egl; then - EXEC_EXTRA_FLAGS+=( "--use-gl=egl" ) - fi - - sed "s|^Exec=.*|Exec=cursor ${EXEC_EXTRA_FLAGS[*]} %U|" \ - usr/share/applications/cursor.desktop > cursor-url-handler.desktop || die - domenu cursor-url-handler.desktop - - insinto /usr/share - doins -r usr/share/icons -} - -pkg_postinst() { - xdg_pkg_postinst - optfeature "desktop notifications" x11-libs/libnotify - optfeature "keyring support inside cursor" "virtual/secret-service" -}