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 21C50158086 for ; Thu, 9 Dec 2021 04:24:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 932502BC01C; Thu, 9 Dec 2021 04:24:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 26C392BC01B for ; Thu, 9 Dec 2021 04:24:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 ED55F34336E for ; Thu, 9 Dec 2021 04:24:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 26693219 for ; Thu, 9 Dec 2021 04:24:37 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1639023870.d19d95690f821f1a867f8e2095835056e988618f.sam@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: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d19d95690f821f1a867f8e2095835056e988618f X-VCS-Branch: master Date: Thu, 9 Dec 2021 04:24:37 +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: 07ed7f42-1730-4c9d-a2f5-2a052e7493aa X-Archives-Hash: 8fa941375737eead719e8c22e621ce06 commit: d19d95690f821f1a867f8e2095835056e988618f Author: Sam James gentoo org> AuthorDate: Thu Dec 9 04:21:47 2021 +0000 Commit: Sam James gentoo org> CommitDate: Thu Dec 9 04:24:30 2021 +0000 URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=d19d9569 general-concepts/virtuals: use EAPI 8 in examples Signed-off-by: Sam James gentoo.org> general-concepts/virtuals/text.xml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/general-concepts/virtuals/text.xml b/general-concepts/virtuals/text.xml index d45c1ff..f6cf198 100644 --- a/general-concepts/virtuals/text.xml +++ b/general-concepts/virtuals/text.xml @@ -24,11 +24,11 @@ An example of a virtual:

-EAPI=7 +EAPI=8 DESCRIPTION="Virtual for C++ tr1 <type_traits>" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 sparc x86 ~x64-macos" +KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~x64-macos" RDEPEND="|| ( >=sys-devel/gcc-4.1 dev-libs/boost )" @@ -95,7 +95,7 @@ For example, a virtual for different packages providing ABI-compatible

-EAPI=6 +EAPI=8 DESCRIPTION="Virtual for libfoo.so.1" SLOT="0/1" @@ -124,10 +124,11 @@ would contain:

-EAPI=6 +EAPI=8 DESCRIPTION="Virtual for libfoo.so.0" SLOT="0/0" + RDEPEND="dev-libs/libfoo:0/0" @@ -136,10 +137,11 @@ while virtual/libfoo-1.ebuild would contain:

-EAPI=6 +EAPI=8 DESCRIPTION="Virtual for libfoo.so.1" SLOT="0/1" + RDEPEND="dev-libs/newfoo:0/1"