diff options
author | George Hartzell <hartzell@alerce.com> | 2016-12-27 14:49:53 -0500 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2016-12-27 11:49:53 -0800 |
commit | 18c10f2badad4c0a6dc4737248dad262f76af591 (patch) | |
tree | 7a5a0cea7fc19ccf73db06f1c3e07666453fa329 | |
parent | 81c1404b9cd071d1433852bd0b05fb168a53f981 (diff) | |
download | spack-18c10f2badad4c0a6dc4737248dad262f76af591.tar.gz spack-18c10f2badad4c0a6dc4737248dad262f76af591.tar.bz2 spack-18c10f2badad4c0a6dc4737248dad262f76af591.tar.xz spack-18c10f2badad4c0a6dc4737248dad262f76af591.zip |
Cleanup post luafilesystem version de-underscoring (#2683)
The upstream luafilesystem tarball/version had a wayward/inconsistent
underscore in their more recent version tag. The played badly with
our package fetching machinery (due to recent changes?).
Upstream cleaned up their bit which required some touchups here.
- updated the url
- updated the version (digest)
- updated the format statement for the path to the rockspec.
-rw-r--r-- | var/spack/repos/builtin/packages/lua-luafilesystem/package.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/lua-luafilesystem/package.py b/var/spack/repos/builtin/packages/lua-luafilesystem/package.py index fbd2e78b96..7a5c90f36f 100644 --- a/var/spack/repos/builtin/packages/lua-luafilesystem/package.py +++ b/var/spack/repos/builtin/packages/lua-luafilesystem/package.py @@ -36,16 +36,16 @@ class LuaLuafilesystem(Package): """ homepage = 'http://keplerproject.github.io/luafilesystem' - url = 'https://github.com/keplerproject/luafilesystem/archive/v_1_6_3.tar.gz' + url = 'https://github.com/keplerproject/luafilesystem/archive/v1_6_3.tar.gz' - version('1_6_3', 'd0552c7e5a082f5bb2865af63fb9dc95') + version('1_6_3', 'bed11874cfded8b4beed7dd054127b24') depends_on('git@2.9.3:', type='build') extends('lua') def install(self, spec, prefix): rockspec_fmt = join_path(self.stage.path, - 'luafilesystem-v_{version.underscored}', + 'luafilesystem-{version.underscored}', 'rockspecs', 'luafilesystem-{version.dotted}-1.rockspec') luarocks('--tree=' + prefix, 'install', |