
* 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.
30 lines
991 B
Python
30 lines
991 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 os.path
|
|
|
|
from spack import *
|
|
|
|
|
|
class Jq(AutotoolsPackage):
|
|
"""jq is a lightweight and flexible command-line JSON processor."""
|
|
|
|
homepage = "https://stedolan.github.io/jq/"
|
|
url = "https://github.com/stedolan/jq/releases/download/jq-1.6/jq-1.6.tar.gz"
|
|
|
|
version('1.6', sha256='5de8c8e29aaa3fb9cc6b47bb27299f271354ebb72514e3accadc7d38b5bbaa72')
|
|
version('1.5', sha256='c4d2bfec6436341113419debf479d833692cc5cdab7eb0326b5a4d4fbe9f493c')
|
|
|
|
depends_on('oniguruma')
|
|
depends_on('bison@3.0:', type='build')
|
|
|
|
@run_after('install')
|
|
@on_package_attributes(run_tests=True)
|
|
def install_test(self):
|
|
jq = self.spec['jq'].command
|
|
f = os.path.join(os.path.dirname(__file__), 'input.json')
|
|
|
|
assert jq('.bar', input=f, output=str) == '2\n'
|