* [gentoo-commits] gentoo-x86 commit in net-misc/wicd: ChangeLog wicd-1.7.1_beta2-r4.ebuild
@ 2011-05-07 19:27 Thomas Kahle (tomka)
0 siblings, 0 replies; 5+ messages in thread
From: Thomas Kahle (tomka) @ 2011-05-07 19:27 UTC (permalink / raw
To: gentoo-commits
tomka 11/05/07 19:27:32
Modified: ChangeLog
Added: wicd-1.7.1_beta2-r4.ebuild
Log:
Fix install with Python3 as the main interpreter (Bug 365635, thx for patch by arfrever), fix init script to use sve-start (Bug 365767)
(Portage version: 2.1.9.46/cvs/Linux i686)
Revision Changes Path
1.87 net-misc/wicd/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wicd/ChangeLog?rev=1.87&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wicd/ChangeLog?rev=1.87&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wicd/ChangeLog?r1=1.86&r2=1.87
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/wicd/ChangeLog,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -r1.86 -r1.87
--- ChangeLog 12 Apr 2011 18:18:26 -0000 1.86
+++ ChangeLog 7 May 2011 19:27:31 -0000 1.87
@@ -1,6 +1,13 @@
# 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.86 2011/04/12 18:18:26 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/wicd/ChangeLog,v 1.87 2011/05/07 19:27:31 tomka Exp $
+
+*wicd-1.7.1_beta2-r4 (07 May 2011)
+
+ 07 May 2011; Thomas Kahle <tomka@gentoo.org> +wicd-1.7.1_beta2-r4.ebuild,
+ +files/wicd-init-sve-start.patch:
+ Fix install with Python3 as the main interpreter (Bug 365635, thx for patch
+ by arfrever), fix init script to use sve-start (Bug 365767)
12 Apr 2011; Thomas Kahle <tomka@gentoo.org> wicd-1.7.1_beta2-r3.ebuild:
x86 stable per bug 358715
1.1 net-misc/wicd/wicd-1.7.1_beta2-r4.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wicd/wicd-1.7.1_beta2-r4.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wicd/wicd-1.7.1_beta2-r4.ebuild?rev=1.1&content-type=text/plain
Index: wicd-1.7.1_beta2-r4.ebuild
===================================================================
# 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.1_beta2-r4.ebuild,v 1.1 2011/05/07 19:27:31 tomka Exp $
EAPI=3
PYTHON_DEPEND="2"
PYTHON_USE_WITH="ncurses? xml"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.* *-jython"
DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES="1"
inherit eutils distutils
MY_P=${P/_beta/b}
S="${WORKDIR}/${MY_P}"
DESCRIPTION="A lightweight wired and wireless network manager for Linux"
HOMEPAGE="http://wicd.sourceforge.net/"
SRC_URI="http://downloads.wicd.net/src/testing/1.7.x/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE="X +gtk ioctl libnotify ncurses nls +pm-utils"
DEPEND=""
# Maybe virtual/dhcp would work, but there are enough problems with
# net-misc/dhcp that I want net-misc/dhcpcd to be guarenteed to be considered
# first if none are installed.
RDEPEND="
dev-python/dbus-python
X? ( gtk? ( dev-python/pygtk
|| (
x11-misc/ktsuss
x11-libs/gksu
kde-base/kdesu
)
)
)
|| (
net-misc/dhcpcd
net-misc/dhcp
net-misc/pump
)
net-wireless/wireless-tools
net-wireless/wpa_supplicant
|| (
sys-apps/net-tools
sys-apps/ethtool
)
!gtk? ( dev-python/pygobject )
ioctl? ( dev-python/python-iwscan dev-python/python-wpactrl )
libnotify? ( dev-python/notify-python )
ncurses? (
>=dev-python/urwid-0.9.9.1
dev-python/pygobject
)
pm-utils? ( >=sys-power/pm-utils-1.1.1 )
"
DOCS="CHANGES NEWS AUTHORS README"
src_prepare() {
epatch "${FILESDIR}"/${P}-init.patch
epatch "${FILESDIR}"/${PN}-init-sve-start.patch
# Need to ensure that setup.py is run with python-2
sed -e "s:self.python = '/usr/bin/python':self.python = '/usr/bin/python2':" \
-i setup.py || die "sed failed"
python_copy_sources
}
src_configure() {
local myconf
use gtk || myconf="${myconf} --no-install-gtk"
use libnotify || myconf="${myconf} --no-use-notifications"
use ncurses || myconf="${myconf} --no-install-ncurses"
use pm-utils || myconf="${myconf} --no-install-pmutils"
configuration() {
$(PYTHON) ./setup.py configure --no-install-docs --resume=/usr/share/wicd/scripts/ --suspend=/usr/share/wicd/scripts/ --verbose ${myconf}
}
python_execute_function -s configuration
}
src_install() {
distutils_src_install
keepdir /var/lib/wicd/configurations \
|| die "keepdir failed, critical for this app"
keepdir /etc/wicd/scripts/{postconnect,disconnect,preconnect} \
|| die "keepdir failed, critical for this app"
keepdir /var/log/wicd \
|| die "keepdir failed, critical for this app"
use nls || rm -rf "${D}"/usr/share/locale
}
pkg_postinst() {
distutils_pkg_postinst
elog "You may need to restart the dbus service after upgrading wicd."
echo
elog "To start wicd at boot, add /etc/init.d/wicd to a runlevel and:"
elog "- Remove all net.* initscripts (except for net.lo) from all runlevels"
elog "- Add these scripts to the RC_PLUG_SERVICES line in /etc/conf.d/rc"
elog "(For example, RC_PLUG_SERVICES=\"!net.eth0 !net.wlan0\")"
# Maintainer's note: the consolekit use flag short circuits a dbus rule and
# allows the connection. Else, you need to be in the group.
if ! has_version sys-auth/pambase[consolekit]; then
ewarn "Wicd-1.6 and newer requires your user to be in the 'users' group. If"
ewarn "you are not in that group, then modify /etc/dbus-1/system.d/wicd.conf"
fi
}
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-misc/wicd: ChangeLog wicd-1.7.1_beta2-r4.ebuild
@ 2011-06-08 9:56 Markos Chandras (hwoarang)
0 siblings, 0 replies; 5+ messages in thread
From: Markos Chandras (hwoarang) @ 2011-06-08 9:56 UTC (permalink / raw
To: gentoo-commits
hwoarang 11/06/08 09:56:22
Modified: ChangeLog wicd-1.7.1_beta2-r4.ebuild
Log:
Stable on amd64 wrt bug #370525
(Portage version: 2.1.9.49/cvs/Linux x86_64)
Revision Changes Path
1.89 net-misc/wicd/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wicd/ChangeLog?rev=1.89&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wicd/ChangeLog?rev=1.89&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wicd/ChangeLog?r1=1.88&r2=1.89
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/wicd/ChangeLog,v
retrieving revision 1.88
retrieving revision 1.89
diff -u -r1.88 -r1.89
--- ChangeLog 29 May 2011 10:55:34 -0000 1.88
+++ ChangeLog 8 Jun 2011 09:56:22 -0000 1.89
@@ -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.88 2011/05/29 10:55:34 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/wicd/ChangeLog,v 1.89 2011/06/08 09:56:22 hwoarang Exp $
+
+ 08 Jun 2011; Markos Chandras <hwoarang@gentoo.org>
+ wicd-1.7.1_beta2-r4.ebuild:
+ Stable on amd64 wrt bug #370525
29 May 2011; Kacper Kowalik <xarthisius@gentoo.org>
wicd-1.7.1_beta2-r3.ebuild:
1.3 net-misc/wicd/wicd-1.7.1_beta2-r4.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wicd/wicd-1.7.1_beta2-r4.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wicd/wicd-1.7.1_beta2-r4.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wicd/wicd-1.7.1_beta2-r4.ebuild?r1=1.2&r2=1.3
Index: wicd-1.7.1_beta2-r4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/wicd/wicd-1.7.1_beta2-r4.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- wicd-1.7.1_beta2-r4.ebuild 7 May 2011 19:34:10 -0000 1.2
+++ wicd-1.7.1_beta2-r4.ebuild 8 Jun 2011 09:56:22 -0000 1.3
@@ -1,6 +1,6 @@
# 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.1_beta2-r4.ebuild,v 1.2 2011/05/07 19:34:10 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/wicd/wicd-1.7.1_beta2-r4.ebuild,v 1.3 2011/06/08 09:56:22 hwoarang Exp $
EAPI=3
@@ -21,7 +21,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc ~ppc64 ~x86"
IUSE="X +gtk ioctl libnotify ncurses nls +pm-utils"
DEPEND=""
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-misc/wicd: ChangeLog wicd-1.7.1_beta2-r4.ebuild
@ 2011-06-11 23:37 Thomas Kahle (tomka)
0 siblings, 0 replies; 5+ messages in thread
From: Thomas Kahle (tomka) @ 2011-06-11 23:37 UTC (permalink / raw
To: gentoo-commits
tomka 11/06/11 23:37:09
Modified: ChangeLog wicd-1.7.1_beta2-r4.ebuild
Log:
x86 stable per bug 370525
(Portage version: 2.1.9.50/cvs/Linux i686)
Revision Changes Path
1.90 net-misc/wicd/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wicd/ChangeLog?rev=1.90&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wicd/ChangeLog?rev=1.90&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wicd/ChangeLog?r1=1.89&r2=1.90
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/wicd/ChangeLog,v
retrieving revision 1.89
retrieving revision 1.90
diff -u -r1.89 -r1.90
--- ChangeLog 8 Jun 2011 09:56:22 -0000 1.89
+++ ChangeLog 11 Jun 2011 23:37:09 -0000 1.90
@@ -1,6 +1,9 @@
# 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.89 2011/06/08 09:56:22 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/wicd/ChangeLog,v 1.90 2011/06/11 23:37:09 tomka Exp $
+
+ 11 Jun 2011; Thomas Kahle <tomka@gentoo.org> wicd-1.7.1_beta2-r4.ebuild:
+ x86 stable per bug 370525
08 Jun 2011; Markos Chandras <hwoarang@gentoo.org>
wicd-1.7.1_beta2-r4.ebuild:
1.4 net-misc/wicd/wicd-1.7.1_beta2-r4.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wicd/wicd-1.7.1_beta2-r4.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wicd/wicd-1.7.1_beta2-r4.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wicd/wicd-1.7.1_beta2-r4.ebuild?r1=1.3&r2=1.4
Index: wicd-1.7.1_beta2-r4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/wicd/wicd-1.7.1_beta2-r4.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- wicd-1.7.1_beta2-r4.ebuild 8 Jun 2011 09:56:22 -0000 1.3
+++ wicd-1.7.1_beta2-r4.ebuild 11 Jun 2011 23:37:09 -0000 1.4
@@ -1,6 +1,6 @@
# 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.1_beta2-r4.ebuild,v 1.3 2011/06/08 09:56:22 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/wicd/wicd-1.7.1_beta2-r4.ebuild,v 1.4 2011/06/11 23:37:09 tomka Exp $
EAPI=3
@@ -21,7 +21,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc ~ppc64 x86"
IUSE="X +gtk ioctl libnotify ncurses nls +pm-utils"
DEPEND=""
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-misc/wicd: ChangeLog wicd-1.7.1_beta2-r4.ebuild
@ 2011-07-08 13:30 Thomas Kahle (tomka)
0 siblings, 0 replies; 5+ messages in thread
From: Thomas Kahle (tomka) @ 2011-07-08 13:30 UTC (permalink / raw
To: gentoo-commits
tomka 11/07/08 13:30:32
Modified: ChangeLog wicd-1.7.1_beta2-r4.ebuild
Log:
Update post-inst messages to reflect OpenRC. (bug 371559). Thanks Luca Molari
(Portage version: 2.1.10.3/cvs/Linux i686)
Revision Changes Path
1.91 net-misc/wicd/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wicd/ChangeLog?rev=1.91&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wicd/ChangeLog?rev=1.91&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wicd/ChangeLog?r1=1.90&r2=1.91
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/wicd/ChangeLog,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -r1.90 -r1.91
--- ChangeLog 11 Jun 2011 23:37:09 -0000 1.90
+++ ChangeLog 8 Jul 2011 13:30:32 -0000 1.91
@@ -1,6 +1,9 @@
# 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.90 2011/06/11 23:37:09 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/wicd/ChangeLog,v 1.91 2011/07/08 13:30:32 tomka Exp $
+
+ 08 Jul 2011; Thomas Kahle <tomka@gentoo.org> wicd-1.7.1_beta2-r4.ebuild:
+ Update post-inst messages to reflect OpenRC. (bug 371559). Thanks Luca Molari
11 Jun 2011; Thomas Kahle <tomka@gentoo.org> wicd-1.7.1_beta2-r4.ebuild:
x86 stable per bug 370525
1.5 net-misc/wicd/wicd-1.7.1_beta2-r4.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wicd/wicd-1.7.1_beta2-r4.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wicd/wicd-1.7.1_beta2-r4.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wicd/wicd-1.7.1_beta2-r4.ebuild?r1=1.4&r2=1.5
Index: wicd-1.7.1_beta2-r4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/wicd/wicd-1.7.1_beta2-r4.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- wicd-1.7.1_beta2-r4.ebuild 11 Jun 2011 23:37:09 -0000 1.4
+++ wicd-1.7.1_beta2-r4.ebuild 8 Jul 2011 13:30:32 -0000 1.5
@@ -1,6 +1,6 @@
# 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.1_beta2-r4.ebuild,v 1.4 2011/06/11 23:37:09 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/wicd/wicd-1.7.1_beta2-r4.ebuild,v 1.5 2011/07/08 13:30:32 tomka Exp $
EAPI=3
@@ -99,8 +99,8 @@
echo
elog "To start wicd at boot, add /etc/init.d/wicd to a runlevel and:"
elog "- Remove all net.* initscripts (except for net.lo) from all runlevels"
- elog "- Add these scripts to the RC_PLUG_SERVICES line in /etc/conf.d/rc"
- elog "(For example, RC_PLUG_SERVICES=\"!net.eth0 !net.wlan0\")"
+ elog "- Add these scripts to the RC_PLUG_SERVICES line in /etc/rc.conf"
+ elog "(For example, rc_hotplug=\"!net.eth* !net.wlan*\")"
# Maintainer's note: the consolekit use flag short circuits a dbus rule and
# allows the connection. Else, you need to be in the group.
if ! has_version sys-auth/pambase[consolekit]; then
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-misc/wicd: ChangeLog wicd-1.7.1_beta2-r4.ebuild
@ 2011-07-17 19:55 Mark Loeser (halcy0n)
0 siblings, 0 replies; 5+ messages in thread
From: Mark Loeser (halcy0n) @ 2011-07-17 19:55 UTC (permalink / raw
To: gentoo-commits
halcy0n 11/07/17 19:55:00
Modified: ChangeLog wicd-1.7.1_beta2-r4.ebuild
Log:
Stable on ppc/ppc64; bug #370525
(Portage version: 2.1.10.3/cvs/Linux ppc64)
Revision Changes Path
1.92 net-misc/wicd/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wicd/ChangeLog?rev=1.92&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wicd/ChangeLog?rev=1.92&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wicd/ChangeLog?r1=1.91&r2=1.92
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/wicd/ChangeLog,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -r1.91 -r1.92
--- ChangeLog 8 Jul 2011 13:30:32 -0000 1.91
+++ ChangeLog 17 Jul 2011 19:55:00 -0000 1.92
@@ -1,6 +1,9 @@
# 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.91 2011/07/08 13:30:32 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/wicd/ChangeLog,v 1.92 2011/07/17 19:55:00 halcy0n Exp $
+
+ 17 Jul 2011; Mark Loeser <halcy0n@gentoo.org> wicd-1.7.1_beta2-r4.ebuild:
+ Stable on ppc/ppc64; bug #370525
08 Jul 2011; Thomas Kahle <tomka@gentoo.org> wicd-1.7.1_beta2-r4.ebuild:
Update post-inst messages to reflect OpenRC. (bug 371559). Thanks Luca Molari
1.6 net-misc/wicd/wicd-1.7.1_beta2-r4.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wicd/wicd-1.7.1_beta2-r4.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wicd/wicd-1.7.1_beta2-r4.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wicd/wicd-1.7.1_beta2-r4.ebuild?r1=1.5&r2=1.6
Index: wicd-1.7.1_beta2-r4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/wicd/wicd-1.7.1_beta2-r4.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- wicd-1.7.1_beta2-r4.ebuild 8 Jul 2011 13:30:32 -0000 1.5
+++ wicd-1.7.1_beta2-r4.ebuild 17 Jul 2011 19:55:00 -0000 1.6
@@ -1,6 +1,6 @@
# 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.1_beta2-r4.ebuild,v 1.5 2011/07/08 13:30:32 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/wicd/wicd-1.7.1_beta2-r4.ebuild,v 1.6 2011/07/17 19:55:00 halcy0n Exp $
EAPI=3
@@ -21,7 +21,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ppc ppc64 x86"
IUSE="X +gtk ioctl libnotify ncurses nls +pm-utils"
DEPEND=""
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-07-17 19:55 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-07 19:27 [gentoo-commits] gentoo-x86 commit in net-misc/wicd: ChangeLog wicd-1.7.1_beta2-r4.ebuild Thomas Kahle (tomka)
-- strict thread matches above, loose matches on Subject: below --
2011-06-08 9:56 Markos Chandras (hwoarang)
2011-06-11 23:37 Thomas Kahle (tomka)
2011-07-08 13:30 Thomas Kahle (tomka)
2011-07-17 19:55 Mark Loeser (halcy0n)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox