GNU bug report logs -
#64137
[PATCH 0/2] Build catch2@3 with CMake and update to 3.3.2
Previous Next
Reported by: David Elsing <david.elsing <at> posteo.net>
Date: Sat, 17 Jun 2023 19:28:02 UTC
Severity: normal
Tags: patch
Done: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
Bug is archived. No further changes may be made.
Full log
Message #32 received at 64137 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/cpp.scm (tl-optional): New variable.
---
gnu/packages/cpp.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index f1d7e89537..2fe7f477ce 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -2691,3 +2691,35 @@ (define-public tsl-ordered-map
(description "This package provides a C++ implementation of a hash map and
a hash set which preserve the order of insertion.")
(license license:expat)))
+
+(define-public tl-optional
+ (package
+ (name "tl-optional")
+ (version "1.1.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/TartanLlama/optional")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0qkjplmhilbi1iqxx3pz0grcx5355ymk6wwd4h4309mk156xgx2q"))))
+ (build-system cmake-build-system)
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'patch-cmake-test
+ (lambda _
+ (substitute* "CMakeLists.txt"
+ (("FetchContent_Declare.*") "")
+ ((".*http.*catchorg/Catch2.*") "")
+ (("FetchContent_MakeAvailable\\(Catch2\\)")
+ "find_package(Catch2 REQUIRED)")))))))
+ (native-inputs (list catch2))
+ (home-page "https://github.com/TartanLlama/optional")
+ (synopsis "C++11/14/17 implementation of std::optional with extensions")
+ (description "tl-optional is a single-header implementation of
+std::optional with functional-style extensions and support for references.")
+ (license license:cc0)))
--
2.40.1
This bug report was last modified 2 years and 16 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.