Gentoo Archives: gentoo-commits

From: "Göktürk Yüksek" <gokturk@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/devmanual:master commit in: keywording/
Date: Mon, 27 Aug 2018 15:24:31
Message-Id: 1535383434.cd0550900d2461ceef2ad82da9371309a49131be.gokturk@gentoo
1 commit: cd0550900d2461ceef2ad82da9371309a49131be
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 19 22:46:11 2018 +0000
4 Commit: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 27 15:23:54 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=cd055090
7
8 keywording: sort keywords out
9
10 Closes: https://github.com/gentoo/devmanual.gentoo.org/pull/91
11
12 keywording/text.xml | 8 ++++----
13 1 file changed, 4 insertions(+), 4 deletions(-)
14
15 diff --git a/keywording/text.xml b/keywording/text.xml
16 index 5ad2c75..1dfbc32 100644
17 --- a/keywording/text.xml
18 +++ b/keywording/text.xml
19 @@ -29,7 +29,7 @@ A sample <c>KEYWORDS</c> entry might look like:
20 </p>
21
22 <codesample lang="ebuild">
23 -KEYWORDS="x86 sparc ~mips ~ppc ~ppc-macos -ia64"
24 +KEYWORDS="-ia64 ~mips ~ppc sparc x86 ~ppc-macos"
25 </codesample>
26
27 <p>
28 @@ -82,15 +82,15 @@ The different levels of keyword are:
29 <p>
30 The <c>-*</c> keyword is special. It is used to indicate package versions which are
31 not worth trying to test on unlisted archs. For example, a binary-only package
32 -which is only supported upstream on <c>x86</c> and <c>ppc</c> might use:
33 +which is only supported upstream on <c>ppc</c> and <c>x86</c> might use:
34 </p>
35
36 <codesample lang="ebuild">
37 -KEYWORDS="-* x86 ppc"
38 +KEYWORDS="-* ppc x86"
39 </codesample>
40
41 <p>
42 -This is different in implication from <c>"x86 ppc"</c> <d /> the former implies that
43 +This is different in implication from <c>"ppc x86"</c> <d /> the former implies that
44 it will not work on other archs, whereas the latter implies that it has not been
45 tested.
46 </p>