Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] dev/mrueg:master commit in: /
Date: Mon, 22 Aug 2016 21:02:37
Message-Id: 1471899732.dc6eeafcb16cd4862866c6564aad3a7489fac442.mrueg@gentoo
1 commit: dc6eeafcb16cd4862866c6564aad3a7489fac442
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 22 21:02:12 2016 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 22 21:02:12 2016 +0000
6 URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=dc6eeafc
7
8 [traivs.yml] Update
9
10 .travis.yml | 11 +++++++----
11 1 file changed, 7 insertions(+), 4 deletions(-)
12
13 diff --git a/.travis.yml b/.travis.yml
14 index df68cf5..47b11fb 100644
15 --- a/.travis.yml
16 +++ b/.travis.yml
17 @@ -6,14 +6,17 @@ language: python
18 python:
19 - pypy
20 env:
21 - - PORTAGE_VER="2.2.28"
22 + - PORTAGE_VER="2.3.0"
23 +before_install:
24 + - sudo apt-get -qq update
25 + - pip install lxml
26 before_script:
27 - mkdir travis-overlay
28 - mv !(travis-overlay) travis-overlay/
29 - mv .git travis-overlay/
30 - wget "https://raw.githubusercontent.com/mrueg/repoman-travis/master/.travis.yml" -O .travis.yml.upstream
31 - wget "https://raw.githubusercontent.com/mrueg/repoman-travis/master/spinner.sh"
32 - - wget "https://github.com/gentoo/portage/archive/v${PORTAGE_VER}.tar.gz" -O portage-${PORTAGE_VER}.tar.gz
33 + - wget "https://github.com/gentoo/portage/archive/portage-${PORTAGE_VER}.tar.gz" -O portage-${PORTAGE_VER}.tar.gz
34 - wget "https://github.com/gentoo-mirror/gentoo/archive/master.tar.gz" -O portage-tree.tar.gz
35 - sudo chmod a+rwX /etc/passwd /etc/group /etc /usr spinner.sh
36 - chmod a+rwx spinner.sh
37 @@ -21,7 +24,7 @@ before_script:
38 - echo "portage::250:portage,travis" >> /etc/group
39 - mkdir -p /etc/portage /usr/portage/distfiles
40 - wget "https://www.gentoo.org/dtd/metadata.dtd" -O /usr/portage/distfiles/metadata.dtd
41 - - tar xzf portage-${PORTAGE_VER}.tar.gz
42 + - tar xzf portage-${PORTAGE_VER}.tar.gz && mv portage-portage-${PORTAGE_VER} portage-${PORTAGE_VER}
43 - tar xzf portage-tree.tar.gz -C /usr/portage --strip-components=1
44 - cp portage-${PORTAGE_VER}/cnf/repos.conf /etc/portage/
45 - ln -s /usr/portage/profiles/base/ /etc/portage/make.profile
46 @@ -29,5 +32,5 @@ before_script:
47 - 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
48 - cd travis-overlay
49 script:
50 - - ./../spinner.sh "python ../portage-${PORTAGE_VER}/bin/repoman full -d"
51 + - ./../spinner.sh "python ../portage-${PORTAGE_VER}/repoman/bin/repoman full -d"
52 # You can append own scripts after this line