summaryrefslogtreecommitdiff
blob: 0ca9b559569650d2fff50e17165e89ff542c7735 (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
#!/bin/sh
#
# Copyright © 2008-2010 Diego Elio Pettenò <flameeyes@gentoo.org>
#
# Permission to use, copy, modify, and distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
# ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
# OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
# CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
# DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
# PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
# ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
# SOFTWARE.

tboxdir=$(dirname $0)

mkdir -p /var/cache/tinderbox

reset_emergelog() {
    rm -f /var/log/emerge.log
}

source /etc/portage/make.tinderbox.private.conf

if [[ -n ${BTI_ACCOUNT} ]]; then
    dent_me() {
        echo "$@" | bti ${TINDERBOX_PROXY:+--proxy "${TINDERBOX_PROXY}"} --host "${BTI_HOST}" --account "${BTI_ACCOUNT}" --password "${BTI_PASSWORD}" --background
    }
else
    dent_me() { :; }
fi

set -e

dent_me "#syncing anew upon request"

emerge --sync

echo > /etc/portage/package.mask/currentrun

${tboxdir}/unavailable_installed.py | xargs -r emerge -C

reset_emergelog

emerge -Nu1 sys-apps/portage

emerge -Nu1 sys-devel/gcc
if fgrep -q '>>> emerge' /var/log/emerge.log && gcc-config -l | tail -n 1 | grep -v asneeded; then
    ${tboxdir}/update-gcc-asneeded.sh
    exit 0
fi

reset_emergelog

if emerge -Nu1 app-admin/perl-cleaner dev-lang/perl &&
    fgrep -q '>>> emerge' /var/log/emerge.log; then

    dent_me "running per-cleaner"
    perl-cleaner --all -- --keep-going
fi

reset_emergelog

if emerge -Nu1 dev-lang/ghc app-admin/haskell-updater &&
    fgrep -q '>>> emerge' /var/log/emerge.log; then

    dent_me "running #haskell-updater"
    /usr/sbin/haskell-updater --upgrade
fi

reset_emergelog

if emerge -Nu1 dev-lang/ocaml &&
    fgrep -q '>>> emerge' /var/log/emerge.log; then

    dent_me "running #ocaml-rebuild"
    # Don't fail if ocaml-rebuild fails, because of bug #319553
    /usr/sbin/ocaml-rebuild.sh -f || true
fi

reset_emergelog

[[ -f /usr/src/linux/.config ]] && cp /usr/src/linux/.config /usr/src/config

if emerge -Nu1 sys-kernel/gentoo-sources &&
    fgrep -q '>>> emerge' /var/log/emerge.log; then

    dent_me "new #gentoo-sources, making oldconfig"
    [[ -f /usr/src/config ]] && cp /usr/src/config /usr/src/linux/.config

    pushd /usr/src/linux
        yes '' | make -j14 oldconfig && \
            make -j14 prepare modules_prepare
    popd

    emerge -P sys-kernel/gentoo-sources
fi

emerge -u \
    sys-libs/glibc \
    $([[ -n ${BTI_ACCOUNT} ]] && echo net-misc/bti) \
    ${TINDERBOX_ANALYSIS_ADDR:+net-analyzer/netcat6} \
    app-misc/screen \
    app-portage/gentoolkit \
    dev-java/java-dep-check \
    app-portage/portage-utils \
    dev-lang/python:2.7

reset_emergelog

# set the default Python interpreter to Python 2.7. The tinderbox is
# experimental, but not crazy.
eselect python set python2.7 || exit 1

# Generate a new complete list, this will also produce the list of new
# dependencies to satisfy. Ignore new-style virtuals, leave them to be
# merged out of dependencies.
${tboxdir}/tinderbox.py 2> /var/cache/tinderbox/use-conflicts | egrep -v '^virtual/' > /var/cache/tinderbox/list-complete

# Launch the fetch operation in background, saving the log (of both
# good results and failures).
nohup xargs -a /var/cache/tinderbox/list-complete emerge -FO --keep-going &> /var/log/tinderbox-fetch.log &

# Now replace the old queue with a new one, skipping everything that
# we wouldn't otherwise be merging (packages masked, removed, and
# similar).
mv /var/cache/tinderbox/queue /var/cache/tinderbox/queue.old
sort /var/cache/tinderbox/queue.old /var/cache/tinderbox/list-complete | uniq -d | sort -R > /var/cache/tinderbox/queue