summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/eprosima-fastdds/package.py
diff options
context:
space:
mode:
authorDaniele Cesarini <d.cesarini@cineca.it>2023-06-08 21:27:06 +0200
committerGitHub <noreply@github.com>2023-06-08 12:27:06 -0700
commit415639702783eccb96c34eed822620f6c313c8d7 (patch)
tree323f657df51d78c808c2fb315db1ef41eb6ea733 /var/spack/repos/builtin/packages/eprosima-fastdds/package.py
parentb4bbe5e3051ebfaa14e789e4f43ee521267a9713 (diff)
downloadspack-415639702783eccb96c34eed822620f6c313c8d7.tar.gz
spack-415639702783eccb96c34eed822620f6c313c8d7.tar.bz2
spack-415639702783eccb96c34eed822620f6c313c8d7.tar.xz
spack-415639702783eccb96c34eed822620f6c313c8d7.zip
New packages: eprosima-fastdds and dependencies (#38079)
Diffstat (limited to 'var/spack/repos/builtin/packages/eprosima-fastdds/package.py')
-rw-r--r--var/spack/repos/builtin/packages/eprosima-fastdds/package.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/eprosima-fastdds/package.py b/var/spack/repos/builtin/packages/eprosima-fastdds/package.py
new file mode 100644
index 0000000000..f3898409a8
--- /dev/null
+++ b/var/spack/repos/builtin/packages/eprosima-fastdds/package.py
@@ -0,0 +1,25 @@
+# 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 EprosimaFastdds(CMakePackage):
+ """eprosima Fast DDS (formerly Fast RTPS) is a C++ implementation of the DDS
+ (Data Distribution Service) standard of the OMG (Object Management Group).
+ eProsima Fast DDS implements the RTPS (Real Time Publish Subscribe) protocol,
+ which provides publisher-subscriber communications over unreliable transports
+ such as UDP, as defined and maintained by the Object Management Group (OMG) consortium."""
+
+ homepage = "https://www.eprosima.com/"
+ url = "https://github.com/eProsima/Fast-DDS/archive/v2.10.1.tar.gz"
+
+ version("2.10.1", sha256="2cc2682db5dc7e87684b7f23166e2f32faf8d5c4b4a8c94c6c21211a8a38f553")
+
+ depends_on("asio")
+ depends_on("tinyxml2")
+ depends_on("openssl")
+ depends_on("foonathan-memory")
+ depends_on("eprosima-fastcdr")