From mboxrd@z Thu Jan 1 00:00:00 1970 From: John Darrington Subject: Re: [PATCH 1/2] gnu: Add openvswitch. Date: Fri, 27 Jan 2017 15:53:00 +0100 Message-ID: <20170127145300.GA12004@jocasta.intra> References: <20170127135616.15017-1-iyzsong@member.fsf.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="HcAYCG3uE/tztfnV" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:49625) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cX7ts-0002KQ-1B for guix-devel@gnu.org; Fri, 27 Jan 2017 09:53:17 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cX7tn-0000iB-VT for guix-devel@gnu.org; Fri, 27 Jan 2017 09:53:16 -0500 Received: from de.cellform.com ([88.217.224.109]:56635 helo=jocasta.intra) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cX7tn-0000cT-Mc for guix-devel@gnu.org; Fri, 27 Jan 2017 09:53:11 -0500 Content-Disposition: inline In-Reply-To: <20170127135616.15017-1-iyzsong@member.fsf.org> 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: ????????? Cc: guix-devel@gnu.org --HcAYCG3uE/tztfnV Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Jan 27, 2017 at 09:56:15PM +0800, ????????? wrote: * gnu/packages/networking.scm (openvswitch): New variable. --- gnu/packages/networking.scm | 54 ++++++++++++++++++++++++++++++++++++= +++++++++ 1 file changed, 54 insertions(+) =20 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 t= hat 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: + ;; [???] + ;; test -e $OVS_RUNDIR/ovs-vswitchd.pid + ;; ovs-appctl -t ovs-vswitchd exit + ;; hard failure + #:tests? #f Have you tried asking upstream about this? They are usually very helpfull. J' =20 --=20 Avoid eavesdropping. Send strong encrypted email. PGP Public key ID: 1024D/2DE827B3=20 fingerprint =3D 8797 A26D 0854 2EAB 0285 A290 8A67 719C 2DE8 27B3 See http://sks-keyservers.net or any PGP keyserver for public key. --HcAYCG3uE/tztfnV Content-Type: application/pgp-signature; name="signature.asc" Content-Description: Digital signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iEYEARECAAYFAliLXswACgkQimdxnC3oJ7MTjACeKDg8Xuczkc0EapZtWHyQ+ZAC /zsAnRoZAnhbP+TFb73ZtFW3Ht/K6hkx =kRcf -----END PGP SIGNATURE----- --HcAYCG3uE/tztfnV--