summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorGeorge Hartzell <hartzell@alerce.com>2017-06-08 15:55:45 -0700
committerAdam J. Stewart <ajstewart426@gmail.com>2017-06-08 17:55:45 -0500
commita6bbbd4458f39d83e3c5399fcac38ff014126641 (patch)
tree325b26e54b464855f1e316d9f56600a573796fc4 /var
parent3508909f069413f0400f92e76078ab5aa671e0c4 (diff)
downloadspack-a6bbbd4458f39d83e3c5399fcac38ff014126641.tar.gz
spack-a6bbbd4458f39d83e3c5399fcac38ff014126641.tar.bz2
spack-a6bbbd4458f39d83e3c5399fcac38ff014126641.tar.xz
spack-a6bbbd4458f39d83e3c5399fcac38ff014126641.zip
Package for mono (#4435)
* First draft package for mono Mono's vendor'ed boringssl interacts badly with openssl, so you need to use `cmake~openssl`. Left to its own devices, it wants to refer to things in `/usr/share/.mono`. This doesn't work for installs that don't run as root, etc... This package includes a variant to redirect those paths to `prefix.share`. * Whitespace/Flake8
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/mono/package.py65
1 files changed, 65 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/mono/package.py b/var/spack/repos/builtin/packages/mono/package.py
new file mode 100644
index 0000000000..4a2692262b
--- /dev/null
+++ b/var/spack/repos/builtin/packages/mono/package.py
@@ -0,0 +1,65 @@
+###############################################################################
+# Copyright (c) 2013-2016, Lawrence Livermore National Security, LLC.
+# Produced at the Lawrence Livermore National Laboratory.
+#
+# This file is part of Spack.
+# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
+# LLNL-CODE-647188
+#
+# For details, see https://github.com/llnl/spack
+# Please also see the LICENSE file for our notice and the LGPL.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License (as
+# published by the Free Software Foundation) version 2.1, February 1999.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
+# conditions of the GNU Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+##############################################################################
+from spack import *
+
+
+class Mono(AutotoolsPackage):
+ """Mono is a software platform designed to allow developers to easily
+ create cross platform applications. It is an open source
+ implementation of Microsoft's .NET Framework based on the ECMA
+ standards for C# and the Common Language Runtime.
+ """
+
+ homepage = "http://www.mono-project.com/"
+ url = "https://download.mono-project.com/sources/mono/mono-5.0.1.1.tar.bz2"
+
+ # /usr/share/.mono/keypairs needs to exist or be able to be
+ # created, e.g. https://github.com/gentoo/dotnet/issues/6
+ variant('patch-folder-path', default=False,
+ description='Point SpecialFolder.CommonApplicationData folder '
+ 'into Spack installation instead of /usr/share')
+
+ # Spack's openssl interacts badly with mono's vendored
+ # "boringssl", don't drag it in w/ cmake
+ depends_on('cmake~openssl', type=('build'))
+ depends_on('libiconv')
+ depends_on('perl', type=('build'))
+
+ version('5.0.1.1', '17692c7a797f95ee6f9a0987fda3d486')
+ version('4.8.0.524', 'baeed5b8139a85ad7e291d402a4bcccb')
+
+ def patch(self):
+ if '+patch-folder-path' in self.spec:
+ before = 'return "/usr/share";'
+ after = 'return "{0}";'.format(self.prefix.share)
+ f = 'mcs/class/corlib/System/Environment.cs'
+ kwargs = {'ignore_absent': False, 'backup': True, 'string': True}
+ filter_file(before, after, f, **kwargs)
+
+ def configure_args(self):
+ args = []
+ li = self.spec['libiconv'].prefix
+ args.append('--with-libiconv-prefix={p}'.format(p=li))
+ return args