Skip to content

Commit

Permalink
Merge pull request #5788 from dtrudg/371changelog
Browse files Browse the repository at this point in the history
Update README/INSTALL.md for 3.7.1 release
  • Loading branch information
dtrudg authored Jan 12, 2021
2 parents 513e276 + f40667a commit 6604f44
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ _With the release of `v3.0.0`, we're introducing a new changelog format in an at

_The old changelog can be found in the `release-2.6` branch_

# Changes since v3.7.0
# v3.7.1 - [2021-01-12]

## Bug Fixes

Expand Down
10 changes: 4 additions & 6 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@ $ sudo yum groupinstall -y 'Development Tools' && \
squashfs-tools cryptsetup
```

_NOTE:_ On CentOS/RHEL 6 or less, you may skip `libseccomp-devel`.

## Install Golang

This is one of several ways to [install and configure golang](https://golang.org/doc/install).
Expand All @@ -43,7 +41,7 @@ _**NOTE:** if you are updating Go from a older version, make sure you remove `/u
reinstalling it._

```
$ export VERSION=1.14.12 OS=linux ARCH=amd64 # change this as you need
$ export VERSION=1.15.6 OS=linux ARCH=amd64 # change this as you need
$ wget -O /tmp/go${VERSION}.${OS}-${ARCH}.tar.gz https://dl.google.com/go/go${VERSION}.${OS}-${ARCH}.tar.gz && \
sudo tar -C /usr/local -xzf /tmp/go${VERSION}.${OS}-${ARCH}.tar.gz
Expand Down Expand Up @@ -92,7 +90,7 @@ $ mkdir -p ${GOPATH}/src/github.com/sylabs && \
To build a stable version of Singularity, check out a [release tag](https://github.com/sylabs/singularity/tags) before compiling:

```
$ git checkout v3.6.4
$ git checkout v3.7.1
```

## Compiling Singularity
Expand Down Expand Up @@ -135,7 +133,7 @@ as shown above. Then download the latest
and use it to install the RPM like this:

```
$ export VERSION=3.6.4 # this is the singularity version, change as you need
$ export VERSION=3.7.1 # this is the singularity version, change as you need
$ wget https://github.com/sylabs/singularity/releases/download/v${VERSION}/singularity-${VERSION}.tar.gz && \
rpmbuild -tb singularity-${VERSION}.tar.gz && \
Expand All @@ -151,7 +149,7 @@ tarball and use it to install Singularity:
$ cd $GOPATH/src/github.com/sylabs/singularity && \
./mconfig && \
make -C builddir rpm && \
sudo rpm -ivh ~/rpmbuild/RPMS/x86_64/singularity-3.6.4*.x86_64.rpm # or whatever version you built
sudo rpm -ivh ~/rpmbuild/RPMS/x86_64/singularity-3.7.1*.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 6604f44

Please sign in to comment.