summaryrefslogtreecommitdiff
path: root/xibuild.sh
blob: 2170a719c617c263643315244ace2809289a560a (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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
#!/bin/sh

XIPKG_INFO_VERSION='05'

#include colors.sh
#include glyphs.sh
[ -f /usr/lib/colors.sh ] && . /usr/lib/colors.sh
[ -f /usr/lib/glyphs.sh ] && . /usr/lib/glyphs.sh

textout=/dev/null
src_dir="$(pwd)"
out_dir="$(pwd)"

xibuild_dir="/var/lib/xibuild"
build_dir="$xibuild_dir/build"
export_dir="$xibuild_dir/build/xipkg"

doinstall=false
dostrip=true
doclean=false
checkopt=""
subpkg="all"

root="/"

xibuild_profile="/etc/xibuild_profile.conf"
xibuild_script="/usr/lib/xibuild/xi_buildscript.sh"

usage () {
    cat << EOF
${LIGHT_RED}Usage: ${RED}xibuild [path/command]
${BLUE}Avaiable Options:
    ${BLUE}-r ${LIGHT_BLUE}[path]
        ${LIGHT_CYAN}specify the chroot to use when building packages${LIGHT_WHITE}[default: /]
    ${BLUE}-l ${LIGHT_BLUE}[path]
        ${LIGHT_CYAN}specify the file to use for logs${LIGHT_WHITE}[default: \$output/build.log]
    ${BLUE}-o ${LIGHT_BLUE}[path]
        ${LIGHT_CYAN}specify the output directory to put xipkg files ${LIGHT_WHITE}[default: ./]
    ${BLUE}-C ${LIGHT_BLUE}[path]
        ${LIGHT_CYAN}specify the directory to find xibuild files${LIGHT_WHITE}[default: ./]
    ${BLUE}-b ${LIGHT_BLUE}[path]
        ${LIGHT_CYAN}specify the directory to build things in ${LIGHT_WHITE}[default: /var/lib/xibuild]
    ${BLUE}-p ${LIGHT_BLUE}[file]
        ${LIGHT_CYAN}specify a non-default xi_profile script, to run inside the chroot ${LIGHT_WHITE}[default: /etc/xibuild_profile.conf]
    ${BLUE}-k ${LIGHT_BLUE}[file]
        ${LIGHT_CYAN}specify an openssl private key to sign packages with${LIGHT_WHITE}
    ${BLUE}-u ${LIGHT_BLUE}[subpackage]
        ${LIGHT_CYAN}specify which subpackage should be built ${LIGHT_WHITE}[default: all]
    
    ${BLUE}-v
        ${LIGHT_CYAN}verbose: print logs to stdout
    ${BLUE}-i
        ${LIGHT_CYAN}install: install the built package using xipkg
    ${BLUE}-c
        ${LIGHT_CYAN}clean: clean the out directory after building and installing
    ${BLUE}-n
        ${LIGHT_CYAN}nocheck: skip running the step stage of building
    ${BLUE}-s
        ${LIGHT_CYAN}nostrip: do not strip debugging symbols from binary
    
${BLUE}Available Commands:
    ${LIGHT_GREEN}prepare
        ${LIGHT_CYAN}prepare the build directory
    ${LIGHT_GREEN}fetch
        ${LIGHT_CYAN}fetch the sources required for the build
    ${LIGHT_GREEN}build
        ${LIGHT_CYAN}build the package, chroot if requested
    ${LIGHT_GREEN}strip
        ${LIGHT_CYAN}strip unecessary symbols from any binaries
    ${LIGHT_GREEN}package
        ${LIGHT_CYAN}package the build packages into .xipkg files
    ${LIGHT_GREEN}describe
        ${LIGHT_CYAN}create .xipkg.info files for each built package
    ${LIGHT_GREEN}sign
        ${LIGHT_CYAN}sign a package with a private key
EOF
}

extract () {
    f=$1
    case "$(file -b $f)" in 
        *"XZ"*|*"xz"*) tar -Jxf $f;;
        *"gzip"*) tar -zxf $f;;
        *"bzip2"*) tar -jxf $f;;
        *"lzip"*) tar --lzip -xf $f;;
        *"Zip"*|*"zip"*) unzip -qq -o $f ;;
        *) echo "don't know how to extract file type: $(file $f)"
    esac
}

xibuild_prepare () {
    rm -rf $root/$build_dir $root/$export_dir
    mkdir -p $root/$build_dir
    echo > $logfile
}

# fetch and extract a source folder
#   fetch_source [source_url] (branch)
#
fetch_source () {
    case "$1" in 
        *".git"|"git://"*)
        git clone $1 .
        git checkout $2 
        ;;
    *)
        local downloaded=$(basename $1)

        curl -SsL $1 > $downloaded
        extract $downloaded
        ;;
    esac
}

xibuild_fetch () {
    cd $root/$build_dir
    [ ! -z "$SOURCE" ] && fetch_source $SOURCE $BRANCH

    [ "$(ls -1 | wc -l)" = "2" ] &&
        for file in */* */.*; do 
            echo "$file" | grep -q '\.$' || mv "$file" .
        done;
        
    for url in $ADDITIONAL; do 
        case $url in 
            *'://'*) fetch_source $url;;
            *) fetch_source file://$src_dir/$url
        esac
    done
    for xibuild in $src_dir/*.xibuild; do
        echo "copying $xibuild to $root/$build_dir"
        cp -r $xibuild $root/$build_dir/
        file $root/$build_dir/$(basename $xibuild)
    done
}

xibuild_build () {
    install -d $root/$build_dir/
    install -Dm755 $xibuild_profile $root/$build_dir/xi_profile.sh
    install -Dm755 $xibuild_script $root/$build_dir/xi_buildscript.sh
    mkdir -p $root/$export_dir

    [ "$root" = "/" ] && {
        sh $build_dir/xi_buildscript.sh $NAME $build_dir $subpkg $checkopt 2>&1 || return 1
    } || {
        xichroot "$root" "$build_dir/xi_buildscript.sh $NAME $build_dir $subpkg $checkopt" 2>&1 || return 1
    } 
}

# strip file from any symbols
#  will also determine any dependencies 
#
xibuild_strip () {
   
    for pkgname in $(ls $root/$export_dir); do
        echo > $out_dir/$pkgname.deps
        for file in \
            $(find $root/$export_dir/ -type f -name \*.so* ! -name \*dbg) \
            $(find $root/$export_dir/ -type f -name \*.a) \
            $(find $root/$export_dir/ -type f -executable ); do

            strip --strip-unneeded $file 2>&1

            {
                [ "$root" = "/" ] \
                    && ldd $file \
                    || xichroot "$root" ldd "${file#$root}"
            } 2>/dev/null | grep "=>" | cut -d"=>" -f2 | awk '{ print $1 }' \
              | xargs xi -r $root -q file 2>>/dev/null >> $out_dir/$pkgname.deps 
        done
    done

    # remove libtool archives
    find $root/$export_dir -name \*.la -delete 2>&1
}

xibuild_package () {
    pkgs="$(ls -1 $root/$export_dir)"
    [ "${#pkgs}" = 0 ] && 
        printf "${LIGHT_RED}No packages built?" &&
        return 1

    for pkg in $pkgs; do 
        cd $root/$export_dir/$pkg
        [ "$(ls -1 $root/$export_dir/$pkg | wc -l)" = "0" ] && {
            printf "package $pkg is empty\n"
            [ ! -z ${SOURCE} ] && return 1
        } || {
            tar -C $root/$export_dir/$pkg -cJf $out_dir/$pkg.xipkg ./
        }
    done

    for buildfile in $(find $src_dir -name "*.xibuild"); do
        cp $buildfile $out_dir/
    done
}


xibuild_describe () {
    for xipkg in $(ls $out_dir/*.xipkg); do 
        name=$(basename $xipkg .xipkg)
        buildfile="$src_dir/$name.xibuild"
        info_file=$xipkg.info 

        . $buildfile

        local pkg_ver=$PKG_VER
        [ -z "$pkg_ver" ] && 
            pkg_ver=$BRANCH
        [ -z "$pkg_ver" ] && 
            pkg_ver="latest"

        deps="$(echo ${DEPS} | tr ' ' '\n' | cat - $out_dir/$name.deps | sort | uniq | xargs printf "%s ")"
        rm $out_dir/$name.deps

        {
            echo "# XiPKG info file version $XIPKG_INFO_VERSION"
            echo "# automatically generated from the built packages"
            echo "NAME=$name"
            echo "DESCRIPTION=$DESC"
            echo "PKG_FILE=$name.xipkg"
            echo "CHECKSUM=$(sha512sum $xipkg | awk '{ print $1 }')"
            echo "VERSION=$pkg_ver"
            echo "REVISION=$(cat ${buildfile%/*}/*.xibuild | sha512sum | cut -d' ' -f1)"
            echo "SOURCE=$SOURCE"
            echo "DATE=$(date -d @$(stat -t $xipkg | cut -d' ' -f13))"
            echo "DEPS=${deps}"
            echo "MAKE_DEPS=${MAKE_DEPS} ${DEPS}"
            echo "ORIGIN=$NAME"
        } > $info_file
    done
}

xibuild_sign () {
    [ -f "$key_file" ] && {
        for xipkg in $(ls $out_dir/*.xipkg); do 
            name=$(basename $xipkg .xipkg)
            info_file=$xipkg.info 
            {
                printf "SIGNATURE="
                openssl dgst -sign $key_file $xipkg | base64 | tr '\n' ' '
                printf "\n"
            } >> $info_file
        done
    }
}

xibuild_install () {
    for xipkg in $(ls $out_dir/*.xipkg); do 
        xipkg -nyl -r $root install $xipkg
    done
}

xibuild_clean () {
    for xipkg in $(ls $out_dir/*.xipkg*); do 
        rm $xipkg
    done
    rm $out_dir/build.log
}

while getopts ":r:l:C:k:p:b:o:u:vcinsh" opt; do
    case "${opt}" in
        r)
            root=$(realpath ${OPTARG});;
        o)
            out_dir=$(realpath ${OPTARG});;
        l)
            logfile=$(realpath ${OPTARG});;
        C)
            src_dir=$(realpath ${OPTARG});;
        b)
            build_dir=$(realpath ${OPTARG});;
        k)
            key_file=$(realpath ${OPTARG});;
        p)
            xibuild_profile=$(realpath ${OPTARG});;
        u)
            subpkg=${OPTARG};;
        v)
            textout=/dev/stdout;;
        i)
            doinstall=true;;
        c)
            doclean=true;;
        n)
            checkopt="-n";;
        s)
            dostrip=false;;
        h)
            usage; exit 0;;
    esac
done

shift $((OPTIND-1))


tasks="prepare fetch build"
$dostrip && tasks="$tasks strip"
tasks="$tasks package describe"

[ "$key_file" ] && tasks="$tasks sign"

$doinstall && tasks="$tasks install"
$doclean && tasks="$tasks clean"

[ "$#" = "1" ] && {
    [ -d "$1" ] && {
        src_dir=$(realpath $1)
    } || {
        tasks="$(echo $tasks | grep $1)"
    }
}

[ "${#logfile}" = "0" ] && logfile="$out_dir/build.log"
[ -d "${logfile%/*}" ] || mkdir -p "${logfile%/*}"

NAME=$(basename $(realpath "$src_dir"))

[ -f "$src_dir/$NAME.xibuild" ] || {
    printf "${RED}could not find $src_dir/$NAME.xibuild!\n"
    exit 1
}

build_package () {
    . $src_dir/$NAME.xibuild

    printf "${BLUE}${NAME}\n"
    for task in $tasks; do 
        printf "${BLUE}${TABCHAR}$task " 
        xibuild_$task >> $logfile && printf "${GREEN}${CHECKMARK}\n" || return 1
    done
}

build_package || {
    printf "${RED}${CROSSMARK} Failed\n"
    exit 1
}