guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#31430] [PATCH 2/3] gnu: Add xtl.


From: Ludovic Courtès
Subject: [bug#31430] [PATCH 2/3] gnu: Add xtl.
Date: Thu, 24 May 2018 23:31:04 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.3 (gnu/linux)

Fis Trivial <address@hidden> skribis:

> * gnu/packages/cpp.scm (xtl): New variable.

[...]

> +         (replace 'check
> +           (lambda* _
> +             (invoke "make" "test_xtl")
> +             (chdir "test")
> +             (invoke "./test_xtl")
> +             (chdir ".."))))))

Instead of chdir, rather do:

  (with-directory-excursion "test"
    (invoke "./test_xtl")
    #t)

> +    (home-page "https://github.com/QuantStack/xtl";)
> +    (build-system cmake-build-system)
> +    (synopsis "C++ template library providing some basic tools")
> +    (description "xtl is a C++ header-only template library providing basic
> +tools (containers, algorithms) used by other quantstack packages")

I know it’s from upstream, but please s/quantstack/QuantStack/ and add a
period at the end.

Could you send an updated patch?

Ludo’.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]