summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorPat Riehecky <3534830+jcpunk@users.noreply.github.com>2022-11-16 09:29:58 -0600
committerGitHub <noreply@github.com>2022-11-16 08:29:58 -0700
commitb36a8f4f2e312b092d7f80853bb192d92afe0524 (patch)
tree9c17b95bf08c9169e25ebb6a532c64d11c323be6 /var
parent0a952f8b7bf6f70009dd5821bccbaf9170c73d07 (diff)
downloadspack-b36a8f4f2e312b092d7f80853bb192d92afe0524.tar.gz
spack-b36a8f4f2e312b092d7f80853bb192d92afe0524.tar.bz2
spack-b36a8f4f2e312b092d7f80853bb192d92afe0524.tar.xz
spack-b36a8f4f2e312b092d7f80853bb192d92afe0524.zip
New Package: rarpd (#28686)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/rarpd/package.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/rarpd/package.py b/var/spack/repos/builtin/packages/rarpd/package.py
new file mode 100644
index 0000000000..5f6970266f
--- /dev/null
+++ b/var/spack/repos/builtin/packages/rarpd/package.py
@@ -0,0 +1,26 @@
+# Copyright 2013-2022 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 Rarpd(MakefilePackage):
+ """RARP (Reverse Address Resolution Protocol) is a protocol which allows
+ individual devices on an IP network to get their own IP addresses from the
+ RARP server. Some machines (e.g. SPARC boxes) use this protocol instead
+ of e.g. DHCP to query their IP addresses during network bootup."""
+
+ homepage = "https://github.com/fermitools/rarpd"
+ url = "https://github.com/fermitools/rarpd/archive/refs/tags/0.981107-fixes.tar.gz"
+
+ maintainers = ["jcpunk"]
+
+ version(
+ "0.981107-fixes", sha256="92b44adc4a061dcedeb01f7e1c1700374199cccceef1a798de97303d387bb4c2"
+ )
+
+ @property
+ def install_targets(self):
+ return ["PREFIX={0}".format(self.prefix), "install"]