emacs-bug-tracker
[Top][All Lists]
Advanced

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

[debbugs-tracker] bug#33633: closed ([PATCH] gnu: Add a C++14 variant of


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#33633: closed ([PATCH] gnu: Add a C++14 variant of Boost for packages that need it.)
Date: Sat, 08 Dec 2018 00:48:03 +0000

Your message dated Fri, 7 Dec 2018 19:47:30 -0500
with message-id <address@hidden>
and subject line Re: [PATCH] gnu: Add a C++14 variant of Boost for packages 
that need it.
has caused the debbugs.gnu.org bug report #33633,
regarding [PATCH] gnu: Add a C++14 variant of Boost for packages that need it.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
33633: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=33633
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] gnu: Add a C++14 variant of Boost for packages that need it. Date: Wed, 5 Dec 2018 14:28:45 -0500
Fixes <https://bugs.gnu.org/33605> and <https://bugs.gnu.org/33610>.

* gnu/packages/boost.scm (boost-cxx14): New variable.
* gnu/packages/compression.scm (innoextract)[inputs]: Use it.
* gnu/packages/mpd.scm (ncmpcpp)[inputs]: Use it.
---
 gnu/packages/boost.scm       | 9 +++++++++
 gnu/packages/compression.scm | 2 +-
 gnu/packages/mpd.scm         | 2 +-
 3 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/boost.scm b/gnu/packages/boost.scm
index b772781f5..07dce749d 100644
--- a/gnu/packages/boost.scm
+++ b/gnu/packages/boost.scm
@@ -122,6 +122,15 @@ across a broad spectrum of applications.")
     (license (license:x11-style "https://www.boost.org/LICENSE_1_0.txt";
                                 "Some components have other similar 
licences."))))
 
+(define-public boost-cxx14
+  (package (inherit boost)
+    (arguments
+      (substitute-keyword-arguments (package-arguments boost)
+        ((#:make-flags flags)
+         `(append ,flags
+                  '("cxxflags=-std=c++14")))))
+    (properties '((hidden? . #t)))))
+
 (define-public boost-for-mysql
   ;; Older version for MySQL 5.7.23.
   (package
diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm
index 32b92a976..e8a50c676 100644
--- a/gnu/packages/compression.scm
+++ b/gnu/packages/compression.scm
@@ -2263,7 +2263,7 @@ single-member files which can't be decompressed in 
parallel.")
    (build-system cmake-build-system)
    (arguments
     `(#:tests? #f)) ;; No tests available.
-   (inputs `(("boost" ,boost)
+   (inputs `(("boost" ,boost-cxx14)
              ("libiconv" ,libiconv)
              ("xz" ,xz)))
    (native-inputs `(("pkg-config" ,pkg-config)))
diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm
index fe8610ab9..0a81a3b8b 100644
--- a/gnu/packages/mpd.scm
+++ b/gnu/packages/mpd.scm
@@ -244,7 +244,7 @@ terminal using ncurses.")
                 "0m0mjb049sl62vx13h9waavysa30mk0rphacksnvf94n13la62v5"))))
     (build-system gnu-build-system)
     (inputs `(("libmpdclient" ,libmpdclient)
-              ("boost"  ,boost)
+              ("boost"  ,boost-cxx14)
               ("readline" ,readline)
               ("ncurses" ,ncurses)
               ("taglib" ,taglib)
-- 
2.19.2




--- End Message ---
--- Begin Message --- Subject: Re: [PATCH] gnu: Add a C++14 variant of Boost for packages that need it. Date: Fri, 7 Dec 2018 19:47:30 -0500 User-agent: Mutt/1.11.0 (2018-11-25)
Pushed as b9103c827c605dee32baf62816a0429543b3e451

Attachment: signature.asc
Description: PGP signature


--- End Message ---

reply via email to

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