From: Liliana Marie Prikler <liliana.prikler@gmail.com>
To: 54065@debbugs.gnu.org
Subject: [bug#54065] [PATCH 1/3] gnu: Add poco.
Date: Sat, 19 Feb 2022 16:03:37 +0100 [thread overview]
Message-ID: <3e84435d1065b29401c245a66463ffa4f1e15afb.camel@gmail.com> (raw)
In-Reply-To: <2b30b57085cbc6896cd6b609a75a2ac7ad798d82.camel@gmail.com>
* gnu/packages/cpp.scm (poco): New variable.
---
gnu/packages/cpp.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index 86138531c0..66e5c6f257 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -1073,6 +1073,39 @@ (define-public folly
(supported-systems '("aarch64-linux" "x86_64-linux"))
(license license:asl2.0)))
+(define-public poco
+ (package
+ (name "poco")
+ (version "1.11.1")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/pocoproject/poco")
+ (commit (string-append "poco-" version "-release"))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0qkf8vb4qwds6idk9fkw6wjvcdk5k8h77x3gv47l0i4jfl5hwn8b"))))
+ (build-system cmake-build-system)
+ (arguments
+ (list
+ #:configure-flags #~(list "-DENABLE_TESTS=ON")
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'disable-problematic-tests
+ (lambda _
+ (substitute* (list "Foundation/CMakeLists.txt" ; XXX: fails.
+ ;; Require network access
+ "Net/CMakeLists.txt"
+ "MongoDB/CMakeLists.txt"
+ "Redis/CMakeLists.txt")
+ (("ENABLE_TESTS") "FALSE")))))))
+ (home-page "https://pocoproject.org/")
+ (synopsis "Portable C++ components")
+ (description "A collection of libraries intended to be useful for building
+network-based applications.")
+ (license license:boost1.0)))
+
(define-public aws-crt-cpp
(let* ((commit "b6d311d76b504bf8ace5134d3fca0e672c36c9c3")
(revision "1"))
--
2.34.0
next prev parent reply other threads:[~2022-02-19 15:56 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-19 15:39 [bug#54065] [PATCH 0/3] Update mumble to 1.4.230 Liliana Marie Prikler
2022-02-19 15:03 ` [bug#54065] [PATCH v2 1/3] gnu: Add poco Liliana Marie Prikler
2022-04-05 14:08 ` [bug#54065] [PATCH 0/3] Update mumble to 1.4.230 Ludovic Courtès
2022-04-05 19:09 ` Liliana Marie Prikler
2022-02-19 15:03 ` Liliana Marie Prikler [this message]
2022-02-19 15:05 ` [bug#54065] [PATCH v2 2/3] gnu: mumble: Update " Liliana Marie Prikler
2022-02-19 15:05 ` [bug#54065] [PATCH " Liliana Marie Prikler
2022-02-19 18:12 ` Maxime Devos
2022-02-19 19:20 ` Liliana Marie Prikler
2022-02-19 18:18 ` Maxime Devos
2022-02-19 19:18 ` Liliana Marie Prikler
2022-02-19 18:20 ` Maxime Devos
2022-02-19 19:18 ` Liliana Marie Prikler
2022-02-19 15:37 ` [bug#54065] [PATCH v2 3/3] gnu: mumble: Enable tests Liliana Marie Prikler
2022-02-19 15:37 ` [bug#54065] [PATCH " Liliana Marie Prikler
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
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=3e84435d1065b29401c245a66463ffa4f1e15afb.camel@gmail.com \
--to=liliana.prikler@gmail.com \
--cc=54065@debbugs.gnu.org \
/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 external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.