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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 355DC138334 for ; Mon, 23 Dec 2019 06:54:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 53C54E0D28; Mon, 23 Dec 2019 06:54:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 36DB7E0D28 for ; Mon, 23 Dec 2019 06:54:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BDDAC34DACD for ; Mon, 23 Dec 2019 06:54:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 58B1E1FE5D for ; Mon, 23 Dec 2019 06:54:13 +0000 (UTC) From: "Mikhail Pukhlikov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikhail Pukhlikov" Message-ID: <1577084046.d6542fb4b30dba00148048bdee40482f0492c3b7.cynede@gentoo> Subject: [gentoo-commits] repo/proj/rust:master commit in: eclass/ X-VCS-Repository: repo/proj/rust X-VCS-Files: eclass/cargo.eclass X-VCS-Directories: eclass/ X-VCS-Committer: cynede X-VCS-Committer-Name: Mikhail Pukhlikov X-VCS-Revision: d6542fb4b30dba00148048bdee40482f0492c3b7 X-VCS-Branch: master Date: Mon, 23 Dec 2019 06:54:13 +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: 7d95abd9-bdfd-474b-b1ab-1f45cd7ccc52 X-Archives-Hash: d202916c07f62e68e5b7002c152b52e4 commit: d6542fb4b30dba00148048bdee40482f0492c3b7 Author: Daniel Barry stevens edu> AuthorDate: Sat Dec 21 05:13:42 2019 +0000 Commit: Mikhail Pukhlikov gentoo org> CommitDate: Mon Dec 23 06:54:06 2019 +0000 URL: https://gitweb.gentoo.org/repo/proj/rust.git/commit/?id=d6542fb4 cargo.eclass: add args to cargo_src_install() media-sound/spotifyd and media-sound/spotify-tui were tested with the cargo eclass in the main package repo, they currently fail to install as they try to pass arguments into cargo_src_install() Closes: https://github.com/gentoo/gentoo-rust/pull/472 Signed-off-by: Mikhail Pukhlikov gentoo.org> eclass/cargo.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/cargo.eclass b/eclass/cargo.eclass index b6c6dde..b1f2071 100644 --- a/eclass/cargo.eclass +++ b/eclass/cargo.eclass @@ -153,7 +153,7 @@ cargo_src_compile() { cargo_src_install() { debug-print-function ${FUNCNAME} "$@" - cargo install -j $(makeopts_jobs) --root="${D}/usr" $(usex debug --debug "") \ + cargo install -j $(makeopts_jobs) --root="${D}/usr" $(usex debug --debug "") "$@" \ || die "cargo install failed" rm -f "${D}/usr/.crates.toml"