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 7D6091581D3 for ; Wed, 8 May 2024 17:56:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B70ECE2D71; Wed, 8 May 2024 17:56:08 +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 9307BE2D71 for ; Wed, 8 May 2024 17:56:08 +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 3A85E3431C6 for ; Wed, 8 May 2024 17:56:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CD5371A42 for ; Wed, 8 May 2024 17:56:05 +0000 (UTC) From: "Lucio Sauer" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lucio Sauer" Message-ID: <1715190922.3cc9daa02e28aea302c399e536d6343b3ed181e7.watermanpaint@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/eww/ X-VCS-Repository: repo/proj/guru X-VCS-Files: gui-apps/eww/eww-0.5.0-r4.ebuild X-VCS-Directories: gui-apps/eww/ X-VCS-Committer: watermanpaint X-VCS-Committer-Name: Lucio Sauer X-VCS-Revision: 3cc9daa02e28aea302c399e536d6343b3ed181e7 X-VCS-Branch: dev Date: Wed, 8 May 2024 17:56:05 +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: d9bc70d3-9716-4f4c-b808-c25c49a3aa48 X-Archives-Hash: 687ccfccbd4cf04f407dbcefc7abc639 commit: 3cc9daa02e28aea302c399e536d6343b3ed181e7 Author: Lucio Sauer posteo net> AuthorDate: Wed May 8 15:57:58 2024 +0000 Commit: Lucio Sauer posteo net> CommitDate: Wed May 8 17:55:22 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3cc9daa0 gui-apps/eww: add missing crate licenses remove redundant phase function and simplify src_install Signed-off-by: Lucio Sauer posteo.net> gui-apps/eww/eww-0.5.0-r4.ebuild | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/gui-apps/eww/eww-0.5.0-r4.ebuild b/gui-apps/eww/eww-0.5.0-r4.ebuild index 7db131a5ef..c7cdf486bc 100644 --- a/gui-apps/eww/eww-0.5.0-r4.ebuild +++ b/gui-apps/eww/eww-0.5.0-r4.ebuild @@ -311,8 +311,11 @@ else KEYWORDS="~amd64" fi -LICENSE=" - MIT +LICENSE="MIT" +# Dependent crate licenses +LICENSE+=" + Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD CC0-1.0 ISC + Unicode-DFS-2016 " SLOT="0" IUSE="X wayland" @@ -354,15 +357,9 @@ src_configure() { cargo_src_configure --no-default-features } -src_compile() { - cargo_gen_config - cargo_src_compile -} - src_install() { dodoc README.md CHANGELOG.md - cd target/release || die - dobin eww + cargo_src_install --path crates/eww elog "Eww wont run without a config file (usually in ~/.config/eww)." elog "For example configs visit https://github.com/elkowar/eww#examples" }