mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-07 11:29:59 +01:00
gnu: boost: Update to 1.78.0.
* gnu/packages/boost.scm (boost): Update to 1.78.0. [source](patches): Add upstream patch. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
c6b5161e97
commit
a59afdc92e
1 changed files with 9 additions and 4 deletions
|
@ -15,9 +15,8 @@
|
||||||
;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
|
;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
|
||||||
;;; Copyright © 2020 Jonathan Brielmaier <jonathan.brielmaier@web.de>
|
;;; Copyright © 2020 Jonathan Brielmaier <jonathan.brielmaier@web.de>
|
||||||
;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
||||||
;;; Copyright © 2021 Greg Hogan <code@greghogan.com>
|
;;; Copyright © 2021, 2022 Greg Hogan <code@greghogan.com>
|
||||||
;;; Copyright © 2021 Franck Pérignon <franck.perignon@univ-grenoble-alpes.fr>
|
;;; Copyright © 2021 Franck Pérignon <franck.perignon@univ-grenoble-alpes.fr>
|
||||||
;;; Copyright © 2021 Greg Hogan <code@greghogan.com>
|
|
||||||
;;; Copyright © 2021 Aleksandr Vityazev <avityazev@posteo.org>
|
;;; Copyright © 2021 Aleksandr Vityazev <avityazev@posteo.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
|
@ -68,15 +67,21 @@
|
||||||
(define-public boost
|
(define-public boost
|
||||||
(package
|
(package
|
||||||
(name "boost")
|
(name "boost")
|
||||||
(version "1.77.0")
|
(version "1.78.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://boostorg.jfrog.io/artifactory/main/release/"
|
(uri (string-append "https://boostorg.jfrog.io/artifactory/main/release/"
|
||||||
version "/source/boost_"
|
version "/source/boost_"
|
||||||
(version-with-underscores version) ".tar.bz2"))
|
(version-with-underscores version) ".tar.bz2"))
|
||||||
|
(patches
|
||||||
|
(list (boost-patch
|
||||||
|
;; 1.78.0 was released with a faulty installation routine:
|
||||||
|
;; <https://github.com/bfgroup/b2/pull/113>.
|
||||||
|
"0001-b2-fix-install.patch" version
|
||||||
|
"02ljm22a4gcaj10xng8ww8aifrrlzm1pgyp08c06fd75f9pbkrbi")))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0m08hhk3l7zvzajyk39qlw566q3fhixayhc2j11328qf0gy8b7zw"))))
|
"1k5w6l3xsa9vipwk14sjb1vhsj88xwz7jr964996rcmxsisz30c6"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs (list icu4c zlib))
|
(inputs (list icu4c zlib))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
|
|
Loading…
Add table
Reference in a new issue