From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E0886138334 for ; Mon, 30 Dec 2019 14:00:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 91CE9E0AF1; Mon, 30 Dec 2019 14:00:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 76EF4E0AF0 for ; Mon, 30 Dec 2019 14:00:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9BD2834DD02 for ; Mon, 30 Dec 2019 14:00:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3829D74 for ; Mon, 30 Dec 2019 14:00:19 +0000 (UTC) From: "Jason A. Donenfeld" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jason A. Donenfeld" Message-ID: <1577714413.595b2a8d790ba68ec9d69a094e6a0f0aa1a06d7b.zx2c4@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: profiles/, virtual/wireguard/ X-VCS-Repository: repo/gentoo X-VCS-Files: profiles/package.deprecated virtual/wireguard/wireguard-1.ebuild X-VCS-Directories: profiles/ virtual/wireguard/ X-VCS-Committer: zx2c4 X-VCS-Committer-Name: Jason A. Donenfeld X-VCS-Revision: 595b2a8d790ba68ec9d69a094e6a0f0aa1a06d7b X-VCS-Branch: master Date: Mon, 30 Dec 2019 14:00:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 3313b904-b6fd-48e5-8d09-c09de8c34611 X-Archives-Hash: 639f15a51c59c03f443fd080457ddf24 commit: 595b2a8d790ba68ec9d69a094e6a0f0aa1a06d7b Author: Jason A. Donenfeld gentoo org> AuthorDate: Mon Dec 30 13:55:47 2019 +0000 Commit: Jason A. Donenfeld gentoo org> CommitDate: Mon Dec 30 14:00:13 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=595b2a8d virtual/wireguard: mark for deprecation Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Jason A. Donenfeld gentoo.org> profiles/package.deprecated | 7 +++++++ virtual/wireguard/wireguard-1.ebuild | 14 ++++++++++++++ 2 files changed, 21 insertions(+) diff --git a/profiles/package.deprecated b/profiles/package.deprecated index 55f871b9b66..93679901fd6 100644 --- a/profiles/package.deprecated +++ b/profiles/package.deprecated @@ -17,6 +17,13 @@ #--- END OF EXAMPLES --- +# Jason A. Donenfeld (2019-12-30) +# Directly install net-vpn/wireguard-tools and net-vpn/wireguard-modules. +# This may be accomplished by running: +# emerge -nO net-vpn/wireguard-tools net-vpn/wireguard-modules +# emerge -C virtual/wireguard +virtual/wireguard + # Michał Górny (2019-12-30) # PyPy packages have been restructured, and the virtual is no longer # necessary. Depend on dev-python/pypy{,3} instead. diff --git a/virtual/wireguard/wireguard-1.ebuild b/virtual/wireguard/wireguard-1.ebuild index a4ccb1517ed..4fa639117c9 100644 --- a/virtual/wireguard/wireguard-1.ebuild +++ b/virtual/wireguard/wireguard-1.ebuild @@ -13,3 +13,17 @@ 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 +}