From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1267513832E for ; Mon, 22 Aug 2016 21:02:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 475BA21C21F; Mon, 22 Aug 2016 21:02:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E420521C21F for ; Mon, 22 Aug 2016 21:02:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 104C73405BB for ; Mon, 22 Aug 2016 21:02:35 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 14ED92462 for ; Mon, 22 Aug 2016 21:02:32 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1471899732.dc6eeafcb16cd4862866c6564aad3a7489fac442.mrueg@gentoo> Subject: [gentoo-commits] dev/mrueg:master commit in: / X-VCS-Repository: dev/mrueg X-VCS-Files: .travis.yml X-VCS-Directories: / X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: dc6eeafcb16cd4862866c6564aad3a7489fac442 X-VCS-Branch: master Date: Mon, 22 Aug 2016 21:02:32 +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: d223f23f-cc72-4bbc-8c18-0422d71e0348 X-Archives-Hash: d2414ee8a44eef08c4f0e135a59c0dc2 commit: dc6eeafcb16cd4862866c6564aad3a7489fac442 Author: Manuel Rüger gentoo org> AuthorDate: Mon Aug 22 21:02:12 2016 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Mon Aug 22 21:02:12 2016 +0000 URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=dc6eeafc [traivs.yml] Update .travis.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index df68cf5..47b11fb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,14 +6,17 @@ language: python python: - pypy env: - - PORTAGE_VER="2.2.28" + - PORTAGE_VER="2.3.0" +before_install: + - sudo apt-get -qq update + - pip install lxml 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://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/portage/archive/portage-${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 @@ -21,7 +24,7 @@ before_script: - echo "portage::250:portage,travis" >> /etc/group - 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-${PORTAGE_VER}.tar.gz && mv portage-portage-${PORTAGE_VER} portage-${PORTAGE_VER} - 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 @@ -29,5 +32,5 @@ before_script: - 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 "python ../portage-${PORTAGE_VER}/bin/repoman full -d" + - ./../spinner.sh "python ../portage-${PORTAGE_VER}/repoman/bin/repoman full -d" # You can append own scripts after this line