
* fix remaining flake8 errors * imports: sort imports everywhere in Spack We enabled import order checking in #23947, but fixing things manually drives people crazy. This used `spack style --fix --all` from #24071 to automatically sort everything in Spack so PR submitters won't have to deal with it. This should go in after #24071, as it assumes we're using `isort`, not `flake8-import-order` to order things. `isort` seems to be more flexible and allows `llnl` mports to be in their own group before `spack` ones, so this seems like a good switch.
26 lines
994 B
Python
26 lines
994 B
Python
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
import glob
|
|
|
|
from spack import *
|
|
|
|
|
|
class LuaLuaposix(Package):
|
|
"""Lua posix bindings, including ncurses"""
|
|
homepage = "https://github.com/luaposix/luaposix/"
|
|
url = "https://github.com/luaposix/luaposix/archive/release-v33.4.0.tar.gz"
|
|
|
|
version('35.0', sha256='a4edf2f715feff65acb009e8d1689e57ec665eb79bc36a6649fae55eafd56809',
|
|
url='https://github.com/luaposix/luaposix/archive/refs/tags/v35.0.tar.gz')
|
|
version('33.4.0', sha256='e66262f5b7fe1c32c65f17a5ef5ffb31c4d1877019b4870a5d373e2ab6526a21')
|
|
version('33.2.1', sha256='4fb34dfea67f4cf3194cdecc6614c9aea67edc3c4093d34137669ea869c358e1')
|
|
|
|
extends("lua")
|
|
|
|
def install(self, spec, prefix):
|
|
rockspec = glob.glob('luaposix-*.rockspec')
|
|
luarocks('--tree=' + prefix, 'make', rockspec[0])
|