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 CCFEB139694 for ; Sat, 27 May 2017 15:46:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D0DBCE0D92; Sat, 27 May 2017 15:46:47 +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 A9038E0D92 for ; Sat, 27 May 2017 15:46:47 +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 7F824340AC7 for ; Sat, 27 May 2017 15:46:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6BAE1745F for ; Sat, 27 May 2017 15:46:44 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1495899994.33146ccf4200ebe60e992f3a9f9ebc9bf4126831.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/repoman/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-portage/repoman/repoman-9999.ebuild X-VCS-Directories: app-portage/repoman/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 33146ccf4200ebe60e992f3a9f9ebc9bf4126831 X-VCS-Branch: master Date: Sat, 27 May 2017 15:46:44 +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: 3d37e052-11dc-49c1-aee4-6ae7a519b1b2 X-Archives-Hash: aadbf59e1a05bb2ad6324251c1e935bb commit: 33146ccf4200ebe60e992f3a9f9ebc9bf4126831 Author: David Seifert gentoo org> AuthorDate: Sat May 27 15:46:04 2017 +0000 Commit: David Seifert gentoo org> CommitDate: Sat May 27 15:46:34 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33146ccf app-portage/repoman: Remove Prefix handling code Package-Manager: Portage-2.3.6, Repoman-2.3.2 app-portage/repoman/repoman-9999.ebuild | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/app-portage/repoman/repoman-9999.ebuild b/app-portage/repoman/repoman-9999.ebuild index 93c73208b02..a5a60b0ee04 100644 --- a/app-portage/repoman/repoman-9999.ebuild +++ b/app-portage/repoman/repoman-9999.ebuild @@ -8,7 +8,7 @@ PYTHON_REQ_USE='bzip2(+)' inherit distutils-r1 -if [[ ${PV} == 9999 ]]; then +if [[ ${PV} == *9999 ]]; then inherit git-r3 EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/portage.git" S="${WORKDIR}/${P}/repoman" @@ -30,24 +30,6 @@ RDEPEND=" " DEPEND="${RDEPEND}" -python_prepare_all() { - distutils-r1_python_prepare_all - - if [[ -n "${EPREFIX}" ]] ; then - einfo "Prefixing shebangs ..." - - local file - while read -r -d $'\0' file; do - local shebang=$(head -n1 "${file}") - - if [[ ${shebang} == "#!"* && ! ${shebang} == "#!${EPREFIX}/"* ]] ; then - sed -i -e "1s:.*:#!${EPREFIX}${shebang:2}:" "${file}" || \ - die "sed failed" - fi - done < <(find . -type f -print0) - fi -} - python_test() { esetup.py test }