From: Vincent Legoll <vincent.legoll@gmail.com>
To: 39528@debbugs.gnu.org, mail@nicolasgoaziou.fr
Subject: [bug#39528] [PATCH v4] Add tunctl
Date: Mon, 10 Feb 2020 00:40:12 +0100 [thread overview]
Message-ID: <CAEwRq=qPv4OFtU0OBXRkw6Z81wpFuUUGg1+z1aedg6k3kcpQ-Q@mail.gmail.com> (raw)
In-Reply-To: <CAEwRq=pGZm=h39rzayuPgjqssfxPiZNCW0iFCghsQPaytjFLyg@mail.gmail.com>
[-- Attachment #1: Type: text/plain, Size: 169 bytes --]
Hello Nicolas,
thanks for your input, this version incorporates your feedback,
with a s/is/are/ and a capitalized first word of description.
WDYT?
--
Vincent Legoll
[-- Attachment #2: 0001-gnu-networking-Add-tunctl.patch --]
[-- Type: text/x-patch, Size: 2664 bytes --]
From 6ca58829af9ef6b2e4c5c90203229280bd8f2678 Mon Sep 17 00:00:00 2001
From: Vincent Legoll <vincent.legoll@gmail.com>
Date: Sun, 9 Feb 2020 16:34:23 +0100
Subject: [PATCH] gnu: networking: Add tunctl
* gnu/packages/networking.scm (tunctl): New variable.
---
gnu/packages/networking.scm | 39 +++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index ed339524c0..654506ffb8 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -36,6 +36,7 @@
;;; Copyright © 2019 Jan Wielkiewicz <tona_kosmicznego_smiecia@interia.pl>
;;; Copyright © 2019 Daniel Schaefer <git@danielschaefer.me>
;;; Copyright © 2019 Diego N. Barbato <dnbarbato@posteo.de>
+;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -2824,6 +2825,44 @@ easy-to-understand binary values.")
(home-page "http://jodies.de/ipcalc")
(license license:gpl2+)))
+(define-public tunctl
+ (package
+ (name "tunctl")
+ (version "1.5")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "mirror://sourceforge/tunctl/tunctl-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "1zsgn7w6l2zh2q0j6qaw8wsx981qcr536qlz1lgb3b5zqr66qama"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (delete 'bootstrap) ; there is no configure.ac file
+ (delete 'configure) ; there is no configure script
+ (delete 'check) ; there are no tests
+ (replace 'build
+ (lambda _
+ (setenv "CC" "gcc")
+ (invoke "make" "tunctl")))
+ ;; TODO: Requires docbook2x to generate man page from SGML
+ (replace 'install
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let* ((out (assoc-ref outputs "out"))
+ (bin (string-append out "/bin")))
+ (mkdir-p bin)
+ (install-file "tunctl" bin))
+ #t)))))
+ (home-page "http://tunctl.sourceforge.net")
+ (synopsis "Utility to set up and maintain TUN/TAP network interfaces")
+ (description "Tunctl is used to set up and maintain persistent TUN/TAP network
+ interfaces, enabling user applications to simulate network traffic.
+ Such interfaces are useful for VPN software, virtualization, emulation,
+ simulation, and a number of other applications.")
+ (license license:gpl2)))
+
(define-public vde2
(package
(name "vde2")
--
2.25.0
next prev parent reply other threads:[~2020-02-09 23:41 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-02-09 15:44 [bug#39528] [PATCH 0/1] add tunctl Vincent Legoll
2020-02-09 15:49 ` [bug#39528] [PATCH 1/1] " Vincent Legoll
2020-02-09 22:45 ` [bug#39528] [PATCH v2] " Vincent Legoll
2020-02-09 22:50 ` [bug#39528] [PATCH v3] Add tunctl Vincent Legoll
2020-02-09 23:06 ` Nicolas Goaziou
2020-02-09 23:40 ` Vincent Legoll [this message]
2020-02-10 0:03 ` bug#39528: [PATCH v4] " Nicolas Goaziou
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='CAEwRq=qPv4OFtU0OBXRkw6Z81wpFuUUGg1+z1aedg6k3kcpQ-Q@mail.gmail.com' \
--to=vincent.legoll@gmail.com \
--cc=39528@debbugs.gnu.org \
--cc=mail@nicolasgoaziou.fr \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).