summaryrefslogtreecommitdiff
path: root/src/stage3/stage3.sh
blob: bd8457a2565da97c2cb3641965759c05e2d6a4a5 (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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
#!/bin/bash
 ##############################################################################
 #                      parabola-riscv64-bootstrap                            #
 #                                                                            #
 #    Copyright (C) 2018  Andreas Grapentin                                   #
 #                                                                            #
 #    This program is free software: you can redistribute it and/or modify    #
 #    it under the terms of the GNU General Public License as published by    #
 #    the Free Software Foundation, either version 3 of the License, or       #
 #    (at your option) any later version.                                     #
 #                                                                            #
 #    This program is distributed in the hope that it will be useful,         #
 #    but WITHOUT ANY WARRANTY; without even the implied warranty of          #
 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the           #
 #    GNU General Public License for more details.                            #
 #                                                                            #
 #    You should have received a copy of the GNU General Public License       #
 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.   #
 ##############################################################################

set -euo pipefail

msg "Entering Stage 3"

# set a bunch of convenience variables
_builddir="$topbuilddir"/stage3
_srcdir="$topsrcdir"/stage3
_makepkgdir="$_builddir"/$CARCH-makepkg
_deptree="$_builddir"/DEPTREE
_groups="base-devel"
_pkgdest="$_builddir"/packages/$CARCH
_logdest="$_builddir"/makepkglogs

export PKGDEST="$_pkgdest"
export LOGDEST="$_logdest"

check_exe librechroot
check_exe libremakepkg
check_exe makepkg

# prepare for the build
. "$_srcdir"/prepare_chroot.sh
. "$_srcdir"/prepare_deptree.sh
. "$_srcdir"/prepare_decross.sh

msg "starting $CARCH native build"

# keep building packages until the deptree is empty
while [ -s "$_deptree" ]; do
  # grab one without unfulfilled dependencies
  _pkgname=$(grep '\[ *\]' "$_deptree" | head -n1 | awk '{print $1}') || true
  [ -n "$_pkgname" ] || die "could not resolve dependencies. exiting."

  _pkgarch=$(pacman -Si $_pkgname | grep '^Architecture' | awk '{print $3}')

  # set arch to $CARCH, unless it is any
  [ "x$_pkgarch" == "xany" ] || _pkgarch=$CARCH

  msg "makepkg: $_pkgname"
  msg "  remaining packages: $(cat "$_deptree" | wc -l)"

  echo -n "checking for built $_pkgname package ... "
  _pkgfile=$(find $_pkgdest -regex "^.*/$_pkgname-[^-]*-[^-]*-[^-]*\.pkg\.tar\.xz\$")
  [ -n "$_pkgfile" ] && _have_pkg=yes || _have_pkg=no
  echo $_have_pkg

  if [ "x$_have_pkg" == "xno" ]; then
    # prepare directories
    _pkgdir="$_makepkgdir"/$_pkgname/pkg/$_pkgname
    rm -rf "$_makepkgdir"/$_pkgname
    mkdir -pv "$_makepkgdir"/$_pkgname
    pushd "$_makepkgdir"/$_pkgname >/dev/null

    if [ "x$_pkgarch" == "xany" ]; then
      # repackage arch=(any) packages
      _pkgver=$(pacman -Si $_pkgname | grep '^Version' | awk '{print $3}')
      pacman -Sw --noconfirm --cachedir "$_pkgdest" $_pkgname
      ln -s "$_pkgdest"/$_pkgname-$_pkgver-any.pkg.tar.xz \
        "$_makepkgdir"/$_pkgname/$_pkgname-$_pkgver-any.pkg.tar.xz
    elif [ "x$_pkgname" == "xca-certificates-mozilla" ]; then
      # repackage ca-certificates-mozilla to avoid building nss
      _pkgver=$(pacman -Si $_pkgname | grep '^Version' | awk '{print $3}')
      pacman -Sw --noconfirm --cachedir . $_pkgname
      mkdir tmp && bsdtar -C tmp -xf $_pkgname-$_pkgver-*.pkg.tar.xz
      mkdir -p "$_pkgdir"/usr/share/
      cp -rv tmp/usr/share/ca-certificates/ "$_pkgdir"/usr/share/
      cat > "$_pkgdir"/.PKGINFO << EOF
pkgname = $_pkgname
pkgver = $_pkgver
pkgdesc = Mozilla's set of trusted CA certificates
url = https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS
builddate = $(date '+%s')
size = 0
arch = $_pkgarch
EOF
      cd "$_pkgdir"
      env LANG=C bsdtar -czf .MTREE \
        --format=mtree \
        --options='!all,use-set,type,uid,gid,mode,time,size,md5,sha256,link' \
        .PKGINFO *
      env LANG=C bsdtar -cf - .MTREE .PKGINFO * | xz -c -z - > \
        "$_pkgdest"/$_pkgname-$_pkgver-$_pkgarch.pkg.tar.xz
      ln -s "$_pkgdest"/$_pkgname-$_pkgver-$_pkgarch.pkg.tar.xz \
        "$_makepkgdir"/$_pkgname/$_pkgname-$_pkgver-$_pkgarch.pkg.tar.xz
    else
      # acquire the pkgbuild and auxiliary files
      _libre=https://www.parabola.nu/packages/libre/x86_64/$_pkgname/
      _core=https://www.archlinux.org/packages/core/x86_64/$_pkgname/
      _extra=https://www.archlinux.org/packages/extra/x86_64/$_pkgname/
      _community=https://www.archlinux.org/packages/community/x86_64/$_pkgname/
      for url in $_libre $_core $_extra $_community; do
        if ! curl -s $url | grep -iq 'not found'; then
          src=$(curl -s $url | grep -i 'source files' | cut -d'"' -f2 | sed 's#/tree/#/plain/#')
          for link in $(curl -sL $src | grep '^  <li><a href' | cut -d"'" -f2 \
              | sed "s#^#$(echo $src | awk -F/ '{print $3}')#"); do
            wget -q $link -O $(basename ${link%\?*});
          done
          break
        fi
      done

      # patch for cross-compiling
      if [ -f "$_srcdir"/patches/$_pkgname.patch ]; then
        cp PKGBUILD{,.old}
        patch -Np1 -i "$_srcdir"/patches/$_pkgname.patch
      fi

      # substitute common variables
      _config="https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain"
      _config_sub="$_config;f=config.sub;hb=HEAD"
      _config_guess="$_config;f=config.guess;hb=HEAD"
      sed -i "s#@CONFIG_SUB@#curl \"$_config_sub\"#g; \
              s#@CONFIG_GUESS@#curl \"$_config_guess\"#g;" \
        PKGBUILD

      # enable the target CARCH in arch array
      sed -i "s/arch=([^)]*/& $CARCH/" PKGBUILD

      # build the package
      chown -R $SUDO_USER "$_makepkgdir"/$_pkgname
      libremakepkg -n $CHOST-stage3 || die "error building $_pkgname"
    fi

    popd >/dev/null

    # update pacman cache
    rm -rf /var/cache/pacman/pkg-$CARCH/*
    rm -rf "$_pkgdest"/native.{db,files}*
    repo-add -q -R "$_pkgdest"/{native.db.tar.gz,*.pkg.tar.xz}
  fi

  # install in chroot
  _pkgfile=$(find $_pkgdest -regex "^.*/$_pkgname-[^-]*-[^-]*-[^-]*\.pkg\.tar\.xz\$" | head -n1)
  set +o pipefail
  yes | librechroot \
      -n "$CHOST-stage3" \
      -C "$_builddir"/config/pacman.conf \
      -M "$_builddir"/config/makepkg.conf \
    install-file "$_pkgfile"
  set -o pipefail

  # remove pkg from deptree
  sed -i "/^$_pkgname :/d; s/ $_pkgname\b//g" "$_deptree"
done

echo "all packages built."