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 E2D35138334 for ; Mon, 15 Apr 2019 19:42:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E4189E0872; Mon, 15 Apr 2019 19:42:56 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 C82C5E0872 for ; Mon, 15 Apr 2019 19:42:56 +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 519C63412E7 for ; Mon, 15 Apr 2019 19:42:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 27F6F4F6 for ; Mon, 15 Apr 2019 19:42:51 +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: <1555357262.a3bf20a518b953b2a79cd4479ea55284dd17238e.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/rust-bin/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/rust-bin/rust-bin-1.34.0-r1.ebuild dev-lang/rust-bin/rust-bin-1.34.0.ebuild X-VCS-Directories: dev-lang/rust-bin/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: a3bf20a518b953b2a79cd4479ea55284dd17238e X-VCS-Branch: master Date: Mon, 15 Apr 2019 19:42:51 +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: 59e0fb63-d3eb-42e5-bc7b-8f6ce7e1ffe7 X-Archives-Hash: cc86fd3d9c1153f5f2deab19d6f261be commit: a3bf20a518b953b2a79cd4479ea55284dd17238e Author: Georgy Yakovlev gentoo org> AuthorDate: Mon Apr 15 18:32:40 2019 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Mon Apr 15 19:41:02 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3bf20a5 dev-lang/rust-bin: install rust-gdbui versioned Bug: https://bugs.gentoo.org/683392 Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Georgy Yakovlev gentoo.org> .../rust-bin/{rust-bin-1.34.0.ebuild => rust-bin-1.34.0-r1.ebuild} | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dev-lang/rust-bin/rust-bin-1.34.0.ebuild b/dev-lang/rust-bin/rust-bin-1.34.0-r1.ebuild similarity index 95% rename from dev-lang/rust-bin/rust-bin-1.34.0.ebuild rename to dev-lang/rust-bin/rust-bin-1.34.0-r1.ebuild index a4fb5e4c309..ca8ec5ef8c1 100644 --- a/dev-lang/rust-bin/rust-bin-1.34.0.ebuild +++ b/dev-lang/rust-bin/rust-bin-1.34.0-r1.ebuild @@ -64,16 +64,19 @@ src_install() { local rustc=rustc-bin-${PV} local rustdoc=rustdoc-bin-${PV} local rustgdb=rust-gdb-bin-${PV} + local rustgdbgui=rust-gdbgui-bin-${PV} local rustlldb=rust-lldb-bin-${PV} mv "${D}/opt/${P}/bin/rustc" "${D}/opt/${P}/bin/${rustc}" || die mv "${D}/opt/${P}/bin/rustdoc" "${D}/opt/${P}/bin/${rustdoc}" || die mv "${D}/opt/${P}/bin/rust-gdb" "${D}/opt/${P}/bin/${rustgdb}" || die + mv "${D}/opt/${P}/bin/rust-gdbgui" "${D}/opt/${P}/bin/${rustgdbgui}" || die mv "${D}/opt/${P}/bin/rust-lldb" "${D}/opt/${P}/bin/${rustlldb}" || die dosym "../../opt/${P}/bin/${rustc}" "/usr/bin/${rustc}" dosym "../../opt/${P}/bin/${rustdoc}" "/usr/bin/${rustdoc}" dosym "../../opt/${P}/bin/${rustgdb}" "/usr/bin/${rustgdb}" + dosym "../../opt/${P}/bin/${rustgdbgui}" "/usr/bin/${rustgdbgui}" dosym "../../opt/${P}/bin/${rustlldb}" "/usr/bin/${rustlldb}" local cargo=cargo-bin-${PV} @@ -116,6 +119,7 @@ src_install() { cat <<-EOF > "${T}/provider-${P}" /usr/bin/rustdoc /usr/bin/rust-gdb + /usr/bin/rust-gdbgui /usr/bin/rust-lldb EOF echo /usr/bin/cargo >> "${T}/provider-${P}"