diff options
author | Axel Huebl <axel.huebl@plasma.ninja> | 2018-03-02 15:42:26 +0900 |
---|---|---|
committer | scheibelp <scheibel1@llnl.gov> | 2018-03-01 22:42:26 -0800 |
commit | 189d9ec138393fe6b86cd3b86766a5ddb4d80850 (patch) | |
tree | efc2e00e5e14a56c4e0fef2a99b5fddcb3f8b360 | |
parent | 6213463aeb02fdc08013e1fd03b7d6db990897f5 (diff) | |
download | spack-189d9ec138393fe6b86cd3b86766a5ddb4d80850.tar.gz spack-189d9ec138393fe6b86cd3b86766a5ddb4d80850.tar.bz2 spack-189d9ec138393fe6b86cd3b86766a5ddb4d80850.tar.xz spack-189d9ec138393fe6b86cd3b86766a5ddb4d80850.zip |
Rsync package: Fix Src Link (#7367)
Fix the source link to rsync downloads.
The old link only contained the latest release, the new link
contains all.
-rw-r--r-- | var/spack/repos/builtin/packages/rsync/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/rsync/package.py b/var/spack/repos/builtin/packages/rsync/package.py index 642f702ac0..f375489a8a 100644 --- a/var/spack/repos/builtin/packages/rsync/package.py +++ b/var/spack/repos/builtin/packages/rsync/package.py @@ -28,7 +28,7 @@ from spack import * class Rsync(AutotoolsPackage): """An open source utility that provides fast incremental file transfer.""" homepage = "https://rsync.samba.org" - url = "https://download.samba.org/pub/rsync/rsync-3.1.1.tar.gz" + url = "https://download.samba.org/pub/rsync/src/rsync-3.1.2.tar.gz" version('3.1.2', '0f758d7e000c0f7f7d3792610fad70cb') version('3.1.1', '43bd6676f0b404326eee2d63be3cdcfe') |