Received: by mail.netbsd.org (Postfix, from userid 605) id CCD5784EB1; Tue, 21 Mar 2023 19:53:26 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0963484D55 for ; Tue, 21 Mar 2023 19:53:26 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 2mP7gGr-9ukp for ; Tue, 21 Mar 2023 19:53:25 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 5B4F284C13 for ; Tue, 21 Mar 2023 19:53:25 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4F2DCFA90; Tue, 21 Mar 2023 19:53:25 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_167942840550490" MIME-Version: 1.0 Date: Tue, 21 Mar 2023 19:53:25 +0000 From: "Nikita" Subject: CVS commit: pkgsrc/lang/rust To: pkgsrc-changes@NetBSD.org Reply-To: nikita@netbsd.org X-Mailer: log_accum Message-Id: <20230321195325.4F2DCFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_167942840550490 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nikita Date: Tue Mar 21 19:53:25 UTC 2023 Modified Files: pkgsrc/lang/rust: cargo.mk Log Message: cargo.mk: TODO: support git+https sources. To generate a diff of this commit: cvs rdiff -u -r1.32 -r1.33 pkgsrc/lang/rust/cargo.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_167942840550490 Content-Disposition: inline Content-Length: 871 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/rust/cargo.mk diff -u pkgsrc/lang/rust/cargo.mk:1.32 pkgsrc/lang/rust/cargo.mk:1.33 --- pkgsrc/lang/rust/cargo.mk:1.32 Mon Jan 23 18:49:03 2023 +++ pkgsrc/lang/rust/cargo.mk Tue Mar 21 19:53:25 2023 @@ -1,4 +1,4 @@ -# $NetBSD: cargo.mk,v 1.32 2023/01/23 18:49:03 he Exp $ +# $NetBSD: cargo.mk,v 1.33 2023/03/21 19:53:25 nikita Exp $ # # Common logic that can be used by packages that depend on cargo crates # from crates.io. This lets existing pkgsrc infrastructure fetch and verify @@ -29,6 +29,7 @@ USE_TOOLS+= bsdtar CARGO_VENDOR_DIR= ${WRKDIR}/vendor CARGO_WRKSRC?= ${WRKSRC} +# TODO: some Cargo.lock files include git+https sources which need to be fetched from the URL (not necessarily resolving to a crate.io url) DISTFILES?= ${DEFAULT_DISTFILES} .for crate in ${CARGO_CRATE_DEPENDS} DISTFILES+= ${crate}.crate --_----------=_167942840550490--