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 ADD10158090 for ; Fri, 27 Sep 2024 13:37:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0519CE2A1B; Fri, 27 Sep 2024 13:37:15 +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 DE7F2E2A1B for ; Fri, 27 Sep 2024 13:37:14 +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 0707A3430D9 for ; Fri, 27 Sep 2024 13:37:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 980041EF3 for ; Fri, 27 Sep 2024 13:37:12 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1727444216.c788db9a341ed66aa1ffa299b8b77b9441a96f1b.flow@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: sys-apps/dool/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sys-apps/dool/dool-9999.ebuild X-VCS-Directories: sys-apps/dool/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: c788db9a341ed66aa1ffa299b8b77b9441a96f1b X-VCS-Branch: master Date: Fri, 27 Sep 2024 13:37:12 +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: a62b094d-7ef9-4226-be2f-d6285f3a23df X-Archives-Hash: 33eb01a9a103c81856dbf416817d9b7a Message-ID: <20240927133712.aGP8WHYZbnMTrbsOKTI3j2qofP3vpyJpb_2O0FHdoZY@z> commit: c788db9a341ed66aa1ffa299b8b77b9441a96f1b Author: Florian Schmaus gentoo org> AuthorDate: Fri Sep 27 13:36:56 2024 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Fri Sep 27 13:36:56 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c788db9a sys-apps/dool: sync live Signed-off-by: Florian Schmaus gentoo.org> sys-apps/dool/dool-9999.ebuild | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/sys-apps/dool/dool-9999.ebuild b/sys-apps/dool/dool-9999.ebuild index db89ec526..5a991dd78 100644 --- a/sys-apps/dool/dool-9999.ebuild +++ b/sys-apps/dool/dool-9999.ebuild @@ -22,13 +22,19 @@ else KEYWORDS="~amd64 ~arm64 ~mips ~ppc ~ppc64 ~sparc ~x86 " fi +SRC_URI+=" + https://github.com/scottchiefbaker/dool/pull/80/commits/5c538542a5bf2b16c496ab9d0a15f439f1ba1e49.patch + -> dool-1.3.2-add-site-packages-dir-to-plugin-path.patch +" + LICENSE="GPL-2" SLOT="0" -IUSE="doc examples" -src_prepare() { - default +PATCHES=( + "${DISTDIR}"/dool-1.3.2-add-site-packages-dir-to-plugin-path.patch +) +src_prepare() { # https://github.com/scottchiefbaker/dool/pull/80 mv dool dool.py || die @@ -42,6 +48,8 @@ src_prepare() { EOF sed -i 's/dool:__main/dool.dool:__main/' pyproject.toml || die + + default } src_install() { @@ -51,13 +59,7 @@ src_install() { einstalldocs - if use examples; then - dodoc examples/{mstat,read}.py - fi - - if use doc; then - dodoc docs/*.html - fi + dodoc examples/{mstat,read}.py docs/*.html } src_test() {