summaryrefslogtreecommitdiff
path: root/core/linux/PKGBUILD
blob: f6515f0396c8d9608758dc3b0e425f9f4ac6e3e8 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# upstream git revision: 3ef771dd858107ff0c6a4588231bef0fdc70a1dc

source_pentium4=('config.pentium4')
source_i686=('config.i686')
source_i486=('config.i486')
# fail if upstream's .config changes
for ((i=0; i<${#sha256sums[@]}; i++)); do
  if [ "${sha256sums[${i}]}" = 'd8b28f67a0f0bc56e5de858141dee3607fbac48eac41b0e9f7f69685f7475b53' ]; then
    sha256sums_pentium4=('ac54bd850e5a60df33c906317abf5cbf45ee0407150a642f70a61821793340f0')
    sha256sums_i686=('a5b90eee9bbb7f406c7a3532317971146b09a7cc301d53f752a1c1f7ad0f9dfb')
    sha256sums_i486=('e481089cdec723244cf2a9413859a931102bdd354cd6903555d1d44adbe76174')
  fi
done

for _rem_i486_dep in graphviz imagemagick; do
  if printf '%s\n' "${makedepends[@]}" | grep -qxF "${_rem_i486_dep}"; then
    makedepends=(${makedepends[@]/${_rem_i486_dep}/})
    makedepends_i686+=("${_rem_i486_dep}")
    makedepends_pentium4=("${makedepends_i686[@]}")
  fi
done

eval "$(
  if [ "${CARCH}" = 'i486' ]; then
    declare -f build | \
      sed '
        s/\bhtmldocs\b//
      '
    declare -f package_linux-docs | \
      sed '
        \@/Documentation/@ s/^\s*rm /\0-f /
      '
  fi
  declare -f prepare | \
    sed '
      s,\.\./config,../config.$CARCH,
    '
  declare -f package_linux-headers | \
    sed '
      \,/tools/objtool" ,d
      \,arch/x86/Makefile, {
        a \
        install -t "${builddir}/arch/x86" -m644 arch/x86/Makefile_32.cpu
      }
    '
)"

# use our tarballer instead of cloning from git
for ((i=0; i<${#source[@]}; i++)); do
  infos=$(
    printf '%s\n' "${source[${i}]}" | \
      sed -n '
        s@^\(\([^:]\+\)::\)\?\(git\|hg\)+\([^#?]\+\)\(?signed\)\?#\(\(tag\|commit\)=\S\+\)$@\3 \2 \4 \5 \6@
        T
        p
      '
  )
  if [ -n "${infos}" ]; then
    source[${i}]=$(
      type="${infos%% *}"
      infos="${infos#* }"
      if [ -n "${infos%% *}" ]; then
        prefix="${infos%% *}"
      else
        prefix=''
      fi
      infos="${infos#* }"
      repo="${infos%% *}"
      repo64=$(
        printf '%s' "${repo}" | \
          base64 -w0 | \
          sed 's/=/%3D/g'
      )
      infos="${infos#* }"
      if [ "${infos%% *}" = '?signed' ]; then
        key_check=$(
          printf '&valid_keys='
          printf '%s,' "${validpgpkeys[@]}" | \
            sed 's/,$//'
        )
      else
        key_check=''
      fi
      infos="${infos#* }"
      if [ -z "${prefix}" ]; then
        prefix="${repo%.git}"
        prefix="${prefix##*/}"
      fi
      prefix_64=$(
        printf '%s/' "${prefix}" | \
          base64 -w0 | \
          sed 's/=/%3D/g'
      )

      printf '%s-%s.tar.gz::https://archive-server.archlinux32.org/?t=%s&p=%s&r=%s%s&%s\n' \
        "${prefix}" \
        "${pkgver}" \
        "${type}" \
        "${prefix_64}" \
        "${repo64}" \
        "${key_check}" \
        "${infos}"
    )
  fi
done

# avoid using zstd compression in ultra mode (exhausts virtual memory)
source+=('core/linux/no-ultra-zstd.patch')
sha256sums+=('3997ce6033fdf950a9960f1db720b38c47b1a2e06ab75fc6712c154f596e7c47')
# upstream prepare() does already do the *.patch patching