* [gentoo-commits] repo/gentoo:master commit in: profiles/arch/sparc/, profiles/arch/alpha/, net-wireless/wpa_supplicant/, ...
@ 2025-03-04 16:21 Sam James
0 siblings, 0 replies; only message in thread
From: Sam James @ 2025-03-04 16:21 UTC (permalink / raw
To: gentoo-commits
commit: 165e902367a2ba59fd0a26e4c407a0c4385debf1
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 4 16:19:34 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Mar 4 16:20:46 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=165e9023
net-wireless/wpa_supplicant: USE=qt5 -> USE=gui
Per https://projects.gentoo.org/qa/policy-guide/use-flags.html#pg0802.
Signed-off-by: Sam James <sam <AT> gentoo.org>
...supplicant-2.11-r2.ebuild => wpa_supplicant-2.11-r3.ebuild} | 10 +++++-----
net-wireless/wpa_supplicant/wpa_supplicant-9999.ebuild | 10 +++++-----
profiles/arch/alpha/package.use.mask | 4 ++++
profiles/arch/mips/package.use.mask | 4 ++++
profiles/arch/sparc/package.use.mask | 4 ++++
5 files changed, 22 insertions(+), 10 deletions(-)
diff --git a/net-wireless/wpa_supplicant/wpa_supplicant-2.11-r2.ebuild b/net-wireless/wpa_supplicant/wpa_supplicant-2.11-r3.ebuild
similarity index 98%
rename from net-wireless/wpa_supplicant/wpa_supplicant-2.11-r2.ebuild
rename to net-wireless/wpa_supplicant/wpa_supplicant-2.11-r3.ebuild
index 1b1b9181a3c0..418f13bff7e1 100644
--- a/net-wireless/wpa_supplicant/wpa_supplicant-2.11-r2.ebuild
+++ b/net-wireless/wpa_supplicant/wpa_supplicant-2.11-r3.ebuild
@@ -18,7 +18,7 @@ else
fi
SLOT="0"
-IUSE="+ap broadcom-sta dbus eap-sim eapol-test +fils macsec +mbo +mesh p2p privsep qt6 readline selinux smartcard tkip uncommon-eap-types wep wps"
+IUSE="+ap broadcom-sta dbus eap-sim eapol-test +fils gui macsec +mbo +mesh p2p privsep readline selinux smartcard tkip uncommon-eap-types wep wps"
# CONFIG_PRIVSEP=y does not have sufficient support for the new driver
# interface functions used for MACsec, so this combination cannot be used
@@ -39,7 +39,7 @@ DEPEND="
eap-sim? ( sys-apps/pcsc-lite )
)
!kernel_linux? ( net-libs/libpcap )
- qt6? (
+ gui? (
dev-qt/qtbase:6[gui,widgets]
dev-qt/qtsvg:6
)
@@ -337,7 +337,7 @@ src_configure() {
Kconfig_style_config LIBNL32
fi
- if use qt6 ; then
+ if use gui ; then
pushd "${S}"/wpa_gui-qt4 > /dev/null || die
eqmake6 wpa_gui.pro
popd > /dev/null || die
@@ -348,7 +348,7 @@ src_compile() {
einfo "Building wpa_supplicant"
emake V=1 BINDIR=/usr/sbin
- if use qt6; then
+ if use gui ; then
einfo "Building wpa_gui"
emake -C "${S}"/wpa_gui-qt4
fi
@@ -379,7 +379,7 @@ src_install() {
doman doc/docbook/*.{5,8}
fi
- if use qt6 ; then
+ if use gui ; then
into /usr
dobin wpa_gui-qt4/wpa_gui
doicon wpa_gui-qt4/icons/wpa_gui.svg
diff --git a/net-wireless/wpa_supplicant/wpa_supplicant-9999.ebuild b/net-wireless/wpa_supplicant/wpa_supplicant-9999.ebuild
index 4f34e0835b8c..87f3a99dc0d3 100644
--- a/net-wireless/wpa_supplicant/wpa_supplicant-9999.ebuild
+++ b/net-wireless/wpa_supplicant/wpa_supplicant-9999.ebuild
@@ -18,7 +18,7 @@ else
fi
SLOT="0"
-IUSE="+ap broadcom-sta dbus eap-sim eapol-test +fils macsec +mbo +mesh p2p privsep qt6 readline selinux smartcard tkip uncommon-eap-types wep wps"
+IUSE="+ap broadcom-sta dbus eap-sim eapol-test +fils gui macsec +mbo +mesh p2p privsep readline selinux smartcard tkip uncommon-eap-types wep wps"
# CONFIG_PRIVSEP=y does not have sufficient support for the new driver
# interface functions used for MACsec, so this combination cannot be used
@@ -39,7 +39,7 @@ DEPEND="
eap-sim? ( sys-apps/pcsc-lite )
)
!kernel_linux? ( net-libs/libpcap )
- qt6? (
+ gui? (
dev-qt/qtbase:6[gui,widgets]
dev-qt/qtsvg:6
)
@@ -334,7 +334,7 @@ src_configure() {
Kconfig_style_config LIBNL32
fi
- if use qt6 ; then
+ if use gui ; then
pushd "${S}"/wpa_gui-qt4 > /dev/null || die
eqmake6 wpa_gui.pro
popd > /dev/null || die
@@ -345,7 +345,7 @@ src_compile() {
einfo "Building wpa_supplicant"
emake V=1 BINDIR=/usr/sbin
- if use qt6; then
+ if use gui ; then
einfo "Building wpa_gui"
emake -C "${S}"/wpa_gui-qt4
fi
@@ -376,7 +376,7 @@ src_install() {
doman doc/docbook/*.{5,8}
fi
- if use qt6 ; then
+ if use gui ; then
into /usr
dobin wpa_gui-qt4/wpa_gui
doicon wpa_gui-qt4/icons/wpa_gui.svg
diff --git a/profiles/arch/alpha/package.use.mask b/profiles/arch/alpha/package.use.mask
index 676b01c1c8ea..8ba96a88b9a1 100644
--- a/profiles/arch/alpha/package.use.mask
+++ b/profiles/arch/alpha/package.use.mask
@@ -1,6 +1,10 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
+# Sam James <sam@gentoo.org> (2025-03-04)
+# qt is not keyworded here
+net-wireless/wpa_supplicant gui
+
# Matt Jolly <kangie@gentoo.org> (2025-01-29)
# Needs dev-lang/go which is not keyworded here
x11-wm/fvwm3 go
diff --git a/profiles/arch/mips/package.use.mask b/profiles/arch/mips/package.use.mask
index 07d4ce6523d8..6722b02d6ef9 100644
--- a/profiles/arch/mips/package.use.mask
+++ b/profiles/arch/mips/package.use.mask
@@ -1,6 +1,10 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
+# Sam James <sam@gentoo.org> (2025-03-04)
+# qt is not keyworded here
+net-wireless/wpa_supplicant gui
+
# Sam James <sam@gentoo.org> (2025-02-21)
# media-video/rav1e is not yet keyworded here
media-video/ffmpeg rav1e
diff --git a/profiles/arch/sparc/package.use.mask b/profiles/arch/sparc/package.use.mask
index 2b8ff1ac1890..adec69335e67 100644
--- a/profiles/arch/sparc/package.use.mask
+++ b/profiles/arch/sparc/package.use.mask
@@ -1,6 +1,10 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
+# Sam James <sam@gentoo.org> (2025-03-04)
+# qt is not keyworded here
+net-wireless/wpa_supplicant gui
+
# Sam James <sam@gentoo.org> (2025-02-21)
# media-video/rav1e is not yet keyworded here
media-video/ffmpeg rav1e
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2025-03-04 16:21 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-04 16:21 [gentoo-commits] repo/gentoo:master commit in: profiles/arch/sparc/, profiles/arch/alpha/, net-wireless/wpa_supplicant/, Sam James
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox