summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--var/spack/repos/builtin/packages/perl-object-insideout/package.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/perl-object-insideout/package.py b/var/spack/repos/builtin/packages/perl-object-insideout/package.py
new file mode 100644
index 0000000000..6d356daf6f
--- /dev/null
+++ b/var/spack/repos/builtin/packages/perl-object-insideout/package.py
@@ -0,0 +1,20 @@
+# 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 PerlObjectInsideout(PerlPackage):
+ """Implements inside-out objects as anonymous scalar references
+ that are blessed into a class with the scalar containing the
+ ID for the object (usually a sequence number)."""
+
+ homepage = "https://metacpan.org/pod/Object::InsideOut"
+ url = "https://cpan.metacpan.org/authors/id/J/JD/JDHEDDEN/Object-InsideOut-4.05.tar.gz"
+
+ version('4.05', sha256='9dfd6ca2822724347e0eb6759d00709425814703ad5c66bdb6214579868bcac4')
+
+ depends_on('perl-module-build', type='build')
+ depends_on('perl-exception-class', type=('build', 'run'))