From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:51931) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gcD89-0007n2-LY for guix-patches@gnu.org; Wed, 26 Dec 2018 12:38:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gcD86-0002DV-Ff for guix-patches@gnu.org; Wed, 26 Dec 2018 12:38:05 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:39791) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gcD86-0002DP-BC for guix-patches@gnu.org; Wed, 26 Dec 2018 12:38:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gcD86-0005Mh-8P for guix-patches@gnu.org; Wed, 26 Dec 2018 12:38:02 -0500 Subject: bug#33874: [PATCH] gnu: Add badvpn. Resent-To: guix-patches@gnu.org Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <87pntpgez4.fsf@gmail.com> <87bm58e8zv.fsf@gmail.com> Date: Wed, 26 Dec 2018 18:37:28 +0100 In-Reply-To: <87bm58e8zv.fsf@gmail.com> (Meiyo Peng's message of "Wed, 26 Dec 2018 21:02:44 +0800") Message-ID: <874lb0chpj.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Meiyo Peng Cc: 33874-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi, Meiyo Peng skribis: >>>From 00cfd4bd699a5863431504018725693257f6423f Mon Sep 17 00:00:00 2001 > From: Meiyo Peng > Date: Mon, 24 Dec 2018 22:35:26 +0800 > Subject: [PATCH] gnu: Add badvpn. > > * gnu/packages/vpn.scm (badvpn): New variable. Applied with the minor changes below to make the synopsis hopefully clearer. Thanks! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable diff --git a/gnu/packages/vpn.scm b/gnu/packages/vpn.scm index 8cc6a41d77..dabf84a947 100644 --- a/gnu/packages/vpn.scm +++ b/gnu/packages/vpn.scm @@ -427,9 +427,9 @@ with configuration options for most of @command{sshuttl= e}=E2=80=99s features.") (native-inputs `(("pkg-config" ,pkg-config))) (home-page "https://github.com/ambrop72/badvpn") - (synopsis "NCD scripting language, tun2socks proxifier, P2P VPN") - (description "@code{BadVPN} is a collection of VPN-related tools. It -includes: + (synopsis "Peer-to-peer virtual private network (VPN)") + (description "@code{BadVPN} is a collection of virtual private +network (VPN) tools. It includes: =20 @enumerate @item NCD programming language.\n @@ -441,7 +441,7 @@ The tun2socks program socksifes TCP connections at the = network layer. It implements a TUN device which accepts all incoming TCP connections (regard= less of destination IP), and forwards the connections through a SOCKS server. @item Peer-to-peer VPN.\n -The Peer-to-peer VPN implements a Layer 2 (Ethernet) network between the p= eers +The peer-to-peer VPN implements a Layer 2 (Ethernet) network between the p= eers (VPN nodes). @end enumerate") ;; This project contains a bundled lwIP. lwIP is also released under t= he --=-=-=--