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 8CCDF1581C1 for ; Wed, 17 Jul 2024 08:40:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 105D12BC10C; Wed, 17 Jul 2024 08:40:27 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EC5CC2BC10B for ; Wed, 17 Jul 2024 08:40:26 +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 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 43252342F65 for ; Wed, 17 Jul 2024 08:40:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A38DF1E48 for ; Wed, 17 Jul 2024 08:40:22 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1721188119.838fc0fe2e3928c4bb9d3015bb7dfbfa1fc000bc.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: gui-apps/clipman/ X-VCS-Repository: repo/proj/guru X-VCS-Files: gui-apps/clipman/clipman-1.6.4.ebuild X-VCS-Directories: gui-apps/clipman/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: 838fc0fe2e3928c4bb9d3015bb7dfbfa1fc000bc X-VCS-Branch: master Date: Wed, 17 Jul 2024 08:40:22 +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: f0e2d02f-8e4c-4acf-bf4f-6cc39be03344 X-Archives-Hash: a50c2406d63fb2d44186699d98bc897a commit: 838fc0fe2e3928c4bb9d3015bb7dfbfa1fc000bc Author: Jonas Frei pm me> AuthorDate: Wed Jul 17 03:08:31 2024 +0000 Commit: David Roman gmail com> CommitDate: Wed Jul 17 03:48:39 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=838fc0fe gui-apps/clipman: Various optimisations Signed-off-by: Jonas Frei pm.me> gui-apps/clipman/clipman-1.6.4.ebuild | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/gui-apps/clipman/clipman-1.6.4.ebuild b/gui-apps/clipman/clipman-1.6.4.ebuild index 06cdae7e0..dd650575a 100644 --- a/gui-apps/clipman/clipman-1.6.4.ebuild +++ b/gui-apps/clipman/clipman-1.6.4.ebuild @@ -16,23 +16,20 @@ SRC_URI+=" ${DEPS_URI}" LICENSE="BSD GPL-3 MIT" SLOT="0" KEYWORDS="~amd64" -IUSE="+man" DEPEND=" >=gui-apps/wl-clipboard-2 gui-libs/wlroots " -DOCS=( - "README.md" -) - src_compile() { ego build . } src_install() { dobin ${PN} - use man && doman docs/${PN}.1 + + doman docs/${PN}.1 + DOCS=("README.md") einstalldocs }