unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Re: [PATCH] gnu: Add capnproto.
@ 2016-08-25  8:04 Kenton Varda
  2016-08-25 14:57 ` Marius Bakke
  2016-08-25 15:32 ` Alex Vong
  0 siblings, 2 replies; 14+ messages in thread
From: Kenton Varda @ 2016-08-25  8:04 UTC (permalink / raw)
  To: leo, guix-devel, mbakke

Hi, Cap'n Proto upstream author here. Noticed this thread in a Google
search, thought I'd comment.

To shed some light on the googletest situation:

The googletest maintainers have deemed that googletest should never
ever be system-installed, and have even disabled `make install` in
their build. See:

https://github.com/google/googletest/blob/master/googletest/Makefile.am#L300

I don't really understand what they think they're solving here but it
is what it is and this seems to make it hard to use googletest in a
non-bundled way. It's possible I misunderstood, though.

FWIW, Cap'n Proto only uses googletest to build its tests. It does not
install any artifacts that were influenced by googletest.

In any case, this dependency will be gone once I find time to do the
next release. Sorry for the trouble in the meantime.

-Kenton

PS. regarding the man page, I believe Debian mostly generated this
page from the capnp tool's help text. I'd accept a patch to
c++/src/kj/main.c++ which adds some code to generate man XML format
directly, so that we don't have to maintain the same text in multiple
places.

^ permalink raw reply	[flat|nested] 14+ messages in thread
* [PATCH] gnu: Add capnproto.
@ 2016-08-13 18:48 Marius Bakke
  2016-08-14 17:17 ` Leo Famulari
  0 siblings, 1 reply; 14+ messages in thread
From: Marius Bakke @ 2016-08-13 18:48 UTC (permalink / raw)
  To: guix-devel

[-- Attachment #1: Type: text/plain, Size: 237 bytes --]

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


[-- Attachment #2: 0001-gnu-Add-capnproto.patch --]
[-- Type: text/x-patch, Size: 3191 bytes --]

From 456e8242259061693f592d70529ff141b00ea7b1 Mon Sep 17 00:00:00 2001
From: Marius Bakke <mbakke@fastmail.com>
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 =				\
   %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 © 2016 Marius Bakke <mbakke@fastmail.com>
+;;;
+;;; 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 <http://www.gnu.org/licenses/>.
+
+(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-based RPC
+system.  Think JSON, except binary.  Or think Protocol Buffers, except faster.")
+    (license license:expat)))
-- 
2.9.2


^ permalink raw reply related	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2016-08-25 17:22 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-25  8:04 [PATCH] gnu: Add capnproto Kenton Varda
2016-08-25 14:57 ` Marius Bakke
2016-08-25 17:22   ` Kenton Varda
2016-08-25 15:32 ` Alex Vong
2016-08-25 15:52   ` Marius Bakke
  -- strict thread matches above, loose matches on Subject: below --
2016-08-13 18:48 Marius Bakke
2016-08-14 17:17 ` Leo Famulari
2016-08-14 18:16   ` Marius Bakke
2016-08-19 22:06     ` Leo Famulari
2016-08-19 22:17       ` Leo Famulari
2016-08-20 12:22         ` Marius Bakke
2016-08-23 16:00           ` Leo Famulari
2016-08-23 18:30             ` Marius Bakke
2016-08-23 18:40               ` Leo Famulari

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).