diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2020-12-29 15:28:57 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2020-12-30 08:40:35 -0500 |
commit | ca5f81ff57f84db28986a22832b27f13f4f24cf6 (patch) | |
tree | dd159b79d0b3e8235dc9f3a2faed2f7a1633b82c /gnu/packages/boost.scm | |
parent | 7d96a403a28c9731825123f5cad6c0341424adbb (diff) | |
download | guix-ca5f81ff57f84db28986a22832b27f13f4f24cf6.tar.gz |
gnu: boost: Update to 1.75.0.
* gnu/packages/boost.scm (boost): Update to 1.75.0.
Diffstat (limited to 'gnu/packages/boost.scm')
-rw-r--r-- | gnu/packages/boost.scm | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/gnu/packages/boost.scm b/gnu/packages/boost.scm index fcadc03dd0..1db173bd16 100644 --- a/gnu/packages/boost.scm +++ b/gnu/packages/boost.scm @@ -8,7 +8,7 @@ ;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2018 Arun Isaac <arunisaac@systemreboot.net> ;;; Copyright © 2018, 2019 Ricardo Wurmus <rekado@elephly.net> -;;; Copyright © 2018 Maxim Cournoyer <maxim.cournoyer@gmail.com> +;;; Copyright © 2018, 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com> ;;; Copyright © 2018, 2020 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2019 Mathieu Othacehe <m.othacehe@gmail.com> ;;; Copyright © 2019, 2020 Giacomo Leidi <goodoldpaul@autistici.org> @@ -62,7 +62,7 @@ (define-public boost (package (name "boost") - (version "1.74.0") + (version "1.75.0") (source (origin (method url-fetch) (uri (string-append "https://dl.bintray.com/boostorg/release/" @@ -70,7 +70,7 @@ (version-with-underscores version) ".tar.bz2")) (sha256 (base32 - "1c8nw4jz17zy2y27h7p554a5jza1ymz8phkz71p9181ifx8c3gw3")))) + "1js9zpij58l60kx46s3lxdp5207igppjnhqigwhbpdvd04gb6gcm")))) (build-system gnu-build-system) (inputs `(("icu4c" ,icu4c) ("zlib" ,zlib))) @@ -189,14 +189,6 @@ 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-with-python2 - (package - (inherit boost) - (name "boost-python2") - (native-inputs - `(("python" ,python-2) - ,@(alist-delete "python" (package-native-inputs boost)))))) - (define-public boost-with-python3 (deprecated-package "boost-with-python3" boost)) |