From owner-svn-ports-all@freebsd.org Tue Dec 15 19:01:43 2020 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 60CFD4BF4AC; Tue, 15 Dec 2020 19:01:43 +0000 (UTC) (envelope-from pizzamig@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 "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CwSKg2M3bz4kVw; Tue, 15 Dec 2020 19:01:43 +0000 (UTC) (envelope-from pizzamig@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 43A2119117; Tue, 15 Dec 2020 19:01:43 +0000 (UTC) (envelope-from pizzamig@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0BFJ1h5P042551; Tue, 15 Dec 2020 19:01:43 GMT (envelope-from pizzamig@FreeBSD.org) Received: (from pizzamig@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0BFJ1gc3042550; Tue, 15 Dec 2020 19:01:42 GMT (envelope-from pizzamig@FreeBSD.org) Message-Id: <202012151901.0BFJ1gc3042550@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pizzamig set sender to pizzamig@FreeBSD.org using -f From: Luca Pizzamiglio Date: Tue, 15 Dec 2020 19:01:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r558174 - head/www/lychee/files X-SVN-Group: ports-head X-SVN-Commit-Author: pizzamig X-SVN-Commit-Paths: head/www/lychee/files X-SVN-Commit-Revision: 558174 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: Tue, 15 Dec 2020 19:01:43 -0000 Author: pizzamig Date: Tue Dec 15 19:01:42 2020 New Revision: 558174 URL: https://svnweb.freebsd.org/changeset/ports/558174 Log: www/lychee: fix build add missing files Reported by:pkg-fallout Added: head/www/lychee/files/ head/www/lychee/files/patch-Cargo.lock (contents, props changed) head/www/lychee/files/patch-Cargo.toml (contents, props changed) Added: head/www/lychee/files/patch-Cargo.lock ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/lychee/files/patch-Cargo.lock Tue Dec 15 19:01:42 2020 (r558174) @@ -0,0 +1,26 @@ +--- Cargo.lock.orig 2020-12-14 11:19:49 UTC ++++ Cargo.lock +@@ -2140,15 +2140,6 @@ source = "registry+https://github.com/rust-lang/crates + checksum = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de" + + [[package]] +-name = "openssl-src" +-version = "111.13.0+1.1.1i" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "045e4dc48af57aad93d665885789b43222ae26f4886494da12d1ed58d309dcb6" +-dependencies = [ +- "cc", +-] +- +-[[package]] + name = "openssl-sys" + version = "0.9.58" + source = "registry+https://github.com/rust-lang/crates.io-index" +@@ -2157,7 +2148,6 @@ dependencies = [ + "autocfg", + "cc", + "libc", +- "openssl-src", + "pkg-config", + "vcpkg", + ] Added: head/www/lychee/files/patch-Cargo.toml ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/lychee/files/patch-Cargo.toml Tue Dec 15 19:01:42 2020 (r558174) @@ -0,0 +1,9 @@ +--- Cargo.toml.orig 2020-12-14 11:18:17 UTC ++++ Cargo.toml +@@ -53,6 +53,3 @@ assert_cmd = "1.0" + predicates = "1.0" + uuid = { version = "0.8", features = ["v4"] } + tempfile = "3.1" +- +-[features] +-vendored-openssl = ["openssl-sys/vendored"]