diff options
author | Axel Huebl <axel.huebl@plasma.ninja> | 2016-10-05 15:46:20 +0200 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2016-10-05 06:46:20 -0700 |
commit | ac3e21f8d4be5786761b5009690e09f6ec564c79 (patch) | |
tree | 47d17a26dd6248feb3728908d97f946d865d5692 | |
parent | 4e5d340665b954e0046204473bbd33436483dedc (diff) | |
download | spack-ac3e21f8d4be5786761b5009690e09f6ec564c79.tar.gz spack-ac3e21f8d4be5786761b5009690e09f6ec564c79.tar.bz2 spack-ac3e21f8d4be5786761b5009690e09f6ec564c79.tar.xz spack-ac3e21f8d4be5786761b5009690e09f6ec564c79.zip |
PNGwriter, libSplash: Add `master` version (#1744)
* PNGwriter, libSplash: Add `master` version
* PNGwriter, libSplash: Add `dev` versions
Can be used for now, `develop` is currently discouraged.
-rw-r--r-- | var/spack/repos/builtin/packages/libsplash/package.py | 4 | ||||
-rw-r--r-- | var/spack/repos/builtin/packages/pngwriter/package.py | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/libsplash/package.py b/var/spack/repos/builtin/packages/libsplash/package.py index 21a6eede3f..c20e6fe192 100644 --- a/var/spack/repos/builtin/packages/libsplash/package.py +++ b/var/spack/repos/builtin/packages/libsplash/package.py @@ -37,6 +37,10 @@ class Libsplash(Package): homepage = "https://github.com/ComputationalRadiationPhysics/libSplash" url = "https://github.com/ComputationalRadiationPhysics/libSplash/archive/v1.4.0.tar.gz" + version('dev', branch='dev', + git='https://github.com/ComputationalRadiationPhysics/libSplash.git') + version('master', branch='master', + git='https://github.com/ComputationalRadiationPhysics/libSplash.git') version('1.4.0', '2de37bcef6fafa1960391bf44b1b50e0') version('1.3.1', '524580ba088d97253d03b4611772f37c') version('1.2.4', '3fccb314293d22966beb7afd83b746d0') diff --git a/var/spack/repos/builtin/packages/pngwriter/package.py b/var/spack/repos/builtin/packages/pngwriter/package.py index c51f1f82a8..4c0370a7ef 100644 --- a/var/spack/repos/builtin/packages/pngwriter/package.py +++ b/var/spack/repos/builtin/packages/pngwriter/package.py @@ -38,6 +38,10 @@ class Pngwriter(Package): homepage = "http://pngwriter.sourceforge.net/" url = "https://github.com/pngwriter/pngwriter/archive/0.5.6.tar.gz" + version('dev', branch='dev', + git='https://github.com/pngwriter/pngwriter.git') + version('master', branch='master', + git='https://github.com/pngwriter/pngwriter.git') version('0.5.6', 'c13bd1fdc0e331a246e6127b5f262136') depends_on('cmake', type='build') |