From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1BF0C158087 for ; Tue, 16 Nov 2021 08:16:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4C6DAE07ED; Tue, 16 Nov 2021 08:16:52 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A7CE7E07ED for ; Tue, 16 Nov 2021 08:16:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DA74A342EE5 for ; Tue, 16 Nov 2021 08:16:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ECC92163 for ; Tue, 16 Nov 2021 08:16:47 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1637050589.b692f5c9fb28b184f599e6fc8123023a0149ef0a.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/passwordsafe/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/passwordsafe/passwordsafe-1.14.0-r1.ebuild app-admin/passwordsafe/passwordsafe-1.14.0.ebuild X-VCS-Directories: app-admin/passwordsafe/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: b692f5c9fb28b184f599e6fc8123023a0149ef0a X-VCS-Branch: master Date: Tue, 16 Nov 2021 08:16:47 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: cc6cf7fa-5b69-4419-994a-ee80cbf27ef2 X-Archives-Hash: 9563b0ce2e6fdd1829ff757b3e704f09 commit: b692f5c9fb28b184f599e6fc8123023a0149ef0a Author: Martin Dummer gmx net> AuthorDate: Tue Nov 16 07:08:44 2021 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Tue Nov 16 08:16:29 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b692f5c9 app-admin/passwordsafe: fix icon, EAPI=8 fix icon installation path and handling, move to EAPI 8 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Martin Dummer gmx.net> Signed-off-by: Florian Schmaus gentoo.org> .../{passwordsafe-1.14.0.ebuild => passwordsafe-1.14.0-r1.ebuild} | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/app-admin/passwordsafe/passwordsafe-1.14.0.ebuild b/app-admin/passwordsafe/passwordsafe-1.14.0-r1.ebuild similarity index 91% rename from app-admin/passwordsafe/passwordsafe-1.14.0.ebuild rename to app-admin/passwordsafe/passwordsafe-1.14.0-r1.ebuild index 42ae73ac83fd..89108fe1776f 100644 --- a/app-admin/passwordsafe/passwordsafe-1.14.0.ebuild +++ b/app-admin/passwordsafe/passwordsafe-1.14.0-r1.ebuild @@ -1,11 +1,11 @@ # Copyright 2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 WX_GTK_VER="3.0-gtk3" -inherit cmake desktop flag-o-matic optfeature wxwidgets +inherit cmake desktop flag-o-matic optfeature wxwidgets xdg MY_PV="${PV/_beta/BETA}" DESCRIPTION="Password manager with wxGTK based frontend" @@ -79,10 +79,12 @@ src_install() { insinto /usr/share/${PN} doins -r xml - doicon install/graphics/pwsafe.png + doicon -s 48 install/graphics/pwsafe.png newmenu install/desktop/pwsafe.desktop ${PN}.desktop } pkg_postinst() { + xdg_desktop_database_update + xdg_icon_cache_update optfeature "on-screen keyboard for password entry" x11-misc/xvkbd }