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 6E0CD138824 for ; Fri, 24 Oct 2014 03:40:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D9393E08DF; Fri, 24 Oct 2014 03:40:51 +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 685F3E08DF for ; Fri, 24 Oct 2014 03:40:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 371FE340384 for ; Fri, 24 Oct 2014 03:40:50 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D05F0E15 for ; Fri, 24 Oct 2014 03:40:48 +0000 (UTC) From: "Christoph Junghans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Christoph Junghans" Message-ID: <1414122049.dca77c396141f47fa04a2c2362ba896d45f0728b.ottxor@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: / X-VCS-Repository: proj/sci X-VCS-Files: .travis.yml X-VCS-Directories: / X-VCS-Committer: ottxor X-VCS-Committer-Name: Christoph Junghans X-VCS-Revision: dca77c396141f47fa04a2c2362ba896d45f0728b X-VCS-Branch: master Date: Fri, 24 Oct 2014 03:40:48 +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: 032bac37-a77d-469d-b2d1-4be729906e5d X-Archives-Hash: 9275eb60fd69d488e3b0585751cedba2 commit: dca77c396141f47fa04a2c2362ba896d45f0728b Author: Christoph Junghans gentoo org> AuthorDate: Fri Oct 24 03:40:49 2014 +0000 Commit: Christoph Junghans gentoo org> CommitDate: Fri Oct 24 03:40:49 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=dca77c39 travis.yml: use newer portage version --- .travis.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index ec1e792..84e0f78 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,18 +2,18 @@ before_script: - mkdir travis-overlay - mv !(travis-overlay) travis-overlay/ - mv .git travis-overlay/ - - wget "http://distfiles.gentoo.org/distfiles/portage-2.2.10.tar.bz2" + - wget "http://distfiles.gentoo.org/distfiles/portage-2.2.12.tar.bz2" - wget "http://distfiles.gentoo.org/snapshots/portage-latest.tar.xz" - sudo chmod 777 /etc/passwd /etc/group /etc /usr - 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 - - tar xjf portage-2.2.10.tar.bz2 + - tar xjf portage-2.2.12.tar.bz2 - tar xJf portage-latest.tar.xz -C /usr/ - - cp portage-2.2.10/cnf/repos.conf /etc/portage/ + - cp portage-2.2.12/cnf/repos.conf /etc/portage/ - rsync --recursive --links --safe-links --perms --times --omit-dir-times --compress --force --whole-file --delete --stats --human-readable --timeout=180 --exclude=/distfiles --checksum --quiet rsync://rsync.gentoo.org/gentoo-portage /usr/portage - ln -s /usr/portage/profiles/base/ /etc/portage/make.profile - cd travis-overlay - - sed -i 's/fcmd=fcmd/fcmd=("%s -q" % fcmd)/' ./../portage-2.2.10/bin/repoman + - sed -i 's/fcmd=fcmd/fcmd=("%s -q" % fcmd)/' ./../portage-2.2.12/bin/repoman script: - - "./../portage-2.2.10/bin/repoman full -d -v" + - "./../portage-2.2.12/bin/repoman full -d -v"