summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorOwen Solberg <odoublewen@users.noreply.github.com>2019-09-12 13:41:53 -0700
committerPeter Scheibel <scheibel1@llnl.gov>2019-09-12 13:41:53 -0700
commit660887674769ca5c0c48c7769f6a7d5c3bfa9bff (patch)
tree1816e77229815d0373fc06d62a64921bb980c183 /var
parentb95b4bb9e0ccc27b99e8c5bab54175563c6128ba (diff)
downloadspack-660887674769ca5c0c48c7769f6a7d5c3bfa9bff.tar.gz
spack-660887674769ca5c0c48c7769f6a7d5c3bfa9bff.tar.bz2
spack-660887674769ca5c0c48c7769f6a7d5c3bfa9bff.tar.xz
spack-660887674769ca5c0c48c7769f6a7d5c3bfa9bff.zip
New package: cryptsetup (#12762)
Co-Authored-By: Adam J. Stewart <ajstewart426@gmail.com>
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/cryptsetup/autotools-libintl.patch11
-rw-r--r--var/spack/repos/builtin/packages/cryptsetup/package.py49
2 files changed, 60 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/cryptsetup/autotools-libintl.patch b/var/spack/repos/builtin/packages/cryptsetup/autotools-libintl.patch
new file mode 100644
index 0000000000..84330b2b8a
--- /dev/null
+++ b/var/spack/repos/builtin/packages/cryptsetup/autotools-libintl.patch
@@ -0,0 +1,11 @@
+--- a/Makefile.am 2019-09-11 10:38:34.587418453 -0700
++++ b/Makefile.am 2019-09-11 10:32:45.715961308 -0700
+@@ -13,7 +13,7 @@
+ -DSYSCONFDIR=\""$(sysconfdir)"\" \
+ -DVERSION=\""$(VERSION)"\"
+ AM_CFLAGS = -Wall
+-AM_LDFLAGS =
++AM_LDFLAGS = @LTLIBINTL@
+
+ tmpfilesddir = @DEFAULT_TMPFILESDIR@
+
diff --git a/var/spack/repos/builtin/packages/cryptsetup/package.py b/var/spack/repos/builtin/packages/cryptsetup/package.py
new file mode 100644
index 0000000000..62c42ad2f1
--- /dev/null
+++ b/var/spack/repos/builtin/packages/cryptsetup/package.py
@@ -0,0 +1,49 @@
+# Copyright 2013-2019 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 import *
+
+
+class Cryptsetup(AutotoolsPackage):
+ """Cryptsetup and LUKS - open-source disk encryption."""
+
+ homepage = "https://gitlab.com/cryptsetup/cryptsetup"
+ url = "https://www.kernel.org/pub/linux/utils/cryptsetup/v2.2/cryptsetup-2.2.1.tar.xz"
+ list_url = "https://www.kernel.org/pub/linux/utils/cryptsetup/"
+ list_depth = 1
+
+ version('2.2.1', sha256='94e79a31ed38bdb0acd9af7ccca1605a2ac62ca850ed640202876b1ee11c1c61')
+
+ depends_on('libuuid', type=('build', 'link'))
+ depends_on('lvm2', type=('build', 'link'))
+ depends_on('popt', type=('build', 'link'))
+ depends_on('json-c', type=('build', 'link'))
+ depends_on('util-linux', type=('build', 'link'))
+ depends_on('gettext', type=('build', 'link'))
+
+ depends_on('autoconf', type='build')
+ depends_on('automake', type='build')
+ depends_on('libtool', type='build')
+ depends_on('m4', type='build')
+
+ # Upstream includes support for discovering the location of the libintl
+ # library but is missing the bit in the Makefile.ac that includes it in
+ # the LDFLAGS. See https://gitlab.com/cryptsetup/cryptsetup/issues/479
+ patch('autotools-libintl.patch')
+
+ def url_for_version(self, version):
+ url = "https://www.kernel.org/pub/linux/utils/cryptsetup/v{0}/cryptsetup-{1}.tar.xz"
+ return url.format(version.up_to(2), version)
+
+ def configure_args(self):
+ args = [
+ 'systemd_tmpfilesdir={0}/tmpfiles.d'.format(self.prefix)
+ ]
+ return args
+
+ def setup_dependent_environment(self, spack_env, run_env, dependent_spec):
+ """Prepend the sbin directory to PATH."""
+ spack_env.prepend_path('PATH', self.prefix.sbin)
+ run_env.prepend_path('PATH', self.prefix.sbin)