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 59155138334 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 1C21AE07DF; Mon, 15 Apr 2019 19:42:55 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 E05B4E07DF for ; Mon, 15 Apr 2019 19:42:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 5B0D23412EB 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 3B931570 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: <1555357285.cae918679262d3901281e2a6c5867fb6e2437645.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/rust/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/rust/rust-1.34.0-r1.ebuild dev-lang/rust/rust-1.34.0-r2.ebuild X-VCS-Directories: dev-lang/rust/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: cae918679262d3901281e2a6c5867fb6e2437645 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: 77ec0fb4-41fd-4899-8ac2-3f88e6854294 X-Archives-Hash: d34866608d005770ccdb0c4827968ce1 commit: cae918679262d3901281e2a6c5867fb6e2437645 Author: Georgy Yakovlev gentoo org> AuthorDate: Mon Apr 15 18:33:34 2019 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Mon Apr 15 19:41:25 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cae91867 dev-lang/rust: avoid rust-gdbgui slot collision Closes: https://bugs.gentoo.org/683392 Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Georgy Yakovlev gentoo.org> dev-lang/rust/{rust-1.34.0-r1.ebuild => rust-1.34.0-r2.ebuild} | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dev-lang/rust/rust-1.34.0-r1.ebuild b/dev-lang/rust/rust-1.34.0-r2.ebuild similarity index 98% rename from dev-lang/rust/rust-1.34.0-r1.ebuild rename to dev-lang/rust/rust-1.34.0-r2.ebuild index fd69e01c52b..ed2af7339e3 100644 --- a/dev-lang/rust/rust-1.34.0-r1.ebuild +++ b/dev-lang/rust/rust-1.34.0-r2.ebuild @@ -238,6 +238,7 @@ src_install() { mv "${ED}/usr/bin/rustc" "${ED}/usr/bin/rustc-${PV}" || die mv "${ED}/usr/bin/rustdoc" "${ED}/usr/bin/rustdoc-${PV}" || die mv "${ED}/usr/bin/rust-gdb" "${ED}/usr/bin/rust-gdb-${PV}" || die + mv "${ED}/usr/bin/rust-gdbgui" "${ED}/usr/bin/rust-gdbgui-${PV}" || die mv "${ED}/usr/bin/rust-lldb" "${ED}/usr/bin/rust-lldb-${PV}" || die mv "${ED}/usr/bin/cargo" "${ED}/usr/bin/cargo-${PV}" || die if use clippy; then @@ -280,6 +281,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}"