summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2011-04-10 21:42:27 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2011-04-10 21:42:27 +0000
commitd2e68c1dd243d89de63e8470ed729e4d6b6a68ac (patch)
tree56f0776c68ac36db50b126cc92bc67bb672957ea /net-misc
parentUse Python 2 (bug #362339). (diff)
downloadgentoo-2-d2e68c1dd243d89de63e8470ed729e4d6b6a68ac.tar.gz
gentoo-2-d2e68c1dd243d89de63e8470ed729e4d6b6a68ac.tar.bz2
gentoo-2-d2e68c1dd243d89de63e8470ed729e4d6b6a68ac.zip
Fix deprecation warning.
(Portage version: 2.2.0_alpha29_p10/cvs/Linux x86_64)
Diffstat (limited to 'net-misc')
-rw-r--r--net-misc/wicd/ChangeLog6
-rw-r--r--net-misc/wicd/wicd-1.7.0.ebuild6
2 files changed, 8 insertions, 4 deletions
diff --git a/net-misc/wicd/ChangeLog b/net-misc/wicd/ChangeLog
index 2edb9bfe0afe..5bcc4ffe72d7 100644
--- a/net-misc/wicd/ChangeLog
+++ b/net-misc/wicd/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-misc/wicd
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/wicd/ChangeLog,v 1.84 2011/03/28 17:29:42 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/wicd/ChangeLog,v 1.85 2011/04/10 21:42:27 arfrever Exp $
+
+ 10 Apr 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+ wicd-1.7.0.ebuild:
+ Fix deprecation warning.
28 Mar 2011; Christoph Mende <angelos@gentoo.org> wicd-1.7.1_beta2-r3.ebuild:
Stable on amd64 wrt bug #358715
diff --git a/net-misc/wicd/wicd-1.7.0.ebuild b/net-misc/wicd/wicd-1.7.0.ebuild
index fc7ea95bb764..ae4b0912f595 100644
--- a/net-misc/wicd/wicd-1.7.0.ebuild
+++ b/net-misc/wicd/wicd-1.7.0.ebuild
@@ -1,8 +1,8 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/wicd/wicd-1.7.0.ebuild,v 1.9 2011/03/19 08:23:54 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/wicd/wicd-1.7.0.ebuild,v 1.10 2011/04/10 21:42:27 arfrever Exp $
-EAPI=2
+EAPI=3
inherit eutils distutils
@@ -56,7 +56,7 @@ src_compile() {
use libnotify || myconf="${myconf} --no-use-notifications"
use ncurses || myconf="${myconf} --no-install-ncurses"
use pm-utils || myconf="${myconf} --no-install-pmutils"
- ${python} ./setup.py configure --no-install-docs --resume=/usr/share/wicd/scripts/ --suspend=/usr/share/wicd/scripts/ --verbose ${myconf}
+ $(PYTHON) ./setup.py configure --no-install-docs --resume=/usr/share/wicd/scripts/ --suspend=/usr/share/wicd/scripts/ --verbose ${myconf}
distutils_src_compile
}