Gentoo Archives: gentoo-commits

From: "Jason A. Donenfeld" <zx2c4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: virtual/wireguard/
Date: Sat, 28 Dec 2019 08:53:36
Message-Id: 1577523187.6fe0163c0a04ad192244ccedfbf8351b6f952078.zx2c4@gentoo
1 commit: 6fe0163c0a04ad192244ccedfbf8351b6f952078
2 Author: Jason A. Donenfeld <zx2c4 <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 28 08:53:07 2019 +0000
4 Commit: Jason A. Donenfeld <zx2c4 <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 28 08:53:07 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fe0163c
7
8 virtual/wireguard: simplify flags
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Jason A. Donenfeld <zx2c4 <AT> gentoo.org>
12
13 virtual/wireguard/metadata.xml | 2 --
14 virtual/wireguard/wireguard-1.ebuild | 5 ++---
15 2 files changed, 2 insertions(+), 5 deletions(-)
16
17 diff --git a/virtual/wireguard/metadata.xml b/virtual/wireguard/metadata.xml
18 index d5c30b1930c..a2b169f1920 100644
19 --- a/virtual/wireguard/metadata.xml
20 +++ b/virtual/wireguard/metadata.xml
21 @@ -8,7 +8,5 @@
22 <use>
23 <flag name="tools">Compile the wg(8) tool and related helpers. You probably want this enabled.</flag>
24 <flag name="module">Compile the actual WireGuard kernel module. Most certainly you want this enabled, unless you're doing something strange.</flag>
25 - <flag name="module-src">Install the module source code to /usr/src, in case you like building kernel modules yourself.</flag>
26 - <flag name="debug">Enable verbose debug reporting in dmesg of various WireGuard peer and device information.</flag>
27 </use>
28 </pkgmetadata>
29
30 diff --git a/virtual/wireguard/wireguard-1.ebuild b/virtual/wireguard/wireguard-1.ebuild
31 index a1825d73614..1ed06837eaf 100644
32 --- a/virtual/wireguard/wireguard-1.ebuild
33 +++ b/virtual/wireguard/wireguard-1.ebuild
34 @@ -8,10 +8,9 @@ HOMEPAGE="https://www.wireguard.com/"
35
36 SLOT="0"
37 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
38 -IUSE="debug +module +tools module-src"
39 +IUSE="+module +tools"
40
41 RDEPEND="
42 tools? ( net-vpn/wireguard-tools )
43 - module? ( net-vpn/wireguard-modules[module,debug?] )
44 - module-src? ( net-vpn/wireguard-modules[module-src] )
45 + module? ( net-vpn/wireguard-modules )
46 "