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 01B42138334 for ; Tue, 12 Mar 2019 19:38:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 36DFAE0869; Tue, 12 Mar 2019 19:38:37 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 C9B1EE0869 for ; Tue, 12 Mar 2019 19:38:36 +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 9AD10335CD5 for ; Tue, 12 Mar 2019 19:38:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4154855B for ; Tue, 12 Mar 2019 19:38:33 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1552419482.7d0500007c1840902c7e89f245278e508bd45ef1.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: / X-VCS-Repository: repo/gentoo X-VCS-Files: skel.ebuild X-VCS-Directories: / X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 7d0500007c1840902c7e89f245278e508bd45ef1 X-VCS-Branch: master Date: Tue, 12 Mar 2019 19:38:33 +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: 80697e40-1e03-4c86-ac4a-94ea47cd7fb9 X-Archives-Hash: 7d3dc0814af0b8d3e9769f39d24e824e commit: 7d0500007c1840902c7e89f245278e508bd45ef1 Author: Ulrich Müller gentoo org> AuthorDate: Tue Mar 12 19:37:35 2019 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Tue Mar 12 19:38:02 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d050000 skel.ebuild: Elaborate on CHOST type build-time dependencies. Flip order of RDEPEND and DEPEND, so that it agrees with the devmanual. Signed-off-by: Ulrich Müller gentoo.org> skel.ebuild | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/skel.ebuild b/skel.ebuild index 88d4d177e85..77337142ec3 100644 --- a/skel.ebuild +++ b/skel.ebuild @@ -78,18 +78,20 @@ IUSE="gnome X" #RESTRICT="strip" -# Build-time dependencies, such as -# ssl? ( >=dev-libs/openssl-0.9.6b ) -# >=dev-lang/perl-5.6.1-r1 +# Run-time dependencies. Must be defined to whatever this depends on to run. +# Example: +# ssl? ( >=dev-libs/openssl-1.0.2q:0= ) +# >=dev-lang/perl-5.24.3-r1 # It is advisable to use the >= syntax show above, to reflect what you # had installed on your system when you tested the package. Then # other users hopefully won't be caught without the right version of # a dependency. -#DEPEND="" +#RDEPEND="" -# Run-time dependencies. Must be defined to whatever this depends on to run. +# Build-time dependencies that need to be binary compatible with the system +# being built (CHOST). These include libraries that we link against. # The below is valid if the same run-time depends are required to compile. -RDEPEND="${DEPEND}" +#DEPEND="${RDEPEND}" # Build-time dependencies that are executed during the emerge process, and # only need to be present in the native build system (CBUILD). Example: