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