From bb4aadb02aaeb8b6442ab81ee8b39d3088f8c912 Mon Sep 17 00:00:00 2001 From: Alberto Madonna Date: Tue, 27 Feb 2024 11:52:30 +0100 Subject: [PATCH] Bumped version to 1.6.4 --- CHANGELOG.md | 2 +- doc/config/configuration_reference.rst | 10 +++++----- spack/packages/sarus/package.py | 5 +++-- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 76f2ea7f..05a3990d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). -## [Unreleased] +## [1.6.4] ### Added diff --git a/doc/config/configuration_reference.rst b/doc/config/configuration_reference.rst index 4f5272e1..be5bcb62 100644 --- a/doc/config/configuration_reference.rst +++ b/doc/config/configuration_reference.rst @@ -447,8 +447,8 @@ Example configuration file "securityChecks": true, "OCIBundleDir": "/var/sarus/OCIBundleDir", "rootfsFolder": "rootfs", - "prefixDir": "/opt/sarus/1.6.3", - "hooksDir": "/opt/sarus/1.6.3/etc/hooks.d", + "prefixDir": "/opt/sarus/1.6.4", + "hooksDir": "/opt/sarus/1.6.4/etc/hooks.d", "tempDir": "/tmp", "localRepositoryBaseDir": "/home", "centralizedRepositoryDir": "/var/sarus/centralized_repository", @@ -497,15 +497,15 @@ Example configuration file "/opt" ] }, - "seccompProfile": "/opt/sarus/1.6.3/etc/seccomp/default.json", + "seccompProfile": "/opt/sarus/1.6.4/etc/seccomp/default.json", "apparmorProfile": "sarus-default", "selinuxLabel": "system_u:system_r:svirt_sarus_t:s0:c124,c675", "selinuxMountLabel": "system_u:object_r:svirt_sarus_file_t:s0:c715,c811" "containersPolicy": { - "path": "/opt/sarus/1.6.3/etc/policy.json", + "path": "/opt/sarus/1.6.4/etc/policy.json", "enforce": false }, - "containersRegistries.dPath": "/opt/sarus/1.6.3/etc/registries.d" + "containersRegistries.dPath": "/opt/sarus/1.6.4/etc/registries.d" "defaultMPIType": "mpich", "repositoryMetadataLockTimings": { "timeoutMs": 120000, diff --git a/spack/packages/sarus/package.py b/spack/packages/sarus/package.py index d2b07bbf..961505ba 100644 --- a/spack/packages/sarus/package.py +++ b/spack/packages/sarus/package.py @@ -30,12 +30,13 @@ class Sarus(CMakePackage): """Sarus is an OCI-compliant container engine for HPC systems.""" homepage = "https://github.com/eth-cscs/sarus" - url = "https://github.com/eth-cscs/sarus/archive/1.6.3.tar.gz" + url = "https://github.com/eth-cscs/sarus/archive/1.6.4.tar.gz" git = "https://github.com/eth-cscs/sarus.git" version('develop', branch='develop', submodules=True) version('master', branch='master', submodules=True) - version("1.6.3", tag="1.6.3", submodules=True) + version("1.6.4", tag="1.6.4", submodules=True) + version("1.6.3", commit="169ea2149a26a21fe73683be0eb0a31fb3806671") version("1.6.2", commit="4af913f4d65679f78e5bb7f2c006d8cff8d24b1d") version("1.6.1", commit="089b3284473f82a08d3541d133f7cd65df92a6e4") version("1.6.0", commit="9c01d76736940feb360175c515e5778e408e631e")