summaryrefslogtreecommitdiff
path: root/virtual/wireguard
diff options
context:
space:
mode:
Diffstat (limited to 'virtual/wireguard')
-rw-r--r--virtual/wireguard/Manifest2
-rw-r--r--virtual/wireguard/metadata.xml12
-rw-r--r--virtual/wireguard/wireguard-1.ebuild29
3 files changed, 0 insertions, 43 deletions
diff --git a/virtual/wireguard/Manifest b/virtual/wireguard/Manifest
deleted file mode 100644
index 218d08f009e4..000000000000
--- a/virtual/wireguard/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-EBUILD wireguard-1.ebuild 917 BLAKE2B 0153c85461bd3cca893b3e051a72cfbc18f2cdb5ca2ef9897d7ac18a4a538d452ca3494cd26f7a90b738b885cffee462458af1c7a864ad251f6254ca7e4fbabf SHA512 9f8adb8745b37cad4f53098926673b6144b9adc28c793a60df96566747e23326ab95559643ecdaebd11ed48c18880c7f2a05e5043ea8eec284091dddc0fe7b3f
-MISC metadata.xml 519 BLAKE2B 658024ee6de411e6c8248892b40c1049c574320ce42fa0950020465b04647045e59b459d2edae210ca75c5090b2867fa2ffedfde5e1fd3e004ee65b69e73b40a SHA512 fbff412fd91543d8ff53f2f28558e77e3ea7b569593e7a8d158e6056fce18627f1a5d3004f9ae67aface12ddf02a821938869ebab24fa850cf5f33fa9db6db4b
diff --git a/virtual/wireguard/metadata.xml b/virtual/wireguard/metadata.xml
deleted file mode 100644
index a2b169f1920c..000000000000
--- a/virtual/wireguard/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>zx2c4@gentoo.org</email>
- <name>Jason A. Donenfeld</name>
- </maintainer>
- <use>
- <flag name="tools">Compile the wg(8) tool and related helpers. You probably want this enabled.</flag>
- <flag name="module">Compile the actual WireGuard kernel module. Most certainly you want this enabled, unless you're doing something strange.</flag>
- </use>
-</pkgmetadata>
diff --git a/virtual/wireguard/wireguard-1.ebuild b/virtual/wireguard/wireguard-1.ebuild
deleted file mode 100644
index d203b7a74287..000000000000
--- a/virtual/wireguard/wireguard-1.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Simple yet fast and modern VPN that utilizes state-of-the-art cryptography."
-
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
-IUSE="+module +tools"
-
-RDEPEND="
- tools? ( net-vpn/wireguard-tools )
- module? ( net-vpn/wireguard-modules )
-"
-
-pkg_postinst() {
- ewarn
- ewarn "This package, ${CATEGORY}/${PN}, has been deprecated, in favor of explicitly"
- ewarn "merging the tools and the modules separately. You may accomplish this by"
- ewarn "running:"
- ewarn
- ewarn " emerge -nO net-vpn/wireguard-tools net-vpn/wireguard-modules"
- ewarn " emerge -C virtual/wireguard"
- ewarn
- ewarn "When Linux 5.6 comes out, net-vpn/wireguard-modules itself will be deprecated,"
- ewarn "with its functionality having moved directly into Linux."
- ewarn
-}