From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 259D41381F3 for ; Sat, 29 Jun 2013 10:02:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AF573E0932; Sat, 29 Jun 2013 10:02:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 51113E0932 for ; Sat, 29 Jun 2013 10:02:00 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6595B33E7EF for ; Sat, 29 Jun 2013 10:01:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 0063BE468F for ; Sat, 29 Jun 2013 10:01:57 +0000 (UTC) From: "Johannes Huber" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Johannes Huber" Message-ID: <1372499295.4ddb0bbff7b2a9cb0f32a027779667db06345015.johu@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-misc/wicd-client-kde/ X-VCS-Repository: proj/kde X-VCS-Files: kde-misc/wicd-client-kde/wicd-client-kde-9999.ebuild X-VCS-Directories: kde-misc/wicd-client-kde/ X-VCS-Committer: johu X-VCS-Committer-Name: Johannes Huber X-VCS-Revision: 4ddb0bbff7b2a9cb0f32a027779667db06345015 X-VCS-Branch: master Date: Sat, 29 Jun 2013 10:01:57 +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: 30f67a8e-f80c-4470-a450-d5d5a82ce8d7 X-Archives-Hash: 780fbb68c3dcda75c0ba3378c67b0521 commit: 4ddb0bbff7b2a9cb0f32a027779667db06345015 Author: Johannes Huber gentoo org> AuthorDate: Sat Jun 29 09:48:15 2013 +0000 Commit: Johannes Huber gentoo org> CommitDate: Sat Jun 29 09:48:15 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=4ddb0bbf [kde-misc/wicd-client-kde] Port to non-deprecated python eclass. EAPI 5. Package-Manager: portage-2.2.0_alpha186 --- kde-misc/wicd-client-kde/wicd-client-kde-9999.ebuild | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/kde-misc/wicd-client-kde/wicd-client-kde-9999.ebuild b/kde-misc/wicd-client-kde/wicd-client-kde-9999.ebuild index 4818014..79216fa 100644 --- a/kde-misc/wicd-client-kde/wicd-client-kde-9999.ebuild +++ b/kde-misc/wicd-client-kde/wicd-client-kde-9999.ebuild @@ -2,14 +2,14 @@ # Distributed under the terms of the GNU General Public License v2 # $Header: $ -EAPI=4 +EAPI=5 KDE_LINGUAS="cs da de el en_GB es et fr hu it lt nb nds nl pa pl pt pt_BR ru sv uk zh_CN zh_TW" EGIT_REPONAME="wicd-kde" MY_P=${P/-client/} -PYTHON_DEPEND="2" -inherit python kde4-base +PYTHON_COMPAT=( python{2_5,2_6,2_7} ) +inherit python-single-r1 kde4-base DESCRIPTION="Wicd client built on the KDE Development Platform" HOMEPAGE="http://kde-apps.org/content/show.php/Wicd+Client+KDE?content=132366" @@ -18,15 +18,19 @@ HOMEPAGE="http://kde-apps.org/content/show.php/Wicd+Client+KDE?content=132366" LICENSE="GPL-3" SLOT="4" KEYWORDS="" -IUSE="" +IUSE="debug" -RDEPEND="net-misc/wicd" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +RDEPEND=" + ${PYTHON_DEPS} + net-misc/wicd" DEPEND="${RDEPEND}" S=${WORKDIR}/${PN/-client/} pkg_setup() { - python_pkg_setup + python-single-r1_pkg_setup kde4-base_pkg_setup }