use guix style on *.scm

This commit is contained in:
Yann Dupont 2023-01-02 11:18:12 +01:00
parent a85adcc847
commit 09e78ddc85
28 changed files with 1981 additions and 2065 deletions

View file

@ -1,105 +1,92 @@
(define-module (glicid packages fabric-management)
#:use-module (guix download)
#:use-module (guix packages)
#:use-module ((gnu packages fabric-management) #:prefix gnu:)
#:use-module ((gnu packages fabric-management)
#:prefix gnu:)
#:use-module (glicid packages linux)
#:use-module (glicid utils)
)
)
(define-public ucx-upstream-1.11.2
(package
(inherit gnu:ucx)
(name (string-append (package-name gnu:ucx) "-upstream" ))
(name (string-append (package-name gnu:ucx) "-upstream"))
(version "1.11.2")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/openucx/ucx/releases/download/v" version "/ucx-" version ".tar.gz" ))
(sha256 (base32 "1py62vjr0hgyqsdpr04jhn918i8ccn6ghjalwpcjpz24admgisyy"))
)
)
)
)
(source (origin
(method url-fetch)
(uri (string-append
"https://github.com/openucx/ucx/releases/download/v"
version "/ucx-" version ".tar.gz"))
(sha256
(base32
"1py62vjr0hgyqsdpr04jhn918i8ccn6ghjalwpcjpz24admgisyy"))))))
(define-public ucx-upstream-1.12.0
(package
(inherit gnu:ucx)
(name (string-append (package-name gnu:ucx) "-upstream" ))
(name (string-append (package-name gnu:ucx) "-upstream"))
(version "1.12.0")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/openucx/ucx/releases/download/v" version "/ucx-" version ".tar.gz" ))
(sha256 (base32 "1djxsakwjwnw21hhzsr02w6h2jd2k16bm4pah4iz6k8s5pg99sck"))
)
)
)
)
(source (origin
(method url-fetch)
(uri (string-append
"https://github.com/openucx/ucx/releases/download/v"
version "/ucx-" version ".tar.gz"))
(sha256
(base32
"1djxsakwjwnw21hhzsr02w6h2jd2k16bm4pah4iz6k8s5pg99sck"))))))
(define-public ucx-upstream-1.12.1
(package
(inherit gnu:ucx)
(name (string-append (package-name gnu:ucx) "-upstream" ))
(name (string-append (package-name gnu:ucx) "-upstream"))
(version "1.12.1")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/openucx/ucx/releases/download/v" version "/ucx-" version ".tar.gz" ))
(sha256 (base32 "13mf30gdcqix8dyi0iwnsd5fn8b0syr03042y99s556swz44gd20"))
)
)
)
)
(source (origin
(method url-fetch)
(uri (string-append
"https://github.com/openucx/ucx/releases/download/v"
version "/ucx-" version ".tar.gz"))
(sha256
(base32
"13mf30gdcqix8dyi0iwnsd5fn8b0syr03042y99s556swz44gd20"))))))
(define-public ucx-upstream-1.13.0
(package
(inherit gnu:ucx)
(name (string-append (package-name gnu:ucx) "-upstream" ))
(name (string-append (package-name gnu:ucx) "-upstream"))
(version "1.13.0")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/openucx/ucx/releases/download/v" version "/ucx-" version ".tar.gz" ))
(sha256 (base32 "0gay9qsyz5ia68sakq1dakvk3sblh4fawnwzg09q2y723zr82f4a"))
)
)
)
)
(source (origin
(method url-fetch)
(uri (string-append
"https://github.com/openucx/ucx/releases/download/v"
version "/ucx-" version ".tar.gz"))
(sha256
(base32
"0gay9qsyz5ia68sakq1dakvk3sblh4fawnwzg09q2y723zr82f4a"))))))
(define-public ucx-upstream-1.13.1
(package
(inherit gnu:ucx)
(name (string-append (package-name gnu:ucx) "-upstream" ))
(name (string-append (package-name gnu:ucx) "-upstream"))
(version "1.13.1")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/openucx/ucx/releases/download/v" version "/ucx-" version ".tar.gz" ))
(sha256 (base32 "0a1qvnlvj2k5xgzkfs3md8ai3mmz6i1zv8w2rhm1s4wfnqlpihzg"))
)
)
)
)
(source (origin
(method url-fetch)
(uri (string-append
"https://github.com/openucx/ucx/releases/download/v"
version "/ucx-" version ".tar.gz"))
(sha256
(base32
"0a1qvnlvj2k5xgzkfs3md8ai3mmz6i1zv8w2rhm1s4wfnqlpihzg"))))))
(define local-ucx ucx-upstream-1.13.1)
(define-public ucx-latest (latest-version local-ucx gnu:ucx))
(define local-ucx
ucx-upstream-1.13.1)
(define-public ucx-latest
(latest-version local-ucx gnu:ucx))
(define-public ucx-latest-rdma
(transform-package
(
(instead-of "rdma-core" rdma-core-latest)
ucx-latest
) "rdma"
)
)
(transform-package ((instead-of "rdma-core" rdma-core-latest)
ucx-latest) "rdma"))
(define-public ucx-latest-glicid
(transform-package
(
(instead-of "libfabric" libfabric-latest)
ucx-latest-rdma
) "glicid"
)
)
(transform-package ((instead-of "libfabric" libfabric-latest)
ucx-latest-rdma) "glicid"))