diff options
author | Olivier Cessenat <cessenat@gmail.com> | 2024-02-05 10:42:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-05 10:42:07 +0100 |
commit | dba5ae939ddc938db464be5f1eda52ff52482123 (patch) | |
tree | 7683fcf9c93a977956a12d6b29e65e6b20af49f4 | |
parent | 7a4aa823d12deca3af2c33f29a19a501f80e2c1f (diff) | |
download | spack-dba5ae939ddc938db464be5f1eda52ff52482123.tar.gz spack-dba5ae939ddc938db464be5f1eda52ff52482123.tar.bz2 spack-dba5ae939ddc938db464be5f1eda52ff52482123.tar.xz spack-dba5ae939ddc938db464be5f1eda52ff52482123.zip |
visit-ffp and visit-unv: sets the licence SPDX (#42474)
-rw-r--r-- | var/spack/repos/builtin/packages/visit-ffp/package.py | 2 | ||||
-rw-r--r-- | var/spack/repos/builtin/packages/visit-unv/package.py | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/visit-ffp/package.py b/var/spack/repos/builtin/packages/visit-ffp/package.py index a48b2d5079..c12fe75ee1 100644 --- a/var/spack/repos/builtin/packages/visit-ffp/package.py +++ b/var/spack/repos/builtin/packages/visit-ffp/package.py @@ -21,6 +21,8 @@ class VisitFfp(CMakePackage): maintainers("cyrush", "cessenat") + license("BSD-3-Clause") + # Here we provide a local file that contains only the plugin in a flat directory version("local", url="file://{0}/visit-ffp.tgz".format(os.getcwd())) # Below we copy the VisIt paths, ffp first shipment is with VisIt 3 diff --git a/var/spack/repos/builtin/packages/visit-unv/package.py b/var/spack/repos/builtin/packages/visit-unv/package.py index 3b7063c826..d7cbbf4ad2 100644 --- a/var/spack/repos/builtin/packages/visit-unv/package.py +++ b/var/spack/repos/builtin/packages/visit-unv/package.py @@ -19,6 +19,8 @@ class VisitUnv(CMakePackage): maintainers("cyrush", "cessenat") + license("BSD-3-Clause") + # Here we provide a local file that contains only the plugin in a flat directory version("local", url="file://{0}/visit-unv.tgz".format(os.getcwd())) # Below we copy the VisIt paths: |