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 EF12F1382C5 for ; Tue, 13 Feb 2018 16:46:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2B541E09D8; Tue, 13 Feb 2018 16:46:14 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 0A6E7E09D8 for ; Tue, 13 Feb 2018 16:46:14 +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 854CF335C38 for ; Tue, 13 Feb 2018 16:46:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1B1691DB for ; Tue, 13 Feb 2018 16:46:10 +0000 (UTC) From: "Göktürk Yüksek" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Göktürk Yüksek" Message-ID: <1518540187.baa6f758e2f4f21b44b5db92bdba78d8c4b48021.gokturk@gentoo> Subject: [gentoo-commits] proj/devmanual:master commit in: general-concepts/virtuals/ X-VCS-Repository: proj/devmanual X-VCS-Files: general-concepts/virtuals/text.xml X-VCS-Directories: general-concepts/virtuals/ X-VCS-Committer: gokturk X-VCS-Committer-Name: Göktürk Yüksek X-VCS-Revision: baa6f758e2f4f21b44b5db92bdba78d8c4b48021 X-VCS-Branch: master Date: Tue, 13 Feb 2018 16:46:10 +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: 65639278-464d-4e90-b69a-2e06932e7778 X-Archives-Hash: 5482d76c4d40f00fd63738894b659344 commit: baa6f758e2f4f21b44b5db92bdba78d8c4b48021 Author: Michał Górny gentoo org> AuthorDate: Fri Jan 12 22:57:47 2018 +0000 Commit: Göktürk Yüksek gentoo org> CommitDate: Tue Feb 13 16:43:07 2018 +0000 URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=baa6f758 general-concepts/virtuals: Explain how keywording works on virtuals general-concepts/virtuals/text.xml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/general-concepts/virtuals/text.xml b/general-concepts/virtuals/text.xml index 5ba9ea5..4809394 100644 --- a/general-concepts/virtuals/text.xml +++ b/general-concepts/virtuals/text.xml @@ -42,5 +42,33 @@ from the Gentoo repository. +
+KEYWORDS in virtual packages + + +

+Since virtual packages do not install any files, they do not follow the regular +arch testing procedure. Instead, the developer can immediately set +the KEYWORDS of a virtual to the union of KEYWORDS of its +providers. In particular, if a new virtual is created for a stable package, +the virtual is committed straight to stable. +

+ +

+For example, if you have two packages: dev-libs/liblinux with +KEYWORDS="amd64 ~x86" and dev-libs/libbsd with +KEYWORDS="~amd64-fbsd ~x86-fbsd", the resulting virtual will +have: +

+ + +KEYWORDS="amd64 ~x86 ~amd64-fbsd ~x86-fbsd" + +RDEPEND="|| ( dev-libs/liblinux dev-libs/libbsd )" + + + +
+