summaryrefslogtreecommitdiff
path: root/gnu/packages/cpp.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/cpp.scm')
-rw-r--r--gnu/packages/cpp.scm40
1 files changed, 5 insertions, 35 deletions
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index e060795da9..13ab6bbe62 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -2041,8 +2041,10 @@ other values of screen objects, by setting their values as the tween starting
point and then, after each tween step, plugging back the result.")
(license license:expat)))
-;;; This older LTS release is kept for tensorflow.
(define-public abseil-cpp-20200923.3
+ ;; "guix refresh -l" shows no dependents of this package, but by input
+ ;; rewriting, grpc-1.16.1 depends on it;
+ ;; in turn this is an input to hyperledger-iroha and tensorflow.
(package
(name "abseil-cpp")
(version "20200923.3")
@@ -2419,7 +2421,7 @@ of C++14 components that complements @code{std} and Boost.")
(define-public poco
(package
(name "poco")
- (version "1.11.1")
+ (version "1.13.3")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -2428,7 +2430,7 @@ of C++14 components that complements @code{std} and Boost.")
(file-name (git-file-name name version))
(sha256
(base32
- "0qkf8vb4qwds6idk9fkw6wjvcdk5k8h77x3gv47l0i4jfl5hwn8b"))))
+ "1b8w3s6j020r356s6j6ijpnvzjdby4qwwndhzhfjc3rm727m085g"))))
(build-system cmake-build-system)
(arguments
(list
@@ -3365,38 +3367,6 @@ templated string type for compatibility with any STL-like string (std::string,
std::wstring, etc).")
(license license:boost1.0)))
-(define-public crc32c
- (package
- (name "crc32c")
- (version "1.1.2")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/google/crc32c")
- (commit version)))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "0966lyy3w5cnrs0c0fkma4hga51k54hns72l4n76944awqssap7j"))
- (patches (search-patches "crc32c-unbundle-googletest.patch"))))
- (build-system cmake-build-system)
- (arguments
- (list #:configure-flags #~(list "-DBUILD_SHARED_LIBS=ON"
- "-DCRC32C_BUILD_BENCHMARKS=OFF"
- "-DCRC32C_USE_GLOG=OFF"
- (string-append
- "-DCRC32C_BUILD_TESTS="
- ;; TODO: perhaps infer #:tests?
- (if #$(%current-target-system)
- "OFF" "ON")))))
- (native-inputs (list googletest))
- (home-page "https://github.com/google/crc32c")
- (synopsis "Cyclic redundancy check")
- (description
- "This package provides architecture-specific implementations of the
-CRC32C algorithm, which is specified in RFC 3720, section 12.1.")
- (license license:bsd-3)))
-
(define fast-float-test-files
(let ((name "fast-float-test-files")
(version "1.0.0"))