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: Sun, 30 Aug 2015 16:16:55
Message-Id: 1440951400.f811b20e769e5caff1fbbe6cc353e94cd50a2511.mrueg@gentoo
1 commit: f811b20e769e5caff1fbbe6cc353e94cd50a2511
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 30 16:16:40 2015 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 30 16:16:40 2015 +0000
6 URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=f811b20e
7
8 .travis.yml: Update.
9
10 .travis.yml | 12 ++++++------
11 1 file changed, 6 insertions(+), 6 deletions(-)
12
13 diff --git a/.travis.yml b/.travis.yml
14 index 0316560..1e100ee 100644
15 --- a/.travis.yml
16 +++ b/.travis.yml
17 @@ -12,22 +12,22 @@ before_script:
18 - mv !(travis-overlay) travis-overlay/
19 - mv .git travis-overlay/
20 - wget "https://raw.githubusercontent.com/mrueg/repoman-travis/master/.travis.yml" -O .travis.yml.upstream
21 - - wget "https://github.com/gentoo/portage/archive/v${PORTAGE_VER}.tar.gz" -O portage-${PORTAGE_VER}.tar.gz
22 - wget "https://raw.githubusercontent.com/mrueg/repoman-travis/master/spinner.sh"
23 + - wget "https://github.com/gentoo/portage/archive/v${PORTAGE_VER}.tar.gz" -O portage-${PORTAGE_VER}.tar.gz
24 - wget "https://github.com/gentoo-mirror/gentoo/archive/master.tar.gz" -O portage-tree.tar.gz
25 - sudo chmod a+rwX /etc/passwd /etc/group /etc /usr spinner.sh
26 - chmod a+rwx spinner.sh
27 - echo "portage:x:250:250:portage:/var/tmp/portage:/bin/false" >> /etc/passwd
28 - echo "portage::250:portage,travis" >> /etc/group
29 - - mkdir -p /etc/portage/ /usr/portage/distfiles
30 + - mkdir -p /etc/portage /usr/portage/distfiles
31 + - wget "https://www.gentoo.org/dtd/metadata.dtd" -O /usr/portage/distfiles/metadata.dtd
32 - tar xzf portage-${PORTAGE_VER}.tar.gz
33 - tar xzf portage-tree.tar.gz -C /usr/portage --strip-components=1
34 - cp portage-${PORTAGE_VER}/cnf/repos.conf /etc/portage/
35 - ln -s /usr/portage/profiles/base/ /etc/portage/make.profile
36 - - wget "https://www.gentoo.org/dtd/metadata.dtd" -O /usr/portage/distfiles/metadata.dtd
37 - - SIZE=`stat -c %s .travis.yml.upstream`
38 - - 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
39 + - SIZE=$(stat -c %s .travis.yml.upstream)
40 + - 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
41 - cd travis-overlay
42 script:
43 - - ./../spinner.sh "./../portage-${PORTAGE_VER}/bin/repoman full -d"
44 + - ./../spinner.sh "python ../portage-${PORTAGE_VER}/bin/repoman full -d"
45 # You can append own scripts after this line