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 A3589138334 for ; Sat, 13 Jul 2019 19:23:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CA273E086D; Sat, 13 Jul 2019 19:23:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AC189E086D for ; Sat, 13 Jul 2019 19:23:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 36DEE3479AB for ; Sat, 13 Jul 2019 19:23:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 95805609 for ; Sat, 13 Jul 2019 19:23:01 +0000 (UTC) From: "Davide Pesavento" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Davide Pesavento" Message-ID: <1563045761.2cb06f0b92af822a35ca35debbc2d1d986acae11.pesa@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: / X-VCS-Repository: proj/qt X-VCS-Files: .travis.yml X-VCS-Directories: / X-VCS-Committer: pesa X-VCS-Committer-Name: Davide Pesavento X-VCS-Revision: 2cb06f0b92af822a35ca35debbc2d1d986acae11 X-VCS-Branch: master Date: Sat, 13 Jul 2019 19:23: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a34c6455-3c1e-439d-aac2-c8e2b2963d5e X-Archives-Hash: a5536e133c91c06fbdd1745bc0da951a commit: 2cb06f0b92af822a35ca35debbc2d1d986acae11 Author: Davide Pesavento gentoo org> AuthorDate: Sat Jul 13 19:22:41 2019 +0000 Commit: Davide Pesavento gentoo org> CommitDate: Sat Jul 13 19:22:41 2019 +0000 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=2cb06f0b travis: update .travis.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0738d05a..ca8af29c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,25 +6,25 @@ language: python python: - pypy env: - - PORTAGE_VER="2.3.62" + - PORTAGE_VER="2.3.68" before_install: - sudo apt-get -qq update - pip install lxml pyyaml before_script: - - sudo chmod a+rwX /etc/passwd /etc/group /etc /usr - - mkdir -p travis-overlay /etc/portage /usr/portage/distfiles + - sudo chmod a+rwX /etc/passwd /etc/group /etc /var /var/cache + - mkdir -p travis-overlay /etc/portage /var/cache/distfiles /var/db/repos/gentoo - 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 -qO - "https://github.com/gentoo/portage/archive/portage-${PORTAGE_VER}.tar.gz" | tar xz - - wget -qO - "https://github.com/gentoo-mirror/gentoo/archive/master.tar.gz" | tar xz -C /usr/portage --strip-components=1 + - wget -qO - "https://github.com/gentoo-mirror/gentoo/archive/master.tar.gz" | tar xz -C /var/db/repos/gentoo --strip-components=1 - 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 - - wget "https://www.gentoo.org/dtd/metadata.dtd" -O /usr/portage/distfiles/metadata.dtd + - wget "https://www.gentoo.org/dtd/metadata.dtd" -O /var/cache/distfiles/metadata.dtd - ln -s $TRAVIS_BUILD_DIR/portage-portage-${PORTAGE_VER}/cnf/repos.conf /etc/portage/repos.conf - - ln -s /usr/portage/profiles/default/linux/amd64/17.0 /etc/portage/make.profile + - ln -s /var/db/repos/gentoo/profiles/default/linux/amd64/17.0 /etc/portage/make.profile - 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