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 AF103138334 for ; Tue, 8 Jan 2019 23:40:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CAC9CE09CB; Tue, 8 Jan 2019 23:40:58 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 A4453E09CB for ; Tue, 8 Jan 2019 23:40:58 +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 E385B335D06 for ; Tue, 8 Jan 2019 23:40:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EC2F850C for ; Tue, 8 Jan 2019 23:40:54 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1546990825.2d56f8f54dddcf09e3879be76f45da0fa821aad0.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-terms/alacritty/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-terms/alacritty/alacritty-0.2.5.ebuild X-VCS-Directories: x11-terms/alacritty/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 2d56f8f54dddcf09e3879be76f45da0fa821aad0 X-VCS-Branch: master Date: Tue, 8 Jan 2019 23:40:54 +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: b6de04e7-31e3-4d10-ad15-53f7a13030cb X-Archives-Hash: 2a7778e3ec31ed9c8450cf2b1195fcba commit: 2d56f8f54dddcf09e3879be76f45da0fa821aad0 Author: Georgy Yakovlev gentoo org> AuthorDate: Tue Jan 8 21:38:01 2019 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Tue Jan 8 23:40:25 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d56f8f5 x11-terms/alacritty: switch to cargo.eclass func args Package-Manager: Portage-2.3.54, Repoman-2.3.12 Signed-off-by: Georgy Yakovlev gentoo.org> x11-terms/alacritty/alacritty-0.2.5.ebuild | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/x11-terms/alacritty/alacritty-0.2.5.ebuild b/x11-terms/alacritty/alacritty-0.2.5.ebuild index 0e7d454ad25..06928fa307d 100644 --- a/x11-terms/alacritty/alacritty-0.2.5.ebuild +++ b/x11-terms/alacritty/alacritty-0.2.5.ebuild @@ -352,9 +352,7 @@ BDEPEND="dev-util/cmake DOCS=( CHANGELOG.md docs/ansicode.txt INSTALL.md README.md alacritty.yml ) src_install() { - cargo install -j $(makeopts_jobs) --root="${D}/usr" $(usex debug --debug "") \ - --path . || die "cargo install failed" - rm "${D}/usr/.crates.toml" || die + cargo_src_install --path ./ newbashcomp alacritty-completions.bash alacritty @@ -377,10 +375,6 @@ src_install() { einstalldocs } -src_test() { - cargo test -j $(makeopts_jobs) $(usex debug "" --release) || die "tests failed" -} - pkg_postinst() { optfeature "wayland support" dev-libs/wayland }