Skip to content
Snippets Groups Projects
Commit 43669775 authored by Elsa Gonsiorowski, PhD's avatar Elsa Gonsiorowski, PhD Committed by Adam J. Stewart
Browse files

libcircle: add develop version from git master branch (#14420)


* libcircle: add develop version from git master branch

* Update var/spack/repos/builtin/packages/libcircle/package.py

Co-Authored-By: default avatarAdam J. Stewart <ajstewart426@gmail.com>

* libcircle: flake8 fix i think

* libcircle: naming things

* libcircle: :sheep:

 my sacrifice to the flake8 gods

Co-authored-by: default avatarAdam J. Stewart <ajstewart426@gmail.com>
parent c51db51b
No related branches found
No related tags found
No related merge requests found
...@@ -11,8 +11,17 @@ class Libcircle(AutotoolsPackage): ...@@ -11,8 +11,17 @@ class Libcircle(AutotoolsPackage):
using self-stabilizing work stealing.""" using self-stabilizing work stealing."""
homepage = "https://github.com/hpc/libcircle" homepage = "https://github.com/hpc/libcircle"
git = "https://github.com/hpc/libcircle.git"
url = "https://github.com/hpc/libcircle/releases/download/0.2.1-rc.1/libcircle-0.2.1-rc.1.tar.gz"
version('0.2.1-rc.1', sha256='5747f91cf4417023304dcc92fd07e3617ac712ca1eeb698880979bbca3f54865', version('master', branch='master')
url='https://github.com/hpc/libcircle/releases/download/0.2.1-rc.1/libcircle-0.2.1-rc.1.tar.gz') version('0.2.1-rc.1', sha256='5747f91cf4417023304dcc92fd07e3617ac712ca1eeb698880979bbca3f54865')
depends_on('mpi') depends_on('mpi')
@when('@master')
def autoreconf(self, spec, prefix):
with working_dir(self.configure_directory):
# Bootstrap with autotools
bash = which('bash')
bash('./autogen.sh')
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment