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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 51DD015812D for ; Fri, 03 Jan 2025 17:43:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9D582E0729; Fri, 03 Jan 2025 17:43:48 +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 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7A04BE0729 for ; Fri, 03 Jan 2025 17:43:48 +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 9669933BE32 for ; Fri, 03 Jan 2025 17:43:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2F3A7AED for ; Fri, 03 Jan 2025 17:43:46 +0000 (UTC) From: "Philippe-Alexandre Mathieu" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Philippe-Alexandre Mathieu" Message-ID: <1735926177.00dc1f6fa36feb4956d4d28fb50013c28bf10188.pamathieu@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/swww/ X-VCS-Repository: repo/proj/guru X-VCS-Files: gui-apps/swww/swww-9999.ebuild X-VCS-Directories: gui-apps/swww/ X-VCS-Committer: pamathieu X-VCS-Committer-Name: Philippe-Alexandre Mathieu X-VCS-Revision: 00dc1f6fa36feb4956d4d28fb50013c28bf10188 X-VCS-Branch: dev Date: Fri, 03 Jan 2025 17:43:46 +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: 223da1a0-1ebb-445e-a558-b9f95eafb728 X-Archives-Hash: 45fca34690a7fccbc44f6067ca6713b6 commit: 00dc1f6fa36feb4956d4d28fb50013c28bf10188 Author: Philippe-Alexandre Mathieu poum ca> AuthorDate: Fri Jan 3 17:42:57 2025 +0000 Commit: Philippe-Alexandre Mathieu poum ca> CommitDate: Fri Jan 3 17:42:57 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=00dc1f6f gui-apps/swww: add 9999 Signed-off-by: Philippe-Alexandre Mathieu poum.ca> gui-apps/swww/swww-9999.ebuild | 52 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/gui-apps/swww/swww-9999.ebuild b/gui-apps/swww/swww-9999.ebuild new file mode 100644 index 000000000..34f66d248 --- /dev/null +++ b/gui-apps/swww/swww-9999.ebuild @@ -0,0 +1,52 @@ +# Copyright 2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cargo git-r3 shell-completion + +DESCRIPTION="Efficient animated wallpaper daemon for wayland, controlled at runtime" +HOMEPAGE="https://github.com/LGFae/swww" +EGIT_REPO_URI="https://github.com/LGFae/swww.git" + +LICENSE="GPL-3" +# Dependent crate licenses +LICENSE+=" + Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD-2 BSD ISC MIT + Unicode-DFS-2016 +" +SLOT="0" + +DEPEND=" + app-arch/lz4:= + x11-libs/libxkbcommon[wayland] +" +RDEPEND="${DEPEND}" +BDEPEND=" + app-text/scdoc +" + +QA_FLAGS_IGNORED=" + usr/bin/${PN} + usr/bin/${PN}-daemon +" + +src_unpack() { + git-r3_src_unpack + cargo_live_src_unpack +} + +src_compile() { + cargo_src_compile + ./doc/gen.sh || die # generate man pages +} + +src_install() { + dobin "$(cargo_target_dir)"/swww{,-daemon} + doman doc/generated/*.1 + + dodoc README.md CHANGELOG.md + newbashcomp completions/swww.bash swww + dofishcomp completions/swww.fish + dozshcomp completions/_swww +}