From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8702215820A for ; Sun, 06 Jul 2025 16:01:36 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 4A05F342098 for ; Sun, 06 Jul 2025 16:01:36 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 20E52110562; Sun, 06 Jul 2025 16:01:19 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 0DF4D110562 for ; Sun, 06 Jul 2025 16:01:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B9F64342035 for ; Sun, 06 Jul 2025 16:01:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DFA662ECD for ; Sun, 06 Jul 2025 16:01:15 +0000 (UTC) From: "Anna Vyalkova" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anna Vyalkova" Message-ID: <1751816908.3de75bb7df65c64ef86791c79eb2758fd44a1100.cybertailor@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-alternatives/phosh-keyboard/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-alternatives/phosh-keyboard/metadata.xml app-alternatives/phosh-keyboard/phosh-keyboard-2.ebuild X-VCS-Directories: app-alternatives/phosh-keyboard/ X-VCS-Committer: cybertailor X-VCS-Committer-Name: Anna Vyalkova X-VCS-Revision: 3de75bb7df65c64ef86791c79eb2758fd44a1100 X-VCS-Branch: dev Date: Sun, 06 Jul 2025 16:01:15 +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: 52c36466-feda-4235-929f-846ad9ab752c X-Archives-Hash: 38405f156a4fbaa85a45b552f66ffcd5 commit: 3de75bb7df65c64ef86791c79eb2758fd44a1100 Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Sun Jul 6 15:36:51 2025 +0000 Commit: Anna Vyalkova sysrq in> CommitDate: Sun Jul 6 15:48:28 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3de75bb7 app-alternatives/phosh-keyboard: add 2 Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> app-alternatives/phosh-keyboard/metadata.xml | 3 +++ .../phosh-keyboard/phosh-keyboard-2.ebuild | 22 ++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/app-alternatives/phosh-keyboard/metadata.xml b/app-alternatives/phosh-keyboard/metadata.xml index 02671c97ee..86a3d434a6 100644 --- a/app-alternatives/phosh-keyboard/metadata.xml +++ b/app-alternatives/phosh-keyboard/metadata.xml @@ -9,5 +9,8 @@ Symlink to phosh-base/phosh-osk-stub + + Symlink to phosh-base/phosh-osk-stevia + diff --git a/app-alternatives/phosh-keyboard/phosh-keyboard-2.ebuild b/app-alternatives/phosh-keyboard/phosh-keyboard-2.ebuild new file mode 100644 index 0000000000..9470666d5c --- /dev/null +++ b/app-alternatives/phosh-keyboard/phosh-keyboard-2.ebuild @@ -0,0 +1,22 @@ +# Copyright 2024-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +ALTERNATIVES=( + "stevia:phosh-base/phosh-osk-stevia" +) + +inherit app-alternatives + +DESCRIPTION="sm.puri.OSK0.desktop symlinks" +KEYWORDS="~amd64" + +src_install() { + local target="/usr/share/applications/sm.puri.OSK0.desktop" + + case $(get_alternative) in + phosh-osk-stub) + dosym mobi.phosh.Stevia.desktop "${target:?}";; + esac +}