From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Subject: [PATCH 1/2] gnu: Add openvswitch. Date: Fri, 27 Jan 2017 21:56:15 +0800 Message-ID: <20170127135616.15017-1-iyzsong@member.fsf.org> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36581) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cX780-0005Mu-Te for guix-devel@gnu.org; Fri, 27 Jan 2017 09:03:57 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cX77w-0002jL-7q for guix-devel@gnu.org; Fri, 27 Jan 2017 09:03:48 -0500 Received: from lb1.openmailbox.org ([5.79.108.160]:37679) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cX77w-0002j6-28 for guix-devel@gnu.org; Fri, 27 Jan 2017 09:03:44 -0500 List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/networking.scm (openvswitch): New variable. --- gnu/packages/networking.scm | 54 +++++++++++++++++++++++++++++++++++++++= ++++++ 1 file changed, 54 insertions(+) diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 87ee0a1d8..c6fb2cfda 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -1060,3 +1060,57 @@ suddenly a lot of network traffic, you can fire up= NetHogs and immediately see which PID is causing this. This makes it easy to identify programs that= have gone wild and are suddenly taking up your bandwidth.") (license license:gpl2+))) + +(define-public openvswitch + (package + (name "openvswitch") + (version "2.6.1") + (source (origin + (method url-fetch) + (uri (string-append + "http://openvswitch.org/releases/openvswitch-" + version ".tar.gz")) + (sha256 + (base32 + "036gq741j9kqsjlp693nff838c9wjd1c56nswl9vyyd1lsmj0yrh"))= )) + (build-system gnu-build-system) + (arguments + '(;; FIXME: many tests fail with: + ;; [=E2=80=A6] + ;; test -e $OVS_RUNDIR/ovs-vswitchd.pid + ;; ovs-appctl -t ovs-vswitchd exit + ;; hard failure + #:tests? #f + #:configure-flags + '("--enable-shared" + "--localstatedir=3D/var" + "--with-dbdir=3D/var/lib/openvswitch") + #:phases + (modify-phases %standard-phases + (replace 'install + (lambda _ + (zero? (system* "make" + "RUNDIR=3D/tmp" + "PKIDIR=3D/tmp" + "LOGDIR=3D/tmp" + "DBDIR=3D/tmp" + "install"))))))) + (native-inputs + `(("perl" ,perl) + ("pkg-config" ,pkg-config) + ("python" ,python-2) + ;; for testing + ("util-linux" ,util-linux))) + (propagated-inputs + `(("python-six" ,python2-six))) + (inputs + `(("libcap-ng" ,libcap-ng) + ("openssl" ,openssl))) + (synopsis "Virtual network switch") + (home-page "http://www.openvswitch.org/") + (description + "Open vSwitch is a multilayer virtual switch. It is designed to en= able +massive network automation through programmatic extension, while still +supporting standard management interfaces and protocols (e.g. NetFlow, s= Flow, +IPFIX, RSPAN, CLI, LACP, 802.1ag).") + (license license:asl2.0))) --=20 2.11.0