From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id A10D013838B for ; Wed, 30 Sep 2015 19:04:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EF553E0855; Wed, 30 Sep 2015 19:04:07 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 88E67E0855 for ; Wed, 30 Sep 2015 19:04:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 86B823410AC for ; Wed, 30 Sep 2015 19:04:05 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B454C21D for ; Wed, 30 Sep 2015 19:04:01 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1443639767.98e1814b93cd94346f97e31a57cad171f9dc74ec.monsieurp@gentoo> Subject: [gentoo-commits] proj/java:master commit in: / X-VCS-Repository: proj/java X-VCS-Files: .travis.yml X-VCS-Directories: / X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 98e1814b93cd94346f97e31a57cad171f9dc74ec X-VCS-Branch: master Date: Wed, 30 Sep 2015 19:04:01 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 6d907896-405d-43a3-9bb8-eb484eba7727 X-Archives-Hash: 9fea951e800ab811e6b81b9a4713fb14 commit: 98e1814b93cd94346f97e31a57cad171f9dc74ec Author: Patrice Clement gentoo org> AuthorDate: Wed Sep 30 19:02:47 2015 +0000 Commit: Patrice Clement gentoo org> CommitDate: Wed Sep 30 19:02:47 2015 +0000 URL: https://gitweb.gentoo.org/proj/java.git/commit/?id=98e1814b Update travis.yml file. .travis.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0316560..256837d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,28 +6,28 @@ language: python python: - pypy env: - - PORTAGE_VER="2.2.20.1" + - PORTAGE_VER="2.2.22" 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 "https://github.com/gentoo/portage/archive/v${PORTAGE_VER}.tar.gz" -O portage-${PORTAGE_VER}.tar.gz - wget "https://raw.githubusercontent.com/mrueg/repoman-travis/master/spinner.sh" + - wget "https://github.com/gentoo/portage/archive/v${PORTAGE_VER}.tar.gz" -O portage-${PORTAGE_VER}.tar.gz - wget "https://github.com/gentoo-mirror/gentoo/archive/master.tar.gz" -O portage-tree.tar.gz - sudo chmod a+rwX /etc/passwd /etc/group /etc /usr spinner.sh - 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 - - mkdir -p /etc/portage/ /usr/portage/distfiles + - mkdir -p /etc/portage /usr/portage/distfiles + - wget "https://www.gentoo.org/dtd/metadata.dtd" -O /usr/portage/distfiles/metadata.dtd - tar xzf portage-${PORTAGE_VER}.tar.gz - tar xzf portage-tree.tar.gz -C /usr/portage --strip-components=1 - cp portage-${PORTAGE_VER}/cnf/repos.conf /etc/portage/ - ln -s /usr/portage/profiles/base/ /etc/portage/make.profile - - wget "https://www.gentoo.org/dtd/metadata.dtd" -O /usr/portage/distfiles/metadata.dtd - - 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 + - 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 script: - - ./../spinner.sh "./../portage-${PORTAGE_VER}/bin/repoman full -d" + - ./../spinner.sh "python ../portage-${PORTAGE_VER}/bin/repoman full -d" # You can append own scripts after this line