[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/06: gnu: Add poco.
From: |
guix-commits |
Subject: |
01/06: gnu: Add poco. |
Date: |
Tue, 8 Mar 2022 15:32:41 -0500 (EST) |
lilyp pushed a commit to branch master
in repository guix.
commit 4f82f343093a8509d476e422fcfae2b3c7908017
Author: Liliana Marie Prikler <liliana.prikler@gmail.com>
AuthorDate: Sat Feb 19 16:03:37 2022 +0100
gnu: Add poco.
* 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 b8a0a1b20b..eb53f9e0a9 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -1126,6 +1126,39 @@ of C++14 components that complements @code{std} and
Boost.")
(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"))
- branch master updated (59001c4f91 -> b8fc916951), guix-commits, 2022/03/08
- 01/06: gnu: Add poco.,
guix-commits <=
- 04/06: gnu: gitg: Use new package style., guix-commits, 2022/03/08
- 05/06: gnu: gitg: Update to 41., guix-commits, 2022/03/08
- 03/06: gnu: mumble: Enable tests., guix-commits, 2022/03/08
- 02/06: gnu: mumble: Update to 1.4.230., guix-commits, 2022/03/08
- 06/06: gnu: stex-bootstrap: Guard against unsupported systems., guix-commits, 2022/03/08