From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marius Bakke Subject: [PATCH] gnu: Add capnproto. Date: Sat, 13 Aug 2016 19:48:36 +0100 Message-ID: <87ziog1p4r.fsf@ike.i-did-not-set--mail-host-address--so-tickle-me> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48103) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bYdzK-00077b-OX for guix-devel@gnu.org; Sat, 13 Aug 2016 14:48:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bYdzG-0008Ak-6s for guix-devel@gnu.org; Sat, 13 Aug 2016 14:48:53 -0400 Received: from out2-smtp.messagingengine.com ([66.111.4.26]:56984) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bYdzD-000885-Qk for guix-devel@gnu.org; Sat, 13 Aug 2016 14:48:50 -0400 Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.nyi.internal (Postfix) with ESMTP id AA4B8202D1 for ; Sat, 13 Aug 2016 14:48:38 -0400 (EDT) Received: from localhost (unknown [46.16.214.129]) by mail.messagingengine.com (Postfix) with ESMTPA id 301C6CCE73 for ; Sat, 13 Aug 2016 14:48:38 -0400 (EDT) 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 --=-=-= Content-Type: text/plain Hi, This adds the Cap'n Proto serialization system. Note that it bundles googletest; I tried unbundling but it proved difficult. gtest will no longer be used from the 0.6 release so I did not think a comment was necessary. -- Marius --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: inline; filename=0001-gnu-Add-capnproto.patch Content-Transfer-Encoding: quoted-printable >From 456e8242259061693f592d70529ff141b00ea7b1 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sat, 13 Aug 2016 19:01:49 +0100 Subject: [PATCH] gnu: Add capnproto. * gnu/packages/capnproto.scm: New file. * gnu/local.mk (GNU_SYSTEM_MODULES): Add it. --- gnu/local.mk | 1 + gnu/packages/capnproto.scm | 48 ++++++++++++++++++++++++++++++++++++++++++= ++++ 2 files changed, 49 insertions(+) create mode 100644 gnu/packages/capnproto.scm diff --git a/gnu/local.mk b/gnu/local.mk index 44ace61..846c8d7 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -62,6 +62,7 @@ GNU_SYSTEM_MODULES =3D \ %D%/packages/busybox.scm \ %D%/packages/c.scm \ %D%/packages/calcurse.scm \ + %D%/packages/capnproto.scm \ %D%/packages/ccache.scm \ %D%/packages/cdrom.scm \ %D%/packages/certs.scm \ diff --git a/gnu/packages/capnproto.scm b/gnu/packages/capnproto.scm new file mode 100644 index 0000000..bcd6d42 --- /dev/null +++ b/gnu/packages/capnproto.scm @@ -0,0 +1,48 @@ +;;; GNU Guix --- Functional package management for GNU +;;; Copyright =C2=A9 2016 Marius Bakke +;;; +;;; This file is part of GNU Guix. +;;; +;;; GNU Guix is free software; you can redistribute it and/or modify it +;;; under the terms of the GNU General Public License as published by +;;; the Free Software Foundation; either version 3 of the License, or (at +;;; your option) any later version. +;;; +;;; GNU Guix is distributed in the hope that it will be useful, but +;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;;; GNU General Public License for more details. +;;; +;;; You should have received a copy of the GNU General Public License +;;; along with GNU Guix. If not, see . + +(define-module (gnu packages capnproto) + #:use-module ((guix licenses) #:prefix license:) + #:use-module (guix packages) + #:use-module (guix download) + #:use-module (guix build-system gnu)) + +(define-public capnproto + (package + (name "capnproto") + (version "0.5.3") + (source (origin + (method url-fetch) + (uri (string-append + "https://capnproto.org/capnproto-c++-" + version ".tar.gz")) + (sha256 + (base32 + "1yvaadhgakskqq5wpv53hd6fc3pp17mrdldw4i5cvgck4iwprcfd")) + (modules '((guix build utils))) + (snippet + ;; Workaround for test that tries to resolve port name from + ;; /etc/services, which is not present in build environment. + '(substitute* "src/kj/async-io-test.c++" ((":http") ":80"))= ))) + (build-system gnu-build-system) + (home-page "https://capnproto.org") + (synopsis "Capability-based RPC and serialization system") + (description + "Cap'n Proto is a very fast data interchange format and capability-ba= sed RPC +system. Think JSON, except binary. Or think Protocol Buffers, except fas= ter.") + (license license:expat))) --=20 2.9.2 --=-=-=--