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 B18471395E2 for ; Sat, 3 Dec 2016 19:11:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C16A7E0B91; Sat, 3 Dec 2016 19:11:40 +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 89DDDE0B91 for ; Sat, 3 Dec 2016 19:11:40 +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 955B8340EDA for ; Sat, 3 Dec 2016 19:11:38 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 91F14498 for ; Sat, 3 Dec 2016 19:11:36 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1480792295.c14d32c0676b713d8730c2e356e7a9bb74ad242f.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/openvswitch/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/openvswitch/metadata.xml net-misc/openvswitch/openvswitch-2.6.0-r1.ebuild X-VCS-Directories: net-misc/openvswitch/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: c14d32c0676b713d8730c2e356e7a9bb74ad242f X-VCS-Branch: master Date: Sat, 3 Dec 2016 19:11:36 +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: 03adb537-c798-46d4-9764-ce601ef0d717 X-Archives-Hash: 1308467145a32db0236aaa6c042ecf34 commit: c14d32c0676b713d8730c2e356e7a9bb74ad242f Author: Justin Lecher gentoo org> AuthorDate: Sat Dec 3 19:11:18 2016 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sat Dec 3 19:11:35 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c14d32c0 net-misc/openvswitch: Fix python shebangs Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=599368 Package-Manager: portage-2.3.2 Signed-off-by: Justin Lecher gentoo.org> net-misc/openvswitch/metadata.xml | 28 ++++++++++++------------ net-misc/openvswitch/openvswitch-2.6.0-r1.ebuild | 3 ++- 2 files changed, 16 insertions(+), 15 deletions(-) diff --git a/net-misc/openvswitch/metadata.xml b/net-misc/openvswitch/metadata.xml index f20e0a0..75bd0ce 100644 --- a/net-misc/openvswitch/metadata.xml +++ b/net-misc/openvswitch/metadata.xml @@ -1,18 +1,18 @@ - -dev-zero@gentoo.org - - -prometheanfire@gentoo.org - - - virtualization@gentoo.org - Gentoo Virtualization Project - - - Build the Python and GUI dependent monitor applications - Use dev-python/pyside instead of dev-python/PyQt4 for Python/Qt-bindings when building with USE=monitor. - + + dev-zero@gentoo.org + + + prometheanfire@gentoo.org + + + virtualization@gentoo.org + Gentoo Virtualization Project + + + Build the Python and GUI dependent monitor applications + Use dev-python/pyside instead of dev-python/PyQt4 for Python/Qt-bindings when building with USE=monitor. + diff --git a/net-misc/openvswitch/openvswitch-2.6.0-r1.ebuild b/net-misc/openvswitch/openvswitch-2.6.0-r1.ebuild index 4c6000a..93a0483 100644 --- a/net-misc/openvswitch/openvswitch-2.6.0-r1.ebuild +++ b/net-misc/openvswitch/openvswitch-2.6.0-r1.ebuild @@ -90,7 +90,8 @@ src_install() { local SCRIPT for SCRIPT in ovs-{pcap,parse-backtrace,dpctl-top,l3ping,tcpundump,test,vlan-test} bugtool/ovs-bugtool; do - python_replicate_script utilities/"${SCRIPT}" + sed -e '1s|^.*$|#!/usr/bin/python|' -i utilities/"${SCRIPT}" || die + python_foreach_impl python_doscript utilities/"${SCRIPT}" done # monitor is statically enabled for bug 596206