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 E8B8F139694 for ; Thu, 23 Mar 2017 15:38:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5B03C21C170; Thu, 23 Mar 2017 15:38:45 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 36D0621C170 for ; Thu, 23 Mar 2017 15:38:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 072993415B7 for ; Thu, 23 Mar 2017 15:38:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9BEB3724D for ; Thu, 23 Mar 2017 15:38:42 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1490283515.0d4e946cccee70a58059cb48e1237efa95b900f5.grobian@gentoo> Subject: [gentoo-commits] proj/portage:prefix commit in: / X-VCS-Repository: proj/portage X-VCS-Files: .travis.yml X-VCS-Directories: / X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 0d4e946cccee70a58059cb48e1237efa95b900f5 X-VCS-Branch: prefix Date: Thu, 23 Mar 2017 15:38:42 +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: 814a7d29-17e7-442c-b1a9-d718f360312e X-Archives-Hash: 356b334247c975cbdb566b84fe7e94a0 commit: 0d4e946cccee70a58059cb48e1237efa95b900f5 Author: Fabian Groffen gentoo org> AuthorDate: Thu Mar 23 15:38:35 2017 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Thu Mar 23 15:38:35 2017 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=0d4e946c travis: try to fix build for Prefix .travis.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.travis.yml b/.travis.yml index 196e3520a..27c134fa7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,6 +19,20 @@ install: script: - printf "[build_ext]\nportage-ext-modules=true" >> setup.cfg + - find . -type f -exec \ + sed -e "s|@PORTAGE_EPREFIX@||" \ + -e "s|@PORTAGE_MV@|/bin/mv|" \ + -e "s|@PORTAGE_BASH@|/bin/bash|" \ + -e "s|@PREFIX_PORTAGE_PYTHON@|$(type -P python)|" \ + -e "s|@DEFAULT_PATH@|/usr/bin:/bin|" \ + -e "s|@EXTRA_PATH@|/usr/sbin:/sbin|" \ + -e "s|@portagegroup@|portage|" \ + -e "s|@portageuser@|portage|" \ + -e "s|@rootuser@|root|" \ + -e "s|@rootuid@|0|" \ + -e "s|@rootgid@|0)|" \ + -e "s|@sysconfdir@|/etc|" \ + -i '{}' + - ./setup.py test - ./setup.py install --root=/tmp/install-root # prevent repoman tests from trying to fetch metadata.xsd