unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Liliana Marie Prikler <liliana.prikler@gmail.com>
To: David Elsing <david.elsing@posteo.net>, 64137@debbugs.gnu.org
Subject: [bug#64137] [PATCH v2 1/8] gnu: Add mpark-variant.
Date: Thu, 22 Jun 2023 06:16:42 +0200	[thread overview]
Message-ID: <9d8eb64fdc54c8c71c902a25a30b64d3b0998700.camel@gmail.com> (raw)
In-Reply-To: <290bd1b3b75a4f870923952f77dca2d096e7529b.1687121561.git.david.elsing@posteo.net>

Am Sonntag, dem 18.06.2023 um 20:53 +0000 schrieb David Elsing:
> * gnu/packages/cpp.scm (mpark-variant): New variable.
> ---
>  gnu/packages/cpp.scm | 37 ++++++++++++++++++++++++++++++++++++-
>  1 file changed, 36 insertions(+), 1 deletion(-)
> 
> diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
> index 39a34c20dd..5a6298fc4d 100644
> --- a/gnu/packages/cpp.scm
> +++ b/gnu/packages/cpp.scm
> @@ -29,7 +29,7 @@
>  ;;; Copyright © 2022 muradm <mail@muradm.net>
>  ;;; Copyright © 2022 Attila Lendvai <attila@lendvai.name>
>  ;;; Copyright © 2022 Arun Isaac <arunisaac@systemreboot.net>
> -;;; Copyright © 2022 David Elsing <david.elsing@posteo.net>
> +;;; Copyright © 2022, 2023 David Elsing <david.elsing@posteo.net>
>  ;;; Copyright © 2022, 2023 Zheng Junjie <873216071@qq.com>
>  ;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
>  ;;; Copyright © 2023 Sughosha <Sughosha@proton.me>
> @@ -2553,3 +2553,38 @@ (define-public ftxui
>  @item No dependencies.
>  @end itemize")
>      (license license:expat)))
> +
> +(define-public mpark-variant
> +  (package
> +    (name "mpark-variant")
> +    (version "1.4.0")
> +    (source (origin
> +              (method git-fetch)
> +              (uri (git-reference
> +                    (url "https://github.com/mpark/variant")
> +                    (commit (string-append "v" version))))
> +              (sha256
> +               (base32
> +               
> "0gz8d5qprlfqb42cfyyc4nbwhgarhw027a9nr52h3gbdn560j0j4"))
> +              (file-name (git-file-name name version))))
> +    (build-system cmake-build-system)
> +    (arguments
> +     (list
> +      #:configure-flags #~(list "-
> DMPARK_VARIANT_INCLUDE_TESTS=mpark")
> +      #:phases
> +      #~(modify-phases %standard-phases
> +          (add-after 'unpack 'find-googletest
> +            (lambda _
> +              (substitute* "test/CMakeLists.txt"
> +                (("add_subdirectory.*3rdparty/googletest.*\n")
> +                 "find_package(GTest REQUIRED)\n")
> +                ((".*3rdparty/googletest.*\n") "")
> +                ((".*config_compiler_and_linker.*\n") "")
> +                (("gtest_main") "gtest gtest_main")))))))
> +    (native-inputs (list googletest))
> +    (home-page "https://github.com/mpark/variant")
> +    (synopsis "Implementation of the C++17 std::variant for
> C++11/14/17")
Could probably be shortened to std::variant for C++11/14[/17]
> +    (description
> +     "MPark.Variant provides the C++17 std::variant for
> C++11/14/17.  It is
> +based on the implementation of std::variant in libc++.")
> +    (license license:boost1.0)))

Otherwise LGTM.

  reply	other threads:[~2023-06-22  4:17 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-06-17 19:27 [bug#64137] [PATCH 0/2] Build catch2@3 with CMake and update to 3.3.2 David Elsing
2023-06-17 19:30 ` [bug#64137] [PATCH 1/2] gnu: catch2-3.1: Rename to catch2-3.3 David Elsing
2023-06-17 19:30 ` [bug#64137] [PATCH 2/2] gnu: Add catch2-static-3.3 David Elsing
2023-06-18  6:55 ` [bug#64137] [PATCH 0/2] Build catch2@3 with CMake and update to 3.3.2 Liliana Marie Prikler
2023-06-18 20:47   ` David Elsing
2023-06-18 20:53     ` [bug#64137] [PATCH v2 1/8] gnu: Add mpark-variant David Elsing
2023-06-22  4:16       ` Liliana Marie Prikler [this message]
2023-06-18 20:53     ` [bug#64137] [PATCH v2 2/8] gnu: Add tsl-hopscotch-map David Elsing
2023-06-22  4:18       ` Liliana Marie Prikler
2023-06-18 20:53     ` [bug#64137] [PATCH v2 3/8] gnu: Add tsl-sparse-map David Elsing
2023-06-18 20:53     ` [bug#64137] [PATCH v2 4/8] gnu: Add tsl-ordered-map David Elsing
2023-06-18 20:53     ` [bug#64137] [PATCH v2 5/8] gnu: Add tl-optional David Elsing
2023-06-18 20:53     ` [bug#64137] [PATCH v2 6/8] gnu: clingo: Unbundle dependencies David Elsing
2023-06-22  4:19       ` Liliana Marie Prikler
2023-06-18 20:53     ` [bug#64137] [PATCH v2 7/8] gnu: catch2-3.1: Rename to catch2-3.3 David Elsing
2023-06-22  4:20       ` Liliana Marie Prikler
2023-06-18 20:53     ` [bug#64137] [PATCH v2 8/8] gnu: Add catch2-static-3.3 David Elsing
2023-06-22  4:24       ` Liliana Marie Prikler
2023-06-25 10:01     ` [bug#64137] [PATCH 0/2] Build catch2@3 with CMake and update to 3.3.2 David Elsing
2023-06-25 10:03       ` [bug#64137] [PATCH v3 1/7] gnu: Add mpark-variant David Elsing
2023-06-25 10:03       ` [bug#64137] [PATCH v3 2/7] gnu: Add tsl-hopscotch-map David Elsing
2023-06-25 10:03       ` [bug#64137] [PATCH v3 3/7] gnu: Add tsl-sparse-map David Elsing
2023-06-25 10:03       ` [bug#64137] [PATCH v3 4/7] gnu: Add tsl-ordered-map David Elsing
2023-06-25 10:03       ` [bug#64137] [PATCH v3 5/7] gnu: Add tl-optional David Elsing
2023-06-25 10:03       ` [bug#64137] [PATCH v3 6/7] gnu: clingo: Unbundle dependencies David Elsing
2023-06-25 10:03       ` [bug#64137] [PATCH v3 7/7] gnu: catch2-3.1: Rename to catch2-3.3 and update to 3.3.2 David Elsing
2023-06-25 16:06       ` [bug#64137] [PATCH 0/2] Build catch2@3 with CMake " Liliana Marie Prikler
     [not found]         ` <7ycz1f350w.fsf@posteo.net>
2023-06-28 16:51           ` [bug#64137] [PATCH v4] gnu: catch2-3.1: Rename to catch2-3.3 " David Elsing
2023-07-01 10:41           ` bug#64137: [PATCH 0/2] Build catch2@3 with CMake " 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

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=9d8eb64fdc54c8c71c902a25a30b64d3b0998700.camel@gmail.com \
    --to=liliana.prikler@gmail.com \
    --cc=64137@debbugs.gnu.org \
    --cc=david.elsing@posteo.net \
    /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 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).