Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 267565 | Differences between
and this patch

Collapse All | Expand All

(-)ekeyword2 (-19 / +2 lines)
Lines 10-37 Link Here
10
from sys import argv
10
from sys import argv
11
from fnmatch import fnmatch
11
from fnmatch import fnmatch
12
from shutil import copyfile
12
from shutil import copyfile
13
from portage import settings
13
14
14
import re
15
import re
15
16
16
STABLE_KEYWORDS = frozenset((
17
STABLE_KEYWORDS = frozenset((settings["PORTAGE_ARCHLIST"].split()))
17
	'alpha',
18
	'amd64',
19
	'amd64-fbsd',
20
	'arm',
21
	'hppa',
22
	'ia64',
23
	'mips',
24
	'm68k',
25
	'ppc',
26
	'ppc-macos',
27
	'ppc64',
28
	's390',
29
	'sparc',
30
	'sparc-fbsd',
31
	'sh',
32
	'x86',
33
	'x86-fbsd',
34
))
35
TEST_KEYWORDS = frozenset(['~'+k for k in STABLE_KEYWORDS])
18
TEST_KEYWORDS = frozenset(['~'+k for k in STABLE_KEYWORDS])
36
KNOWN_KEYWORDS = STABLE_KEYWORDS | TEST_KEYWORDS
19
KNOWN_KEYWORDS = STABLE_KEYWORDS | TEST_KEYWORDS
37
20

Return to bug 267565