Skip to content
Snippets Groups Projects
Commit 18c10f2b authored by George Hartzell's avatar George Hartzell Committed by Todd Gamblin
Browse files

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.
parent 81c1404b
No related branches found
No related tags found
No related merge requests found
......@@ -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',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment