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 55E65139694 for ; Thu, 23 Mar 2017 17:23:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 997D321C11D; Thu, 23 Mar 2017 17:23:03 +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 792D121C11D for ; Thu, 23 Mar 2017 17:23:03 +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 32B3034108B for ; Thu, 23 Mar 2017 17:23:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 91C357264 for ; Thu, 23 Mar 2017 17:23:00 +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: <1490289773.c051db133f5d7dd4f392878cd6ed3e8c21bba89c.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: c051db133f5d7dd4f392878cd6ed3e8c21bba89c X-VCS-Branch: prefix Date: Thu, 23 Mar 2017 17:23:00 +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: e599ce41-e680-4735-b03a-d1c776f6798c X-Archives-Hash: 59c6800eeb642c8a72b38a295e6b9dac commit: c051db133f5d7dd4f392878cd6ed3e8c21bba89c Author: Fabian Groffen gentoo org> AuthorDate: Thu Mar 23 17:22:53 2017 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Thu Mar 23 17:22:53 2017 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=c051db13 travis: backslashes are copied verbatim, remove .travis.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.travis.yml b/.travis.yml index 27c134fa7..a9cc22de6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,19 +19,19 @@ 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|" \ + - 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