summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorCristian Di Pietrantonio <cristiandipietrantonio@gmail.com>2023-08-09 15:45:34 +0800
committerGitHub <noreply@github.com>2023-08-09 02:45:34 -0500
commit3d733da70a0b7d2749378eecf8ff882bd9b9f8e3 (patch)
treee6f5219c361b3089d2878f2aa0a9517408d6ed8a /var
parentcda99b792ca45672d0a062781df21bda177cf6ce (diff)
downloadspack-3d733da70a0b7d2749378eecf8ff882bd9b9f8e3.tar.gz
spack-3d733da70a0b7d2749378eecf8ff882bd9b9f8e3.tar.bz2
spack-3d733da70a0b7d2749378eecf8ff882bd9b9f8e3.tar.xz
spack-3d733da70a0b7d2749378eecf8ff882bd9b9f8e3.zip
idg: add new package (#39316)
Co-authored-by: Cristian Di Pietrantonio <cdipietrantonio@pawsey.org.au>
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/idg/package.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/idg/package.py b/var/spack/repos/builtin/packages/idg/package.py
new file mode 100644
index 0000000000..92a23f0144
--- /dev/null
+++ b/var/spack/repos/builtin/packages/idg/package.py
@@ -0,0 +1,28 @@
+# Copyright 2013-2023 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 Idg(CMakePackage):
+ """
+ Image Domain Gridding (IDG) is a fast method for convolutional resampling (gridding/degridding)
+ of radio astronomical data (visibilities). Direction-dependent effects (DDEs)
+ or A-tems can be applied in the gridding process.
+ """
+
+ homepage = "https://www.astron.nl/citt/IDG/"
+ git = "https://git.astron.nl/RD/idg.git"
+ url = "https://git.astron.nl/RD/idg/-/archive/1.2.0/idg-1.2.0.tar.gz"
+
+ maintainers("pelahi")
+
+ version("1.2.0", commit="ccf8951283c12547326800adae99440c70177449")
+ version("1.0.0", commit="3322756fb8b6e3bb1fe5293f3e07e40623ff8486")
+ version("0.8.1", commit="a09f3c85094c592f9304fff4c31e920c7592c3c3")
+
+ depends_on("boost")
+ depends_on("fftw-api@3")
+ depends_on("blas")