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 3AA361395E2 for ; Tue, 29 Nov 2016 07:33:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 46813E0B2D; Tue, 29 Nov 2016 07:33:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 08F5BE0B2D for ; Tue, 29 Nov 2016 07:33:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 151E3341265 for ; Tue, 29 Nov 2016 07:33:25 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D18DB24A4 for ; Tue, 29 Nov 2016 07:33:22 +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: <1477938078.3eb1886b944c912129f795b11a48ee2d14e71949.ulm@gentoo> Subject: [gentoo-commits] proj/pms:master commit in: / X-VCS-Repository: proj/pms X-VCS-Files: dependencies.tex X-VCS-Directories: / X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 3eb1886b944c912129f795b11a48ee2d14e71949 X-VCS-Branch: master Date: Tue, 29 Nov 2016 07:33:22 +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-Archives-Salt: 69116a5d-2d2d-4fe0-a2d0-4c4fa8784178 X-Archives-Hash: b7c7b7cee06027d3d7f81a55c612f141 commit: 3eb1886b944c912129f795b11a48ee2d14e71949 Author: Michał Górny gentoo org> AuthorDate: Mon Oct 31 15:04:46 2016 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Mon Oct 31 18:21:18 2016 +0000 URL: https://gitweb.gentoo.org/proj/pms.git/commit/?id=3eb1886b dependencies.tex: Explicitly require matching package for := Explicitly indicate that the ebuild is required to provide appropriate DEPEND for := to have a matching package installed. Additionally ban the cases where := can not be reliably used or does not make any sense: PDEPEND (because by intent the dependency can not be in DEPEND), and any-of groups (because the non-binding nature of any-of group collides with binding nature of :=). dependencies.tex | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dependencies.tex b/dependencies.tex index 79801c4..9917bc4 100644 --- a/dependencies.tex +++ b/dependencies.tex @@ -296,6 +296,10 @@ slot/sub-slot pair between the colon and equals sign when saving the package's d sub-slot part must not be omitted here (when the SLOT variable omits the sub-slot part, the package is considered to have an implicit sub-slot which is equal to the regular slot). +Whenever the equals slot operator is used in an enabled dependency group, the dependencies +(\t{DEPEND}) must ensure that a matching package is installed at build time. It is invalid to use +the equals slot operator inside \t{PDEPEND} or inside any-of dependency specifications. + \subsubsection{2-Style and 4-Style Use Dependencies} \label{sec:use-dep} 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 7F277139694 for ; Mon, 10 Apr 2017 18:13:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D3F3C21C1B8; Mon, 10 Apr 2017 18:12:19 +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-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B46BF21C1B8 for ; Mon, 10 Apr 2017 18:12:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 0026334106E for ; Mon, 10 Apr 2017 18:12:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 995587441 for ; Mon, 10 Apr 2017 18:12:17 +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: <1477938078.3eb1886b944c912129f795b11a48ee2d14e71949.ulm@gentoo> Subject: [gentoo-commits] proj/pms:eapi-7 commit in: / X-VCS-Repository: proj/pms X-VCS-Files: dependencies.tex X-VCS-Directories: / X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 3eb1886b944c912129f795b11a48ee2d14e71949 X-VCS-Branch: eapi-7 Date: Mon, 10 Apr 2017 18:12:17 +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-Archives-Salt: a62e4482-5884-4e78-a723-74c6ec2fbab7 X-Archives-Hash: c7531c47f255b122cc5fde74f2b933ef Message-ID: <20170410181217.ui1SClqpVJgz4unv0lcfbZXdi-ldHfq_Dm5vwq5IYi0@z> commit: 3eb1886b944c912129f795b11a48ee2d14e71949 Author: Michał Górny gentoo org> AuthorDate: Mon Oct 31 15:04:46 2016 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Mon Oct 31 18:21:18 2016 +0000 URL: https://gitweb.gentoo.org/proj/pms.git/commit/?id=3eb1886b dependencies.tex: Explicitly require matching package for := Explicitly indicate that the ebuild is required to provide appropriate DEPEND for := to have a matching package installed. Additionally ban the cases where := can not be reliably used or does not make any sense: PDEPEND (because by intent the dependency can not be in DEPEND), and any-of groups (because the non-binding nature of any-of group collides with binding nature of :=). dependencies.tex | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dependencies.tex b/dependencies.tex index 79801c4..9917bc4 100644 --- a/dependencies.tex +++ b/dependencies.tex @@ -296,6 +296,10 @@ slot/sub-slot pair between the colon and equals sign when saving the package's d sub-slot part must not be omitted here (when the SLOT variable omits the sub-slot part, the package is considered to have an implicit sub-slot which is equal to the regular slot). +Whenever the equals slot operator is used in an enabled dependency group, the dependencies +(\t{DEPEND}) must ensure that a matching package is installed at build time. It is invalid to use +the equals slot operator inside \t{PDEPEND} or inside any-of dependency specifications. + \subsubsection{2-Style and 4-Style Use Dependencies} \label{sec:use-dep}