Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/src/lib/valid-tags.sh
blob: ef2c5bf3a2dec3ebaa74a062a80326d83988c441 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/hint/bash
#
# SPDX-License-Identifier: GPL-3.0-or-later
:

# shellcheck disable=2034
DEVTOOLS_VALID_BINARY_ARCHES=(
	pentium4
	i686
	i486
)

# shellcheck disable=2034
DEVTOOLS_VALID_ARCHES=(
	"${DEVTOOLS_VALID_BINARY_ARCHES[@]}"
	any
)

# shellcheck disable=2034
_tags=(
	core-x86_64 core-any
	core-staging-x86_64 core-staging-any
	core-testing-x86_64 core-testing-any
	extra-x86_64 extra-any
	extra-staging-x86_64 extra-staging-any
	extra-testing-x86_64 extra-testing-any
	multilib-x86_64
	multilib-testing-x86_64
	multilib-staging-x86_64
	kde-unstable-x86_64 kde-unstable-any
	gnome-unstable-x86_64 gnome-unstable-any
)