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/, profiles/
Date: Thu, 06 Aug 2020 10:41:39
Message-Id: 1596710487.7fefa20b819b217a0edfe468f6e752f0958b8a75.zx2c4@gentoo
1 commit: 7fefa20b819b217a0edfe468f6e752f0958b8a75
2 Author: Jason A. Donenfeld <zx2c4 <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 6 10:38:24 2020 +0000
4 Commit: Jason A. Donenfeld <zx2c4 <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 6 10:41:27 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fefa20b
7
8 virtual/wireguard: remove after last rites period
9
10 Signed-off-by: Jason A. Donenfeld <zx2c4 <AT> gentoo.org>
11
12 profiles/package.mask | 6 ------
13 virtual/wireguard/metadata.xml | 12 ------------
14 virtual/wireguard/wireguard-1.ebuild | 29 -----------------------------
15 3 files changed, 47 deletions(-)
16
17 diff --git a/profiles/package.mask b/profiles/package.mask
18 index c1d2e8dfed3..d35f1b756a8 100644
19 --- a/profiles/package.mask
20 +++ b/profiles/package.mask
21 @@ -306,12 +306,6 @@ dev-python/distributed
22 # Removal in 30 days.
23 dev-tex/herm-pic
24
25 -# Jason A. Donenfeld <zx2c4@g.o> (2020-07-31)
26 -# This package has been deprecated for 8 months now, in addition to
27 -# loud ewarns upon every install. It is replaced with explicitly
28 -# installing net-vpn/wireguard-tools. Removal in 7 days.
29 -virtual/wireguard
30 -
31 # Michał Górny <mgorny@g.o> (2020-07-28)
32 # Masked for the time being due to dep on LLVM 8. Bug #720236.
33 <=dev-ada/gps-2019-r1
34
35 diff --git a/virtual/wireguard/metadata.xml b/virtual/wireguard/metadata.xml
36 deleted file mode 100644
37 index a2b169f1920..00000000000
38 --- a/virtual/wireguard/metadata.xml
39 +++ /dev/null
40 @@ -1,12 +0,0 @@
41 -<?xml version="1.0" encoding="UTF-8"?>
42 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
43 -<pkgmetadata>
44 - <maintainer type="person">
45 - <email>zx2c4@g.o</email>
46 - <name>Jason A. Donenfeld</name>
47 - </maintainer>
48 - <use>
49 - <flag name="tools">Compile the wg(8) tool and related helpers. You probably want this enabled.</flag>
50 - <flag name="module">Compile the actual WireGuard kernel module. Most certainly you want this enabled, unless you're doing something strange.</flag>
51 - </use>
52 -</pkgmetadata>
53
54 diff --git a/virtual/wireguard/wireguard-1.ebuild b/virtual/wireguard/wireguard-1.ebuild
55 deleted file mode 100644
56 index d203b7a7428..00000000000
57 --- a/virtual/wireguard/wireguard-1.ebuild
58 +++ /dev/null
59 @@ -1,29 +0,0 @@
60 -# Copyright 1999-2020 Gentoo Authors
61 -# Distributed under the terms of the GNU General Public License v2
62 -
63 -EAPI=7
64 -
65 -DESCRIPTION="Simple yet fast and modern VPN that utilizes state-of-the-art cryptography."
66 -
67 -SLOT="0"
68 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
69 -IUSE="+module +tools"
70 -
71 -RDEPEND="
72 - tools? ( net-vpn/wireguard-tools )
73 - module? ( net-vpn/wireguard-modules )
74 -"
75 -
76 -pkg_postinst() {
77 - ewarn
78 - ewarn "This package, ${CATEGORY}/${PN}, has been deprecated, in favor of explicitly"
79 - ewarn "merging the tools and the modules separately. You may accomplish this by"
80 - ewarn "running:"
81 - ewarn
82 - ewarn " emerge -nO net-vpn/wireguard-tools net-vpn/wireguard-modules"
83 - ewarn " emerge -C virtual/wireguard"
84 - ewarn
85 - ewarn "When Linux 5.6 comes out, net-vpn/wireguard-modules itself will be deprecated,"
86 - ewarn "with its functionality having moved directly into Linux."
87 - ewarn
88 -}