Skip to content

Commit 55cac73

Browse files
authored
Merge pull request #563 from climbfuji/feature/update_to_spack_v1p0p0
[feature/update_to_spack_v1] Update to spack version 1.0.1
2 parents 31f4420 + 79385e5 commit 55cac73

File tree

12,436 files changed

+72045
-681731
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

12,436 files changed

+72045
-681731
lines changed

.codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ coverage:
1010
ignore:
1111
- lib/spack/spack/test/.*
1212
- lib/spack/docs/.*
13-
- lib/spack/external/.*
13+
- lib/spack/spack/vendor/.*
1414
- share/spack/qa/.*
1515

1616
comment: off

.flake8

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ max-line-length = 99
2828
# - F821: undefined name `name`
2929
#
3030
per-file-ignores =
31-
var/spack/repos/*/package.py:F403,F405,F821
31+
var/spack/*/package.py:F403,F405,F821
3232
*-ci-package.py:F403,F405,F821
3333

3434
# exclude things we usually do not want linting for.
@@ -43,10 +43,9 @@ exclude =
4343
var/spack/gpg*/
4444
var/spack/junit-report/
4545
var/spack/mock-configs/
46-
lib/spack/external
46+
lib/spack/spack/vendor/
4747
__pycache__
4848
var
49-
lib/jcsda-emc/spack-stack/stack/meta_modules.py
5049

5150
format = spack
5251

.gitattributes

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
*.py diff=python
2-
*.lp linguist-language=Prolog
3-
lib/spack/external/* linguist-vendored
4-
*.bat text eol=crlf
2+
lib/spack/spack/vendor/* linguist-vendored
3+
*.bat text eol=crlf

.github/ISSUE_TEMPLATE/build_error.yml

Lines changed: 0 additions & 76 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,8 @@
1-
blank_issues_enabled: true
1+
blank_issues_enabled: true
2+
contact_links:
3+
- name: "\U0001F4A5 Package build error"
4+
url: https://github.com/spack/spack-packages/issues/new?template=build_error.yml
5+
about: Report installation issues in the spack/spack-packages repository
6+
- name: "\U0001F4A5 Package test error"
7+
url: https://github.com/spack/spack-packages/issues/new?template=test_error.yml
8+
about: Report standalone package test issues in the spack/spack-packages repository

.github/ISSUE_TEMPLATE/test_error.yml

Lines changed: 0 additions & 64 deletions
This file was deleted.

.github/workflows/audit.yaml

Lines changed: 0 additions & 74 deletions
This file was deleted.

.github/workflows/bootstrap.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ concurrency:
1414

1515
jobs:
1616
distros-clingo-sources:
17+
if: github.repository == 'spack/spack'
1718
runs-on: ubuntu-latest
1819
container: ${{ matrix.image }}
1920
strategy:
@@ -26,7 +27,7 @@ jobs:
2627
dnf install -y \
2728
bzip2 curl file gcc-c++ gcc gcc-gfortran git gzip \
2829
make patch unzip which xz python3 python3-devel tree \
29-
cmake bison bison-devel libstdc++-static
30+
cmake bison bison-devel libstdc++-static gawk
3031
- name: Setup OpenSUSE
3132
if: ${{ matrix.image == 'opensuse/leap:latest' }}
3233
run: |
@@ -50,6 +51,7 @@ jobs:
5051
tree ~/.spack/bootstrap/store/
5152
5253
clingo-sources:
54+
if: github.repository == 'spack/spack'
5355
runs-on: ${{ matrix.runner }}
5456
strategy:
5557
matrix:
@@ -76,6 +78,7 @@ jobs:
7678
tree $HOME/.spack/bootstrap/store/
7779
7880
gnupg-sources:
81+
if: github.repository == 'spack/spack'
7982
runs-on: ${{ matrix.runner }}
8083
strategy:
8184
matrix:
@@ -103,6 +106,7 @@ jobs:
103106
tree ~/.spack/bootstrap/store/
104107
105108
from-binaries:
109+
if: github.repository == 'spack/spack'
106110
runs-on: ${{ matrix.runner }}
107111
strategy:
108112
matrix:
@@ -164,6 +168,7 @@ jobs:
164168
165169
166170
windows:
171+
if: github.repository == 'spack/spack'
167172
runs-on: "windows-latest"
168173
steps:
169174
- name: Checkout

.github/workflows/ci.yaml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,6 @@ jobs:
4242
# built-in repository or documentation
4343
filters: |
4444
bootstrap:
45-
- 'var/spack/repos/builtin/packages/clingo-bootstrap/**'
46-
- 'var/spack/repos/builtin/packages/clingo/**'
47-
- 'var/spack/repos/builtin/packages/python/**'
48-
- 'var/spack/repos/builtin/packages/re2c/**'
49-
- 'var/spack/repos/builtin/packages/gnupg/**'
50-
- 'var/spack/repos/builtin/packages/libassuan/**'
51-
- 'var/spack/repos/builtin/packages/libgcrypt/**'
52-
- 'var/spack/repos/builtin/packages/libgpg-error/**'
53-
- 'var/spack/repos/builtin/packages/libksba/**'
54-
- 'var/spack/repos/builtin/packages/npth/**'
55-
- 'var/spack/repos/builtin/packages/pinentry/**'
5645
- 'lib/spack/**'
5746
- 'share/spack/**'
5847
- '.github/workflows/bootstrap.yml'

.github/workflows/coverage.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ jobs:
1212
- uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b
1313
with:
1414
python-version: '3.11'
15-
cache: 'pip'
1615

1716
- name: Install python dependencies
1817
run: pip install -r .github/workflows/requirements/coverage/requirements.txt

0 commit comments

Comments
 (0)