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 188A315808C for ; Thu, 17 Feb 2022 21:11:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4EA4CE084A; Thu, 17 Feb 2022 21:11:42 +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 1F850E0848 for ; Thu, 17 Feb 2022 21:11:42 +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 1DC8D341033 for ; Thu, 17 Feb 2022 21:11:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 823292E7 for ; Thu, 17 Feb 2022 21:11:38 +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: <1645132275.4ef14e578eb411d75b2c0a828eb68ee7d987c0d3.cybertailor@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-R/RcppArmadillo/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-R/RcppArmadillo/RcppArmadillo-0.10.2.2.0.ebuild X-VCS-Directories: dev-R/RcppArmadillo/ X-VCS-Committer: cybertailor X-VCS-Committer-Name: Anna Vyalkova X-VCS-Revision: 4ef14e578eb411d75b2c0a828eb68ee7d987c0d3 X-VCS-Branch: dev Date: Thu, 17 Feb 2022 21:11:38 +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: cdf8f354-7f29-4cdd-bf5e-d728adb902ad X-Archives-Hash: 26c6482c1f535761fbbb8b079cc59f77 commit: 4ef14e578eb411d75b2c0a828eb68ee7d987c0d3 Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Mon Feb 14 18:10:55 2022 +0000 Commit: Anna Vyalkova sysrq in> CommitDate: Thu Feb 17 21:11:15 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4ef14e57 dev-R/RcppArmadillo: remove illegal dosym usage Closes: https://bugs.gentoo.org/833317 Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> dev-R/RcppArmadillo/RcppArmadillo-0.10.2.2.0.ebuild | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/dev-R/RcppArmadillo/RcppArmadillo-0.10.2.2.0.ebuild b/dev-R/RcppArmadillo/RcppArmadillo-0.10.2.2.0.ebuild index 9c33fe313..85edf9309 100644 --- a/dev-R/RcppArmadillo/RcppArmadillo-0.10.2.2.0.ebuild +++ b/dev-R/RcppArmadillo/RcppArmadillo-0.10.2.2.0.ebuild @@ -35,6 +35,11 @@ src_prepare() { src_install() { R-packages_src_install - dosym8 -r /usr/include/armadillo_bits "/usr/$(get_libdir)/R/site-library/${PN}/include/armadillo_bits" - dosym8 -r /usr/include/armadillo "/usr/$(get_libdir)/R/site-library/${PN}/include/armadillo" + R_includedir="/usr/$(get_libdir)/R/site-library/${PN}/include" + dosym8 -r /usr/include/armadillo "${R_includedir}/armadillo" + + for file in "${ED}/${R_includedir}"/armadillo_bits/*; do + filename=$(basename "${file}") + dosym8 -r /usr/include/armadillo_bits/${file} "${R_includedir}/armadillo_bits/${file}" + done }