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 0089715ACFC for ; Sat, 6 May 2023 12:40:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 373E4E0837; Sat, 6 May 2023 12:40:09 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 14985E0837 for ; Sat, 6 May 2023 12:40: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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DF2ED341071 for ; Sat, 6 May 2023 12:40:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0220B8AC for ; Sat, 6 May 2023 12:40:06 +0000 (UTC) From: "Anna Vyalkova" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anna Vyalkova" Message-ID: <1683376800.c405f3b99583b7fe5bfa3b910fd665ca4945faf2.cybertailor@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/cffsubr/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/cffsubr/cffsubr-0.2.9_p1.ebuild X-VCS-Directories: dev-python/cffsubr/ X-VCS-Committer: cybertailor X-VCS-Committer-Name: Anna Vyalkova X-VCS-Revision: c405f3b99583b7fe5bfa3b910fd665ca4945faf2 X-VCS-Branch: dev Date: Sat, 6 May 2023 12:40:06 +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: b9db0e99-566e-4980-991c-2c6247365750 X-Archives-Hash: ac6e979b92e046e8d4b328ecc0ae5951 commit: c405f3b99583b7fe5bfa3b910fd665ca4945faf2 Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Sat May 6 12:40:00 2023 +0000 Commit: Anna Vyalkova sysrq in> CommitDate: Sat May 6 12:40:00 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c405f3b9 dev-python/cffsubr: 'rm -r' instead of 'rm -rf' Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> dev-python/cffsubr/cffsubr-0.2.9_p1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/cffsubr/cffsubr-0.2.9_p1.ebuild b/dev-python/cffsubr/cffsubr-0.2.9_p1.ebuild index 9cfdc7444..d5678bbc0 100644 --- a/dev-python/cffsubr/cffsubr-0.2.9_p1.ebuild +++ b/dev-python/cffsubr/cffsubr-0.2.9_p1.ebuild @@ -31,7 +31,7 @@ distutils_enable_tests pytest src_prepare() { # remove bundled afdko - rm -rf external || die + rm -r external || die distutils-r1_src_prepare }