summaryrefslogtreecommitdiff
blob: d4e7ab6add997c2d8a1a81f95e794341a4519053 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

OVERLAY="$(portageq get_repo_path / xfce-dev)"

pushd "${OVERLAY}" >/dev/null
for i in $(git status --porcelain|grep ebuild|awk '{ print $2 }'); do
	pkgs+=" $(dirname ${i})"
done

for i in ${pkgs}; do
	pushd ${i} >/dev/null
	repoman ci -m "$(basename ${i}): Sync with gentoo-x86"
	popd >/dev/null
done
popd >/dev/null