From 598d568c04d4e44e02718d0525a138f65d5df722 Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Tue, 3 Aug 2021 14:05:36 +0200 Subject: [PATCH] bump ceph-14 versions --- gnu/packages/glicid.scm | 56 ++++++++++++++++++----------------------- 1 file changed, 24 insertions(+), 32 deletions(-) diff --git a/gnu/packages/glicid.scm b/gnu/packages/glicid.scm index cf21228..d399907 100644 --- a/gnu/packages/glicid.scm +++ b/gnu/packages/glicid.scm @@ -1186,48 +1186,40 @@ in the @code{debug} output), and binutils."))) ) +(define-public glicid-ceph-14 -(define-public snappy-1.1.8 - (package - (name "snappy") - (version "1.1.8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/snappy") - (commit version))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1j0kslq2dvxgkcxl1gakhvsa731yrcvcaipcp5k8k7ayicvkv9jv")) - (patches (search-patches "snappy-add-O2-flag-in-CmakeLists.txt.patch")))) - (build-system cmake-build-system) - (arguments - `(#:configure-flags '("-DBUILD_SHARED_LIBS=ON"))) - (home-page "https://github.com/google/snappy") - (synopsis "Fast compressor/decompressor") - (description "Snappy is a compression/decompression library. It does not -aim for maximum compression, or compatibility with any other compression library; -instead, it aims for very high speeds and reasonable compression. For instance, -compared to the fastest mode of zlib, Snappy is an order of magnitude faster -for most inputs, but the resulting compressed files are anywhere from 20% to -100% bigger.") - (license license:asl2.0))) - - -(define-public glicid-ceph (package (inherit ceph) - (name "glicid-ceph") + (name "glicid-ceph-14") + (version "14.2.21") + (source + (origin + + (method url-fetch) + (uri + (string-append "https://download.ceph.com/tarballs/ceph_" version ".orig.tar.gz") + ) + (sha256 + (base32 + "1hhdxrmp7a8n00kmx9s4bib84dvfal98x7i9c65p4q6nknlcdvdw" + ) + ) - (inputs `(("snappy",snappy-1.1.8) - ,@(package-inputs ceph))) + ) + ) + + + +; (inputs `(("snappy",snappy-1.1.8) +; ,@(package-inputs glicid-ceph))) ) ) +(define-public glicid-ceph glicid-ceph-14) +