commit: baff95269475cfd4285b40fb384ee5db7e0d0a0c Author: Yixun Lan <dlan <AT> gentoo <DOT> org> AuthorDate: Mon Feb 23 09:53:19 2026 +0000 Commit: Yixun Lan <dlan <AT> gentoo <DOT> org> CommitDate: Mon Feb 23 09:55:09 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=baff9526
app-admin/bitwarden-desktop-bin: add 2026.1.0 Signed-off-by: Yixun Lan <dlan <AT> gentoo.org> app-admin/bitwarden-desktop-bin/Manifest | 1 + .../bitwarden-desktop-bin-2026.1.0.ebuild | 90 ++++++++++++++++++++++ 2 files changed, 91 insertions(+) diff --git a/app-admin/bitwarden-desktop-bin/Manifest b/app-admin/bitwarden-desktop-bin/Manifest index 6a0ad9bfe032..f81ba83e4ea7 100644 --- a/app-admin/bitwarden-desktop-bin/Manifest +++ b/app-admin/bitwarden-desktop-bin/Manifest @@ -1,2 +1,3 @@ DIST Bitwarden-2025.10.0-amd64.deb 90362570 BLAKE2B 7a6eff1b049dd1d26c1864ffb2cf54b5cec45a84e57835bed0346bac10a68f373bc2ef8d9a3a59560693b6845ffaaa680b63bf1e3db2857b6374fe9208c65d7d SHA512 c58ce9edeb9caae8435460e34f2a2e2f48d66d98290b4d5636ecf7bc02143d0828674940b85684dbe0081fae5013fb248043309555c9da458df640c52cabf356 DIST Bitwarden-2025.12.0-amd64.deb 93729264 BLAKE2B c83954e744533fd02c31b2f930a4ed40227d4e2fceef80ea3f6c91749e9c746d602ad24519ea15acb9bf7b6737aa87686ae455ff71626d8d626ea86409014dea SHA512 0cb2152da9bb11ecda7173032a76901eb80c87b3487df31a76329e994ee602805c441ce2aa3fa729c2ce2c6ff61dda6f375ed6f37557772f7b1354ad9655c7a0 +DIST Bitwarden-2026.1.0-amd64.deb 92348396 BLAKE2B 444833d3ac7dd4d12c2da68d1423d29a0c5c6bcb5fd1ff7306e812361304e2fa0e7720c9d2345223ed2173dbd5adbb46b9781818556c0a914eeb6dc8f5691104 SHA512 0b0c9719ff4272ef93cc5b85f409fb1135ab0c4da12e3e2d8582576a01fa2c91bc01509370fa7aa6eef5654c6cf8cabd553eae54b04346f295dce69ffc9e079c diff --git a/app-admin/bitwarden-desktop-bin/bitwarden-desktop-bin-2026.1.0.ebuild b/app-admin/bitwarden-desktop-bin/bitwarden-desktop-bin-2026.1.0.ebuild new file mode 100644 index 000000000000..7091e21c05b5 --- /dev/null +++ b/app-admin/bitwarden-desktop-bin/bitwarden-desktop-bin-2026.1.0.ebuild @@ -0,0 +1,90 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit desktop unpacker xdg-utils + +DESCRIPTION="Bitwarden password manager desktop client" +HOMEPAGE="https://bitwarden.com/" +SRC_URI="https://github.com/bitwarden/clients/releases/download/desktop-v${PV}/Bitwarden-${PV}-amd64.deb" +S="${WORKDIR}" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + >=app-accessibility/at-spi2-core-2.46.0:2 + app-crypt/libsecret + dev-libs/expat + dev-libs/glib + dev-libs/nspr + dev-libs/nss + dev-libs/wayland + media-libs/alsa-lib + media-libs/mesa + net-print/cups + sys-apps/dbus + sys-apps/util-linux + sys-libs/glibc + x11-libs/cairo + x11-libs/gdk-pixbuf:2 + x11-libs/gtk+:3 + x11-libs/libdrm + x11-libs/libX11 + x11-libs/libxcb + x11-libs/libXcomposite + x11-libs/libXcursor + x11-libs/libXdamage + x11-libs/libXext + x11-libs/libXfixes + x11-libs/libXi + x11-libs/libxkbcommon + x11-libs/libXrandr + x11-libs/libXrender + x11-libs/libXScrnSaver + x11-libs/libxshmfence + x11-libs/libXtst + x11-libs/pango +" +IDEPEND=" + dev-util/desktop-file-utils + dev-util/gtk-update-icon-cache +" + +QA_PREBUILT=" + opt/Bitwarden/*.so* + opt/Bitwarden/bitwarden + opt/Bitwarden/bitwarden-app + opt/Bitwarden/chrome-sandbox + opt/Bitwarden/chrome_crashpad_handler + opt/Bitwarden/desktop_proxy +" + +src_install() { + insinto /opt + doins -r opt/Bitwarden + fperms 755 /opt/Bitwarden/bitwarden \ + /opt/Bitwarden/bitwarden-app + fperms 4755 /opt/Bitwarden/chrome-sandbox + + domenu usr/share/applications/bitwarden.desktop + + local x + for x in 16 32 64 128 256 512; do + doicon -s ${x} usr/share/icons/hicolor/${x}*/* + done + + dosym -r "/opt/Bitwarden/bitwarden" "usr/bin/${PN}" +} + +pkg_postinst() { + xdg_desktop_database_update + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_desktop_database_update + xdg_icon_cache_update +}
