diff options
author | Сухарик <suhr@i2pmail.org> | 2015-01-05 08:30:52 +0300 |
---|---|---|
committer | Сухарик <suhr@i2pmail.org> | 2015-01-05 08:32:32 +0300 |
commit | 513a6b396a0d3f0235306462f32df371af665fac (patch) | |
tree | c248cc08421914110a3eb9a28be7c35b673d9d85 /.travis.yml | |
parent | dev-lang/rust: dirty fix https://github.com/Heather/gentoo-rust/issues/41 (diff) | |
download | rust-513a6b396a0d3f0235306462f32df371af665fac.tar.gz rust-513a6b396a0d3f0235306462f32df371af665fac.tar.bz2 rust-513a6b396a0d3f0235306462f32df371af665fac.zip |
update .travis.yml
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index 329d498..f877983 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,24 +1,25 @@ -# Run repoman on travis -# https://github.com/mrueg/repoman-travis +# +# Run repoman via travis +# See https://github.com/mrueg/repoman-travis # language: python python: - "3.4" env: - - PORTAGE_VER="2.2.14" + - PORTAGE_VER="2.2.15" before_script: - mkdir travis-overlay - mv !(travis-overlay) travis-overlay/ - mv .git travis-overlay/ - wget "https://raw.githubusercontent.com/mrueg/repoman-travis/master/.travis.yml" -O .travis.yml.upstream - - wget "http://distfiles.gentoo.org/distfiles/portage-${PORTAGE_VER}.tar.bz2" + - wget "https://github.com/gentoo/portage/archive/v${PORTAGE_VER}.tar.gz" -O portage-${PORTAGE_VER}.tar.gz - wget "http://distfiles.gentoo.org/snapshots/portage-latest.tar.xz" - wget "https://raw.githubusercontent.com/mrueg/repoman-travis/master/spinner.sh" - sudo chmod 777 /etc/passwd /etc/group /etc /usr spinner.sh - echo "portage:x:250:250:portage:/var/tmp/portage:/bin/false" >> /etc/passwd - echo "portage::250:portage,travis" >> /etc/group - mkdir -p /etc/portage/ /usr/portage/distfiles - - tar xjf portage-${PORTAGE_VER}.tar.bz2 + - tar xzf portage-${PORTAGE_VER}.tar.gz - tar xJf portage-latest.tar.xz -C /usr/ - cp portage-${PORTAGE_VER}/cnf/repos.conf /etc/portage/ - rsync --recursive --links --safe-links --perms --times --omit-dir-times --compress --force --whole-file --delete --stats --human-readable --timeout=180 --exclude=/distfiles --checksum --quiet rsync://rsync.gentoo.org/gentoo-portage /usr/portage |