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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 41FD515808B for ; Fri, 8 Apr 2022 01:14:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 52130E08EB; Fri, 8 Apr 2022 01:14:26 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 24374E08EB for ; Fri, 8 Apr 2022 01:14:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C5E133415C9 for ; Fri, 8 Apr 2022 01:14:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 42498D0 for ; Fri, 8 Apr 2022 01:14:19 +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: <1649380445.24621566d964285bf633b10735ae1b98fb51e365.gyakovlev@gentoo> Subject: [gentoo-commits] proj/cargo-ebuild:master commit in: / X-VCS-Repository: proj/cargo-ebuild X-VCS-Files: Cargo.lock cargo-ebuild-template.tera X-VCS-Directories: / X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 24621566d964285bf633b10735ae1b98fb51e365 X-VCS-Branch: master Date: Fri, 8 Apr 2022 01:14:19 +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: 40af41c7-ed75-49e4-bf6d-4dbedc216ab6 X-Archives-Hash: 73cf63815489f67aa0ce218426963494 commit: 24621566d964285bf633b10735ae1b98fb51e365 Author: Georgy Yakovlev gentoo org> AuthorDate: Fri Apr 8 01:12:55 2022 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Fri Apr 8 01:14:05 2022 +0000 URL: https://gitweb.gentoo.org/proj/cargo-ebuild.git/commit/?id=24621566 rdepend on virtual/rust in template Bug: https://bugs.gentoo.org/836302 Signed-off-by: Georgy Yakovlev gentoo.org> Cargo.lock | 2 +- cargo-ebuild-template.tera | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 15df4bf..43138bd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -102,7 +102,7 @@ dependencies = [ [[package]] name = "cargo-ebuild" -version = "0.5.1" +version = "0.5.2-dev" dependencies = [ "anyhow", "cargo-lock", diff --git a/cargo-ebuild-template.tera b/cargo-ebuild-template.tera index 7751819..029f38c 100644 --- a/cargo-ebuild-template.tera +++ b/cargo-ebuild-template.tera @@ -18,7 +18,10 @@ DEPEND=" net-libs/libssh2:= " -RDEPEND="${DEPEND}" +RDEPEND=" + ${DEPEND} + virtual/rust +" QA_FLAGS_IGNORED="usr/bin/cargo-ebuild" {% endblock %}