diff options
author | V3n3RiX <venerix@rogentos.ro> | 2016-04-17 12:27:28 +0100 |
---|---|---|
committer | V3n3RiX <venerix@rogentos.ro> | 2016-04-17 12:27:28 +0100 |
commit | 049bae8660e0734be5be8f9e1052f69e9983868a (patch) | |
tree | ce9db5af3e2d25a9200eeec46a38755949d51a50 /usermod | |
parent | 01c51c734d7cd9ea570f7acf26837a03fffd5141 (diff) |
lets try to inject portage tree on the fly
Diffstat (limited to 'usermod')
-rwxr-xr-x | usermod | 22 |
1 files changed, 22 insertions, 0 deletions
@@ -0,0 +1,22 @@ +#!/usr/bin/env bash + +fetch_portage_tree() { + if [[ ! -d /usr/portage/.git ]] ; then + cd /usr/portage && git init > /dev/null 2>&1 + git remote add origin git://anongit.gentoo.org/repo/gentoo.git + git config core.sparsecheckout true + echo "profiles/*" >> .git/info/sparse-checkout + echo "metadata/*" >> .git/info/sparse-checkout + echo "eclass/*" >> .git/info/sparse-checkout + echo ".gitignore" >> .git/info/sparse-checkout + git pull --depth=1 origin master > /dev/null 2>&1 + git branch -u origin/master master > /dev/null 2>&1 + rm -rf /usr/portage/profiles/updates > /dev/null 2>&1 + fi +} + +main() { + fetch_portage_tree +} + +main |