Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ebrains-spack-builds
Manage
Activity
Members
Labels
Plan
Issues
32
Issue boards
Milestones
Wiki
Code
Merge requests
35
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EBRAINS RI
Tech Hub
Platform
EBRAINS Software Distribution
ebrains-spack-builds
Merge requests
!674
feat(NESTML): add NESTML version 8.0.1
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
feat(NESTML): add NESTML version 8.0.1
chlinssen/ebrains-spack-builds:nestml_v8.0.1
into
master
Overview
4
Commits
4
Pipelines
0
Changes
4
1 unresolved thread
Hide all comments
Open
Charl Linssen
requested to merge
chlinssen/ebrains-spack-builds:nestml_v8.0.1
into
master
3 months ago
Overview
4
Commits
4
Pipelines
0
Changes
4
1 unresolved thread
Hide all comments
Expand
0
0
Merge request reports
Compare
master
version 13
fcc72de1
5 days ago
version 12
4a14fe05
5 days ago
version 11
e35cac83
6 days ago
version 10
e35cac83
2 months ago
version 9
e35cac83
3 months ago
version 8
6aedc85a
3 months ago
version 7
440107a0
3 months ago
version 6
440107a0
3 months ago
version 5
440107a0
3 months ago
version 4
440107a0
3 months ago
version 3
440107a0
3 months ago
version 2
440107a0
3 months ago
version 1
f539d7c2
3 months ago
master (base)
and
latest version
latest version
fcc72de1
4 commits,
2 days ago
version 13
fcc72de1
3 commits,
5 days ago
version 12
4a14fe05
3 commits,
5 days ago
version 11
e35cac83
3 commits,
6 days ago
version 10
e35cac83
3 commits,
2 months ago
version 9
e35cac83
3 commits,
3 months ago
version 8
6aedc85a
1 commit,
3 months ago
version 7
440107a0
1 commit,
3 months ago
version 6
440107a0
1 commit,
3 months ago
version 5
440107a0
1 commit,
3 months ago
version 4
440107a0
1 commit,
3 months ago
version 3
440107a0
1 commit,
3 months ago
version 2
440107a0
1 commit,
3 months ago
version 1
f539d7c2
1 commit,
3 months ago
4 files
+
40
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
packages/py-antlr4-python3-runtime/package.py
0 → 100644
+
29
−
0
Options
# Copyright 2013-2024 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)
from
spack.package
import
*
class
PyAntlr4Python3Runtime
(
PythonPackage
):
"""
This package provides runtime libraries required to use
parsers generated for the Python3 language by version 4 of
ANTLR (ANother Tool for Language Recognition).
"""
homepage
=
"
https://www.antlr.org
"
# begin EBRAINS(added): new version
pypi
=
"
antlr4-python3-runtime/antlr4_python3_runtime-4.7.2.tar.gz
"
version
(
"
4.13.2
"
,
sha256
=
"
909b647e1d2fc2b70180ac586df3933e38919c85f98ccc656a96cd3f25ef3916
"
)
# end EBRAINS
version
(
"
4.10
"
,
sha256
=
"
061a49bc72ae05a35d9b61c0ba0ac36c0397708819f02fbfb20a80e47d287a1b
"
)
version
(
"
4.9.3
"
,
sha256
=
"
f224469b4168294902bb1efa80a8bf7855f24c99aef99cbefc1bcd3cce77881b
"
)
version
(
"
4.9.2
"
,
sha256
=
"
31f5abdc7faf16a1a6e9bf2eb31565d004359b821b09944436a34361929ae85a
"
)
version
(
"
4.8
"
,
sha256
=
"
15793f5d0512a372b4e7d2284058ad32ce7dd27126b105fb0b2245130445db33
"
)
version
(
"
4.7.2
"
,
sha256
=
"
168cdcec8fb9152e84a87ca6fd261b3d54c8f6358f42ab3b813b14a7193bb50b
"
)
depends_on
(
"
python@3:
"
,
type
=
(
"
build
"
,
"
run
"
))
depends_on
(
"
py-setuptools
"
,
type
=
"
build
"
)