From owner-svn-ports-all@freebsd.org Sat Mar 27 15:40:28 2021 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id DA2D85C7AD7; Sat, 27 Mar 2021 15:40:28 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4F732M0wDGz3sJ5; Sat, 27 Mar 2021 15:40:26 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DFFBC75FF; Sat, 27 Mar 2021 15:40:25 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 12RFePEt029572; Sat, 27 Mar 2021 15:40:25 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 12RFePt4029571; Sat, 27 Mar 2021 15:40:25 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <202103271540.12RFePt4029571@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Sat, 27 Mar 2021 15:40:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r569338 - head/lang/gleam X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: head/lang/gleam X-SVN-Commit-Revision: 569338 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Mar 2021 15:40:29 -0000 Author: tobik Date: Sat Mar 27 15:40:25 2021 New Revision: 569338 URL: https://svnweb.freebsd.org/changeset/ports/569338 Log: lang/gleam: Unbreak build with Rust 1.51.0 (D29425) error: a method with this name may be added to the standard library in the future --> src/docs.rs:142:54 | 142 | unnest: module.name.iter().map(|_| "..").intersperse("/").collect(), | ^^^^^^^^^^^ | note: the lint level is defined here --> src/main.rs:1:9 | 1 | #![deny(warnings)] | ^^^^^^^^ = note: `#[deny(unstable_name_collisions)]` implied by `#[deny(warnings)]` = warning: once this method is added to the standard library, the ambiguity may cause an error or change in behavior! = note: for more information, see issue #48919 = help: call with fully qualified syntax `itertools::Itertools::intersperse(...)` to keep using the current method Cap the lint level at warnings for now http://package18.nyi.freebsd.org/data/122amd64-default-foo/2021-03-26_19h06m01s/logs/errors/gleam-0.14.2.log PR: 254578 Modified: head/lang/gleam/Makefile Modified: head/lang/gleam/Makefile ============================================================================== --- head/lang/gleam/Makefile Sat Mar 27 15:30:25 2021 (r569337) +++ head/lang/gleam/Makefile Sat Mar 27 15:40:25 2021 (r569338) @@ -234,6 +234,7 @@ CARGO_CRATES= adler-0.2.3 \ wyz-0.2.0 \ x509-parser-0.9.0 \ xattr-0.2.2 +RUSTFLAGS+= --cap-lints=warn PLIST_FILES= bin/gleam