forked from the-maldridge/xbps-mini-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxbps-mini-builder
executable file
·70 lines (59 loc) · 1.92 KB
/
xbps-mini-builder
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
#!/bin/sh
# Jump to the directory that owns this script
cd "${0%/*}" || exit 1
# Do we have keys to sign with?
if [ ! -f id_rsa ] ; then
rm -rf id_rsa id_rsa.pub
ssh-keygen -b 4096 -t rsa -m PEM -N "" -f id_rsa
fi
# Remove old state
rm -f changed
# Create the void-packages directory if it doesn't exit
mkdir -p void-packages
cd void-packages || exit 2
# Do we actually have the repo yet?
if [ ! -d srcpkgs ] ; then
# No, clone a fresh copy
git clone https://github.com/void-linux/void-packages .
# On bootstrap we need to build everything
cp ../packages.list ../changed
else
# Yes, pull in the changes for this run
git reset --hard HEAD
git pull | tee ../changed
fi
# Do we have a live build environment
if [ ! -d masterdir ] ; then
# No masterdir, go ahead and bootstrap it
./xbps-src binary-bootstrap
else
# Have a masterdir, keep it up to date
./xbps-src bootstrap-update
fi
# Apply provided config file if it exists
if [ -f ../xbps-src.conf ] ; then
cat ../xbps-src.conf > etc/conf
fi
if [ -z "$@" ] ; then
while read -r package ; do
if grep "${package}" ../changed; then
./xbps-src pkg "${package}"
fi
done < ../packages.list
else
for pkg in "$@"; do
./xbps-src pkg "${pkg}"
done
fi
# Sign built packages
xbps-rindex --sign --signedby "XBPS-mini-builder" --privkey ../id_rsa hostdir/binpkgs
xbps-rindex --sign-pkg --privkey ../id_rsa hostdir/binpkgs/*.xbps
for folder in multilib multilib/nonfree nonfree ; do
printf "Trying to sign packages in %s\\n" ${folder}
if [ -d "hostdir/binpkgs/${folder}" ] ; then
printf "Updating repodata in hostdir/binpkgs/%s\\n" ${folder}
xbps-rindex --sign --signedby "XBPS-mini-builder" --privkey ../id_rsa "hostdir/binpkgs/${folder}/"
printf "Signing packages in hostdir/binpkgs/%s\\n" ${folder}
xbps-rindex --sign-pkg --privkey ../id_rsa hostdir/binpkgs/${folder}/*.xbps
fi
done