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 87861158041 for ; Sat, 9 Mar 2024 13:57:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 936BEE2A07; Sat, 9 Mar 2024 13:57:04 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 78EE0E2A06 for ; Sat, 9 Mar 2024 13:57:04 +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 BD28533BE19 for ; Sat, 9 Mar 2024 13:57:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9E2BC14F0 for ; Sat, 9 Mar 2024 13:57:00 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1709992588.c00c4a5bda09b6a76a95d86f891dda8fecc1c2eb.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/dunst/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/dunst/dunst-9999.ebuild X-VCS-Directories: x11-misc/dunst/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: c00c4a5bda09b6a76a95d86f891dda8fecc1c2eb X-VCS-Branch: master Date: Sat, 9 Mar 2024 13:57:00 +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: 8f65d4ad-233c-4cf0-b8a8-b665300db630 X-Archives-Hash: 6fd0c7ca40a8eab27264562f61488fe5 commit: c00c4a5bda09b6a76a95d86f891dda8fecc1c2eb Author: Conrad Kostecki gentoo org> AuthorDate: Sat Mar 9 13:20:39 2024 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sat Mar 9 13:56:28 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c00c4a5b x11-misc/dunst: update live ebuild Signed-off-by: Conrad Kostecki gentoo.org> x11-misc/dunst/dunst-9999.ebuild | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/x11-misc/dunst/dunst-9999.ebuild b/x11-misc/dunst/dunst-9999.ebuild index 20a5d5412e6f..f69ffaa99763 100644 --- a/x11-misc/dunst/dunst-9999.ebuild +++ b/x11-misc/dunst/dunst-9999.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit git-r3 systemd toolchain-funcs +inherit git-r3 shell-completion systemd toolchain-funcs EGIT_REPO_URI="https://github.com/dunst-project/dunst" @@ -12,7 +12,6 @@ HOMEPAGE="https://dunst-project.org/ https://github.com/dunst-project/dunst" LICENSE="BSD" SLOT="0" -KEYWORDS="" IUSE="wayland" DEPEND=" @@ -75,9 +74,13 @@ src_install() { emake "${myemakeargs[@]}" install - insinto /usr/share/zsh/site-functions - newins contrib/_dunst.zshcomp _dunst - newins contrib/_dunstctl.zshcomp _dunstctl + newbashcomp completions/dunst.bashcomp dunst + newbashcomp completions/dunstctl.bashcomp dunstctl + newfishcomp completions/dunst.fishcomp dunst + newfishcomp completions/dunstctl.fishcomp dunstctl + newfishcomp completions/dunstify.fishcomp dunstify + newzshcomp completions/_dunst.zshcomp _dunst + newzshcomp completions/_dunstctl.zshcomp _dunstctl systemd_newuserunit dunst.systemd.service.in dunst.service }