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 1D4A0138334 for ; Sun, 24 Feb 2019 23:21:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 145B3E0960; Sun, 24 Feb 2019 23:21:16 +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 E08EBE0960 for ; Sun, 24 Feb 2019 23:21:15 +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 40979340845 for ; Sun, 24 Feb 2019 23:21:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 814A1326 for ; Sun, 24 Feb 2019 23:21:12 +0000 (UTC) From: "James Le Cuirot" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "James Le Cuirot" Message-ID: <1551050392.74ecef85908202a33018ed9decdcf57bdd4d25d7.chewi@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.30.1-r1.ebuild dev-lang/rust/rust-1.31.1.ebuild dev-lang/rust/rust-1.32.0.ebuild X-VCS-Directories: dev-lang/rust/ X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: 74ecef85908202a33018ed9decdcf57bdd4d25d7 X-VCS-Branch: master Date: Sun, 24 Feb 2019 23:21:12 +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: 8933dfbe-f80f-4acd-9bdf-4e115f5139f6 X-Archives-Hash: 7b8555d8bbc4a03bba6aafb34c770a79 commit: 74ecef85908202a33018ed9decdcf57bdd4d25d7 Author: James Le Cuirot gentoo org> AuthorDate: Sun Feb 24 23:19:52 2019 +0000 Commit: James Le Cuirot gentoo org> CommitDate: Sun Feb 24 23:19:52 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74ecef85 dev-lang/rust: Fix wasm USE flag by restoring WebAssembly target Bug: https://bugs.gentoo.org/678186 Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: James Le Cuirot gentoo.org> dev-lang/rust/rust-1.30.1-r1.ebuild | 2 +- dev-lang/rust/rust-1.31.1.ebuild | 2 +- dev-lang/rust/rust-1.32.0.ebuild | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-lang/rust/rust-1.30.1-r1.ebuild b/dev-lang/rust/rust-1.30.1-r1.ebuild index 123b8e3f279..676b0561475 100644 --- a/dev-lang/rust/rust-1.30.1-r1.ebuild +++ b/dev-lang/rust/rust-1.30.1-r1.ebuild @@ -137,7 +137,7 @@ src_configure() { release-debuginfo = $(toml_usex debug) assertions = $(toml_usex debug) targets = "${LLVM_TARGETS// /;}" - experimental-targets = "" + experimental-targets = "$(usex wasm WebAssembly '')" link-shared = $(toml_usex system-llvm) [build] build = "${rust_target}" diff --git a/dev-lang/rust/rust-1.31.1.ebuild b/dev-lang/rust/rust-1.31.1.ebuild index be183fd05b4..a4074c8e232 100644 --- a/dev-lang/rust/rust-1.31.1.ebuild +++ b/dev-lang/rust/rust-1.31.1.ebuild @@ -137,7 +137,7 @@ src_configure() { release-debuginfo = $(toml_usex debug) assertions = $(toml_usex debug) targets = "${LLVM_TARGETS// /;}" - experimental-targets = "" + experimental-targets = "$(usex wasm WebAssembly '')" link-shared = $(toml_usex system-llvm) [build] build = "${rust_target}" diff --git a/dev-lang/rust/rust-1.32.0.ebuild b/dev-lang/rust/rust-1.32.0.ebuild index 73715829cfa..06578ddc8bf 100644 --- a/dev-lang/rust/rust-1.32.0.ebuild +++ b/dev-lang/rust/rust-1.32.0.ebuild @@ -143,7 +143,7 @@ src_configure() { release-debuginfo = $(toml_usex debug) assertions = $(toml_usex debug) targets = "${LLVM_TARGETS// /;}" - experimental-targets = "" + experimental-targets = "$(usex wasm WebAssembly '')" link-shared = $(toml_usex system-llvm) [build] build = "${rust_target}"