]> git.wh0rd.org - home.git/blob - .bin/gentoo-sync
fix logging when using direct rsync
[home.git] / .bin / gentoo-sync
1 #!/bin/bash
2
3 [ "${FLOCKER}" != "$0" ] && exec env FLOCKER="$0" flock -en "$0" "$0" "$@" || :
4
5 logdir="/var/log"
6 sync_log="${logdir}/rsync.log"
7 up_log="${logdir}/emerge-updates.log"
8
9 GS_RSYNC=false
10 GS_EUPDATEDB=true
11 GS_FETCH=false
12 GS_UPWORLD=true
13 GS_LAYMAN=true
14 conf="/etc/gentoo-sync.conf"
15 [[ -e ${conf} ]] && . "${conf}"
16
17 export NOCOLOR=true
18
19 (
20 date
21
22 if ${GS_RSYNC} ; then
23 # For slow systems, run rsync directly.
24 for f in make.globals make.conf ; do
25 for d in /etc /etc/portage /usr/share/portage/config ; do
26 f="${d}/make.globals"
27 [[ -e ${f} ]] && . ${f} && break
28 done
29 done
30 > "${up_log}"
31 : ${PORTAGE_RSYNC_OPTS:=-azO --delete --exclude=/distfiles --exclude=/local --exclude=/packages}
32 : ${SYNC:=rsync://rsync.gentoo.org/gentoo-portage}
33 : ${PORTDIR:=/usr/portage}
34 exec rsync ${PORTAGE_RSYNC_OPTS} ${PORTAGE_RSYNC_EXTRA_OPTS} ${SYNC}/ ${PORTDIR}/ >& "${sync_log}"
35 fi
36
37 emerge --sync -q
38 date
39 ${GS_EUPDATEDB} && $(type -P eupdatedb)
40 date
41 ${GS_LAYMAN} && l=$(type -P layman) && ${l} -S -q
42 date
43 ${GS_FETCH} && emerge world -Duf
44 #q -qr
45 date
46 ) >& ${sync_log}
47
48 if ${GS_UPWORLD} ; then
49 (
50 eval $(portageq envvar -v PORTDIR)
51 cd "${PORTDIR}"
52 good_pkgs=$(ls -d `qlist -IC`)
53 echo 'emerge -u1 --keep-going $(awk '\''$2 ~ /\// {print $2}'\'' '${up_log}')'
54 emerge ${good_pkgs} -upq --cols
55 ) >& ${up_log}
56 fi