repo/gentoo:master commit in: app-admin/bitwarden-desktop-bin/

"Yixun Lan" <[email protected]> Wed, 05 Aug 2026 09:31:35 +0000 (UTC)
Newsgroups gmane.linux.gentoo.cvs
Message-ID <1785922253.b97dfac7a159ad6726c5042ab82abdafe7e6cb03.dlan@gentoo>
commit:     b97dfac7a159ad6726c5042ab82abdafe7e6cb03
Author:     Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Wed Aug  5 08:55:31 2026 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Wed Aug  5 09:30:53 2026 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b97dfac7

app-admin/bitwarden-desktop-bin: add 2026.7.0

Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>

 app-admin/bitwarden-desktop-bin/Manifest           |  1 +
 .../bitwarden-desktop-bin-2026.7.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 e30496ead333..16758befb33e 100644
--- a/app-admin/bitwarden-desktop-bin/Manifest
+++ b/app-admin/bitwarden-desktop-bin/Manifest
@@ -1,2 +1,3 @@
 DIST Bitwarden-2026.6.0-amd64.deb 109532556 BLAKE2B 115704752870022365f93486498b8006874bf97de625572609808885a0fd50f6947f82243790fba426efe907aa020aa1a48f540b4031388f5132caa8d7c73932 SHA512 cb6a6a4eb7a00fd4eaf6737f8a482d57b049276e7d2a56d7b0ef7561c867004fbe31da9ca0794e839917290c2957af69ef75ac1759cd6fbca095940f7dbb077d
 DIST Bitwarden-2026.6.1-amd64.deb 109532468 BLAKE2B 87969ff5b0a073195b185bf36388bf07cab03bb84a993c3449b9fc556990456c80cf6fe781322972c2367aff452fcbb05be5d674b400d2a503a36e9effdafdbe SHA512 f5f7e6a9559fc737c9ffd6a36b1b011792c0f90ca98e6a34ec24f358a4961cf2dac62a486e519120fc3d07182752bfb5980f3061996c9d839535462fb5b74b25
+DIST Bitwarden-2026.7.0-amd64.deb 113133552 BLAKE2B e9944e14cf02360943edd53ff9bd2b512a5959a64f970bd4645150a341ce99782f702b89ff259d308c7c0fbd54a2d517a57cd6fbf1253916a2e38c00d251b5b6 SHA512 b1750b212c6c9c51e5f81020020658eff1ceef097fb9f925580aad749157d69f0517005a67fe2cc8c4bba92b454c01ec9453dc1cd5d7f28450d382929d8143f3

diff --git a/app-admin/bitwarden-desktop-bin/bitwarden-desktop-bin-2026.7.0.ebuild b/app-admin/bitwarden-desktop-bin/bitwarden-desktop-bin-2026.7.0.ebuild
new file mode 100644
index 000000000000..7091e21c05b5
--- /dev/null
+++ b/app-admin/bitwarden-desktop-bin/bitwarden-desktop-bin-2026.7.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
+}