Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/core/linux/PKGBUILD
blob: 15534cfd4b2ef222e49f397b8c549377dab30ac9 (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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
# upstream git revision: f39eaea64451349803de0db05a1cf0a236a6b29b

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}]}" = 'c8b3fbb7664801bebc2d2d1fdf624524865a7817d0021c55c98523cb58dee201' ]; then
    sha256sums_pentium4=('67d0dff17091496a7f18e93008df5345ee7c2f1732c3fcfdedb41f45c3bd11d3')
    sha256sums_i686=('78a77ca3c0851c74c28adb66b21ea65b0f144351c00da116281c3d08abe0ec43')
    sha256sums_i486=('2fe21e0f93c833043b402a59abe092825c823a15bb29351bf8a3ea6530f0a5a9')
  fi
done

# copy architecture specific config file, not default 'config'
eval "$(
  declare -f prepare | \
    sed '
      s,\.\./config,../config.$CARCH,
    '
)"

# patch architecture when copying the kernel Makefile
eval "$(
  declare -f package_linux-headers | \
    sed '
      \,/tools/objtool" ,d
      \,arch/x86/Makefile, {
        a \
        install -t "${builddir}/arch/x86" -m644 arch/x86/Makefile_32.cpu
      }
      $ i depends+=(gcc-libs=$(_get_gcc_version_from_config))
    '
)"

_get_gcc_version_from_config() {
  if [ -z "$srcdir" ]; then
    gcc --version \
    | sed '
      s@^.* @@
      1!d
    '
  else
    for _config_file in "$srcdir/$_srcname/.config" "$srcdir/config" "${srcdir%/*}/config"; do
      [ -f "$_config_file" ] && break
    done
    sed '
      s/^CONFIG_CC_VERSION_TEXT="gcc (GCC) \([0-9.]\+\)"$/\1/
      t
      d
    ' "$_config_file"
  fi
}

# use our tarballer instead of cloning from git
for ((i=0; i<${#source[@]}; i++)); do
  infos=$(
    printf '%s\n' "${source[${i}]}" | \
      sed '
        s@^\(\([^:]\+\)::\)\?\(git\|hg\)+\([^#?]\+\)\(?signed\)\?#\(\(tag\|commit\)=[^?]\+\)$@\3 \2 \4 \5 \6@
        t
        s@^\(\([^:]\+\)::\)\?\(git\|hg\)+\([^#?]\+\)#\(\(tag\|commit\)=[^?]\+\)\(?signed\)\?$@\3 \2 \4 \7 \5@
        t
        d
      '
  )
  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

# upstream prepare() does already do the *.patch patching

# avoid using zstd compression in ultra mode (exhausts virtual memory)
source+=('no-ultra-zstd.patch')
sha256sums+=('d32270be5fd9c3e3ba50f3aef33f6cfcb85be0c8216f03b777287cc621fdff28')

# temporarily disabled documentation due to sphinx_rtd_theme (FS32#163)
pkgname=(
  $(
    printf '%s\n' "${pkgname[@]}" | \
      grep -v '^\$pkgbase-docs'
  )
)
eval "$(
  declare -f build | \
    sed '
      s/\bhtmldocs\b//
    '
)"
makedepends=(${makedepends[@]//python-sphinx_rtd_theme/})
makedepends=(${makedepends[@]//python-sphinx<6.0.0/})
makedepends=(${makedepends[@]//graphviz/})
makedepends=(${makedepends[@]//imagemagick/})
makedepends=(${makedepends[@]//texlive-latexextra/})