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 7D23715A7D9 for ; Fri, 17 Mar 2023 18:47:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C00462BC2F0; Fri, 17 Mar 2023 18:47:10 +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 A28CB2BC2F0 for ; Fri, 17 Mar 2023 18:47:10 +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 A4C4B3412F1 for ; Fri, 17 Mar 2023 18:47:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 588BB7F5 for ; Fri, 17 Mar 2023 18:47:07 +0000 (UTC) From: "Alfredo Tupone" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alfredo Tupone" Message-ID: <1679078798.5569e6c21c3020ed6c15c175063ec5633564b53f.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/caffe2/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/caffe2/caffe2-1.13.1-r4.ebuild X-VCS-Directories: sci-libs/caffe2/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: 5569e6c21c3020ed6c15c175063ec5633564b53f X-VCS-Branch: master Date: Fri, 17 Mar 2023 18:47:07 +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: 4c2daaa1-9377-4808-bf15-2ed13302c41c X-Archives-Hash: 4b882328065bc8722795128dabf2bc7a commit: 5569e6c21c3020ed6c15c175063ec5633564b53f Author: Larry D. Pyeatt sdsmt edu> AuthorDate: Fri Mar 17 17:47:50 2023 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Fri Mar 17 18:46:38 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5569e6c2 sci-libs/caffe2: sci-libs/caffe2-1.13.1-r4 fails during install - rm: cannot remove '/dev/shm/portage/sci-libs/caffe2-1.13.1-r4/image/var/tmp': No such file or directory Closes: https://bugs.gentoo.org/901967 Signed-off-by: Larry D. Pyeatt sdsmt.edu> Closes: https://github.com/gentoo/gentoo/pull/30187 Signed-off-by: Alfredo Tupone gentoo.org> sci-libs/caffe2/caffe2-1.13.1-r4.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sci-libs/caffe2/caffe2-1.13.1-r4.ebuild b/sci-libs/caffe2/caffe2-1.13.1-r4.ebuild index 9411531dd1ec..133fd14a1f9d 100644 --- a/sci-libs/caffe2/caffe2-1.13.1-r4.ebuild +++ b/sci-libs/caffe2/caffe2-1.13.1-r4.ebuild @@ -178,7 +178,7 @@ src_install() { mv "${ED}"/usr/lib/python*/site-packages/caffe2 python/ || die mv "${ED}"/usr/include/torch python/torch/include || die cp torch/version.py python/torch/ || die - rm -r "${ED}"/var/tmp || die + rm -rf "${ED}"/var/tmp || die python_domodule python/caffe2 python_domodule python/torch }