
* 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.
36 lines
1.0 KiB
Python
36 lines
1.0 KiB
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 spack.paths
|
|
import spack.store
|
|
from spack import *
|
|
|
|
|
|
class OldSbang(Package):
|
|
"""Toy package for testing the old sbang replacement problem"""
|
|
|
|
homepage = "https://www.example.com"
|
|
url = "https://www.example.com/old-sbang.tar.gz"
|
|
|
|
version('1.0.0', '0123456789abcdef0123456789abcdef')
|
|
|
|
def install(self, spec, prefix):
|
|
mkdirp(prefix.bin)
|
|
|
|
sbang_style_1 = '''#!/bin/bash {0}/bin/sbang
|
|
#!/usr/bin/env python
|
|
|
|
{1}
|
|
'''.format(spack.paths.prefix, prefix.bin)
|
|
sbang_style_2 = '''#!/bin/sh {0}/bin/sbang
|
|
#!/usr/bin/env python
|
|
|
|
{1}
|
|
'''.format(spack.store.unpadded_root, prefix.bin)
|
|
with open('%s/sbang-style-1.sh' % self.prefix.bin, 'w') as f:
|
|
f.write(sbang_style_1)
|
|
|
|
with open('%s/sbang-style-2.sh' % self.prefix.bin, 'w') as f:
|
|
f.write(sbang_style_2)
|