diff options
author | Greg Hogan <code@greghogan.com> | 2025-06-21 10:44:19 +0000 |
---|---|---|
committer | Greg Hogan <code@greghogan.com> | 2025-07-30 16:28:29 +0000 |
commit | c50a1376d4465e35b98dda146d8aa885564deead (patch) | |
tree | 029482847389a20bf434920b68cb212d5c5c6fb3 | |
parent | 8a70faa028d30a8575c270e652de7492791783b9 (diff) |
gnu: ceph: Update to 17.2.9.
Fixes a build failure introduced with updates to the CMake build system
as reported at https://bugs.gentoo.org/934916.
* gnu/packages/storage.scm (ceph): Update to 17.2.9.
Change-Id: I85c8341fd83e6ba70d375d227e5481cfdf406577
-rw-r--r-- | gnu/packages/storage.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/storage.scm b/gnu/packages/storage.scm index c7b1d2e2fd..567bea2c82 100644 --- a/gnu/packages/storage.scm +++ b/gnu/packages/storage.scm @@ -69,6 +69,7 @@ #:use-module (gnu packages sqlite) #:use-module (gnu packages textutils) #:use-module (gnu packages tls) + #:use-module (gnu packages version-control) #:use-module (gnu packages web) #:use-module (gnu packages xml) #:use-module (gnu packages) @@ -84,14 +85,14 @@ (define-public ceph (package (name "ceph") - (version "17.2.7") + (version "17.2.9") (source (origin (method url-fetch) (uri (string-append "https://download.ceph.com/tarballs/ceph-" version ".tar.gz")) (sha256 (base32 - "1612424yrf39dz010ygz8k5x1vc8731549ckfj1r39dg00m62klp")) + "04m4zxp9hjvppl679ilnr90zr6ij08wr4ralr0whzldy0fskc8hp")) (patches (search-patches "ceph-disable-cpu-optimizations.patch" @@ -233,7 +234,7 @@ (outputs '("out" "lib")) (native-inputs - (list gperf pkg-config python-cython python-sphinx yasm)) + (list git-minimal gperf pkg-config python-cython python-sphinx yasm)) (inputs (list `(,apache-thrift "lib") `(,apache-thrift "include") |