Skip to content

Commit

Permalink
Merge pull request #6324 from kmuriki/rel3.8.5
Browse files Browse the repository at this point in the history
Changelog and install file updates for release 3.8.5
  • Loading branch information
kmuriki committed Nov 29, 2021
2 parents 7d022a3 + 0c0f0df commit 6177403
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
@@ -1,6 +1,6 @@
# Singularity Changelog

## Changes since last release
## v3.8.5 - [2021-11-29]

### Security Related Fixes

Expand Down
8 changes: 4 additions & 4 deletions INSTALL.md
Expand Up @@ -87,7 +87,7 @@ $ mkdir -p ${GOPATH}/src/github.com/hpcng && \
To build a stable version of Singularity, check out a [release tag](https://github.com/hpcng/singularity/tags) before compiling:

```
$ git checkout v3.8.4
$ git checkout v3.8.5
```

## Compiling Singularity
Expand Down Expand Up @@ -134,7 +134,7 @@ required.
To build from a release source tarball do these commands:

```
$ export VERSION=3.8.4 # this is the singularity version, change as you need
$ export VERSION=3.8.5 # this is the singularity version, change as you need
$ wget https://github.com/hpcng/singularity/releases/download/v${VERSION}/singularity-${VERSION}.tar.gz && \
rpmbuild -tb singularity-${VERSION}.tar.gz && \
Expand All @@ -151,7 +151,7 @@ Then use the `rpm` make target to build Singularity as an rpm package:
```
$ ./mconfig --only-rpm
$ make -C builddir rpm
$ sudo rpm -ivh ~/rpmbuild/RPMS/x86_64/singularity-3.8.4*.x86_64.rpm # or whatever version you built
$ sudo rpm -ivh ~/rpmbuild/RPMS/x86_64/singularity-3.8.5*.x86_64.rpm # or whatever version you built
```
Alternatively, to build an RPM from the latest master you can
Expand All @@ -162,7 +162,7 @@ tarball and use it to install Singularity:
$ cd $GOPATH/src/github.com/hpcng/singularity && \
./mconfig && \
make -C builddir rpm && \
sudo rpm -ivh ~/rpmbuild/RPMS/x86_64/singularity-3.8.4*.x86_64.rpm # or whatever version you built
sudo rpm -ivh ~/rpmbuild/RPMS/x86_64/singularity-3.8.5*.x86_64.rpm # or whatever version you built
```
To build an rpm with an alternative install prefix set RPMPREFIX on the
Expand Down

0 comments on commit 6177403

Please sign in to comment.