summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2020-08-13 18:20:48 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2020-08-13 18:21:20 +0200
commit314c2fd7884b929336010485fb702c0d29fe8d1e (patch)
tree92c1437a382e784f3c1092c76c1538bd600d021c
parent8f7a2cfe0b942e9e492fb90867ddd9fb724a82c5 (diff)
downloadkde-314c2fd7884b929336010485fb702c0d29fe8d1e.tar.gz
kde-314c2fd7884b929336010485fb702c0d29fe8d1e.tar.bz2
kde-314c2fd7884b929336010485fb702c0d29fe8d1e.zip
Update default portage directories
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r--.travis.yml10
1 files changed, 5 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml
index b66482d2b32..cddb6a3a549 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -11,20 +11,20 @@ before_install:
- sudo apt-get -qq update
- pip install lxml pyyaml
before_script:
- - sudo chmod a+rwX /etc/passwd /etc/group /etc /usr
- - mkdir -p travis-overlay /etc/portage /usr/portage/distfiles
+ - sudo chmod a+rwX /etc/passwd /etc/group /etc /var /var/cache
+ - mkdir -p travis-overlay /etc/portage /var/cache/distfiles /var/db/repos/gentoo
- 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 "https://raw.githubusercontent.com/mrueg/repoman-travis/master/spinner.sh"
- wget -qO - "https://github.com/gentoo/portage/archive/portage-${PORTAGE_VER}.tar.gz" | tar xz
- - wget -qO - "https://github.com/gentoo-mirror/gentoo/archive/master.tar.gz" | tar xz -C /usr/portage --strip-components=1
+ - wget -qO - "https://github.com/gentoo-mirror/gentoo/archive/master.tar.gz" | tar xz -C /var/db/repos/gentoo --strip-components=1
- chmod a+rwx spinner.sh
- echo "portage:x:250:250:portage:/var/tmp/portage:/bin/false" >> /etc/passwd
- echo "portage::250:portage,travis" >> /etc/group
- - wget "https://www.gentoo.org/dtd/metadata.dtd" -O /usr/portage/distfiles/metadata.dtd
+ - wget "https://www.gentoo.org/dtd/metadata.dtd" -O /var/cache/distfiles/metadata.dtd
- ln -s $TRAVIS_BUILD_DIR/portage-portage-${PORTAGE_VER}/cnf/repos.conf /etc/portage/repos.conf
- - ln -s /usr/portage/profiles/default/linux/amd64/17.0 /etc/portage/make.profile
+ - ln -s /var/db/repos/gentoo/profiles/default/linux/amd64/17.0 /etc/portage/make.profile
- SIZE=$(stat -c %s .travis.yml.upstream)
- if ! cmp -n $SIZE -s .travis.yml .travis.yml.upstream; then echo -e "\e[31m !!! .travis.yml outdated! Update available https://github.com/mrueg/repoman-travis \e[0m" > /tmp/update ; fi
- cd travis-overlay