From a5b2474037d749f42a816c60f0393941ba97444e Mon Sep 17 00:00:00 2001 From: Greg Hogan Date: Tue, 15 Jun 2021 16:31:41 +0000 Subject: gnu: Consolidate duplicate copyright names. * gnu/packages/android.scm: Consolidate copyright lines with the same email address. * gnu/packages/code.scm: Likewise. * gnu/packages/cpp.scm: Likewise. * gnu/packages/databases.scm: Likewise. * gnu/packages/emacs-xyz.scm: Likewise. * gnu/packages/file.scm: Likewise. * gnu/packages/freedesktop.scm: Likewise. * gnu/packages/gl.scm: Likewise. * gnu/packages/gps.scm: Likewise. * gnu/packages/linux.scm: Likewise. * gnu/packages/networking.scm: Likewise. * gnu/packages/python-xyz.scm: Likewise. * gnu/packages/python.scm: Likewise. * gnu/packages/video.scm: Likewise. * gnu/packages/xdisorg.scm: Likewise. * gnu/services/web.scm: Likewise. Signed-off-by: Liliana Marie Prikler --- gnu/packages/cpp.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'gnu/packages/cpp.scm') diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index f4708eda91..4af71ba93a 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -6,7 +6,7 @@ ;;; Copyright © 2019, 2020 Mathieu Othacehe ;;; Copyright © 2019 Pierre Neidhardt ;;; Copyright © 2019 Jan Wielkiewicz -;;; Copyright © 2020 Nicolò Balzarotti +;;; Copyright © 2020, 2021 Nicolò Balzarotti ;;; Copyright © 2020 Roel Janssen ;;; Copyright © 2020 Ricardo Wurmus ;;; Copyright © 2020 Brice Waegeneire @@ -18,7 +18,6 @@ ;;; Copyright © 2020 Brett Gilio ;;; Copyright © 2020 Milkey Mouse ;;; Copyright © 2021 Raghav Gururajan -;;; Copyright © 2021 Nicolò Balzarotti ;;; ;;; This file is part of GNU Guix. ;;; -- cgit v1.2.3 From 57c0804dcb17989bf587119b66c5cb70ba03e485 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 5 Oct 2021 16:29:51 +0200 Subject: gnu: libzen: Update to 0.4.39. * gnu/packages/cpp.scm (libzen): Update to 0.4.39. [arguments]: Don't explicitly return #t from phases. --- gnu/packages/cpp.scm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'gnu/packages/cpp.scm') diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index 4af71ba93a..26b4758728 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -144,7 +144,7 @@ use by the C++ Core Guidelines maintained by the Standard C++ Foundation.") (define-public libzen (package (name "libzen") - (version "0.4.38") + (version "0.4.39") (source (origin (method url-fetch) ;; Warning: This source has proved unreliable 1 time at least. @@ -155,7 +155,7 @@ use by the C++ Core Guidelines maintained by the Standard C++ Foundation.") "libzen_" version ".tar.bz2")) (sha256 (base32 - "1nkygc17sndznpcf71fdrhwpm8z9a3hc9csqlafwswh49axhfkjr")))) + "1rwaxmid9iv65n0y6xlcyxxydsvihjni9ldxpg6pbqz43amp49xx")))) (native-inputs `(("autoconf" ,autoconf) ("automake" ,automake) @@ -167,8 +167,7 @@ use by the C++ Core Guidelines maintained by the Standard C++ Foundation.") (modify-phases %standard-phases (add-after 'unpack 'pre-configure (lambda _ - (chdir "Project/GNU/Library") - #t))))) + (chdir "Project/GNU/Library")))))) (home-page "https://github.com/MediaArea/ZenLib") (synopsis "C++ utility library") (description "ZenLib is a C++ utility library. It includes classes for handling -- cgit v1.2.3 From 7861d9239949994e76e78d1fa0b80a182fefbcd3 Mon Sep 17 00:00:00 2001 From: Greg Hogan Date: Fri, 21 May 2021 19:11:23 +0000 Subject: gnu: folly: Update to 2021.10.04.00. * gnu/packages/cpp.scm (folly): Update to 2021.10.04.00. Signed-off-by: Marius Bakke --- gnu/packages/cpp.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/cpp.scm') diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index 26b4758728..438199f147 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -835,7 +835,7 @@ standard GNU style syntax for options.") (define-public folly (package (name "folly") - (version "2021.04.26.00") + (version "2021.10.04.00") (source (origin (method git-fetch) (uri (git-reference @@ -844,7 +844,7 @@ standard GNU style syntax for options.") (file-name (git-file-name name version)) (sha256 (base32 - "0s3jb02qjl9f4gfj01pa01cilkfpc4p0gbpn6bg5vcicyj76garg")))) + "1h7apl42idymqra0xgw7s5ys3dxrqd8gq0f99g048k4g5fxl64s9")))) (build-system cmake-build-system) (arguments '(;; Tests must be explicitly enabled -- cgit v1.2.3 From c1d40c262102360aa2d0633f7e0b551d54b07eb7 Mon Sep 17 00:00:00 2001 From: Greg Hogan Date: Wed, 30 Jun 2021 13:43:48 +0000 Subject: gnu: pcg-cpp: Update to 0.98.1-ffd522e7. * gnu/packages/cpp.scm (pcg-cpp): Update to 0.98.1-ffd522e7. Signed-off-by: Marius Bakke --- gnu/packages/cpp.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gnu/packages/cpp.scm') diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index 438199f147..bc5a08a2c1 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -1053,8 +1053,8 @@ computation.") (license license:bsd-3))) (define-public pcg-cpp - (let ((commit "5b5cac8d61339e810c5dbb4692d868a1d7ca1b2d") - (revision "1")) + (let ((commit "ffd522e7188bef30a00c74dc7eb9de5faff90092") + (revision "2")) (package (name "pcg-cpp") (version (git-version "0.98.1" revision commit)) @@ -1066,7 +1066,7 @@ computation.") (file-name (git-file-name name version)) (sha256 (base32 - "1s9dcd4iydlc1xj9m6f7c52nlyx99klk043sk7arqy6kp7gdaa33")))) + "0yxyqaphcc38zilpwpmssrl8ly1v6dimscqk2f4rcv1h22dinnqx")))) (build-system gnu-build-system) (arguments `(#:test-target "test" -- cgit v1.2.3 From 0a34ba76ef2b80cc31bb70434fa15b35cd4f42d6 Mon Sep 17 00:00:00 2001 From: Greg Hogan Date: Fri, 19 Mar 2021 15:28:33 +0000 Subject: gnu: caf: Update to 0.18.5. * gnu/packages/cpp.scm (caf): Update to 0.18.5. Signed-off-by: Marius Bakke --- gnu/packages/cpp.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/cpp.scm') diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index bc5a08a2c1..104fe81e18 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -1029,7 +1029,7 @@ feature set with a simple and intuitive interface.") (define-public caf (package (name "caf") - (version "0.18.0") + (version "0.18.5") (source (origin (method git-fetch) (uri (git-reference @@ -1038,7 +1038,7 @@ feature set with a simple and intuitive interface.") (file-name (git-file-name name version)) (sha256 (base32 - "1c3spd6vm1h9qhlk5c4fdwi6nbqx5vwz2zvv6qp0rj1hx6xpq3cx")))) + "04b4kjisb5wzq6pilh8xzbxn7qcjgppl8k65hfv0zi0ja8fyp1xk")))) (build-system cmake-build-system) (arguments '(#:configure-flags -- cgit v1.2.3