guix-glicid/glicid/packages/parallel.scm

247 lines
5.7 KiB
Scheme
Raw Normal View History

2021-10-24 22:23:44 +02:00
(define-module (glicid packages parallel)
#:use-module (guix packages)
#:use-module (guix download)
2022-11-30 15:23:24 +01:00
#:use-module (guix git-download)
2021-10-24 22:23:44 +02:00
#:use-module (guix build-system gnu)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (gnu packages parallel)
#:use-module (gnu packages gtk)
#:use-module (gnu packages libevent)
#:use-module (gnu packages perl)
#:use-module (gnu packages python)
2021-10-24 22:23:44 +02:00
#:use-module (gnu packages compression)
#:use-module (gnu packages mpi)
#:use-module (gnu packages haskell-xyz)
2021-10-24 22:23:44 +02:00
#:use-module (gnu packages databases)
2022-05-11 16:55:48 +02:00
#:use-module (glicid utils)
2021-10-24 22:23:44 +02:00
)
(define-public openpmix-3.1.5
(package
(name "openpmix")
(version "3.1.5")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/openpmix/openpmix/releases/download/v" version "/pmix-" version ".tar.bz2"))
(sha256 (base32 "1xswdkfcrw123ghcr9gmrb852nzjbl4i6qwrid3xyma42yal34w8"))
)
2021-10-24 22:30:40 +02:00
)
(build-system gnu-build-system)
(arguments
`(#:configure-flags
(list
(string-append "--with-hwloc=" (assoc-ref %build-inputs "hwloc"))
)
)
2021-10-24 22:30:40 +02:00
)
(synopsis "MPIX lib")
(description"MPIX. More to come. FIXIT")
(home-page "https://www.gnu.org/software/hello/")
(license license:gpl3+)
(inputs `(
("libevent", libevent)
("hwloc" ,hwloc-2 "lib")
("perl", perl)
))
2021-10-24 22:30:40 +02:00
)
)
(define-public openpmix-4.1.0
(package
(inherit openpmix-3.1.5)
(version "4.1.0")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/openpmix/openpmix/releases/download/v" version "/pmix-" version ".tar.bz2"))
(sha256 (base32 "0bl4gkh87csm3yh418wvrih35mg6swavcxj78gyb7gr1qsk0apql"))
)
2021-10-24 22:23:44 +02:00
)
(inputs `(
("python", python)
("zlib", zlib)
("pandoc", pandoc)
,@(package-inputs openpmix-3.1.5)
))
2021-10-24 22:23:44 +02:00
)
)
2021-10-24 22:23:44 +02:00
(define-public openpmix openpmix-4.1.0)
2022-05-11 16:55:48 +02:00
(define-public slurm-20.02-upstream
(package
(inherit slurm-20.02)
2022-05-11 16:55:48 +02:00
(name "slurm-upstream")
(version "20.02.7")
(source
(origin
(inherit (package-source slurm-20.02))
(method url-fetch)
(uri (string-append "https://download.schedmd.com/slurm/slurm-" version ".tar.bz2"))
(sha256 (base32 "1khlv69q41chgkcs1i7l651hvyx8sz3j9yhjbgky3gpqrgrmz1h6"))
)
)
2022-05-11 16:55:48 +02:00
)
)
(define slurm-20.02-latest
(latest-version slurm-20.02 slurm-20.02-upstream)
)
(define-public slurm-20.02-glicid
(package
(inherit slurm-20.02-latest)
(name "slurm-glicid")
(inputs `(
("gtk+-2", gtk+-2)
("mariadb:dev", mariadb "dev")
2022-05-11 16:55:48 +02:00
,@(package-inputs slurm-20.02-latest)
))
)
)
2021-10-24 22:23:44 +02:00
2022-05-11 16:55:48 +02:00
(define-public slurm-20.11-upstream
(package
(inherit slurm-20.11)
(name "slurm-upstream")
(version "20.11.9")
(source
(origin
(inherit (package-source slurm-20.11))
(method url-fetch)
(uri (string-append "https://download.schedmd.com/slurm/slurm-" version ".tar.bz2"))
(sha256 (base32 "0xq2d6dm285y541dyg1h66z7svsisrq8c81ag0f601xz1cn3mq9m"))
)
)
)
)
(define slurm-20.11-latest
(latest-version slurm-20.11 slurm-20.11-upstream)
)
(define-public slurm-20.11-glicid
(package
2022-05-11 16:55:48 +02:00
(inherit slurm-20.11-latest)
(name "slurm-glicid")
2022-05-11 16:55:48 +02:00
(inputs `(
("gtk+-2", gtk+-2)
("mariadb:dev", mariadb "dev")
,@(package-inputs slurm-20.11-latest)
))
)
)
(define-public slurm-21.08-upstream
(package
(inherit slurm)
(name "slurm-upstream")
(version "21.08.8-2")
(source
(origin
(method url-fetch)
(uri (string-append "https://download.schedmd.com/slurm/slurm-" version ".tar.bz2"))
2022-05-11 17:24:25 +02:00
(sha256 (base32 "01lynxvfzjswq5zxfxzjqjalj1s596lh58f5g8xqb6as9gdcyzgg"))
)
2022-05-11 16:55:48 +02:00
)
)
)
2021-10-24 22:23:44 +02:00
2022-05-11 16:55:48 +02:00
(define slurm-21.08-latest
(latest-version slurm slurm-21.08-upstream)
)
(define-public slurm-21.08-glicid
(package
(inherit slurm-21.08-latest)
(name "slurm-glicid")
(inputs `(
("gtk+-2", gtk+-2)
("mariadb:dev", mariadb "dev")
,@(package-inputs slurm-21.08-latest)
))
)
)
(define-public slurm-22.05-upstream
(package
(inherit slurm)
(name "slurm-upstream")
2022-10-14 17:44:50 +02:00
(version "22.05.5")
(source
(origin
(method url-fetch)
(uri (string-append "https://download.schedmd.com/slurm/slurm-" version ".tar.bz2"))
2022-10-14 17:44:50 +02:00
(sha256 (base32 "1khglnjhnfd7k9x6c5kn40zalvcq0nxinxv5z04p82vw9y6ck1zn"))
)
)
)
)
(define slurm-22.05-latest
(latest-version slurm slurm-22.05-upstream)
)
(define-public slurm-22.05-glicid
(package
(inherit slurm-22.05-latest)
(name "slurm-glicid")
(inputs `(
("gtk+-2", gtk+-2)
("mariadb:dev", mariadb "dev")
,@(package-inputs slurm-22.05-latest)
))
)
)
2022-11-30 15:23:24 +01:00
(define-public slurm-23.02-upstream
(package
(inherit slurm)
(name "slurm-upstream")
(version "23.02.-pre-b2a2a3109bf1cd1ce899b3b51c5223958510ff27")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/SchedMD/slurm")
(commit "b2a2a3109bf1cd1ce899b3b51c5223958510ff27")
))
(file-name (git-file-name name version))
(sha256 (base32 "1iwyvkfipizy46fi5plc3h8qvympx41l5bw58jw4kx01qi5fvj0z"))
)
)
)
)
(define slurm-23.02-latest
(latest-version slurm slurm-23.02-upstream)
)
(define-public slurm-23.02-glicid
(package
(inherit slurm-23.02-latest)
(name "slurm-glicid")
(inputs `(
("gtk+-2", gtk+-2)
("mariadb:dev", mariadb "dev")
,@(package-inputs slurm-23.02-latest)
))
)
)
2022-05-11 16:55:48 +02:00
(define-public slurm-glicid slurm-22.05-glicid)
2022-07-08 14:38:19 +02:00
(define-public slurm-ccipl slurm-21.08-glicid)
2022-11-30 15:23:24 +01:00
(define-public slurm-glicid-preprod slurm-22.05-glicid)
2022-11-30 15:29:22 +01:00
(define-public slurm-glicid-test slurm-23.02-glicid)
2022-11-30 15:23:24 +01:00
;slurm-23.02-glicid
2022-10-14 17:44:50 +02:00